mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Cleaned up and profiles DrawTextQue function
This commit is contained in:
parent
84dbbfe841
commit
cd4bee13e3
@ -2483,6 +2483,8 @@ void gGraphView::DrawTextQue()
|
|||||||
int w,h;
|
int w,h;
|
||||||
QHash<QString,myPixmapCache*>::iterator it;
|
QHash<QString,myPixmapCache*>::iterator it;
|
||||||
QPainter painter;
|
QPainter painter;
|
||||||
|
|
||||||
|
// Purge the Pixmap cache of any old text strings
|
||||||
if (usePixmapCache()) {
|
if (usePixmapCache()) {
|
||||||
// Current time in milliseconds since epoch.
|
// Current time in milliseconds since epoch.
|
||||||
ti=QDateTime::currentDateTime().toMSecsSinceEpoch();
|
ti=QDateTime::currentDateTime().toMSecsSinceEpoch();
|
||||||
@ -2523,15 +2525,13 @@ void gGraphView::DrawTextQue()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
glPushAttrib(GL_COLOR_BUFFER_BIT);
|
|
||||||
|
|
||||||
#ifndef USE_RENDERTEXT
|
//glPushAttrib(GL_COLOR_BUFFER_BIT);
|
||||||
painter.begin(this);
|
painter.begin(this);
|
||||||
#endif
|
|
||||||
}
|
float dpr=devicePixelRatio();
|
||||||
|
// process the text drawing queue
|
||||||
for (int i=0;i<m_textque_items;i++) {
|
for (int i=0;i<m_textque_items;i++) {
|
||||||
// GL Font drawing is ass in Qt.. :(
|
|
||||||
TextQue & q=m_textque[i];
|
TextQue & q=m_textque[i];
|
||||||
|
|
||||||
// can do antialiased text via texture cache fine on mac
|
// can do antialiased text via texture cache fine on mac
|
||||||
@ -2541,17 +2541,16 @@ void gGraphView::DrawTextQue()
|
|||||||
|
|
||||||
QImage pm;
|
QImage pm;
|
||||||
|
|
||||||
//Random_note: test add to qmake for qt5 stuff DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x040900
|
|
||||||
|
|
||||||
it=pixmap_cache.find(hstr);
|
it=pixmap_cache.find(hstr);
|
||||||
myPixmapCache *pc=NULL;
|
myPixmapCache *pc=NULL;
|
||||||
if (it!=pixmap_cache.end()) {
|
if (it!=pixmap_cache.end()) {
|
||||||
pc=(*it);
|
pc=(*it);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
// not found.. create the image and store it in a cache
|
||||||
|
|
||||||
//This is much slower than other text rendering methods, but caching more than makes up for the speed decrease.
|
//This is much slower than other text rendering methods, but caching more than makes up for the speed decrease.
|
||||||
pc=new myPixmapCache;
|
pc=new myPixmapCache;
|
||||||
// not found.. create the image and store it in a cache
|
|
||||||
pc->last_used=ti; // set the last_used value.
|
pc->last_used=ti; // set the last_used value.
|
||||||
|
|
||||||
QFontMetrics fm(*q.font);
|
QFontMetrics fm(*q.font);
|
||||||
@ -2559,6 +2558,8 @@ void gGraphView::DrawTextQue()
|
|||||||
w=fm.width(q.text);
|
w=fm.width(q.text);
|
||||||
h=fm.height();
|
h=fm.height();
|
||||||
|
|
||||||
|
w*=dpr;
|
||||||
|
h*=dpr;
|
||||||
|
|
||||||
rect.setWidth(w);
|
rect.setWidth(w);
|
||||||
rect.setHeight(h);
|
rect.setHeight(h);
|
||||||
@ -2567,94 +2568,70 @@ void gGraphView::DrawTextQue()
|
|||||||
|
|
||||||
pm.fill(Qt::transparent);
|
pm.fill(Qt::transparent);
|
||||||
|
|
||||||
QPainter painter(&pm);
|
QPainter imgpainter(&pm);
|
||||||
|
|
||||||
// Hmmm.. Maybe I need to be able to turn this on/off?
|
|
||||||
|
|
||||||
|
|
||||||
QBrush b(q.color);
|
QBrush b(q.color);
|
||||||
painter.setBrush(b);
|
imgpainter.setBrush(b);
|
||||||
//QFont font=*q.font;
|
|
||||||
//if (!q.antialias) {
|
|
||||||
// q.font->setStyleStrategy(QFont::NoAntialias);
|
|
||||||
//} else q.font->setStyleStrategy(QFont::PreferAntialias);
|
|
||||||
//painter.setFont(font);
|
|
||||||
|
|
||||||
painter.setFont(*q.font);
|
QFont font=*q.font;
|
||||||
|
font.setPointSizeF(q.font->pointSizeF()*dpr);
|
||||||
|
imgpainter.setFont(font);
|
||||||
|
|
||||||
painter.setRenderHint(QPainter::TextAntialiasing, q.antialias);
|
imgpainter.setRenderHint(QPainter::TextAntialiasing, q.antialias);
|
||||||
painter.drawText(2,h,q.text);
|
imgpainter.drawText(2,h,q.text);
|
||||||
painter.end();
|
imgpainter.end();
|
||||||
|
|
||||||
pc->image=pm;// QGLWidget::convertToGLFormat(pm);
|
pc->image=pm;
|
||||||
pixmap_cache_size+=pm.width()*pm.height()*(pm.depth()/8);
|
pixmap_cache_size+=pm.width()*pm.height()*(pm.depth()/8);
|
||||||
pc->textureID=bindTexture(pc->image,GL_TEXTURE_2D,GL_RGBA,QGLContext::NoBindOption);
|
|
||||||
pixmap_cache[hstr]=pc;
|
pixmap_cache[hstr]=pc;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (pc) {
|
if (pc) {
|
||||||
painter.begin(this);
|
|
||||||
pc->last_used=ti;
|
pc->last_used=ti;
|
||||||
|
|
||||||
//glEnable(GL_BLEND);
|
|
||||||
//glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
||||||
|
|
||||||
//glEnable(GL_TEXTURE_2D);
|
|
||||||
if (q.angle!=0) {
|
if (q.angle!=0) {
|
||||||
// glPushMatrix();
|
|
||||||
// glTranslatef(q.x-pc->image.height()-(pc->image.height()/2),q.y+pc->image.width()/2 + pc->image.height()/2, 0);
|
|
||||||
// glRotatef(-q.angle,0,0,1);
|
|
||||||
// drawTexture(QPoint(0,pc->image.height()/2),pc->textureID);
|
|
||||||
// glPopMatrix();
|
|
||||||
|
|
||||||
float xxx=q.x-pc->image.height()-(pc->image.height()/2);
|
int h=pc->image.height();
|
||||||
float yyy=q.y+pc->image.width()/2 + pc->image.height()/2;
|
int w=pc->image.width();
|
||||||
|
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
|
||||||
|
h/=dpr;
|
||||||
|
w/=dpr;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
float xxx=q.x-h-(h/2);
|
||||||
|
float yyy=q.y+w/2 + w/2;
|
||||||
|
|
||||||
painter.translate(xxx,yyy);
|
painter.translate(xxx,yyy);
|
||||||
painter.rotate(-q.angle);
|
painter.rotate(-q.angle);
|
||||||
painter.drawImage(QPoint(0,pc->image.height()/2),pc->image);
|
painter.drawImage(QRect(0,h/2,w,h),pc->image,pc->image.rect());
|
||||||
painter.rotate(+q.angle);
|
painter.rotate(+q.angle);
|
||||||
painter.translate(-xxx, -yyy);
|
painter.translate(-xxx, -yyy);
|
||||||
|
|
||||||
//glTranslatef(marginLeft()+4,originY+height/2+x/2, 0);
|
|
||||||
//glRotatef(-90,0,0,1);
|
|
||||||
//m_graphview->drawTexture(QPoint(0,y/2),titleImageTex);
|
|
||||||
} else {
|
} else {
|
||||||
painter.drawImage(q.x,q.y-pc->image.height()+4,pc->image);
|
int h=pc->image.height()/dpr;
|
||||||
// TODO: setup for rotation if angle specified.
|
int w=pc->image.width()/dpr;
|
||||||
//drawTexture(QPoint(q.x,q.y-pc->image.height()+4),pc->textureID);
|
painter.drawImage(QRect(q.x,q.y-h,w,h),pc->image,pc->image.rect());
|
||||||
}
|
}
|
||||||
// glDisable(GL_TEXTURE_2D);
|
|
||||||
// glDisable(GL_BLEND);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
// Just draw the fonts..
|
||||||
#ifndef USE_RENDERTEXT
|
|
||||||
QBrush b(q.color);
|
QBrush b(q.color);
|
||||||
painter.setBrush(b);
|
painter.setBrush(b);
|
||||||
painter.setFont(*q.font);
|
painter.setFont(*q.font);
|
||||||
#endif
|
|
||||||
|
|
||||||
if (q.angle==0) {
|
if (q.angle==0) {
|
||||||
qglColor(q.color);
|
|
||||||
// *********************************************************
|
// *********************************************************
|
||||||
// Holy crap this is slow
|
// Holy crap this is slow
|
||||||
// The following line is responsible for 77% of drawing time
|
// The following line is responsible for 77% of drawing time
|
||||||
// *********************************************************
|
// *********************************************************
|
||||||
|
|
||||||
#ifdef USE_RENDERTEXT
|
|
||||||
renderText(q.x,q.y,q.text,*q.font);
|
|
||||||
#else
|
|
||||||
painter.drawText(q.x, q.y, q.text);
|
painter.drawText(q.x, q.y, q.text);
|
||||||
#endif
|
|
||||||
} else {
|
} else {
|
||||||
#ifdef USE_RENDERTEXT
|
|
||||||
painter.begin(this);
|
|
||||||
QBrush b(q.color);
|
QBrush b(q.color);
|
||||||
painter.setBrush(b);
|
painter.setBrush(b);
|
||||||
painter.setFont(*q.font);
|
painter.setFont(*q.font);
|
||||||
#endif
|
|
||||||
w=painter.fontMetrics().width(q.text);
|
w=painter.fontMetrics().width(q.text);
|
||||||
h=painter.fontMetrics().xHeight()+2;
|
h=painter.fontMetrics().xHeight()+2;
|
||||||
|
|
||||||
@ -2663,9 +2640,6 @@ void gGraphView::DrawTextQue()
|
|||||||
painter.drawText(floor(-w/2.0), floor(-h/2.0), q.text);
|
painter.drawText(floor(-w/2.0), floor(-h/2.0), q.text);
|
||||||
painter.rotate(+q.angle);
|
painter.rotate(+q.angle);
|
||||||
painter.translate(-q.x, -q.y);
|
painter.translate(-q.x, -q.y);
|
||||||
#ifdef USE_RENDERTEXT
|
|
||||||
painter.end();
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
q.text.clear();
|
q.text.clear();
|
||||||
@ -2673,10 +2647,7 @@ void gGraphView::DrawTextQue()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!usePixmapCache()) {
|
if (!usePixmapCache()) {
|
||||||
#ifndef USE_RENDERTEXT
|
|
||||||
painter.end();
|
painter.end();
|
||||||
#endif
|
|
||||||
glPopAttrib();
|
|
||||||
}
|
}
|
||||||
//qDebug() << "rendered" << m_textque_items << "text items";
|
//qDebug() << "rendered" << m_textque_items << "text items";
|
||||||
m_textque_items=0;
|
m_textque_items=0;
|
||||||
|
Loading…
Reference in New Issue
Block a user