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-07-31 20:24:43 +00:00
|
|
|
gLineOverlayBar::gLineOverlayBar(ChannelID code,QColor col,QString label,FlagType flt)
|
2011-08-25 06:11:44 +00:00
|
|
|
:Layer(code),m_label(label),m_flt(flt)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-08-02 04:20:26 +00:00
|
|
|
m_flag_color=col;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
gLineOverlayBar::~gLineOverlayBar()
|
|
|
|
{
|
|
|
|
}
|
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
|
|
|
|
|
|
|
//int start_px=w.GetLeftMargin();
|
2011-08-25 06:11:44 +00:00
|
|
|
int start_py=topp;
|
|
|
|
//int width=scrx-(w.GetLeftMargin()+w.GetRightMargin());
|
|
|
|
//int height=scry-(w.GetTopMargin()+w.GetBottomMargin());
|
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-07-27 09:21:53 +00:00
|
|
|
float x,y;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
// Crop to inside the margins.
|
2011-08-25 06:11:44 +00:00
|
|
|
// glScissor(left,topp,width,height);
|
|
|
|
// glEnable(GL_SCISSOR_TEST);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-06-28 01:51:21 +00:00
|
|
|
qint32 vertcnt=0;
|
|
|
|
GLshort * vertarray=vertex_array[0];
|
|
|
|
qint32 pointcnt=0;
|
|
|
|
GLshort * pointarray=vertex_array[1];
|
|
|
|
qint32 quadcnt=0;
|
|
|
|
GLshort * quadarray=vertex_array[2];
|
2011-07-24 16:34:53 +00:00
|
|
|
if (!vertarray || !quadarray || !pointarray) {
|
|
|
|
qWarning() << "VertArray/quadarray/pointarray==NULL";
|
|
|
|
return;
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
float bottom=start_py+height-25, top=start_py+25;
|
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;
|
|
|
|
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-07-27 09:21:53 +00:00
|
|
|
for (int i=0;i<el.count();i++) {
|
|
|
|
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-07-27 15:28:46 +00:00
|
|
|
if (m_flt==FT_Span) {
|
2011-08-25 06:11:44 +00:00
|
|
|
//x2=w.x2p(Y);
|
|
|
|
x2=double(width)/double(xx)*double(X-w.min_x)+left;
|
2011-06-26 08:30:44 +00:00
|
|
|
//double w1=x2-x1;
|
|
|
|
quadarray[quadcnt++]=x1;
|
|
|
|
quadarray[quadcnt++]=start_py;
|
|
|
|
quadarray[quadcnt++]=x1;
|
|
|
|
quadarray[quadcnt++]=start_py+height;
|
|
|
|
quadarray[quadcnt++]=x2;
|
|
|
|
quadarray[quadcnt++]=start_py+height;
|
|
|
|
quadarray[quadcnt++]=x2;
|
|
|
|
quadarray[quadcnt++]=start_py;
|
2011-08-02 04:51:49 +00:00
|
|
|
if (quadcnt>=maxverts) { verts_exceeded=true; break; }
|
2011-07-27 15:28:46 +00:00
|
|
|
} else if (m_flt==FT_Dot) {
|
2011-07-27 09:21:53 +00:00
|
|
|
//if (pref["AlwaysShowOverlayBars"].toBool()) {
|
|
|
|
|
|
|
|
if (pref["AlwaysShowOverlayBars"].toBool() || (xx<3600000.0)) {
|
|
|
|
// show the fat dots in the middle
|
|
|
|
pointarray[pointcnt++]=x1;
|
2011-08-25 06:11:44 +00:00
|
|
|
pointarray[pointcnt++]=double(height)/double(yy)*double(-20-w.min_y)+topp;
|
2011-08-02 04:51:49 +00:00
|
|
|
if (pointcnt>=maxverts) { verts_exceeded=true; break; }
|
2011-07-27 09:21:53 +00:00
|
|
|
} else {
|
|
|
|
// thin lines down the bottom
|
|
|
|
vertarray[vertcnt++]=x1;
|
|
|
|
vertarray[vertcnt++]=start_py+1;
|
|
|
|
vertarray[vertcnt++]=x1;
|
|
|
|
vertarray[vertcnt++]=start_py+1+12;
|
2011-08-02 04:51:49 +00:00
|
|
|
if (vertcnt>=maxverts) { verts_exceeded=true; break; }
|
|
|
|
|
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;
|
|
|
|
if (pref["AlwaysShowOverlayBars"].toBool() || (xx<3600000)) {
|
|
|
|
z=top;
|
|
|
|
|
|
|
|
pointarray[pointcnt++]=x1;
|
|
|
|
pointarray[pointcnt++]=top; //z+2;
|
|
|
|
vertarray[vertcnt++]=x1;
|
|
|
|
vertarray[vertcnt++]=top;
|
|
|
|
vertarray[vertcnt++]=x1;
|
|
|
|
vertarray[vertcnt++]=bottom;
|
2011-08-02 04:51:49 +00:00
|
|
|
if (pointcnt>=maxverts) { verts_exceeded=true; break; }
|
2011-07-27 09:21:53 +00:00
|
|
|
} else {
|
|
|
|
vertarray[vertcnt++]=x1;
|
|
|
|
vertarray[vertcnt++]=z;
|
|
|
|
vertarray[vertcnt++]=x1;
|
|
|
|
vertarray[vertcnt++]=z-12;
|
|
|
|
}
|
2011-08-02 04:51:49 +00:00
|
|
|
if (vertcnt>=maxverts) { verts_exceeded=true; break; }
|
2011-07-27 09:21:53 +00:00
|
|
|
if (xx<(1800000)) {
|
2011-07-27 15:28:46 +00:00
|
|
|
GetTextExtent(m_label,x,y);
|
2011-08-25 06:11:44 +00:00
|
|
|
//DrawText(w,m_label,x1-(x/2),scry-(start_py+height-30+y));
|
|
|
|
w.renderText(m_label,x1-(x/2),top-y+3);
|
2011-07-27 09:21:53 +00:00
|
|
|
//w.renderText(x1-(x/2),scry-(start_py+height-30+y),label);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
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-07-19 15:31:51 +00:00
|
|
|
|
2011-07-30 02:08:19 +00:00
|
|
|
bool antialias=pref["UseAntiAliasing"].toBool();
|
|
|
|
if (antialias) {
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); //_MINUS_SRC_ALPHA);
|
|
|
|
glEnable(GL_LINE_SMOOTH);
|
|
|
|
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
|
|
|
|
glLineWidth (1.5);
|
|
|
|
} else glLineWidth (1);
|
|
|
|
|
2011-08-02 01:36:03 +00:00
|
|
|
glEnableClientState(GL_VERTEX_ARRAY);
|
2011-08-02 04:20:26 +00:00
|
|
|
w.qglColor(m_flag_color);
|
2011-06-26 08:30:44 +00:00
|
|
|
if (quadcnt>0) {
|
|
|
|
glVertexPointer(2, GL_SHORT, 0, quadarray);
|
|
|
|
glDrawArrays(GL_QUADS, 0, quadcnt>>1);
|
|
|
|
}
|
|
|
|
if (vertcnt>0) {
|
|
|
|
glVertexPointer(2, GL_SHORT, 0, vertarray);
|
|
|
|
glDrawArrays(GL_LINES, 0, vertcnt>>1);
|
|
|
|
}
|
|
|
|
if (pointcnt>0) {
|
|
|
|
glPointSize(4);
|
|
|
|
glVertexPointer(2, GL_SHORT, 0, pointarray);
|
|
|
|
glDrawArrays(GL_POINTS, 0, pointcnt>>1);
|
|
|
|
}
|
2011-08-02 01:36:03 +00:00
|
|
|
glDisableClientState(GL_VERTEX_ARRAY);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-30 02:08:19 +00:00
|
|
|
if (antialias) {
|
|
|
|
glDisable(GL_LINE_SMOOTH);
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
2011-08-25 06:11:44 +00:00
|
|
|
//glDisable(GL_SCISSOR_TEST);
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|