2011-08-25 06:11:44 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gLineOverlayBar Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-25 06:11:44 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
2011-07-18 03:36:26 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "gLineOverlay.h"
|
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
gLineOverlayBar::gLineOverlayBar(ChannelID code,QColor color,QString label,FlagType flt)
|
|
|
|
:Layer(code),m_flag_color(color),m_label(label),m_flt(flt)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-11-28 13:16:50 +00:00
|
|
|
addGLBuf(points=new GLShortBuffer(2048,GL_POINTS));
|
2011-08-30 17:22:54 +00:00
|
|
|
points->setSize(4);
|
2011-10-01 12:54:20 +00:00
|
|
|
points->setColor(m_flag_color);
|
2011-09-28 11:46:32 +00:00
|
|
|
addGLBuf(quads=new GLShortBuffer(2048,GL_QUADS));
|
2011-09-01 07:12:25 +00:00
|
|
|
//addGLBuf(lines=new GLBuffer(color,1024,GL_LINES));
|
2011-08-30 17:22:54 +00:00
|
|
|
points->setAntiAlias(true);
|
|
|
|
quads->setAntiAlias(true);
|
2011-10-01 12:54:20 +00:00
|
|
|
quads->setColor(m_flag_color);
|
2011-09-01 07:12:25 +00:00
|
|
|
//lines->setAntiAlias(true);
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
gLineOverlayBar::~gLineOverlayBar()
|
|
|
|
{
|
2011-09-01 07:12:25 +00:00
|
|
|
//delete lines;
|
2011-09-21 14:10:10 +00:00
|
|
|
//delete quads;
|
|
|
|
//delete points;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
void gLineOverlayBar::paint(gGraph & w, int left, int topp, 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) return;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-01 07:12:25 +00:00
|
|
|
lines=w.lines();
|
2011-08-25 06:11:44 +00:00
|
|
|
int start_py=topp;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
double xx=w.max_x-w.min_x;
|
2011-08-25 06:11:44 +00:00
|
|
|
double yy=w.max_y-w.min_y;
|
2011-06-26 08:30:44 +00:00
|
|
|
if (xx<=0) return;
|
|
|
|
|
|
|
|
float x1,x2;
|
|
|
|
|
2011-08-31 05:24:48 +00:00
|
|
|
int x,y;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-07 12:23:19 +00:00
|
|
|
float bottom=start_py+height-25*w.printScaleY(), top=start_py+25*w.printScaleY();
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2011-08-01 04:34:55 +00:00
|
|
|
double X;
|
|
|
|
double Y;
|
2011-08-02 04:51:49 +00:00
|
|
|
|
|
|
|
bool verts_exceeded=false;
|
2011-07-31 20:24:43 +00:00
|
|
|
QHash<ChannelID,QVector<EventList *> >::iterator cei;
|
2011-08-25 15:58:52 +00:00
|
|
|
|
2011-11-12 13:58:58 +00:00
|
|
|
m_count=0;
|
2011-09-23 05:22:52 +00:00
|
|
|
m_flag_color=schema::channel[m_code].defaultColor();
|
2011-11-12 13:58:58 +00:00
|
|
|
|
2011-12-06 14:39:14 +00:00
|
|
|
if (m_flt==FT_Span) {
|
|
|
|
m_flag_color.setAlpha(128);
|
|
|
|
}
|
2011-07-31 20:24:43 +00:00
|
|
|
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) {
|
|
|
|
cei=(*s)->eventlist.find(m_code);
|
|
|
|
if (cei==(*s)->eventlist.end()) continue;
|
|
|
|
if (cei.value().size()==0) continue;
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
EventList & el=*cei.value()[0];
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-11-24 12:47:25 +00:00
|
|
|
for (quint32 i=0;i<el.count();i++) {
|
2011-07-27 09:21:53 +00:00
|
|
|
X=el.time(i);
|
2011-07-27 15:28:46 +00:00
|
|
|
if (m_flt==FT_Span) {
|
2011-07-27 09:21:53 +00:00
|
|
|
Y=X-(qint64(el.raw(i))*1000.0L); // duration
|
|
|
|
|
|
|
|
if (X < w.min_x) continue;
|
|
|
|
if (Y > w.max_x) break;
|
|
|
|
} else {
|
|
|
|
if (X < w.min_x) continue;
|
|
|
|
if (X > w.max_x) break;
|
|
|
|
}
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
//x1=w.x2p(X);
|
|
|
|
x1=double(width)/double(xx)*double(X-w.min_x)+left;
|
2011-11-12 13:58:58 +00:00
|
|
|
m_count++;
|
2011-07-27 15:28:46 +00:00
|
|
|
if (m_flt==FT_Span) {
|
2011-08-25 06:11:44 +00:00
|
|
|
//x2=w.x2p(Y);
|
2011-08-25 15:58:52 +00:00
|
|
|
x2=double(width)/double(xx)*double(Y-w.min_x)+left;
|
2011-12-04 14:49:33 +00:00
|
|
|
if (int(x1)==int(x2)) x2+=1;
|
2011-08-25 15:58:52 +00:00
|
|
|
if (x2<left) x2=left;
|
|
|
|
if (x1>width+left) x1=width+left;
|
2011-06-26 08:30:44 +00:00
|
|
|
//double w1=x2-x1;
|
2011-12-06 14:39:14 +00:00
|
|
|
quads->add(x1,start_py,x2,start_py,x2,start_py+height,x1,start_py+height,m_flag_color);
|
2011-08-30 17:22:54 +00:00
|
|
|
if (quads->full()) { verts_exceeded=true; break; }
|
2011-07-27 15:28:46 +00:00
|
|
|
} else if (m_flt==FT_Dot) {
|
2011-10-05 07:41:56 +00:00
|
|
|
if ((PROFILE["AlwaysShowOverlayBars"].toInt()==0) || (xx<3600000)) {
|
2011-07-27 09:21:53 +00:00
|
|
|
// show the fat dots in the middle
|
2011-10-01 12:54:20 +00:00
|
|
|
points->add(x1,double(height)/double(yy)*double(-20-w.min_y)+topp);
|
2011-08-30 17:22:54 +00:00
|
|
|
if (points->full()) { verts_exceeded=true; break; }
|
2011-07-27 09:21:53 +00:00
|
|
|
} else {
|
|
|
|
// thin lines down the bottom
|
2011-09-05 02:30:10 +00:00
|
|
|
lines->add(x1,start_py+1,x1,start_py+1+12,m_flag_color);
|
2011-08-30 17:22:54 +00:00
|
|
|
if (lines->full()) { verts_exceeded=true; break; }
|
2011-08-02 04:51:49 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2011-07-27 15:28:46 +00:00
|
|
|
} else if (m_flt==FT_Bar) {
|
2011-07-27 09:21:53 +00:00
|
|
|
int z=start_py+height;
|
2011-10-05 07:41:56 +00:00
|
|
|
if ((PROFILE["AlwaysShowOverlayBars"].toInt()==0) || (xx<3600000)) {
|
2011-07-27 09:21:53 +00:00
|
|
|
z=top;
|
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
points->add(x1,top);
|
2011-09-05 02:30:10 +00:00
|
|
|
lines->add(x1,top,x1,bottom,m_flag_color);
|
2011-08-30 17:22:54 +00:00
|
|
|
if (points->full()) { verts_exceeded=true; break; }
|
2011-07-27 09:21:53 +00:00
|
|
|
} else {
|
2011-09-05 02:30:10 +00:00
|
|
|
lines->add(x1,z,x1,z-12,m_flag_color);
|
2011-07-27 09:21:53 +00:00
|
|
|
}
|
2011-08-30 17:22:54 +00:00
|
|
|
if (lines->full()) { verts_exceeded=true; break; }
|
2011-07-27 09:21:53 +00:00
|
|
|
if (xx<(1800000)) {
|
2011-12-14 04:54:17 +00:00
|
|
|
GetTextExtent(m_label,x,y);
|
|
|
|
w.renderText(m_label,x1-(x/2),top-y+(3*w.printScaleY()));
|
|
|
|
|
|
|
|
QString a=QString::number(int(el.data(i)));
|
|
|
|
GetTextExtent(a,x,y);
|
|
|
|
w.renderText(a,x1-(x/2),bottom+y+(3*w.printScaleY()));
|
2011-07-27 09:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2011-08-02 04:51:49 +00:00
|
|
|
if (verts_exceeded) break;
|
|
|
|
}
|
|
|
|
if (verts_exceeded) {
|
|
|
|
qWarning() << "exceeded maxverts in gLineOverlay::Plot()";
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-12 13:58:58 +00:00
|
|
|
gLineOverlaySummary::gLineOverlaySummary(QString text, int x, int y)
|
2011-11-12 16:25:46 +00:00
|
|
|
:Layer(CPAP_Obstructive),m_text(text),m_x(x),m_y(y) // The Layer code is a dummy here.
|
2011-11-12 13:58:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
gLineOverlaySummary::~gLineOverlaySummary()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gLineOverlaySummary::paint(gGraph & w,int left, int top, int width, int height)
|
|
|
|
{
|
2011-11-12 16:25:46 +00:00
|
|
|
if (!m_visible) return;
|
|
|
|
if (!m_day) return;
|
|
|
|
|
|
|
|
|
2011-11-12 13:58:58 +00:00
|
|
|
Q_UNUSED(width);
|
|
|
|
Q_UNUSED(height);
|
|
|
|
float cnt=0;
|
|
|
|
for (int i=0;i<m_overlays.size();i++) {
|
|
|
|
cnt+=m_overlays[i]->count();
|
|
|
|
}
|
2011-11-12 16:25:46 +00:00
|
|
|
|
|
|
|
double val,first,last;
|
|
|
|
double time=0;
|
|
|
|
|
|
|
|
// Calculate the session time.
|
|
|
|
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) {
|
|
|
|
first=(*s)->first();
|
|
|
|
last=(*s)->last();
|
|
|
|
if (last < w.min_x) continue;
|
|
|
|
if (first > w.max_x) continue;
|
|
|
|
|
|
|
|
if (first < w.min_x)
|
|
|
|
first=w.min_x;
|
|
|
|
if (last > w.max_x)
|
|
|
|
last=w.max_x;
|
|
|
|
|
|
|
|
time+=last-first;
|
|
|
|
}
|
|
|
|
|
|
|
|
val=0;
|
|
|
|
|
2011-11-12 16:40:12 +00:00
|
|
|
time/=1000;
|
|
|
|
int h=time/3600;
|
|
|
|
int m=int(time/60) % 60;
|
|
|
|
int s=int(time) % 60;
|
|
|
|
|
|
|
|
|
|
|
|
time/=3600;
|
2011-11-12 13:58:58 +00:00
|
|
|
|
|
|
|
//if (time<1) time=1;
|
|
|
|
|
2011-11-12 16:25:46 +00:00
|
|
|
if (time>0) val=cnt/time;
|
2011-11-12 16:40:12 +00:00
|
|
|
|
|
|
|
|
2011-11-15 02:34:52 +00:00
|
|
|
QString a="Event Count="+QString::number(cnt)+" Selection Time="+QString().sprintf("%02i:%02i:%02i",h,m,s)+" "+m_text+"="+QString::number(val,'f',2);
|
2011-11-12 13:58:58 +00:00
|
|
|
w.renderText(a,left+m_x,top+m_y);
|
|
|
|
}
|