2020-04-27 18:12:16 +00:00
|
|
|
/* gPressureChart Implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 The Oscar Team
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
|
|
|
|
|
|
|
#include "gPressureChart.h"
|
|
|
|
|
|
|
|
gPressureChart::gPressureChart()
|
|
|
|
: gSummaryChart("Pressure", MT_CPAP)
|
|
|
|
{
|
2020-04-27 20:06:08 +00:00
|
|
|
addCalc(CPAP_Pressure, ST_SETMAX);
|
|
|
|
addCalc(CPAP_Pressure, ST_MID);
|
|
|
|
addCalc(CPAP_Pressure, ST_90P);
|
|
|
|
addCalc(CPAP_PressureMin, ST_SETMIN);
|
|
|
|
addCalc(CPAP_PressureMax, ST_SETMAX);
|
|
|
|
|
|
|
|
addCalc(CPAP_EPAP, ST_SETMAX);
|
|
|
|
addCalc(CPAP_IPAP, ST_SETMAX);
|
|
|
|
addCalc(CPAP_EPAPLo, ST_SETMAX);
|
|
|
|
addCalc(CPAP_IPAPHi, ST_SETMAX);
|
|
|
|
|
|
|
|
addCalc(CPAP_EPAP, ST_MID);
|
|
|
|
addCalc(CPAP_EPAP, ST_90P);
|
|
|
|
addCalc(CPAP_IPAP, ST_MID);
|
|
|
|
addCalc(CPAP_IPAP, ST_90P);
|
2020-04-27 18:46:49 +00:00
|
|
|
}
|
|
|
|
|
2020-04-27 20:06:08 +00:00
|
|
|
|
|
|
|
int gPressureChart::addCalc(ChannelID code, SummaryType type)
|
|
|
|
{
|
2020-04-27 18:46:49 +00:00
|
|
|
QColor color = schema::channel[code].defaultColor();
|
|
|
|
if (type == ST_90P) {
|
|
|
|
color = brighten(color, 1.33f);
|
|
|
|
}
|
2020-04-27 20:06:08 +00:00
|
|
|
|
2020-04-27 18:46:49 +00:00
|
|
|
int index = gSummaryChart::addCalc(code, type, color);
|
2020-04-27 20:06:08 +00:00
|
|
|
|
|
|
|
// Save the code and type used to add this calculation so that getCalc()
|
|
|
|
// can retrieve it by code and type instead of by hard-coded index.
|
2020-04-27 19:28:15 +00:00
|
|
|
m_calcs[code][type] = index;
|
2020-04-27 20:06:08 +00:00
|
|
|
|
2020-04-27 18:46:49 +00:00
|
|
|
return index;
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
|
|
|
|
2020-04-27 20:06:08 +00:00
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
SummaryCalcItem* gPressureChart::getCalc(ChannelID code, SummaryType type)
|
2020-04-27 18:12:16 +00:00
|
|
|
{
|
2020-04-27 19:28:15 +00:00
|
|
|
return &calcitems[m_calcs[code][type]];
|
|
|
|
}
|
2020-04-27 18:12:16 +00:00
|
|
|
|
2020-04-27 20:06:08 +00:00
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
void gPressureChart::afterDraw(QPainter &, gGraph &graph, QRectF rect)
|
|
|
|
{
|
2020-04-27 18:12:16 +00:00
|
|
|
QStringList presstr;
|
|
|
|
|
2020-04-27 20:06:08 +00:00
|
|
|
if (getCalc(CPAP_Pressure)->cnt > 0) {
|
|
|
|
presstr.append(channelRange(CPAP_Pressure, STR_TR_CPAP));
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
2020-04-27 19:28:15 +00:00
|
|
|
if (getCalc(CPAP_PressureMin, ST_SETMIN)->cnt > 0) {
|
2020-04-27 18:12:16 +00:00
|
|
|
presstr.append(QString("%1 %2/%3/%4/%5").
|
|
|
|
arg(STR_TR_APAP).
|
2020-04-27 19:28:15 +00:00
|
|
|
arg(getCalc(CPAP_PressureMin, ST_SETMIN)->min,0,'f',1).
|
|
|
|
arg(getCalc(CPAP_Pressure, ST_MID)->mid(), 0, 'f', 1).
|
|
|
|
arg(getCalc(CPAP_Pressure, ST_90P)->mid(),0,'f',1).
|
|
|
|
arg(getCalc(CPAP_PressureMax, ST_SETMAX)->max, 0, 'f', 1));
|
2020-04-27 18:12:16 +00:00
|
|
|
|
|
|
|
}
|
2020-04-27 20:06:08 +00:00
|
|
|
if (getCalc(CPAP_EPAP)->cnt > 0) {
|
|
|
|
presstr.append(channelRange(CPAP_EPAP, STR_TR_EPAP));
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
2020-04-27 20:06:08 +00:00
|
|
|
if (getCalc(CPAP_IPAP)->cnt > 0) {
|
|
|
|
presstr.append(channelRange(CPAP_IPAP, STR_TR_IPAP));
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
2020-04-27 20:06:08 +00:00
|
|
|
if (getCalc(CPAP_EPAPLo)->cnt > 0) {
|
|
|
|
presstr.append(channelRange(CPAP_EPAPLo, STR_TR_EPAPLo));
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
2020-04-27 20:06:08 +00:00
|
|
|
if (getCalc(CPAP_IPAPHi)->cnt > 0) {
|
|
|
|
presstr.append(channelRange(CPAP_IPAPHi, STR_TR_IPAPHi));
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
|
|
|
QString txt = presstr.join(" ");
|
|
|
|
graph.renderText(txt, rect.left(), rect.top()-5*graph.printScaleY(), 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-27 20:06:08 +00:00
|
|
|
QString gPressureChart::channelRange(ChannelID code, const QString & label)
|
|
|
|
{
|
|
|
|
SummaryCalcItem* calc = getCalc(code);
|
|
|
|
return QString("%1 %2/%3/%4").
|
|
|
|
arg(label).
|
|
|
|
arg(calc->min, 0, 'f', 1).
|
|
|
|
arg(calc->mid(), 0, 'f', 1).
|
|
|
|
arg(calc->max, 0, 'f', 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-27 18:12:16 +00:00
|
|
|
void gPressureChart::populate(Day * day, int idx)
|
|
|
|
{
|
|
|
|
float tmp;
|
|
|
|
CPAPMode mode = (CPAPMode)(int)qRound(day->settings_wavg(CPAP_Mode));
|
|
|
|
QVector<SummaryChartSlice> & slices = cache[idx];
|
2020-04-27 19:28:15 +00:00
|
|
|
SummaryCalcItem* calc;
|
2020-04-27 18:12:16 +00:00
|
|
|
|
|
|
|
if (mode == MODE_CPAP) {
|
2020-04-27 19:28:15 +00:00
|
|
|
calc = getCalc(CPAP_Pressure);
|
2020-04-27 18:12:16 +00:00
|
|
|
float pr = day->settings_max(CPAP_Pressure);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(calc, pr, pr, schema::channel[CPAP_Pressure].label(), calc->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
} else if (mode == MODE_APAP) {
|
|
|
|
float min = day->settings_min(CPAP_PressureMin);
|
|
|
|
float max = day->settings_max(CPAP_PressureMax);
|
|
|
|
|
|
|
|
tmp = min;
|
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_PressureMin, ST_SETMIN), min, min, schema::channel[CPAP_PressureMin].label(), getCalc(CPAP_PressureMin, ST_SETMIN)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
if (!day->summaryOnly()) {
|
|
|
|
float med = day->calcMiddle(CPAP_Pressure);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_Pressure, ST_MID), med, med - tmp, day->calcMiddleLabel(CPAP_Pressure), getCalc(CPAP_Pressure, ST_MID)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += med - tmp;
|
|
|
|
|
|
|
|
float p90 = day->calcPercentile(CPAP_Pressure);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_Pressure, ST_90P), p90, p90 - tmp, day->calcPercentileLabel(CPAP_Pressure), getCalc(CPAP_Pressure, ST_90P)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += p90 - tmp;
|
|
|
|
}
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_PressureMax, ST_SETMAX), max, max - tmp, schema::channel[CPAP_PressureMax].label(), getCalc(CPAP_PressureMax, ST_SETMAX)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
|
|
|
|
} else if (mode == MODE_BILEVEL_FIXED) {
|
|
|
|
float epap = day->settings_max(CPAP_EPAP);
|
|
|
|
float ipap = day->settings_max(CPAP_IPAP);
|
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAP), epap, epap, schema::channel[CPAP_EPAP].label(), getCalc(CPAP_EPAP)->color));
|
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP), ipap, ipap - epap, schema::channel[CPAP_IPAP].label(), getCalc(CPAP_IPAP)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
|
|
|
|
} else if (mode == MODE_BILEVEL_AUTO_FIXED_PS) {
|
|
|
|
float epap = day->settings_max(CPAP_EPAPLo);
|
|
|
|
tmp = epap;
|
|
|
|
float ipap = day->settings_max(CPAP_IPAPHi);
|
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAPLo), epap, epap, schema::channel[CPAP_EPAPLo].label(), getCalc(CPAP_EPAPLo)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
if (!day->summaryOnly()) {
|
|
|
|
|
|
|
|
float e50 = day->calcMiddle(CPAP_EPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAP, ST_MID), e50, e50 - tmp, day->calcMiddleLabel(CPAP_EPAP), getCalc(CPAP_EPAP, ST_MID)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += e50 - tmp;
|
|
|
|
|
|
|
|
float e90 = day->calcPercentile(CPAP_EPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAP, ST_90P), e90, e90 - tmp, day->calcPercentileLabel(CPAP_EPAP), getCalc(CPAP_EPAP, ST_90P)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += e90 - tmp;
|
|
|
|
|
|
|
|
float i50 = day->calcMiddle(CPAP_IPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP, ST_MID), i50, i50 - tmp, day->calcMiddleLabel(CPAP_IPAP), getCalc(CPAP_IPAP, ST_MID)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += i50 - tmp;
|
|
|
|
|
|
|
|
float i90 = day->calcPercentile(CPAP_IPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP, ST_90P), i90, i90 - tmp, day->calcPercentileLabel(CPAP_IPAP), getCalc(CPAP_IPAP, ST_90P)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += i90 - tmp;
|
|
|
|
}
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAPHi), ipap, ipap - tmp, schema::channel[CPAP_IPAPHi].label(), getCalc(CPAP_IPAPHi)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
} else if ((mode == MODE_BILEVEL_AUTO_VARIABLE_PS) || (mode == MODE_ASV_VARIABLE_EPAP)) {
|
|
|
|
float epap = day->settings_max(CPAP_EPAPLo);
|
|
|
|
tmp = epap;
|
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAPLo), epap, epap, schema::channel[CPAP_EPAPLo].label(), getCalc(CPAP_EPAPLo)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
if (!day->summaryOnly()) {
|
|
|
|
float e50 = day->calcMiddle(CPAP_EPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAP, ST_MID), e50, e50 - tmp, day->calcMiddleLabel(CPAP_EPAP), getCalc(CPAP_EPAP, ST_MID)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += e50 - tmp;
|
|
|
|
|
|
|
|
float e90 = day->calcPercentile(CPAP_EPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAP, ST_90P), e90, e90 - tmp, day->calcPercentileLabel(CPAP_EPAP), getCalc(CPAP_EPAP, ST_90P)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += e90 - tmp;
|
|
|
|
|
|
|
|
float i50 = day->calcMiddle(CPAP_IPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP, ST_MID), i50, i50 - tmp, day->calcMiddleLabel(CPAP_IPAP), getCalc(CPAP_IPAP, ST_MID)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += i50 - tmp;
|
|
|
|
|
|
|
|
float i90 = day->calcPercentile(CPAP_IPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP, ST_90P), i90, i90 - tmp, day->calcPercentileLabel(CPAP_IPAP), getCalc(CPAP_IPAP, ST_90P)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += i90 - tmp;
|
|
|
|
}
|
|
|
|
float ipap = day->settings_max(CPAP_IPAPHi);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAPHi), ipap, ipap - tmp, schema::channel[CPAP_IPAPHi].label(), getCalc(CPAP_IPAPHi)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
} else if (mode == MODE_ASV) {
|
|
|
|
float epap = day->settings_max(CPAP_EPAP);
|
|
|
|
tmp = epap;
|
|
|
|
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_EPAP), epap, epap, schema::channel[CPAP_EPAP].label(), getCalc(CPAP_EPAP)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
if (!day->summaryOnly()) {
|
|
|
|
float i50 = day->calcMiddle(CPAP_IPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP, ST_MID), i50, i50 - tmp, day->calcMiddleLabel(CPAP_IPAP), getCalc(CPAP_IPAP, ST_MID)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += i50 - tmp;
|
|
|
|
|
|
|
|
float i90 = day->calcPercentile(CPAP_IPAP);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAP, ST_90P), i90, i90 - tmp, day->calcPercentileLabel(CPAP_IPAP), getCalc(CPAP_IPAP, ST_90P)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
tmp += i90 - tmp;
|
|
|
|
}
|
|
|
|
float ipap = day->settings_max(CPAP_IPAPHi);
|
2020-04-27 19:28:15 +00:00
|
|
|
slices.append(SummaryChartSlice(getCalc(CPAP_IPAPHi), ipap, ipap - tmp, schema::channel[CPAP_IPAPHi].label(), getCalc(CPAP_IPAPHi)->color));
|
2020-04-27 18:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|