OSCAR-code/Graphs/gLineChart.cpp

606 lines
19 KiB
C++
Raw Normal View History

/*
2011-06-26 08:30:44 +00:00
gLineChart Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
2011-06-26 08:30:44 +00:00
#include <math.h>
#include <QString>
2011-07-01 10:10:44 +00:00
#include <QDebug>
2011-06-26 08:30:44 +00:00
#include <SleepLib/profiles.h>
#include "gLineChart.h"
2011-12-17 15:12:35 +00:00
#include "glcommon.h"
2011-06-26 08:30:44 +00:00
#define EXTRA_ASSERTS 1
gLineChart::gLineChart(ChannelID code,QColor col,bool square_plot, bool disable_accel)
:Layer(code),m_square_plot(square_plot),m_disable_accel(disable_accel)
2011-06-26 08:30:44 +00:00
{
m_line_color=col;
2011-06-26 08:30:44 +00:00
m_report_empty=false;
addGLBuf(lines=new GLShortBuffer(100000,GL_LINES));
2011-10-01 12:54:20 +00:00
lines->setColor(col);
lines->setAntiAlias(true);
2011-06-26 08:30:44 +00:00
}
gLineChart::~gLineChart()
{
2011-09-21 14:10:10 +00:00
//delete lines;
2011-09-01 07:12:25 +00:00
//delete outlines;
2011-06-26 08:30:44 +00:00
}
void gLineChart::SetDay(Day *d)
{
Layer::SetDay(d);
2011-12-21 12:47:47 +00:00
//if (m_code==CPAP_Leak) {
// subtract_offset=profile.cpap.[IntentionalLeak].toDouble();
//} else
subtract_offset=0;
}
EventDataType gLineChart::Miny()
{
int m=Layer::Miny();
if (subtract_offset>0) {
m-=subtract_offset;
if (m<0) m=0;
}
return m;
}
EventDataType gLineChart::Maxy()
{
return Layer::Maxy()-subtract_offset;
}
2011-07-27 09:21:53 +00:00
2011-06-26 08:30:44 +00:00
// Time Domain Line Chart
void gLineChart::paint(gGraph & w,int left, int top, int width, int height)
2011-06-26 08:30:44 +00:00
{
if (!m_visible)
return;
2011-07-27 09:21:53 +00:00
if (!m_day)
2011-06-26 08:30:44 +00:00
return;
//if (!m_day->channelExists(m_code)) return;
2011-09-17 12:39:00 +00:00
if (width<0)
return;
2011-12-12 07:10:45 +00:00
2011-09-01 07:12:25 +00:00
// lines=w.lines();
2011-07-30 06:03:08 +00:00
EventDataType miny,maxy;
double minx,maxx;
miny=w.min_y, maxy=w.max_y;
if (w.blockZoom()) {
minx=w.rmin_x, maxx=w.rmax_x;
} else {
maxx=w.max_x, minx=w.min_x;
}
// hmmm.. subtract_offset..
/*if (miny<0) {
2011-08-07 11:37:56 +00:00
miny=-MAX(fabs(miny),fabs(maxy));
}*/
2011-07-27 09:21:53 +00:00
2011-12-12 07:10:45 +00:00
2011-09-03 02:51:55 +00:00
w.roundY(miny,maxy);
2011-06-26 08:30:44 +00:00
2011-07-30 06:03:08 +00:00
double xx=maxx-minx;
double xmult=double(width)/xx;
2011-07-30 06:03:08 +00:00
EventDataType yy=maxy-miny;
EventDataType ymult=EventDataType(height-3)/yy; // time to pixel conversion multiplier
2011-06-26 08:30:44 +00:00
// Return on screwy min/max conditions
if (xx<0)
2011-06-26 08:30:44 +00:00
return;
if (yy<=0) {
if (miny==0)
return;
}
2011-06-26 08:30:44 +00:00
2011-07-30 06:03:08 +00:00
EventDataType lastpx,lastpy;
EventDataType px,py;
2011-07-30 05:32:56 +00:00
int idx;
2011-07-27 09:21:53 +00:00
bool done,first;
2011-07-30 06:03:08 +00:00
double x0,xL;
2011-07-27 09:21:53 +00:00
double sr;
int sam;
int minz,maxz;
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
// Draw bounding box
GLShortBuffer *outlines=w.lines();
2011-09-01 07:12:25 +00:00
QColor blk=Qt::black;
outlines->add(left, top, left, top+height, blk);
outlines->add(left, top+height, left+width,top+height, blk);
outlines->add(left+width,top+height, left+width, top, blk);
outlines->add(left+width, top, left,top, blk);
2011-06-26 08:30:44 +00:00
width--;
height-=2;
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
int num_points=0;
2011-06-26 08:30:44 +00:00
int visible_points=0;
2011-07-27 09:21:53 +00:00
int total_points=0;
int total_visible=0;
bool square_plot,accel;
2011-06-26 08:30:44 +00:00
QHash<ChannelID,QVector<EventList *> >::iterator ci;
m_line_color=schema::channel[m_code].defaultColor();
for (int svi=0;svi<m_day->size();svi++) {
if (!(*m_day)[svi]) {
qWarning() << "gLineChart::Plot() NULL Session Record.. This should not happen";
continue;
}
2011-09-17 13:21:18 +00:00
schema::Channel ch=schema::channel[m_code];
bool fndbetter=false;
for (QList<schema::Channel *>::iterator l=ch.m_links.begin();l!=ch.m_links.end();l++) {
schema::Channel *c=*l;
ci=(*m_day)[svi]->eventlist.find(c->name());
if (ci!=(*m_day)[svi]->eventlist.end()) {
fndbetter=true;
break;
}
}
if (!fndbetter) {
ci=(*m_day)[svi]->eventlist.find(m_code);
if (ci==(*m_day)[svi]->eventlist.end()) continue;
}
2011-06-26 08:30:44 +00:00
QVector<EventList *> & evec=ci.value();
2011-07-27 09:21:53 +00:00
num_points=0;
for (int i=0;i<evec.size();i++)
2011-07-30 10:12:18 +00:00
num_points+=evec[i]->count();
2011-07-27 09:21:53 +00:00
total_points+=num_points;
2011-06-26 08:30:44 +00:00
2011-08-06 13:37:06 +00:00
const int num_averages=20; // Max n umber of samples taken from samples per pixel for better min/max values
for (int n=0;n<evec.size();n++) { // for each segment
2011-07-27 09:21:53 +00:00
EventList & el=*evec[n];
2011-06-26 08:30:44 +00:00
accel=(el.type()==EVL_Waveform); // Turn on acceleration if this is a waveform.
if (accel) {
sr=el.rate(); // Time distance between samples
if (sr<=0) {
qWarning() << "qLineChart::Plot() assert(sr>0)";
continue;
}
}
if (m_disable_accel) accel=false;
2011-07-29 14:58:44 +00:00
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
square_plot=m_square_plot;
if (accel || num_points>20000) { // Don't square plot if too many points or waveform
2011-07-27 09:21:53 +00:00
square_plot=false;
2011-06-26 08:30:44 +00:00
}
2011-07-27 09:21:53 +00:00
int siz=evec[n]->count();
if (siz<=1) continue; // Don't bother drawing 1 point or less.
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
x0=el.time(0);
xL=el.time(siz-1);
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
if (maxx<x0) continue;
if (xL<minx) continue;
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
if (x0>xL) {
if (siz==2) { // this happens on CPAP
2011-07-30 06:03:08 +00:00
quint32 t=el.getTime()[0];
el.getTime()[0]=el.getTime()[1];
el.getTime()[1]=t;
EventStoreType d=el.getData()[0];
el.getData()[0]=el.getData()[1];
el.getData()[1]=d;
2011-06-26 08:30:44 +00:00
} else {
2011-07-27 09:21:53 +00:00
qDebug() << "Reversed order sample fed to gLineChart - ignored.";
continue;
//assert(x1<x2);
}
2011-07-27 09:21:53 +00:00
}
if (accel) {
2011-07-30 05:32:56 +00:00
//x1=el.time(1);
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
double XR=xx/sr;
double Z1=MAX(x0,minx);
double Z2=MIN(xL,maxx);
double ZD=Z2-Z1;
double ZR=ZD/sr;
double ZQ=ZR/XR;
double ZW=ZR/(width*ZQ);
visible_points+=ZR*ZQ;
if (accel && n>0) {
sam=1;
}
if (ZW<num_averages) {
sam=1;
accel=false;
} else {
sam=ZW/num_averages;
if (sam<1) {
sam=1;
accel=false;
}
}
// Prepare the min max y values if we still are accelerating this plot
if (accel) {
for (int i=0;i<width;i++) {
m_drawlist[i].setX(height);
m_drawlist[i].setY(0);
}
minz=width;
maxz=0;
}
total_visible+=visible_points;
} else {
sam=1;
}
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
// these calculations over estimate
// The Z? values are much more accurate
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
idx=0;
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
if (el.type()==EVL_Waveform) {
// We can skip data previous to minx if this is a waveform
2011-06-26 08:30:44 +00:00
2011-07-30 05:32:56 +00:00
if (minx>x0) {
2011-07-27 09:21:53 +00:00
double j=minx-x0; // == starting min of first sample in this segment
2011-07-30 05:32:56 +00:00
idx=(j/sr);
2011-08-06 23:55:51 +00:00
//idx/=(sam*num_averages);
//idx*=(sam*num_averages);
2011-07-27 09:21:53 +00:00
// Loose the precision
2011-08-06 23:55:51 +00:00
idx+=sam-(idx % sam);
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
} // else just start from the beginning
2011-06-29 04:53:18 +00:00
}
2011-06-26 08:30:44 +00:00
int xst=left+1;
int yst=top+height+1;
2011-07-27 09:21:53 +00:00
2011-07-30 06:03:08 +00:00
double time;
2011-07-27 09:21:53 +00:00
EventDataType data;
EventDataType gain=el.gain();
EventDataType nmult=ymult*gain;
2011-07-30 06:03:08 +00:00
EventDataType ymin=EventDataType(miny)/gain;
2011-07-27 09:21:53 +00:00
const QVector<EventStoreType> & dat=el.getData();
const QVector<quint32> & tim=el.getTime();
2011-07-27 09:21:53 +00:00
done=false;
first=true;
if (!accel) {
lines->setSize(1.5);
} else lines->setSize(1);
2011-07-27 09:21:53 +00:00
bool firstpx=true;
if (el.type()==EVL_Waveform) { // Waveform Plot
if (idx>sam) idx-=sam;
2011-07-27 09:21:53 +00:00
time=el.time(idx);
2011-07-30 05:32:56 +00:00
double rate=double(sr)*double(sam);
2011-07-27 09:21:53 +00:00
if (accel) {
2011-07-30 00:36:31 +00:00
//////////////////////////////////////////////////////////////////
// Accelerated Waveform Plot
//////////////////////////////////////////////////////////////////
2011-07-27 09:21:53 +00:00
for (int i=idx;i<siz;i+=sam) {
time+=rate;
//time=el.time(i);
//if (time < minx)
// continue; // Skip stuff before the start of our data window
2011-07-27 09:21:53 +00:00
//data=el.data(i);
data=dat[i];//*gain;
px=((time - minx) * xmult); // Scale the time scale X to pixel scale X
py=((data - ymin) * nmult); // Same for Y scale
// In accel mode, each pixel has a min/max Y value.
// m_drawlist's index is the pixel index for the X pixel axis.
int z=round(px); // Hmmm... round may screw this up.
2011-07-27 09:21:53 +00:00
if (z<minz) minz=z; // minz=First pixel
if (z>maxz) maxz=z; // maxz=Last pixel
if (minz<0) {
qDebug() << "gLineChart::Plot() minz<0 should never happen!! minz =" << minz;
minz=0;
}
if (maxz>max_drawlist_size) {
qDebug() << "gLineChart::Plot() maxz>max_drawlist_size!!!! maxz = " << maxz << " max_drawlist_size =" << max_drawlist_size;
maxz=max_drawlist_size;
}
2011-07-27 09:21:53 +00:00
// Update the Y pixel bounds.
if (py<m_drawlist[z].x()) m_drawlist[z].setX(py);
if (py>m_drawlist[z].y()) m_drawlist[z].setY(py);
if (time > maxx) {
done=true; // Let this iteration finish.. (This point will be in far clipping)
break;
}
}
// Plot compressed accelerated vertex list
2011-08-01 05:45:34 +00:00
if (maxz>width) {
//qDebug() << "gLineChart::Plot() maxz exceeded graph width" << "maxz = " << maxz << "width =" << width;
2011-08-01 05:45:34 +00:00
maxz=width;
}
float ax1,ay1;
for (int i=minz;i<maxz;i++) {
// ax1=(m_drawlist[i-1].x()+m_drawlist[i].x()+m_drawlist[i+1].x())/3.0;
// ay1=(m_drawlist[i-1].y()+m_drawlist[i].y()+m_drawlist[i+1].y())/3.0;
ax1=m_drawlist[i].x();
ay1=m_drawlist[i].y();
2011-10-01 12:54:20 +00:00
lines->add(xst+i,yst-ax1,xst+i,yst-ay1);
2011-07-27 09:21:53 +00:00
if (lines->full()) break;
2011-07-27 09:21:53 +00:00
}
} else { // Zoomed in Waveform
2011-07-30 00:36:31 +00:00
//////////////////////////////////////////////////////////////////
// Normal Waveform Plot
//////////////////////////////////////////////////////////////////
if (idx>sam) {
idx-=sam;
time=el.time(idx);
//double rate=double(sr)*double(sam);
}
2011-07-30 05:32:56 +00:00
for (int i=idx;i<siz;i+=sam) {
time+=rate;
//if (time < minx)
// continue; // Skip stuff before the start of our data window
2011-07-27 09:21:53 +00:00
data=dat[i];//el.data(i);
px=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X
py=yst-((data - ymin) * nmult); // Same for Y scale, with precomputed gain
2011-07-27 09:21:53 +00:00
if (firstpx) {
lastpx=px;
lastpy=py;
firstpx=false;
continue;
}
2011-10-01 12:54:20 +00:00
lines->add(lastpx,lastpy,px,py);
2011-07-27 09:21:53 +00:00
if (lines->full()) {
2011-07-27 09:21:53 +00:00
done=true;
break;
}
if (time > maxx) {
//done=true; // Let this iteration finish.. (This point will be in far clipping)
break;
}
lastpx=px;
lastpy=py;
2011-06-26 08:30:44 +00:00
}
}
} else {
//////////////////////////////////////////////////////////////////
// Standard events/zoomed in Plot
//////////////////////////////////////////////////////////////////
first=true;
2011-07-30 06:03:08 +00:00
double start=el.first();
for (int i=0;i<siz;i++) {
2011-07-27 09:21:53 +00:00
time=start+tim[i];
2011-07-27 09:21:53 +00:00
if (first) {
2011-08-07 02:33:11 +00:00
if (num_points>15 && (time < minx)) continue; // Skip stuff before the start of our data window
2011-07-27 09:21:53 +00:00
first=false;
if (i>0) i--; // Start with the previous sample (which will be in clipping area)
time=start+tim[i];
2011-07-27 09:21:53 +00:00
}
data=dat[i]*gain; //
data-=subtract_offset;
2011-07-27 09:21:53 +00:00
//data=el.data(i); // raw access is faster
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
px=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X
//py=yst+((data - ymin) * nmult); // Same for Y scale with precomputed gain
py=yst-((data - miny) * ymult); // Same for Y scale with precomputed gain
2011-06-26 08:30:44 +00:00
//if (px<left) px=left;
//if (px>left+width) px=left+width;
2011-07-27 09:21:53 +00:00
if (firstpx) {
firstpx=false;
} else {
2011-07-30 05:32:56 +00:00
if (square_plot) {
2011-10-01 12:54:20 +00:00
lines->add(lastpx,lastpy,px,lastpy,px,lastpy,px,py);
2011-07-27 09:21:53 +00:00
} else {
2011-10-01 12:54:20 +00:00
lines->add(lastpx,lastpy,px,py);
2011-07-27 09:21:53 +00:00
}
2011-09-01 07:12:25 +00:00
//lines->add(px,py,m_line_color);
2011-07-27 09:21:53 +00:00
if (lines->full()) {
2011-07-27 09:21:53 +00:00
done=true;
break;
}
}
lastpx=px;
lastpy=py;
//if (lastpx>start_px+width) done=true;
if (time > maxx) {
//done=true; // Let this iteration finish.. (This point will be in far clipping)
break;
}
}
2011-06-26 08:30:44 +00:00
}
if (done) break;
}
}
2011-07-27 09:21:53 +00:00
if (!total_points) { // No Data?
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
if (m_report_empty) {
QString msg="No Waveform Available";
2011-08-31 05:24:48 +00:00
int x,y;
2011-07-27 09:21:53 +00:00
GetTextExtent(msg,x,y,bigfont);
//DrawText(w,msg,left+(width/2.0)-(x/2.0),scry-w.GetBottomMargin()-height/2.0+y/2.0,0,Qt::gray,bigfont);
2011-07-27 09:21:53 +00:00
}
} else {
2011-09-01 09:03:23 +00:00
lines->scissor(left,w.flipY(top+height+2),width+1,height+1);
2011-08-31 05:24:48 +00:00
//lines->draw();
2011-06-26 08:30:44 +00:00
}
}
AHIChart::AHIChart(const QColor col)
:Layer("ZZZ"),m_color(col)
{
m_miny=m_maxy=0;
addGLBuf(lines=new GLShortBuffer(100000,GL_LINES));
lines->setColor(col);
lines->setAntiAlias(true);
lines->setSize(1.5);
}
AHIChart::~AHIChart()
{
}
void AHIChart::paint(gGraph & w,int left, int top, int width, int height)
{
if (!m_visible)
return;
if (!m_day)
return;
// Draw bounding box
GLShortBuffer *outlines=w.lines();
QColor blk=Qt::black;
outlines->add(left, top, left, top+height, blk);
outlines->add(left, top+height, left+width,top+height, blk);
outlines->add(left+width,top+height, left+width, top, blk);
outlines->add(left+width, top, left,top, blk);
width--;
height-=2;
EventDataType miny,maxy;
double minx,maxx;
miny=w.min_y, maxy=w.max_y;
maxx=w.max_x, minx=w.min_x;
// hmmm.. subtract_offset..
w.roundY(miny,maxy);
double xx=maxx-minx;
double xmult=double(width)/xx;
EventDataType yy=maxy-miny;
EventDataType ymult=EventDataType(height-3)/yy; // time to pixel conversion multiplier
bool first=true;
double px,py;
double lastpx,lastpy;
double top1=top+height;
bool done=false;
for (int i=0;i<m_time.size();i++) {
qint64 ti=m_time[i];
EventDataType v=m_data[i];
if (ti<minx) continue;
if (ti>maxx) done=true;
if (first) {
if (i>0) {
ti=m_time[i-1];
v=m_data[i-1];
i--;
}
px=left+(double(ti-minx)*xmult);
py=top1-(double(v-miny)*ymult);
first=false;
} else {
px=left+(double(ti-minx)*xmult);
py=top1-(double(v-miny)*ymult);
lines->add(px,py,lastpx,lastpy,m_color);
}
lastpx=px;
lastpy=py;
if (done) break;
}
lines->scissor(left,w.flipY(top+height+2),width+1,height+1);
}
void AHIChart::SetDay(Day *d)
{
m_day=d;
m_data.clear();
m_time.clear();
m_maxy=0;
m_miny=0;
if (!d) return;
m_miny=9999;
QVector<Session *>::iterator s;
qint64 first=d->first();
qint64 last=d->last();
qint64 f;
qint64 winsize=30000; // 30 second windows
for (qint64 ti=first;ti<last;ti+=winsize) {
f=ti-3600000L;
//if (f<first) f=first;
EventList *el[6];
EventDataType ahi=0;
int cnt=0;
bool fnd=false;
for (s=d->begin();s!=d->end();s++) {
Session *sess=*s;
if ((ti<sess->first()) || (f>sess->last())) continue;
// Drop off suddenly outside of sessions
//if (ti>sess->last()) continue;
fnd=true;
if (sess->eventlist.contains(CPAP_Obstructive))
el[0]=sess->eventlist[CPAP_Obstructive][0];
else el[0]=NULL;
if (sess->eventlist.contains(CPAP_Apnea))
el[1]=sess->eventlist[CPAP_Apnea][0];
else el[1]=NULL;
if (sess->eventlist.contains(CPAP_Hypopnea))
el[2]=sess->eventlist[CPAP_Hypopnea][0];
else el[2]=NULL;
if (sess->eventlist.contains(CPAP_ClearAirway))
el[3]=sess->eventlist[CPAP_ClearAirway][0];
else el[3]=NULL;
if (sess->eventlist.contains(CPAP_NRI))
el[4]=sess->eventlist[CPAP_NRI][0];
else el[4]=NULL;
/*if (sess->eventlist.contains(CPAP_ExP))
el[5]=sess->eventlist[CPAP_ExP][0];
else el[5]=NULL;*/
qint64 t;
for (int i=0;i<5;i++) {
if (!el[i]) continue;
for (quint32 j=0;j<el[i]->count();j++) {
t=el[i]->time(j);
if ((t>=f) && (t<ti)) {
cnt++;
}
}
}
}
if (!fnd) cnt=0;
double g=double(ti-f)/3600000.0;
if (g>0) ahi=cnt/g;
if (ahi<m_miny) m_miny=ahi;
if (ahi>m_maxy) m_maxy=ahi;
m_time.append(ti);
m_data.append(ahi);
}
m_minx=first;
m_maxx=last;
}