OSCAR-code/Graphs/gYAxis.cpp

404 lines
10 KiB
C++
Raw Normal View History

/*
2011-06-26 08:30:44 +00:00
gYAxis 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 "gYAxis.h"
//#include "SleepLib/profiles.h"
2011-06-26 08:30:44 +00:00
2011-09-17 12:39:00 +00:00
gYSpacer::gYSpacer(int spacer)
:Layer(NoChannel)
{
Q_UNUSED(spacer)
2011-09-17 12:39:00 +00:00
}
2011-08-25 10:38:42 +00:00
gXGrid::gXGrid(QColor col)
:Layer(NoChannel)
2011-08-25 10:38:42 +00:00
{
Q_UNUSED(col)
m_major_color=QColor(180,180,180,64);
//m_major_color=QColor(180,180,180,92);
m_minor_color=QColor(230,230,230,64);
2011-08-25 10:38:42 +00:00
m_show_major_lines=true;
m_show_minor_lines=true;
}
gXGrid::~gXGrid()
{
}
void gXGrid::paint(gGraph & w,int left,int top, int width, int height)
{
2011-08-31 05:24:48 +00:00
int x,y;
2011-08-25 10:38:42 +00:00
gVertexBuffer * stippled, * lines;
2011-09-03 02:51:55 +00:00
EventDataType miny=w.min_y;
EventDataType maxy=w.max_y;
2011-08-25 10:38:42 +00:00
if (miny<0) { // even it up if it's starts negative
2011-08-25 10:38:42 +00:00
miny=-MAX(fabs(miny),fabs(maxy));
}
2011-09-03 02:51:55 +00:00
w.roundY(miny,maxy);
//EventDataType dy=maxy-miny;
2011-08-25 10:38:42 +00:00
if (height<0) return;
static QString fd="0";
2011-08-25 10:38:42 +00:00
GetTextExtent(fd,x,y);
2011-12-19 15:36:44 +00:00
double max_yticks=round(height / (y+14.0)); // plus spacing between lines
//double yt=1/max_yticks;
2011-08-25 10:38:42 +00:00
double mxy=MAX(fabs(maxy),fabs(miny));
double mny=miny;
if (miny<0) {
mny=-mxy;
}
double rxy=mxy-mny;
int myt;
bool fnd=false;
for (myt=max_yticks;myt>=1;myt--) {
float v=rxy/float(myt);
if (float(v)==int(v)) {
fnd=true;
break;
}
}
if (fnd) max_yticks=myt;
else {
max_yticks=2;
}
double yt=1/max_yticks;
2011-08-25 10:38:42 +00:00
double ymult=height/rxy;
double min_ytick=rxy*yt;
float ty,h;
if (min_ytick<=0) {
2011-12-13 08:51:56 +00:00
qDebug() << "min_ytick error in gXGrid::paint() in" << w.title();
2011-08-25 10:38:42 +00:00
return;
}
if (min_ytick>=1000000) {
min_ytick=100;
}
stippled=w.backlines();
2011-09-01 07:12:25 +00:00
lines=w.backlines();
2011-08-25 10:38:42 +00:00
for (double i=miny; i<=maxy+min_ytick-0.00001; i+=min_ytick) {
ty=(i - miny) * ymult;
h=top+height-ty;
if (m_show_major_lines && (i > miny)) {
stippled->add(left,h,left+width,h,m_major_color.rgba());
2011-08-25 10:38:42 +00:00
}
double z=(min_ytick/4)*ymult;
double g=h;
for (int i=0;i<3;i++) {
g+=z;
if (g>top+height) break;
//if (vertcnt>=maxverts) {
// qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
// break;
// }
2011-08-25 10:38:42 +00:00
if (m_show_minor_lines) {// && (i > miny)) {
stippled->add(left,g,left+width,g,m_minor_color.rgba());
2011-08-25 10:38:42 +00:00
}
if (stippled->full()) {
2011-08-29 07:13:58 +00:00
break;
}
2011-08-25 10:38:42 +00:00
}
if (lines->full() || stippled->full()) {
2011-08-25 10:38:42 +00:00
qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
break;
}
}
}
gYAxis::gYAxis(QColor col)
:Layer(NoChannel)
2011-06-26 08:30:44 +00:00
{
m_line_color=col;
m_text_color=col;
yAxisImageTex=0;
2011-06-26 08:30:44 +00:00
m_yaxis_scale=1;
2011-06-26 08:30:44 +00:00
}
gYAxis::~gYAxis()
{
}
void gYAxis::paint(gGraph & w,int left,int top, int width, int height)
2011-06-26 08:30:44 +00:00
{
int x,y,yh=0;
//Todo: clean this up as there is a lot of duplicate code between the sections
if (w.graphView()->usePixmapCache()) {
if (w.invalidate_yAxisImage) {
2011-07-27 09:21:53 +00:00
if (!yAxisImage.isNull()) {
w.graphView()->deleteTexture(yAxisImageTex);
yAxisImage=QPixmap();
}
2011-06-26 08:30:44 +00:00
if (height<0) return;
if (height>2000) return;
2011-06-26 08:30:44 +00:00
int labelW=0;
EventDataType miny=w.min_y;
EventDataType maxy=w.max_y;
if (miny<0) { // even it up if it's starts negative
miny=-MAX(fabs(miny),fabs(maxy));
}
2011-06-26 08:30:44 +00:00
w.roundY(miny,maxy);
2011-06-26 08:30:44 +00:00
EventDataType dy=maxy-miny;
static QString fd="0";
GetTextExtent(fd,x,y);
yh=y;
yAxisImage=QPixmap(width,height+y+4);
yAxisImage.fill(Qt::transparent);
QPainter paint(&yAxisImage);
double max_yticks=round(height / (y+14.0)); // plus spacing between lines
double mxy=MAX(fabs(maxy),fabs(miny));
double mny=miny;
if (miny<0) {
mny=-mxy;
}
double rxy=mxy-mny;
int myt;
bool fnd=false;
for (myt=max_yticks;myt>2;myt--) {
float v=rxy/float(myt);
if (v==int(v)) {
fnd=true;
break;
}
}
if (fnd) max_yticks=myt;
double yt=1/max_yticks;
double ymult=height/rxy;
double min_ytick=rxy*yt;
float ty,h;
if (min_ytick<=0) {
qDebug() << "min_ytick error in gYAxis::paint() in" << w.title();
return;
}
if (min_ytick>=1000000) {
min_ytick=100;
}
//lines=w.backlines();
for (double i=miny; i<=maxy+min_ytick-0.00001; i+=min_ytick) {
ty=(i - miny) * ymult;
if (dy<5) {
fd=Format(i*m_yaxis_scale,2);
} else {
fd=Format(i*m_yaxis_scale,1);
}
GetTextExtent(fd,x,y);
if (x>labelW) labelW=x;
h=(height-2)-ty;
h+=yh;
#ifndef Q_OS_MAC
// stupid pixel alignment rubbish, I really should be using floats..
h+=1;
#endif
if (h<0)
continue;
paint.setBrush(Qt::black);
paint.drawText(width-8-x,h+y/2,fd);
paint.setPen(m_line_color);
paint.drawLine(width-4,h,width,h);
double z=(min_ytick/4)*ymult;
double g=h;
for (int i=0;i<3;i++) {
g+=z;
if (g>height+yh) break;
paint.drawLine(width-3,g,width,g);
}
}
paint.end();
//yAxisImage=QGLWidget::convertToGLFormat(pixmap.toImage().mirrored(false,true));
yAxisImageTex=w.graphView()->bindTexture(yAxisImage,GL_TEXTURE_2D,GL_RGBA,QGLContext::InvertedYBindOption);
w.invalidate_yAxisImage=false;
}
if (!yAxisImage.isNull()) {
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_TEXTURE_2D);
w.graphView()->drawTexture(QPoint(left,(top+height)-yAxisImage.height()+5),yAxisImageTex);
glDisable(GL_TEXTURE_2D);
glDisable(GL_BLEND);
}
} else {
if (height<0) return;
if (height>2000) return;
int labelW=0;
EventDataType miny=w.min_y;
EventDataType maxy=w.max_y;
2011-06-26 08:30:44 +00:00
if (miny<0) { // even it up if it's starts negative
miny=-MAX(fabs(miny),fabs(maxy));
}
2011-06-26 08:30:44 +00:00
w.roundY(miny,maxy);
EventDataType dy=maxy-miny;
static QString fd="0";
GetTextExtent(fd,x,y);
double max_yticks=round(height / (y+14.0)); // plus spacing between lines
double mxy=MAX(fabs(maxy),fabs(miny));
double mny=miny;
if (miny<0) {
mny=-mxy;
}
double rxy=mxy-mny;
int myt;
bool fnd=false;
for (myt=max_yticks;myt>2;myt--) {
float v=rxy/float(myt);
if (v==int(v)) {
fnd=true;
break;
}
}
if (fnd) max_yticks=myt;
double yt=1/max_yticks;
2011-06-26 08:30:44 +00:00
double ymult=height/rxy;
double min_ytick=rxy*yt;
//if (dy>5) {
// min_ytick=round(min_ytick);
//} else {
//}
float ty,h;
if (min_ytick<=0) {
qDebug() << "min_ytick error in gYAxis::paint() in" << w.title();
return;
}
if (min_ytick>=1000000) {
min_ytick=100;
}
lines=w.backlines();
GLuint line_color=m_line_color.rgba();
for (double i=miny; i<=maxy+min_ytick-0.00001; i+=min_ytick) {
ty=(i - miny) * ymult;
if (dy<5) {
fd=Format(i*m_yaxis_scale,2);
} else {
fd=Format(i*m_yaxis_scale,1);
}
GetTextExtent(fd,x,y); // performance bottleneck..
if (x>labelW) labelW=x;
h=top+height-ty;
if (h<top) continue;
w.renderText(fd,left+width-8-x,(h+(y/2.0)),0,m_text_color);
lines->add(left+width-4,h,left+width,h,line_color);
double z=(min_ytick/4)*ymult;
double g=h;
for (int i=0;i<3;i++) {
g+=z;
if (g>top+height) break;
lines->add(left+width-3,g,left+width,g,line_color);
if (lines->full()) {
qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
break;
}
}
if (lines->full()) {
qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
break;
}
}
2011-06-26 08:30:44 +00:00
}
}
const QString gYAxis::Format(EventDataType v, int dp) {
return QString::number(v,'f',dp);
}
2011-06-26 08:30:44 +00:00
2011-09-05 13:26:10 +00:00
bool gYAxis::mouseMoveEvent(QMouseEvent * event)
{
Q_UNUSED(event)
//int x=event->x();
//int y=event->y();
2011-09-05 13:26:10 +00:00
//qDebug() << "Hover at " << x << y;
return false;
2011-09-05 13:26:10 +00:00
}
const QString gYAxisTime::Format(EventDataType v, int dp)
{
2011-12-07 12:52:25 +00:00
int h=int(v) % 24;
int m=int(v*60) % 60;
int s=int(v*3600) % 60;
char pm[3]={"am"};
if (show_12hr) {
2011-12-07 12:52:25 +00:00
h>=12 ? pm[0]='p' : pm[0]='a';
h %= 12;
2011-11-30 06:20:08 +00:00
if (h==0) h=12;
} else {
pm[0]=0;
}
if (dp>2) return QString().sprintf("%02i:%02i:%02i%s",h,m,s,pm);
return QString().sprintf("%i:%02i%s",h,m,pm);
}
const QString gYAxisWeight::Format(EventDataType v, int dp)
{
2011-12-21 14:24:09 +00:00
Q_UNUSED(dp)
return weightString(v,m_unitsystem);
}