mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Minor bugfix and flow rate optimisations
This commit is contained in:
parent
e022cee75e
commit
5056974887
@ -95,6 +95,7 @@ void InitGraphs()
|
|||||||
images["smiley"]=new QImage(":/icons/smileyface.png");
|
images["smiley"]=new QImage(":/icons/smileyface.png");
|
||||||
//images["sad"]=new QImage(":/icons/sadface.png");
|
//images["sad"]=new QImage(":/icons/sadface.png");
|
||||||
|
|
||||||
|
images["sheep"]=new QImage(":/icons/sheep.png");
|
||||||
images["brick"]=new QImage(":/icons/brick.png");
|
images["brick"]=new QImage(":/icons/brick.png");
|
||||||
images["nographs"]=new QImage(":/icons/nographs.png");
|
images["nographs"]=new QImage(":/icons/nographs.png");
|
||||||
images["nodata"]=new QImage(":/icons/nodata.png");
|
images["nodata"]=new QImage(":/icons/nodata.png");
|
||||||
@ -2331,7 +2332,7 @@ void gGraphView::resizeGL(int w, int h)
|
|||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
}
|
}
|
||||||
|
|
||||||
void gGraphView::renderSomethingFun()
|
void gGraphView::renderSomethingFun(float alpha)
|
||||||
{
|
{
|
||||||
if (cubeimg.size()==0) return;
|
if (cubeimg.size()==0) return;
|
||||||
// glPushMatrix();
|
// glPushMatrix();
|
||||||
@ -2394,7 +2395,7 @@ void gGraphView::renderSomethingFun()
|
|||||||
|
|
||||||
//glBindTexture(GL_TEXTURE_2D, cubetex); //texid[i % imgcount]);
|
//glBindTexture(GL_TEXTURE_2D, cubetex); //texid[i % imgcount]);
|
||||||
i++;
|
i++;
|
||||||
glColor4f(1,1,1,1);
|
glColor4f(1,1,1,alpha);
|
||||||
|
|
||||||
glBegin(GL_QUADS);
|
glBegin(GL_QUADS);
|
||||||
glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, -1.0f, 1.0f); // Bottom Left Of The Texture and Quad
|
glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, -1.0f, 1.0f); // Bottom Left Of The Texture and Quad
|
||||||
@ -2747,8 +2748,14 @@ void gGraphView::paintGL()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Need a really good condition/excuse to switch this on.. :-}
|
||||||
|
bool bereallyannoying=false;
|
||||||
|
|
||||||
if (!m_inAnimation || (!m_fadingIn)) {
|
if (!m_inAnimation || (!m_fadingIn)) {
|
||||||
// Not in animation sequence, draw graphs like normal
|
// Not in animation sequence, draw graphs like normal
|
||||||
|
if (bereallyannoying)
|
||||||
|
renderSomethingFun(0.7);
|
||||||
|
|
||||||
numgraphs=renderGraphs();
|
numgraphs=renderGraphs();
|
||||||
|
|
||||||
if (!numgraphs) { // No graphs drawn?
|
if (!numgraphs) { // No graphs drawn?
|
||||||
@ -2756,7 +2763,8 @@ void gGraphView::paintGL()
|
|||||||
GetTextExtent(m_emptytext,x,y,bigfont);
|
GetTextExtent(m_emptytext,x,y,bigfont);
|
||||||
int tp;
|
int tp;
|
||||||
if (something_fun && this->isVisible()) {// Do something fun instead
|
if (something_fun && this->isVisible()) {// Do something fun instead
|
||||||
renderSomethingFun();
|
if (!bereallyannoying)
|
||||||
|
renderSomethingFun();
|
||||||
tp=height()-(y/2);
|
tp=height()-(y/2);
|
||||||
} else {
|
} else {
|
||||||
tp=height() / 2 + y / 2;
|
tp=height() / 2 + y / 2;
|
||||||
@ -2800,7 +2808,7 @@ void gGraphView::paintGL()
|
|||||||
swapBuffers(); // Dump to screen.
|
swapBuffers(); // Dump to screen.
|
||||||
|
|
||||||
if (this->isVisible()) {
|
if (this->isVisible()) {
|
||||||
if (m_limbo || m_inAnimation || (something_fun && !numgraphs)) {
|
if (m_limbo || m_inAnimation || (something_fun && (bereallyannoying || !numgraphs))) {
|
||||||
redrawtimer->setInterval(1000.0/50);
|
redrawtimer->setInterval(1000.0/50);
|
||||||
redrawtimer->setSingleShot(true);
|
redrawtimer->setSingleShot(true);
|
||||||
redrawtimer->start();
|
redrawtimer->start();
|
||||||
|
@ -1020,7 +1020,7 @@ protected:
|
|||||||
//! \variable Scale used to enlarge graphs when less graphs than can fit on screen.
|
//! \variable Scale used to enlarge graphs when less graphs than can fit on screen.
|
||||||
float m_scaleY;
|
float m_scaleY;
|
||||||
|
|
||||||
void renderSomethingFun();
|
void renderSomethingFun(float alpha=1);
|
||||||
|
|
||||||
bool m_sizer_dragging;
|
bool m_sizer_dragging;
|
||||||
int m_sizer_index;
|
int m_sizer_index;
|
||||||
|
@ -520,10 +520,11 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Unrolling square plot outside of loop to gain a minor speed improvement.
|
// Unrolling square plot outside of loop to gain a minor speed improvement.
|
||||||
|
EventStoreType *eptr=dptr+siz;
|
||||||
if (square_plot) {
|
if (square_plot) {
|
||||||
for (int i=0;i<siz;i++) {
|
for (; dptr < eptr; dptr++) {
|
||||||
time=start + *tptr++;
|
time=start + *tptr++;
|
||||||
data=gain * *dptr++;
|
data=gain * *dptr;
|
||||||
|
|
||||||
px=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X
|
px=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X
|
||||||
py=yst-((data - miny) * ymult); // Same for Y scale without precomputed gain
|
py=yst-((data - miny) * ymult); // Same for Y scale without precomputed gain
|
||||||
@ -553,9 +554,10 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (int i=0;i<siz;i++) {
|
for (; dptr < eptr; dptr++) {
|
||||||
|
//for (int i=0;i<siz;i++) {
|
||||||
time=start + *tptr++;
|
time=start + *tptr++;
|
||||||
data=gain * *dptr++;
|
data=gain * *dptr;
|
||||||
|
|
||||||
px=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X
|
px=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X
|
||||||
py=yst-((data - miny) * ymult); // Same for Y scale without precomputed gain
|
py=yst-((data - miny) * ymult); // Same for Y scale without precomputed gain
|
||||||
|
@ -363,8 +363,8 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
Day * day;
|
Day * day;
|
||||||
EventDataType hours;
|
EventDataType hours;
|
||||||
|
|
||||||
quint32 * tptr;
|
//quint32 * tptr;
|
||||||
EventStoreType * dptr;
|
//EventStoreType * dptr;
|
||||||
|
|
||||||
short px2,py2;
|
short px2,py2;
|
||||||
for (qint64 Q=minx;Q<=maxx+86400000L;Q+=86400000L) {
|
for (qint64 Q=minx;Q<=maxx+86400000L;Q+=86400000L) {
|
||||||
|
@ -41,5 +41,6 @@
|
|||||||
<file>icons/bob-v3.0.png</file>
|
<file>icons/bob-v3.0.png</file>
|
||||||
<file>docs/script.js</file>
|
<file>docs/script.js</file>
|
||||||
<file>icons/nographs.png</file>
|
<file>icons/nographs.png</file>
|
||||||
|
<file>icons/sheep.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
@ -859,7 +859,7 @@ void Daily::Load(QDate date)
|
|||||||
|
|
||||||
html+="</table></td>";
|
html+="</table></td>";
|
||||||
} else if (cpap->machine->GetClass()==STR_MACH_Intellipap) {
|
} else if (cpap->machine->GetClass()==STR_MACH_Intellipap) {
|
||||||
html+="<td colspan=2 valign=top><table cellspacing=0 cellpadding=2 border=0 width='100%'>";
|
html+="<td colspan=2 valign=top><table cellspacing=0 cellpadding=1 border=0 width='100%'>";
|
||||||
html+=QString("<tr><td align='left' bgcolor='%1'><b><font color='%2'><a class=info2 href='event=%6'>%3<span>%4</span></a></font></b></td><td width=20% bgcolor='%1'><b><font color='%2'>%5%</font></b></td></tr>\n")
|
html+=QString("<tr><td align='left' bgcolor='%1'><b><font color='%2'><a class=info2 href='event=%6'>%3<span>%4</span></a></font></b></td><td width=20% bgcolor='%1'><b><font color='%2'>%5%</font></b></td></tr>\n")
|
||||||
.arg("#40c0c0").arg("black").arg(tr("Leak")).arg(schema::channel[CPAP_LeakFlag].description()).arg(lki,0,'f',2).arg(CPAP_LeakFlag);
|
.arg("#40c0c0").arg("black").arg(tr("Leak")).arg(schema::channel[CPAP_LeakFlag].description()).arg(lki,0,'f',2).arg(CPAP_LeakFlag);
|
||||||
|
|
||||||
@ -1796,6 +1796,8 @@ void Daily::updateCube()
|
|||||||
GraphView->setCubeImage(images["nodata"]);
|
GraphView->setCubeImage(images["nodata"]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
GraphView->setCubeImage(images["sheep"]);
|
||||||
|
|
||||||
ui->toggleGraphs->setArrowType(Qt::DownArrow);
|
ui->toggleGraphs->setArrowType(Qt::DownArrow);
|
||||||
ui->toggleGraphs->setToolTip(tr("Hide all graphs"));
|
ui->toggleGraphs->setToolTip(tr("Hide all graphs"));
|
||||||
ui->toggleGraphs->blockSignals(true);
|
ui->toggleGraphs->blockSignals(true);
|
||||||
|
BIN
docs/sheep.png
BIN
docs/sheep.png
Binary file not shown.
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 30 KiB |
BIN
icons/sheep.png
Normal file
BIN
icons/sheep.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
@ -517,11 +517,10 @@ void Overview::on_rangeCombo_activated(int index)
|
|||||||
}
|
}
|
||||||
void Overview::setRange(QDate start, QDate end)
|
void Overview::setRange(QDate start, QDate end)
|
||||||
{
|
{
|
||||||
ui->dateStart->setMaximumDate(end);
|
|
||||||
ui->dateEnd->setMinimumDate(start);
|
|
||||||
|
|
||||||
ui->dateEnd->blockSignals(true);
|
ui->dateEnd->blockSignals(true);
|
||||||
ui->dateStart->blockSignals(true);
|
ui->dateStart->blockSignals(true);
|
||||||
|
ui->dateStart->setMaximumDate(end);
|
||||||
|
ui->dateEnd->setMinimumDate(start);
|
||||||
ui->dateStart->setDate(start);
|
ui->dateStart->setDate(start);
|
||||||
ui->dateEnd->setDate(end);
|
ui->dateEnd->setDate(end);
|
||||||
ui->dateEnd->blockSignals(false);
|
ui->dateEnd->blockSignals(false);
|
||||||
|
Loading…
Reference in New Issue
Block a user