From 2c0069d46ab693c70915bdc1f57ac2a8eb31fbc3 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 2 Aug 2011 14:20:26 +1000 Subject: [PATCH] Fixed vertarray buffer overrun (forgot to allocate the extra bit) --- Graphs/gBarChart.h | 1 + Graphs/gFlagsLine.cpp | 20 +++++++-------- Graphs/gFlagsLine.h | 1 + Graphs/gFooBar.cpp | 23 ++++++----------- Graphs/gFooBar.h | 7 ++++-- Graphs/gLineOverlay.cpp | 6 ++--- Graphs/gLineOverlay.h | 3 ++- Graphs/gSessionTime.h | 1 + Graphs/gXAxis.cpp | 10 +++++--- Graphs/gXAxis.h | 5 ++++ Graphs/gYAxis.cpp | 56 +++++++++++++++++++++++------------------ Graphs/gYAxis.h | 10 ++++++-- Graphs/glcommon.cpp | 8 +++--- Graphs/graphlayer.cpp | 4 +-- Graphs/graphlayer.h | 4 +-- Graphs/graphwindow.cpp | 2 +- 16 files changed, 87 insertions(+), 74 deletions(-) diff --git a/Graphs/gBarChart.h b/Graphs/gBarChart.h index acddc567..fb12ca9a 100644 --- a/Graphs/gBarChart.h +++ b/Graphs/gBarChart.h @@ -28,6 +28,7 @@ class gBarChart:public gLayer virtual const QString & FormatY(double v) { static QString t; t.sprintf("%.1f",v); return t; } gXAxis *Xaxis; + QVector color; }; #endif // GBARCHART_H diff --git a/Graphs/gFlagsLine.cpp b/Graphs/gFlagsLine.cpp index 64316a73..5521cdcc 100644 --- a/Graphs/gFlagsLine.cpp +++ b/Graphs/gFlagsLine.cpp @@ -67,11 +67,9 @@ void gFlagsGroup::Plot(gGraphWindow &w, float scrx, float scry) } -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) +gFlagsLine::gFlagsLine(ChannelID code,QColor flag_color,QString label,bool always_visible,FlagType flt) +:gLayer(code),m_label(label),m_always_visible(always_visible),m_flt(flt),m_flag_color(flag_color) { - color.clear(); - color.push_back(col); } gFlagsLine::~gFlagsLine() { @@ -111,16 +109,18 @@ void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry) float line_top=(start_py+height-line_h)-line_num*line_h; // Alternating box color - QColor *barcol=&col2; + QColor * barcol=&col2; if (line_num & 1) barcol=&col1; + int qo=0; + //if (evil_intel_graphics_card) qo=1; // Filled rectangle - glColor4ub(barcol->red(),barcol->green(),barcol->blue(),barcol->alpha()); + w.qglColor(*barcol); glBegin(GL_QUADS); - glVertex2f(start_px+1, line_top); - glVertex2f(start_px+1, line_top+line_h); + glVertex2f(start_px+qo, line_top); + glVertex2f(start_px+qo, line_top+line_h); glVertex2f(start_px+width-1, line_top+line_h); glVertex2f(start_px+width-1, line_top); glEnd(); @@ -140,8 +140,6 @@ void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry) 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; @@ -176,7 +174,6 @@ void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry) } } } - glColor4ub(col.red(),col.green(),col.blue(),col.alpha()); glScissor(w.GetLeftMargin(),w.GetBottomMargin(),width,height); glEnable(GL_SCISSOR_TEST); @@ -190,6 +187,7 @@ void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry) } else glLineWidth (1); glEnableClientState(GL_VERTEX_ARRAY); + w.qglColor(m_flag_color); if (quadcnt>0) { glVertexPointer(2, GL_SHORT, 0, quadarray); glDrawArrays(GL_QUADS, 0, quadcnt>>1); diff --git a/Graphs/gFlagsLine.h b/Graphs/gFlagsLine.h index 528869b7..8cce6e4e 100644 --- a/Graphs/gFlagsLine.h +++ b/Graphs/gFlagsLine.h @@ -30,6 +30,7 @@ class gFlagsLine:public gLayer bool m_always_visible; int total_lines,line_num; FlagType m_flt; + QColor m_flag_color; }; class gFlagsGroup:public gLayerGroup diff --git a/Graphs/gFooBar.cpp b/Graphs/gFooBar.cpp index 799af3b8..7b57e827 100644 --- a/Graphs/gFooBar.cpp +++ b/Graphs/gFooBar.cpp @@ -6,12 +6,9 @@ #include "gFooBar.h" -gFooBar::gFooBar(int offset,QColor col1,QColor col2,bool funkbar) -:gLayer(EmptyChannel),m_funkbar(funkbar),m_offset(offset) +gFooBar::gFooBar(int offset,QColor handle_color,QColor line_color,bool shadow,QColor shadow_color) +:gLayer(EmptyChannel),m_offset(offset),m_shadow(shadow),m_handle_color(handle_color),m_line_color(line_color),m_shadow_color(shadow_color) { - color.clear(); - color.push_back(col2); - color.push_back(col1); } gFooBar::~gFooBar() { @@ -30,15 +27,12 @@ void gFooBar::Plot(gGraphWindow & w,float scrx,float scry) int height=scry - (w.GetTopMargin() + w.GetBottomMargin()); int end_px=scrx-w.GetRightMargin(); - QColor & col1=color[0]; - QColor & col2=color[1]; - glDisable(GL_DEPTH_TEST); float h=m_offset; - glColor4ub(col1.red(),col1.green(),col1.blue(),col1.alpha()); glLineWidth(1); glBegin(GL_LINES); + w.qglColor(m_line_color); glVertex2f(start_px, h); glVertex2f(start_px+width, h); glEnd(); @@ -47,30 +41,27 @@ void gFooBar::Plot(gGraphWindow & w,float scrx,float scry) double px=((1/rmx)*(w.min_x-w.rmin_x))*width; double py=((1/rmx)*(w.max_x-w.rmin_x))*width; - glColor4ub(col2.red(),col2.green(),col2.blue(),col2.alpha()); glLineWidth(4); glBegin(GL_LINES); + w.qglColor(m_handle_color); glVertex2f(start_px+px-4,h); glVertex2f(start_px+py+4,h); glEnd(); glLineWidth(1); - if ((m_funkbar)) { // && ((w.min_x>w.rmin_x) || (w.max_x0) { //glEnableClientState(GL_VERTEX_ARRAY); glVertexPointer(2, GL_SHORT, 0, quadarray); diff --git a/Graphs/gLineOverlay.h b/Graphs/gLineOverlay.h index 2fb06355..afdd6e11 100644 --- a/Graphs/gLineOverlay.h +++ b/Graphs/gLineOverlay.h @@ -12,7 +12,7 @@ class gLineOverlayBar:public gLayer { public: - gLineOverlayBar(ChannelID code,QColor col=QColor("black"),QString _label="",FlagType _flt=FT_Bar); + gLineOverlayBar(ChannelID code,QColor col,QString _label="",FlagType _flt=FT_Bar); virtual ~gLineOverlayBar(); virtual void Plot(gGraphWindow & w,float scrx,float scry); @@ -20,6 +20,7 @@ class gLineOverlayBar:public gLayer virtual EventDataType Maxy() { return 0; } virtual bool isEmpty() { return true; } protected: + QColor m_flag_color; QString m_label; FlagType m_flt; }; diff --git a/Graphs/gSessionTime.h b/Graphs/gSessionTime.h index 9bc9977e..84c3084d 100644 --- a/Graphs/gSessionTime.h +++ b/Graphs/gSessionTime.h @@ -37,6 +37,7 @@ class gSessionTime:public gLayer virtual const QString & FormatY(double v) { static QString t; t.sprintf("%.1f",v); return t; } gXAxis *Xaxis; + QVector color; }; #endif // GSESSIONTIME_H diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index bb3d9482..628dff8d 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -1,8 +1,8 @@ -/******************************************************************** +/* gXAxis Implementation Copyright (c)2011 Mark Watkins License: GPL -*********************************************************************/ +*/ #include #include @@ -11,8 +11,10 @@ gXAxis::gXAxis(QColor col) :gLayer(EmptyChannel) { - color.clear(); - color.push_back(col); + m_line_color=col; + m_text_color=col; + m_major_color=Qt::darkGray; + m_minor_color=Qt::lightGray; m_show_major_lines=false; m_show_minor_lines=false; m_show_minor_ticks=true; diff --git a/Graphs/gXAxis.h b/Graphs/gXAxis.h index a7bbc323..f4058c01 100644 --- a/Graphs/gXAxis.h +++ b/Graphs/gXAxis.h @@ -31,5 +31,10 @@ class gXAxis:public gLayer bool m_show_minor_ticks; bool m_show_major_ticks; + QColor m_line_color; + QColor m_text_color; + QColor m_major_color; + QColor m_minor_color; + }; #endif // GXAXIS_H diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index a2496abd..c2527900 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -11,8 +11,10 @@ gYAxis::gYAxis(QColor col) :gLayer(EmptyChannel) { - color.clear(); - color.push_back(col); + m_line_color=col; + m_text_color=col; + m_major_color=Qt::darkGray; + m_minor_color=Qt::lightGray; m_show_major_lines=true; m_show_minor_lines=true; @@ -23,8 +25,6 @@ gYAxis::~gYAxis() } void gYAxis::Plot(gGraphWindow &w,float scrx,float scry) { - static QColor DARK_GREY(0xc0,0xc0,0xc0,0x80); - static QColor LIGHT_GREY(0xd8,0xd8,0xd8,0x80); float x,y; int labelW=0; @@ -79,9 +79,6 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry) int height=scry-(topm+start_py); if (height<0) return; - const QColor & linecol1=LIGHT_GREY; - const QColor & linecol2=DARK_GREY; - QString fd="0"; GetTextExtent(fd,x,y); @@ -102,14 +99,17 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry) float ty,h; qint32 vertcnt=0; - GLshort * vertarray=vertex_array[0]; - if (vertarray==NULL) { - qWarning() << "VertArray==NULL"; + GLshort * vertarray=(GLshort *)vertex_array[0]; + qint32 minorvertcnt=0; + GLshort * minorvertarray=(GLshort *)vertex_array[1]; + qint32 majorvertcnt=0; + GLshort * majorvertarray=(GLshort *)vertex_array[2]; + + if ((vertarray==NULL) || (minorvertarray==NULL) || (majorvertarray==NULL)) { + qWarning() << "gYAxis::Plot() VertArray==NULL"; return; } - glColor4ub(linecol1.red(),linecol1.green(),linecol1.blue(),linecol1.alpha()); - glLineWidth(1); if (min_ytick<=0) { qDebug() << "min_ytick error in gYAxis::Plot()"; return; @@ -127,14 +127,14 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry) vertarray[vertcnt++]=start_px; vertarray[vertcnt++]=h; if (m_show_minor_lines && (i > miny)) { - glBegin(GL_LINES); - glVertex2f(start_px+1, h); - glVertex2f(start_px+width, h); - glEnd(); + minorvertarray[minorvertcnt++]=start_px+1; + minorvertarray[minorvertcnt++]=h; + minorvertarray[minorvertcnt++]=start_px+width; + minorvertarray[minorvertcnt++]=h; } if (vertcnt>maxverts) { qWarning() << "vertarray bounds exceeded in gYAxis for " << w.Title() << "graph" << "MinY =" < color; + //QVector color; virtual void SetDay(Day * d); virtual void SetCode(ChannelID c) { m_code=c; } @@ -42,8 +42,8 @@ protected: bool m_movable; qint64 m_minx,m_maxx; EventDataType m_miny,m_maxy; - QString m_title; ChannelID m_code; + QString m_title; }; class gLayerGroup:public gLayer diff --git a/Graphs/graphwindow.cpp b/Graphs/graphwindow.cpp index 85c5145f..a4052a78 100644 --- a/Graphs/graphwindow.cpp +++ b/Graphs/graphwindow.cpp @@ -45,6 +45,7 @@ gGraphWindow::gGraphWindow(QWidget *parent, const QString & title, QGLWidget * s min_x=max_x=0; rmin_y=rmax_y=0; min_y=max_y=0; + InitGraphs(); } /*gGraphWindow::gGraphWindow(QWidget *parent, const QString & title, QGLContext * context,Qt::WindowFlags f) @@ -862,7 +863,6 @@ void gGraphWindow::paintGL() if (m_scrX<=0) return; if (m_scrY<=0) return; - InitGraphs(); //glDisable(GL_DEPTH_TEST); Render(m_scrX,m_scrY);