OSCAR-code/Graphs/gFlagsLine.cpp

169 lines
4.4 KiB
C++
Raw Normal View History

2011-08-31 05:24:48 +00:00
/*
2011-06-26 08:30:44 +00:00
gFlagsLine Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
2011-08-31 05:24:48 +00:00
*/
2011-06-26 08:30:44 +00:00
#include <cmath>
#include <QVector>
2011-06-26 08:30:44 +00:00
#include "SleepLib/profiles.h"
#include "gFlagsLine.h"
#include "gYAxis.h"
2011-06-26 08:30:44 +00:00
gFlagsGroup::gFlagsGroup()
{
//static QColor col=Qt::black;
addGLBuf(quads=new GLShortBuffer(512,GL_QUADS));
addGLBuf(lines=new GLShortBuffer(20,GL_LINE_LOOP));
quads->setAntiAlias(true);
lines->setAntiAlias(false);
2011-12-05 10:50:58 +00:00
m_barh=0;
m_empty=true;
}
gFlagsGroup::~gFlagsGroup()
{
}
2011-07-27 09:21:53 +00:00
qint64 gFlagsGroup::Minx()
{
if (m_day) {
return m_day->first();
}
return 0;
}
qint64 gFlagsGroup::Maxx()
{
if (m_day) {
return m_day->last();
}
return 0;
}
2011-09-01 03:37:25 +00:00
void gFlagsGroup::SetDay(Day * d)
{
2011-09-01 03:37:25 +00:00
LayerGroup::SetDay(d);
lvisible.clear();
int cnt=0;
for (int i=0;i<layers.size();i++) {
2011-07-20 16:01:31 +00:00
gFlagsLine *f=dynamic_cast<gFlagsLine *>(layers[i]);
if (!f) continue;
bool e=f->isEmpty();
if (!e || f->isAlwaysVisible()) {
2011-07-27 09:21:53 +00:00
lvisible.push_back(f);
if (!e) cnt++;
}
}
if (cnt==0)
m_empty=true;
else m_empty=false;
//if (lvisible.size()==0) m_empty=false;
2011-12-05 10:50:58 +00:00
m_barh=0;
2011-09-01 03:37:25 +00:00
}
void gFlagsGroup::paint(gGraph &w, int left, int top, int width, int height)
{
if (!m_visible) return;
if (!m_day) return;
2011-07-27 09:21:53 +00:00
int vis=lvisible.size();
2011-12-05 10:50:58 +00:00
m_barh=float(height)/float(vis);
float linetop=top;
static QColor col1=QColor(0xd0,0xff,0xd0,0xff);
static QColor col2=QColor(0xff,0xff,0xff,0xff);
QColor * barcol;
for (int i=0;i<lvisible.size();i++) {
// Alternating box color
if (i & 1) barcol=&col1; else barcol=&col2;
2011-12-05 10:50:58 +00:00
quads->add(left,linetop,left,linetop+m_barh,left+width-1,linetop+m_barh,left+width-1,linetop,*barcol);
// Paint the actual flags
2011-12-05 10:50:58 +00:00
lvisible[i]->paint(w,left,linetop,width,m_barh);
linetop+=m_barh;
}
GLShortBuffer *outlines=w.lines();
2011-09-01 07:12:25 +00:00
QColor blk=Qt::black;
2011-12-05 10:50:58 +00:00
outlines->add(left-1, top, left-1, top+height,left-1, top+height, left+width,top+height, blk);
outlines->add(left+width,top+height, left+width, top, left+width, top, left-1, top, blk);
2011-09-01 07:12:25 +00:00
//lines->add(left-1, top, left-1, top+height);
//lines->add(left+width, top+height, left+width, top);
}
gFlagsLine::gFlagsLine(ChannelID code,QColor flag_color,QString label,bool always_visible,FlagType flt)
:Layer(code),m_label(label),m_always_visible(always_visible),m_flt(flt),m_flag_color(flag_color)
2011-06-26 08:30:44 +00:00
{
addGLBuf(quads=new GLShortBuffer(2048,GL_QUADS));
2011-09-01 07:12:25 +00:00
//addGLBuf(lines=new GLBuffer(flag_color,1024,GL_LINES));
quads->setAntiAlias(true);
2011-09-01 07:12:25 +00:00
//lines->setAntiAlias(true);
//GetTextExtent(m_label,m_lx,m_ly);
2011-09-01 03:37:25 +00:00
//m_static.setText(m_label);;
2011-06-26 08:30:44 +00:00
}
gFlagsLine::~gFlagsLine()
{
2011-09-01 07:12:25 +00:00
//delete lines;
2011-09-21 14:10:10 +00:00
//delete quads;
2011-06-26 08:30:44 +00:00
}
void gFlagsLine::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) return;
2011-09-01 07:12:25 +00:00
lines=w.lines();
2011-06-26 08:30:44 +00:00
double minx;
double maxx;
if (w.blockZoom()) {
2011-06-26 08:30:44 +00:00
minx=w.rmin_x;
maxx=w.rmax_x;
} else {
minx=w.min_x;
maxx=w.max_x;
}
double xx=maxx-minx;
if (xx<=0) return;
double xmult=width/xx;
GetTextExtent(m_label,m_lx,m_ly);
2011-06-26 08:30:44 +00:00
// Draw text label
2011-09-01 03:37:25 +00:00
w.renderText(m_label,left-m_lx-10,top+(height/2)+(m_ly/2));
2011-09-01 13:07:26 +00:00
2011-06-26 08:30:44 +00:00
float x1,x2;
float bartop=top+2;
float bottom=top+height-2;
bool verts_exceeded=false;
2011-07-27 09:21:53 +00:00
qint64 X,Y;
m_flag_color=schema::channel[m_code].defaultColor();
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) {
2011-07-27 09:21:53 +00:00
if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue;
EventList & el=*((*s)->eventlist[m_code][0]);
2011-06-26 08:30:44 +00:00
for (quint32 i=0;i<el.count();i++) {
2011-07-27 09:21:53 +00:00
X=el.time(i);
Y=X-(el.data(i)*1000);
if (Y < minx) continue;
if (X > maxx) break;
x1=(X - minx) * xmult + left;
if (m_flt==FT_Bar) {
2011-09-01 07:12:25 +00:00
lines->add(x1,bartop,x1,bottom,m_flag_color);
if (lines->full()) { verts_exceeded=true; break; }
} else if (m_flt==FT_Span) {
x2=(Y-minx)*xmult+left;
2011-06-26 08:30:44 +00:00
//w1=x2-x1;
2011-09-23 05:40:41 +00:00
quads->add(x1,bartop,x1,bottom,x2,bottom,x2,bartop,m_flag_color);
if (quads->full()) { verts_exceeded=true; break; }
2011-06-26 08:30:44 +00:00
}
}
2011-09-01 03:37:25 +00:00
if (verts_exceeded) break;
2011-06-26 08:30:44 +00:00
}
if (verts_exceeded) {
qWarning() << "maxverts exceeded in gFlagsLine::plot()";
}
2011-06-26 08:30:44 +00:00
}