mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Importer will be temporarily slow due to creating craploads of new indexes. Lots of bugs fixed.. Probably lots of new bugs too! Replaced slow map containers with fast QHash containers. Plus plenty of other mind numbing stuff.
211 lines
5.7 KiB
C++
211 lines
5.7 KiB
C++
/********************************************************************
|
|
gFlagsLine Implementation
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*********************************************************************/
|
|
|
|
#include <cmath>
|
|
#include <QVector>
|
|
#include "SleepLib/profiles.h"
|
|
#include "gFlagsLine.h"
|
|
|
|
gFlagsGroup::gFlagsGroup()
|
|
{
|
|
}
|
|
gFlagsGroup::~gFlagsGroup()
|
|
{
|
|
}
|
|
qint64 gFlagsGroup::Minx()
|
|
{
|
|
if (m_day) {
|
|
return m_day->first();
|
|
}
|
|
return 0;
|
|
}
|
|
qint64 gFlagsGroup::Maxx()
|
|
{
|
|
if (m_day) {
|
|
return m_day->last();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void gFlagsGroup::Plot(gGraphWindow &w, float scrx, float scry)
|
|
{
|
|
if (!m_visible) return;
|
|
//if (!m_day) return;
|
|
int start_px=w.GetLeftMargin();
|
|
int start_py=w.GetBottomMargin();
|
|
int width=scrx-(w.GetLeftMargin()+w.GetRightMargin())-1;
|
|
int height=scry-(w.GetTopMargin()+w.GetBottomMargin());
|
|
|
|
|
|
QVector<gFlagsLine *> lvisible;
|
|
for (int i=0;i<layers.size();i++) {
|
|
gFlagsLine *f=dynamic_cast<gFlagsLine *>(layers[i]);
|
|
if (!f) continue;
|
|
|
|
if (!f->isEmpty() || f->isAlwaysVisible()) {
|
|
lvisible.push_back(f);
|
|
}
|
|
}
|
|
int vis=lvisible.size();
|
|
for (int i=0;i<lvisible.size();i++) {
|
|
lvisible[i]->line_num=i;
|
|
lvisible[i]->total_lines=vis;
|
|
lvisible[i]->Plot(w,scrx,scry);
|
|
}
|
|
glColor3f (0.0F, 0.0F, 0.0F);
|
|
glLineWidth (1);
|
|
glBegin (GL_LINE_LOOP);
|
|
glVertex2f (start_px-1, start_py);
|
|
glVertex2f (start_px-1, start_py+height);
|
|
glVertex2f (start_px+width,start_py+height);
|
|
glVertex2f (start_px+width, start_py);
|
|
glEnd ();
|
|
|
|
}
|
|
|
|
|
|
gFlagsLine::gFlagsLine(ChannelID code,QColor col,QString label,bool always_visible,FlagType flt)
|
|
:gLayer(code),m_label(label),m_always_visible(always_visible),m_flt(flt)
|
|
{
|
|
color.clear();
|
|
color.push_back(col);
|
|
}
|
|
gFlagsLine::~gFlagsLine()
|
|
{
|
|
}
|
|
void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry)
|
|
{
|
|
if (!m_visible) return;
|
|
if (!m_day) return;
|
|
|
|
double minx;
|
|
double maxx;
|
|
|
|
if (w.BlockZoom()) {
|
|
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;
|
|
|
|
int start_px=w.GetLeftMargin();
|
|
int start_py=w.GetBottomMargin();
|
|
int width=scrx-(w.GetLeftMargin()+w.GetRightMargin())-1;
|
|
int height=scry-(w.GetTopMargin()+w.GetBottomMargin());
|
|
|
|
double xmult=width/xx;
|
|
|
|
static QColor col1=QColor(0xd0,0xff,0xd0,0xff);
|
|
static QColor col2=QColor(0xff,0xff,0xff,0xff);
|
|
|
|
|
|
float line_h=float(height-2)/float(total_lines);
|
|
line_h=line_h;
|
|
float line_top=(start_py+height-line_h)-line_num*line_h;
|
|
|
|
// Alternating box color
|
|
QColor *barcol=&col2;
|
|
if (line_num & 1)
|
|
barcol=&col1;
|
|
|
|
|
|
// Filled rectangle
|
|
glColor4ub(barcol->red(),barcol->green(),barcol->blue(),barcol->alpha());
|
|
glBegin(GL_QUADS);
|
|
glVertex2f(start_px+1, line_top);
|
|
glVertex2f(start_px+1, line_top+line_h);
|
|
glVertex2f(start_px+width-1, line_top+line_h);
|
|
glVertex2f(start_px+width-1, line_top);
|
|
glEnd();
|
|
|
|
qint32 vertcnt=0;
|
|
GLshort * vertarray=vertex_array[0];
|
|
qint32 quadcnt=0;
|
|
GLshort * quadarray=vertex_array[1];
|
|
if (!vertarray || !quadarray) {
|
|
qWarning() << "vertarray/quadarray==NULL";
|
|
return;
|
|
}
|
|
|
|
// Draw text label
|
|
float x,y;
|
|
GetTextExtent(m_label,x,y);
|
|
DrawText(w,m_label,start_px-x-10,(scry-line_top)-(line_h/2)+(y/2));
|
|
float x1,x2;
|
|
|
|
QColor & col=color[0];
|
|
|
|
float top=floor(line_top)+2;
|
|
float bottom=top+floor(line_h)-3;
|
|
|
|
qint64 X,Y;
|
|
for (QVector<Session *>::iterator s=m_day->begin();s!=m_day->end(); s++) {
|
|
if ((*s)->eventlist.find(m_code)==(*s)->eventlist.end()) continue;
|
|
|
|
EventList & el=*((*s)->eventlist[m_code][0]);
|
|
|
|
for (int i=0;i<el.count();i++) {
|
|
X=el.time(i);
|
|
Y=X-(el.data(i)*1000);
|
|
if (Y < minx) continue;
|
|
if (X > maxx) break;
|
|
x1=(X - minx) * xmult + w.GetLeftMargin();
|
|
if (m_flt==FT_Bar) {
|
|
vertarray[vertcnt++]=x1;
|
|
vertarray[vertcnt++]=top;
|
|
vertarray[vertcnt++]=x1;
|
|
vertarray[vertcnt++]=bottom;
|
|
} else if (m_flt==FT_Span) {
|
|
x2=(Y-minx)*xmult+w.GetLeftMargin();
|
|
//w1=x2-x1;
|
|
quadarray[quadcnt++]=x1;
|
|
quadarray[quadcnt++]=top;
|
|
quadarray[quadcnt++]=x1;
|
|
quadarray[quadcnt++]=bottom;
|
|
quadarray[quadcnt++]=x2;
|
|
quadarray[quadcnt++]=bottom;
|
|
quadarray[quadcnt++]=x2;
|
|
quadarray[quadcnt++]=top;
|
|
}
|
|
}
|
|
}
|
|
glColor4ub(col.red(),col.green(),col.blue(),col.alpha());
|
|
glScissor(w.GetLeftMargin(),w.GetBottomMargin(),width,height);
|
|
glEnable(GL_SCISSOR_TEST);
|
|
|
|
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);
|
|
|
|
if (quadcnt>0) {
|
|
glEnableClientState(GL_VERTEX_ARRAY);
|
|
glVertexPointer(2, GL_SHORT, 0, quadarray);
|
|
glDrawArrays(GL_QUADS, 0, quadcnt>>1);
|
|
glDisableClientState(GL_VERTEX_ARRAY);
|
|
}
|
|
if (vertcnt>0) {
|
|
glEnableClientState(GL_VERTEX_ARRAY);
|
|
glVertexPointer(2, GL_SHORT, 0, vertarray);
|
|
glDrawArrays(GL_LINES, 0, vertcnt>>1);
|
|
glDisableClientState(GL_VERTEX_ARRAY);
|
|
}
|
|
if (antialias) {
|
|
glDisable(GL_LINE_SMOOTH);
|
|
glDisable(GL_BLEND);
|
|
}
|
|
|
|
glDisable(GL_SCISSOR_TEST);
|
|
}
|