OSCAR-code/Graphs/gXAxis.cpp

201 lines
5.5 KiB
C++
Raw Normal View History

/*
2011-06-26 08:30:44 +00:00
gXAxis Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
2011-06-26 08:30:44 +00:00
#include <math.h>
#include <QDebug>
2011-06-26 08:30:44 +00:00
#include "gXAxis.h"
const int divisors[]={86400000,3600000,2700000,1800000,1200000,900000,600000,300000,120000,60000,45000,30000,20000,15000,10000,5000,2000,1000,100,50,10};
const int divcnt=sizeof(divisors)/sizeof(int);
2011-06-26 08:30:44 +00:00
gXAxis::gXAxis(QColor col)
:gLayer(EmptyChannel)
2011-06-26 08:30:44 +00:00
{
m_line_color=col;
m_text_color=col;
m_major_color=Qt::darkGray;
m_minor_color=Qt::lightGray;
2011-06-26 08:30:44 +00:00
m_show_major_lines=false;
m_show_minor_lines=false;
m_show_minor_ticks=true;
m_show_major_ticks=true;
QDateTime d=QDateTime::currentDateTime();
QTime t1=d.time();
QTime t2=d.toUTC().time();
tz_offset=t2.secsTo(t1)/60L;
tz_offset*=60000L;
//offset=0;
2011-06-26 08:30:44 +00:00
}
gXAxis::~gXAxis()
{
}
void gXAxis::Plot(gGraphWindow & w,float scrx,float scry)
{
2011-08-06 09:17:26 +00:00
double px,py;
2011-06-26 08:30:44 +00:00
2011-08-05 15:01:17 +00:00
int start_px=w.GetLeftMargin();
int start_py=w.GetBottomMargin();
int width=scrx-(w.GetLeftMargin()+w.GetRightMargin());
2011-06-26 08:30:44 +00:00
// float height=scry-(w.GetTopMargin()+w.GetBottomMargin());
2011-08-05 15:01:17 +00:00
if (width<40)
return;
2011-07-27 09:21:53 +00:00
qint64 minx;
qint64 maxx;
2011-06-26 08:30:44 +00:00
if (w.BlockZoom()) {
minx=w.rmin_x;
maxx=w.rmax_x;
} else {
minx=w.min_x;
maxx=w.max_x;
}
2011-08-05 15:01:17 +00:00
qint64 xx=maxx-minx;
2011-06-26 08:30:44 +00:00
if (xx<=0) return;
//Most of this could be precalculated when min/max is set..
2011-08-06 09:17:26 +00:00
QString fd,tmpstr;
2011-08-05 15:01:17 +00:00
int divmax,dividx;
int fitmode;
if (xx>86400000L) { // Day
2011-08-07 02:21:26 +00:00
fd="000 00:00";
2011-08-05 15:01:17 +00:00
dividx=0;
divmax=1;
fitmode=0;
2011-08-06 09:17:26 +00:00
} else if (xx>600000) { // Minutes
2011-08-05 15:01:17 +00:00
fd="00:00";
dividx=1;
divmax=10;
fitmode=1;
} else if (xx>5000) { // Seconds
2011-08-05 15:01:17 +00:00
fd="00:00:00";
dividx=6;
divmax=17;
2011-08-05 15:01:17 +00:00
fitmode=2;
} else { // Microseconds
fd="00:00:00:000";
dividx=16;
2011-08-05 15:01:17 +00:00
divmax=divcnt;
fitmode=3;
2011-06-26 08:30:44 +00:00
}
2011-08-05 15:01:17 +00:00
2011-06-26 08:30:44 +00:00
float x,y;
GetTextExtent(fd,x,y);
2011-08-05 15:01:17 +00:00
if (x<=0) {
qWarning() << "gXAxis::Plot() x<=0 font size bug";
return;
}
2011-06-26 08:30:44 +00:00
int max_ticks=width/(x+15); // Max number of ticks that will fit
2011-08-05 15:01:17 +00:00
int fit_ticks=0;
2011-08-05 15:01:17 +00:00
int div=-1;
qint64 closest=0,tmp,tmpft;
2011-08-05 15:01:17 +00:00
for (int i=dividx;i<divmax;i++){
tmpft=xx/divisors[i];
2011-08-05 15:01:17 +00:00
tmp=max_ticks-tmpft;
if (tmp<0) continue;
if (tmpft>closest) { // Find the closest scale to the number
closest=tmpft; // that will fit
div=i;
fit_ticks=tmpft;
}
}
if (fit_ticks==0) {
2011-08-07 02:21:26 +00:00
qDebug() << "gXAxis::Plot() Short days and zooming in too much screws this up.";
2011-08-05 15:01:17 +00:00
return;
}
2011-08-06 09:17:26 +00:00
if ((div<0) || (div>divcnt)) {
qDebug() << "gXAxis::Plot() div out of bounds";
2011-08-05 15:01:17 +00:00
return;
}
qint64 step=divisors[div];
2011-08-06 09:17:26 +00:00
//Align left minimum to divisor by losing precision
qint64 aligned_start=minx/step;
aligned_start*=step;
2011-08-06 09:17:26 +00:00
qint32 vertcnt=0;
GLshort * vertarray=vertex_array[0];
if (vertarray==NULL) {
qWarning() << "VertArray==NULL";
return;
}
2011-08-05 15:01:17 +00:00
while (aligned_start<minx) {
aligned_start+=step;
}
2011-08-05 15:01:17 +00:00
double xmult=double(width)/double(xx);
2011-08-06 09:17:26 +00:00
double step_pixels=double(step/10.0)*xmult;
py=start_px+double(aligned_start-minx)*xmult;
for (int i=0;i<10;i++) {
py-=step_pixels;
if (py<start_px) continue;
vertarray[vertcnt++]=py;
vertarray[vertcnt++]=start_py;
vertarray[vertcnt++]=py;
vertarray[vertcnt++]=start_py-4;
}
2011-08-06 12:46:27 +00:00
w.qglColor(Qt::black);
2011-08-05 15:01:17 +00:00
for (qint64 i=aligned_start;i<maxx;i+=step) {
px=double(i-minx)*xmult;
px+=start_px;
2011-08-06 09:17:26 +00:00
vertarray[vertcnt++]=px;
vertarray[vertcnt++]=start_py;
vertarray[vertcnt++]=px;
vertarray[vertcnt++]=start_py-6;
2011-08-07 02:21:26 +00:00
qint64 j=i+tz_offset;
int ms=j % 1000;
int m=(j/60000L) % 60L;
int h=(j/3600000L) % 24L;
int s=(j/1000L) % 60L;
2011-08-07 02:23:54 +00:00
2011-08-05 15:01:17 +00:00
if (fitmode==0) {
2011-08-07 02:23:54 +00:00
int day=(j/86400000) % 7;
tmpstr=QString("XXX %1:%2").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0'));
2011-08-07 02:21:26 +00:00
} else if (fitmode==1) { // minute
tmpstr=QString("%1:%2").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0'));
} else if (fitmode==2) { // second
tmpstr=QString("%1:%2:%3").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0'));
} else if (fitmode==3) { // milli
tmpstr=QString("%1:%2:%3:%4").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0')).arg(ms,3,10,QChar('0'));
2011-08-05 15:01:17 +00:00
}
2011-08-06 12:46:27 +00:00
2011-08-07 00:53:33 +00:00
//w.renderText(px-(x/2),scry-(w.GetBottomMargin()-18),tmpstr);
DrawText(w,tmpstr,px-(x/2),scry-(w.GetBottomMargin()-18),0);
2011-08-06 09:17:26 +00:00
py=px;
for (int j=1;j<10;j++) {
py+=step_pixels;
if (py>=scrx-w.GetRightMargin()) break;
2011-06-26 08:30:44 +00:00
vertarray[vertcnt++]=py;
2011-08-06 09:17:26 +00:00
vertarray[vertcnt++]=start_py;
2011-06-26 08:30:44 +00:00
vertarray[vertcnt++]=py;
2011-08-06 09:17:26 +00:00
vertarray[vertcnt++]=start_py-4;
if (vertcnt>=maxverts) {
2011-08-06 09:17:26 +00:00
break;
}
2011-06-26 08:30:44 +00:00
}
2011-08-06 09:17:26 +00:00
if (vertcnt>=maxverts) {
qWarning() << "maxverts exceeded in gXAxis::Plot()";
break;
2011-06-26 08:30:44 +00:00
}
}
2011-06-26 08:30:44 +00:00
glEnableClientState(GL_VERTEX_ARRAY);
2011-08-06 09:17:26 +00:00
glLineWidth(1);
w.qglColor(Qt::black);
2011-06-26 08:30:44 +00:00
glVertexPointer(2, GL_SHORT, 0, vertarray);
glDrawArrays(GL_LINES, 0, vertcnt>>1);
glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing
// glDisable(GL_SCISSOR_TEST);
2011-06-26 08:30:44 +00:00
}