OSCAR-code/Graphs/gBarChart.cpp

233 lines
6.3 KiB
C++
Raw Normal View History

2011-07-01 10:10:44 +00:00
/*
2011-06-26 08:30:44 +00:00
gBarChart Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
2011-07-01 10:10:44 +00:00
*/
2011-06-26 08:30:44 +00:00
#include <math.h>
2011-09-02 02:00:04 +00:00
#include <QDateTime>
2011-06-26 08:30:44 +00:00
#include "gBarChart.h"
2011-09-02 02:00:04 +00:00
gBarChart::gBarChart(ChannelID code,QColor color,Qt::Orientation o)
2011-08-30 08:46:24 +00:00
:Layer(code),m_orientation(o)
2011-06-26 08:30:44 +00:00
{
2011-09-02 02:00:04 +00:00
//Xaxis=new gXAxis();
2011-09-02 05:13:07 +00:00
addGLBuf(quads=new GLBuffer(color,20000,GL_QUADS));
2011-09-02 02:00:04 +00:00
//addGLBuf(lines=new GLBuffer(col,20,GL_LINES));
quads->forceAntiAlias(true);
//lines->setAntiAlias(true);
//lines->setSize(2);
2011-09-02 05:13:07 +00:00
m_empty=true;
2011-06-26 08:30:44 +00:00
}
gBarChart::~gBarChart()
{
2011-09-02 02:00:04 +00:00
//delete Xaxis;
2011-06-26 08:30:44 +00:00
}
2011-09-02 05:13:07 +00:00
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;i<m_codes.size();i++) {
if (day->count(m_codes[i])>0) {
m_empty=false;
break;
}
} */
m_values.clear();
m_miny=9999999;
m_maxy=-9999999;
2011-09-03 00:06:08 +00:00
m_minx=0;
m_maxx=0;
2011-09-02 05:13:07 +00:00
int dn;
EventDataType tmp,total;
ChannelID code;
2011-09-03 00:06:08 +00:00
m_fday=0;
qint64 tt;
2011-09-02 05:13:07 +00:00
for (QMap<QDate,QVector<Day *> >::iterator d=m_profile->daylist.begin();d!=m_profile->daylist.end();d++) {
2011-09-03 00:06:08 +00:00
tt=QDateTime(d.key(),QTime(0,0,0),Qt::UTC).toTime_t();
2011-09-03 01:24:11 +00:00
//tt=QDateTime(d.key(),QTime(12,0,0)).toTime_t();
2011-09-03 00:06:08 +00:00
dn=tt/86400;
tt*=1000L;
if (!m_minx || tt<m_minx) m_minx=tt;
if (!m_maxx || tt>m_maxx) m_maxx=tt;
2011-09-02 05:13:07 +00:00
total=0;
2011-09-03 00:06:08 +00:00
bool fnd=false;
2011-09-02 05:13:07 +00:00
for (int j=0;j<m_codes.size();j++) {
code=m_codes[j];
for (int i=0;i<d.value().size();i++) {
Day *day=d.value()[i];
if (day->channelExists(code)) { // too many lookups happening here.. stop the crap..
tmp=day->count(code)/day->hours();
if (tmp>0) {
2011-09-03 00:06:08 +00:00
fnd=true;
2011-09-02 05:13:07 +00:00
total+=tmp;
m_values[dn][code]=tmp;
break;
}
}
}
}
2011-09-03 00:06:08 +00:00
if (fnd) {
if (!m_fday) m_fday=dn;
m_values[dn][EmptyChannel]=total;
if (total<m_miny) m_miny=total;
if (total>m_maxy) m_maxy=total;
}
2011-09-02 05:13:07 +00:00
}
2011-09-03 00:06:08 +00:00
m_maxy=ceil(m_maxy);
2011-09-03 02:11:10 +00:00
m_miny=floor(m_miny);
2011-09-03 00:06:08 +00:00
//m_minx-=86400000L;
// m_minx=qint64(QDateTime(m_profile->FirstDay(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
2011-09-03 01:24:11 +00:00
m_maxx=qint64(QDateTime(m_profile->LastDay().addDays(1),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
//m_maxx=qint64(QDateTime(m_profile->LastDay().addDays(1),QTime(12,0,0)).toTime_t())*1000L;
2011-09-02 05:13:07 +00:00
int i=0;
//set miny & maxy here.. how?
}
2011-06-26 08:30:44 +00:00
void gBarChart::paint(gGraph & w,int left, int top, int width, int height)
2011-06-26 08:30:44 +00:00
{
if (!m_visible) return;
2011-09-02 05:13:07 +00:00
//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);
2011-09-02 02:00:04 +00:00
qint64 minx=w.min_x, maxx=w.max_x;
2011-09-02 05:13:07 +00:00
//qint64 minx=m_minx, maxx=m_maxx;
2011-09-02 02:00:04 +00:00
qint64 xx=maxx - minx;
2011-09-03 00:06:08 +00:00
float days=double(xx)/86400000.0;
2011-09-02 05:13:07 +00:00
2011-09-03 02:11:10 +00:00
EventDataType maxy=m_maxy;
EventDataType miny=m_miny;
2011-09-03 02:34:42 +00:00
// make this a reusable function in gGraph
2011-09-03 02:11:10 +00:00
int m;
if (maxy>500) {
m=ceil(maxy/100.0);
maxy=m*100;
m=floor(miny/100.0);
miny=m*100;
} else if (maxy>150) {
m=ceil(maxy/50.0);
maxy=m*50;
m=floor(miny/50.0);
miny=m*50;
} else if (maxy>80) {
m=ceil(maxy/20.0);
maxy=m*20;
m=floor(miny/20.0);
miny=m*20;
} else if (maxy>30) {
m=ceil(maxy/10.0);
maxy=m*10;
m=floor(miny/10.0);
miny=m*10;
} else if (maxy>5) {
m=ceil(maxy/5.0);
maxy=m*5;
m=floor(miny/5.0);
miny=m*5;
}
EventDataType yy=maxy-miny;
EventDataType ymult=float(height-2)/yy;
2011-09-02 02:00:04 +00:00
2011-09-02 05:13:07 +00:00
float barw=(float(width)/float(days));
2011-09-02 02:00:04 +00:00
2011-09-02 05:13:07 +00:00
qint64 ts;
2011-09-02 02:00:04 +00:00
2011-09-02 05:13:07 +00:00
float px=left;
float py;
EventDataType total;
int daynum=0;
float h,tmp;
2011-09-03 01:24:11 +00:00
qint64 offs=(minx) % 86400000L;
2011-09-03 00:06:08 +00:00
//zz*=86400000L;
2011-09-03 01:24:11 +00:00
float offset=(offs)/86400000.0;
//offset+=float(utcoff)/86400000.0;
2011-09-03 00:06:08 +00:00
offset*=barw;
px=left-offset;
2011-09-03 02:11:10 +00:00
int total_days=0;
double total_val=0;
2011-09-03 00:06:08 +00:00
for (qint64 Q=minx;Q<=maxx+86400000L;Q+=86400000L) {
2011-09-02 05:13:07 +00:00
int zd=Q/86400000L;
QHash<int,QMap<ChannelID,EventDataType> >::iterator d=m_values.find(zd);
2011-09-03 00:06:08 +00:00
if (Q<minx) continue;
if (Q>maxx+86400000) continue; // break; // out of order if I end up using a hash instead.??
2011-09-02 05:13:07 +00:00
if (d!=m_values.end()) {
2011-09-03 02:11:10 +00:00
int x1=px,x2=px+barw;
if (x1<left) x1=left;
if (x2>left+width) x2=left+width;
if (x2<x1) continue;
2011-09-03 00:06:08 +00:00
ChannelID code;
total=d.value()[EmptyChannel];
2011-09-03 02:11:10 +00:00
if (total>0) {
total_val+=total;
total_days++;
}
2011-09-03 00:06:08 +00:00
py=top+height;
for (int j=0;j<m_codes.size();j++) {
code=m_codes[j];
QMap<ChannelID,EventDataType>::iterator g=d.value().find(code);
if (g!=d.value().end()) {
if (code==EmptyChannel) continue;
//look up it's color key
2011-09-03 02:34:42 +00:00
QColor & col=m_colors[j];
static QColor col2=QColor(220,220,220,255);
2011-09-03 00:06:08 +00:00
2011-09-03 02:11:10 +00:00
tmp=g.value(); //(g.value()/float(total));
h=tmp*ymult; //(float(total)*ymult); // height of chunk
quads->add(x1,py,col);
quads->add(x1,py-h,col);
quads->add(x2,py-h,col2);
quads->add(x2,py,col2);
lines->add(x1,py,x1,py-h,blk);
lines->add(x1,py-h,x2,py-h,blk);
lines->add(x1,py,x2,py,blk);
lines->add(x2,py,x2,py-h,blk);
2011-09-03 00:06:08 +00:00
py-=h;
}
2011-09-02 05:13:07 +00:00
}
}
px+=barw;
daynum++;
2011-09-02 02:00:04 +00:00
}
2011-09-03 02:11:10 +00:00
if (total_days>0) {
float val=total_val/float(total_days);
2011-09-03 02:34:42 +00:00
QString z="AHI="+QString::number(val,'f',2)+" days="+QString::number(total_days,'f',0)+" This is going in overview later";
2011-09-03 02:11:10 +00:00
w.renderText(z,left,top-1);
2011-09-02 02:00:04 +00:00
2011-09-03 02:11:10 +00:00
// val = AHI for selected area.
2011-06-26 08:30:44 +00:00
}
}