diff --git a/Graphs/gBarChart.cpp b/Graphs/gBarChart.cpp index 6103d565..4eb91e7f 100644 --- a/Graphs/gBarChart.cpp +++ b/Graphs/gBarChart.cpp @@ -12,40 +12,149 @@ gBarChart::gBarChart(ChannelID code,QColor color,Qt::Orientation o) :Layer(code),m_orientation(o) { //Xaxis=new gXAxis(); - addGLBuf(quads=new GLBuffer(color,20,GL_QUADS)); + addGLBuf(quads=new GLBuffer(color,20000,GL_QUADS)); //addGLBuf(lines=new GLBuffer(col,20,GL_LINES)); quads->forceAntiAlias(true); //lines->setAntiAlias(true); //lines->setSize(2); - + m_empty=true; } gBarChart::~gBarChart() { //delete Xaxis; } +void gBarChart::SetDay(Day * day) +{ + + if (!m_profile) { + qWarning() << "Forgot to set profile for gBarChart dummy!"; + m_day=NULL; + return; + } + Layer::SetDay(day); + //m_empty=true; + // if (!day) return; + m_empty=false; + /*for (int i=0;icount(m_codes[i])>0) { + m_empty=false; + break; + } + } */ + + m_values.clear(); + m_miny=9999999; + m_maxy=-9999999; + + int dn; + EventDataType tmp,total; + ChannelID code; + + for (QMap >::iterator d=m_profile->daylist.begin();d!=m_profile->daylist.end();d++) { + dn=QDateTime(d.key(),QTime(0,0,0)).toTime_t()/86400; + + total=0; + for (int j=0;jchannelExists(code)) { // too many lookups happening here.. stop the crap.. + tmp=day->count(code)/day->hours(); + if (tmp>0) { + total+=tmp; + m_values[dn][code]=tmp; + break; + } + } + } + } + m_values[dn][EmptyChannel]=total; + if (totalm_maxy) m_maxy=total; + } + m_fday=QDateTime(m_profile->FirstDay(),QTime(0,0,0)).toTime_t()/86400; + m_minx=qint64(QDateTime(m_profile->FirstDay(),QTime(0,0,0)).toTime_t())*1000L; + m_maxx=qint64(QDateTime(m_profile->LastDay(),QTime(23,59,59)).toTime_t())*1000L; + int i=0; + + //set miny & maxy here.. how? +} void gBarChart::paint(gGraph & w,int left, int top, int width, int height) { if (!m_visible) return; + //if (!m_day) return; + + GLBuffer *lines=w.lines(); + QColor blk=Qt::black; + lines->add(left, top, left, top+height, blk); + lines->add(left, top+height, left+width,top+height, blk); + lines->add(left+width,top+height, left+width, top, blk); + lines->add(left+width, top, left, top, blk); qint64 minx=w.min_x, maxx=w.max_x; + //qint64 minx=m_minx, maxx=m_maxx; qint64 xx=maxx - minx; - qint32 days=xx/86400000L; + int days=xx/86400000L; - float barw=float(width)/float(days); - - qint64 t2,ts; - int day; - for (QMap >::iterator d=m_profile->daylist.begin();d!=m_profile->daylist.end();d++) { - t2=QDateTime(d.key(),QTime(0,0,0)).toTime_t(); - ts=t2*1000L; + /*int days=0; + for (QMap >::iterator d=m_values.begin();d!=m_values.end();d++) { + qint64 ts=qint64(d.key())*86400000L; if (tsmaxx) continue; // break; // out of order if I end up using a hash instead.?? - day=t2/86400; - float pos=float(day)*barw; + days++; + }*/ + //int days=m_values.size(); + EventDataType yy=m_maxy-m_miny; + EventDataType ymult=float(height)/yy; + float barw=(float(width)/float(days)); + qint64 ts; + + float px=left; + float py; + EventDataType total; + + int daynum=0; + float h,tmp; + + for (qint64 Q=minx;Q >::iterator d=m_values.find(zd); + if (d!=m_values.end()) { + ts=qint64(d.key())*86400000L; + if (tsmaxx) continue; // break; // out of order if I end up using a hash instead.?? + ChannelID code; + total=d.value()[EmptyChannel]; + py=top+height; + for (int j=0;j::iterator g=d.value().find(code); + if (g!=d.value().end()) { + if (code==EmptyChannel) continue; + //look up it's color key + QColor col=m_colors[j]; + QColor col2=Qt::white; + + tmp=(g.value()/total); + h=tmp*(total*ymult); // height of chunk + quads->add(px,py,col); + quads->add(px,py-h,col); + quads->add(px+barw,py-h,col2); + quads->add(px+barw,py,col2); + lines->add(px,py,px,py-h,blk); + lines->add(px,py-h,px+barw,py-h,blk); + lines->add(px,py,px+barw,py,blk); + lines->add(px+barw,py,px+barw,py-h,blk); + py-=h; + } + } + } + px+=barw; + daynum++; } diff --git a/Graphs/gBarChart.h b/Graphs/gBarChart.h index c249f885..e9633316 100644 --- a/Graphs/gBarChart.h +++ b/Graphs/gBarChart.h @@ -14,12 +14,14 @@ class gBarChart:public Layer { public: - gBarChart(ChannelID code=EmptyChannel,QColor col=QColor("blue"),Qt::Orientation o=Qt::Horizontal); + gBarChart(ChannelID code=EmptyChannel,QColor color=QColor("blue"),Qt::Orientation o=Qt::Horizontal); virtual ~gBarChart(); - void setProfile(Profile *profile); + void setProfile(Profile *profile) { m_profile=profile; } virtual void paint(gGraph & w,int left, int top, int width, int height); - + virtual void SetDay(Day * day); + virtual bool isEmpty() { return m_empty; } + void addSlice(ChannelID code, QColor color) { m_codes.push_back(code); m_colors.push_back(color); } protected: Qt::Orientation m_orientation; @@ -30,10 +32,14 @@ class gBarChart:public Layer //virtual const wxString & FormatX(double v) { static wxString t; t=wxString::Format(wxT("%.1f"),v); return t; }; virtual const QString & FormatY(double v) { static QString t; t.sprintf("%.1f",v); return t; } - gXAxis *Xaxis; - QVector color; + //gXAxis *Xaxis; + QVector m_colors; + QVector m_codes; + QHash > m_values; Profile * m_profile; GLBuffer *quads; + bool m_empty; + int m_fday; }; #endif // GBARCHART_H diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index ea5cdf66..3d82559c 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -54,9 +54,9 @@ GLBuffer::GLBuffer(QColor color,int max,int type) m_antialias=true; m_forceantialias=false; buffer=new GLshort [max+8]; - if (m_type==GL_LINES) { - colors=new GLubyte[max*4+(8*4)]; - } else colors=NULL; + //if (m_type==GL_LINES) { + colors=new GLubyte[max*4+(8*4)]; + //} else colors=NULL; m_cnt=0; m_colcnt=0; m_size=1; @@ -1288,7 +1288,7 @@ void gGraphView::paintGL() threaded=true; } else threaded=false; - // threaded=true; + threaded=false; for (int i=0;iisEmpty() || !m_graphs[i]->visible()) continue; numgraphs++; diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index b34e1752..38c72ee5 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -8,7 +8,7 @@ #include #include "gXAxis.h" -const int divisors[]={86400000,2880000,14400000,7200000,3600000,2700000,1800000,1200000,900000,600000,300000,120000,60000,45000,30000,20000,15000,10000,5000,2000,1000,100,50,10}; +const int divisors[]={604800000,259200000, 172800000, 86400000,2880000,14400000,7200000,3600000,2700000,1800000,1200000,900000,600000,300000,120000,60000,45000,30000,20000,15000,10000,5000,2000,1000,100,50,10}; const int divcnt=sizeof(divisors)/sizeof(int); gXAxis::gXAxis(QColor col,bool fadeout) @@ -60,24 +60,30 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) QString fd,tmpstr; int divmax,dividx; int fitmode; - if (xx>86400000L) { // Day - fd="MMM 00:00"; + /*if (xx>2*86400000L) { // Day dividx=0; divmax=10; + //fitmode=-1; + fd="MMM dd"; + } else */ + if (xx>86400000L) { // Day + fd="MMM 00"; + dividx=0; + divmax=12; fitmode=0; } else if (xx>600000) { // Minutes fd="00:00"; - dividx=0; - divmax=18; + dividx=3; + divmax=21; fitmode=1; } else if (xx>5000) { // Seconds fd="00:00:00"; - dividx=9; - divmax=20; + dividx=10; + divmax=21; fitmode=2; } else { // Microseconds fd="00:00:00:000"; - dividx=19; + dividx=22; divmax=divcnt; fitmode=3; } @@ -146,9 +152,13 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) int s=(j/1000L) % 60L; if (fitmode==0) { - static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"}; - int d=(j/86400000) % 7; - tmpstr=QString("%1 %2:%3").arg(dow[d]).arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')); + int d=(j/1000); + QDateTime dt=QDateTime::fromTime_t(d); + tmpstr=dt.toString("MMM dd"); + //} else if (fitmode==0) { +// static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"}; +// int d=(j/86400000) % 7; +// tmpstr=QString("%1 %2:%3").arg(dow[d]).arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')); } else if (fitmode==1) { // minute tmpstr=QString("%1:%2").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')); } else if (fitmode==2) { // second diff --git a/SleepLib/day.cpp b/SleepLib/day.cpp index 4fc6a843..fcd0170f 100644 --- a/SleepLib/day.cpp +++ b/SleepLib/day.cpp @@ -1,8 +1,8 @@ -/******************************************************************** +/* SleepLib Day Class Implementation Copyright (c)2011 Mark Watkins License: GPL -*********************************************************************/ +*/ #include "day.h" diff --git a/SleepLib/loader_plugins/resmed_loader.cpp b/SleepLib/loader_plugins/resmed_loader.cpp index cc5de69e..83d71864 100644 --- a/SleepLib/loader_plugins/resmed_loader.cpp +++ b/SleepLib/loader_plugins/resmed_loader.cpp @@ -392,6 +392,7 @@ int ResmedLoader::Open(QString & path,Profile *profile) }; for (unsigned i=0;ieventlist.contains(a[i])) { + sess->count(a[i]); sess->min(a[i]); sess->max(a[i]); sess->avg(a[i]); @@ -405,6 +406,7 @@ int ResmedLoader::Open(QString & path,Profile *profile) }; for (unsigned i=0;ieventlist.contains(b[i])) { + sess->count(a[i]); sess->min(b[i]); sess->max(b[i]); sess->avg(b[i]); diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index f83c3114..ecafb4f4 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -530,9 +530,15 @@ qint64 Session::last(ChannelID id) } bool Session::channelExists(ChannelID id) { - QHash >::iterator j=eventlist.find(id); - if (j==eventlist.end()) - return false; + if (s_events_loaded) { + QHash >::iterator j=eventlist.find(id); + if (j==eventlist.end()) // eventlist not loaded. + return false; + } else { + QHash::iterator q=m_cnt.find(id); + if (q==m_cnt.end()) + return false; + } return true; } diff --git a/daily.cpp b/daily.cpp index c0fca2a2..a1881df7 100644 --- a/daily.cpp +++ b/daily.cpp @@ -25,7 +25,6 @@ #include "Graphs/gFooBar.h" #include "Graphs/gXAxis.h" #include "Graphs/gYAxis.h" -#include "Graphs/gBarChart.h" #include "Graphs/gSegmentChart.h" #include "Graphs/gStatsLine.h" @@ -85,6 +84,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) SF->AddLayer(AddCPAP(seg),LayerRight,100); */ + BC=new gGraph(GraphView,"AHI Chart",default_height,2); FRW=new gGraph(GraphView,"Flow Rate",default_height); MP=new gGraph(GraphView,"Mask Pressure",default_height); PRD=new gGraph(GraphView,"Pressure",default_height); @@ -105,6 +105,16 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) SPO2=new gGraph(GraphView,"SPO2",default_height,1); PLETHY=new gGraph(GraphView,"Plethy",default_height,1); + bc=new gBarChart(); + bc->setProfile(profile); + bc->addSlice(CPAP_Hypopnea,QColor("blue")); + bc->addSlice(CPAP_Obstructive,QColor("#40c0ff")); + bc->addSlice(CPAP_ClearAirway,QColor("purple")); + BC->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); + BC->AddLayer(new gXAxis(),LayerBottom,0,gXAxis::Margin); + BC->AddLayer(bc); + BC->AddLayer(new gXGrid()); + gFlagsGroup *fg=new gFlagsGroup(); fg->AddLayer((new gFlagsLine(CPAP_CSR,QColor("light green"),"CSR",false,FT_Span))); @@ -757,6 +767,10 @@ void Daily::Load(QDate date) UpdateCPAPGraphs(cpap); UpdateEventsTree(ui->treeWidget,cpap); + bc->SetDay(NULL); + BC->MinX(); + BC->MaxX(); + GraphView->ResetBounds(); //GraphView->ResetBounds(1); diff --git a/daily.h b/daily.h index e64c523c..9c846468 100644 --- a/daily.h +++ b/daily.h @@ -16,16 +16,14 @@ #include #include #include -#include +#include "Graphs/gBarChart.h" #include -//#include #include "mainwindow.h" #include "Graphs/gGraphView.h" -//#include "Graphs/gSplitter.h" #include "Graphs/gLineChart.h" -//#include "Graphs/gFlagsLine.h" + namespace Ui { class Daily; } @@ -70,8 +68,9 @@ private: gGraph *PRD,*FRW,*GAHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP,*PULSE,*SPO2, *SNORE,*RR,*MP,*MV,*TV,*FLG,*PTB,*OF,*INTPULSE,*INTSPO2, *THPR, - *PLETHY,*TI,*TE, *RE, *IE; + *PLETHY,*TI,*TE, *RE, *IE, *BC; + gBarChart *bc; QList OXIData; QList CPAPData; //QVector Graphs; @@ -96,6 +95,7 @@ private: gGraphView *GraphView; MyScrollBar *scrollbar; QHBoxLayout *layout; + }; #endif // DAILY_H diff --git a/mainwindow.cpp b/mainwindow.cpp index 2231da46..ac1439a9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -118,16 +118,6 @@ MainWindow::MainWindow(QWidget *parent) : if (!pref.Exists("AlwaysShowOverlayBars")) pref["AlwaysShowOverlayBars"]=true; ui->actionOverlay_Bars->setChecked(pref["AlwaysShowOverlayBars"].toBool()); - daily=new Daily(ui->tabWidget,NULL,this); - ui->tabWidget->insertTab(1,daily,tr("Daily")); - - //overview=new Overview(ui->tabWidget,daily->SharedWidget()); - //ui->tabWidget->insertTab(2,overview,tr("Overview")); - //oximetry=NULL; - //overview=NULL; - oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget()); - ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); - ui->tabWidget->setCurrentWidget(ui->welcome); } @@ -162,6 +152,16 @@ void MainWindow::Startup() profile=Profiles::Get(pref["Profile"].toString()); profile->LoadMachineData(); + daily=new Daily(ui->tabWidget,NULL,this); + ui->tabWidget->insertTab(1,daily,tr("Daily")); + + //overview=new Overview(ui->tabWidget,daily->SharedWidget()); + //ui->tabWidget->insertTab(2,overview,tr("Overview")); + //oximetry=NULL; + //overview=NULL; + oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget()); + ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); + if (daily) daily->ReloadGraphs(); /*if (overview) {