OSCAR-code/Graphs/gpiechart.cpp

102 lines
2.9 KiB
C++
Raw Normal View History

2011-06-28 15:25:20 +00:00
#include <math.h>
#include "gpiechart.h"
gPieChart::gPieChart(QColor outline_color)
:gLayer(MC_UNKNOWN),m_outline_color(outline_color)
2011-06-28 15:25:20 +00:00
{
2011-07-28 14:56:14 +00:00
m_gradient_color=QColor(200,200,200);
2011-06-28 15:25:20 +00:00
}
gPieChart::~gPieChart()
{
}
void gPieChart::AddSlice(MachineCode code,QColor color,QString name)
{
m_counts[code]=code;
m_colors[code]=color;
m_names[code]=name;
m_total=0;
}
void gPieChart::SetDay(Day *d)
{
gLayer::SetDay(d);
m_total=0;
if (!m_day) return;
for (map<MachineCode,int>::iterator c=m_counts.begin();c!=m_counts.end();c++) {
c->second=0;
for (vector<Session *>::iterator s=m_day->begin();s!=m_day->end();s++) {
int cnt=(*s)->count(c->first);
c->second+=cnt;
m_total+=cnt;
}
}
}
2011-06-28 15:25:20 +00:00
void gPieChart::Plot(gGraphWindow & w,float scrx,float scry)
{
if (!m_visible) return;
if (!m_day) return;
if (!m_total) return;
2011-06-28 15:25:20 +00:00
int start_px=w.GetLeftMargin();
int start_py=w.GetBottomMargin();
int width=scrx-(w.GetLeftMargin()+w.GetRightMargin());
int height=scry-(w.GetTopMargin()+w.GetBottomMargin());
float diameter=MIN(width,height);
2011-06-28 15:30:43 +00:00
diameter-=8;
2011-06-28 15:25:20 +00:00
float radius=diameter/2.0;
double j=0.0;
double sum=0.0;
2011-06-28 15:44:44 +00:00
double step=1.0/45.0;
2011-06-28 15:25:20 +00:00
float px,py;
glEnable(GL_BLEND);
glEnable(GL_LINE_SMOOTH);
2011-06-28 15:44:44 +00:00
glLineWidth(1.5);
2011-06-28 15:25:20 +00:00
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
for (map<MachineCode,int>::iterator m=m_counts.begin();m!=m_counts.end();m++) {
if (!m->second) continue;
j=float(m->second)/float(m_total); // ratio of this pie slice
2011-06-28 15:44:44 +00:00
glPolygonMode(GL_BACK,GL_FILL);
2011-06-28 15:25:20 +00:00
glBegin(GL_POLYGON);
2011-07-28 14:56:14 +00:00
bool first_col;
w.qglColor(m_gradient_color);
2011-06-28 15:30:43 +00:00
glVertex2f(start_px+radius+4, start_py+radius+4);
2011-07-28 14:56:14 +00:00
w.qglColor(m_colors[m->first]);
2011-06-28 15:44:44 +00:00
double q;
for (q=sum;q<sum+j;q+=step) {
2011-06-28 15:30:43 +00:00
px=start_px+radius+4+sin(q*2*M_PI)*radius;
py=start_py+radius+4+cos(q*2*M_PI)*radius;
2011-06-28 15:25:20 +00:00
glVertex2f(px,py);
}
2011-06-28 15:44:44 +00:00
q=sum+j;
px=start_px+radius+4+sin(q*2*M_PI)*radius;
py=start_py+radius+4+cos(q*2*M_PI)*radius;
glVertex2f(px,py);
2011-06-28 15:25:20 +00:00
glEnd();
w.qglColor(m_outline_color);
2011-07-28 14:56:14 +00:00
if (m_total>m->second) { // Draw the center point first
glPolygonMode(GL_BACK,GL_LINE);
2011-07-28 14:56:14 +00:00
glBegin(GL_POLYGON);
glVertex2f(start_px+radius+4, start_py+radius+4);
} else { // Only one entry, so just draw the circle
//glBegin(GL_POLYGON);
2011-07-28 14:56:14 +00:00
glBegin(GL_LINE_LOOP);
}
2011-06-28 15:44:44 +00:00
for (q=sum;q<sum+j;q+=step) {
2011-06-28 15:30:43 +00:00
px=start_px+radius+4+sin(q*2*M_PI)*radius;
py=start_py+radius+4+cos(q*2*M_PI)*radius;
2011-06-28 15:25:20 +00:00
glVertex2f(px,py);
}
2011-06-28 15:44:44 +00:00
q=sum+j;
px=start_px+radius+4+sin(q*2*M_PI)*radius;
py=start_py+radius+4+cos(q*2*M_PI)*radius;
glVertex2f(px,py);
2011-06-28 15:25:20 +00:00
glEnd();
2011-06-28 15:44:44 +00:00
sum=q;
2011-06-28 15:25:20 +00:00
}
glDisable(GL_BLEND);
2011-06-28 15:25:20 +00:00
}