From ae3fe507b1740c2c04742606a839f23a2c28811f Mon Sep 17 00:00:00 2001
From: Mark Watkins
Date: Thu, 15 May 2014 16:20:54 +1000
Subject: [PATCH] F&P import flags code rearange
---
.../SleepLib/loader_plugins/icon_loader.cpp | 49 +++++++------------
sleepyhead/SleepLib/schema.cpp | 2 +-
sleepyhead/common_gui.cpp | 2 +-
sleepyhead/daily.cpp | 2 +-
sleepyhead/mainwindow.cpp | 7 +--
5 files changed, 26 insertions(+), 36 deletions(-)
diff --git a/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp b/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp
index 33360c01..d35ad00d 100644
--- a/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp
+++ b/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp
@@ -845,44 +845,33 @@ bool FPIconLoader::OpenDetail(Machine *mach, QString filename, Profile *profile)
idx = stidx * 15;
+ quint8 bitmask;
for (int i = 0; i < rec; i++) {
for (int j = 0; j < 3; j++) {
pressure = data[idx];
- leak = data[idx + 1];
- a1 = data[idx + 2];
- a2 = data[idx + 3];
- a3 = data[idx + 4];
- sa1 = (a3 >> 6) & 1; // Sense awake bit for first minutes
- sa2 = (a3 >> 7) & 1; // Sense awake bit for second minutes
PR->AddEvent(ti, pressure);
+
+ leak = data[idx + 1];
LK->AddEvent(ti, leak);
+
+ a1 = data[idx + 2]; // [0..5] Obstructive flag, [6..7] Unknown
+ a2 = data[idx + 3]; // [0..5] Hypopnea, [6..7] Unknown
+ a3 = data[idx + 4]; // [0..5] Flow Limitation, [6..7] SensAwake bitflags, 1 per minute
+
+ sa1 = (a3 >> 6) & 1; // Sense awake bit for first minutes
+ sa2 = (a3 >> 7) & 1; // Sense awake bit for second minute
+
+ if (sa1) { SA->AddEvent(ti, 1); }
+ if (sa2) { SA->AddEvent(ti + 60000L, 1); }
+
+ bitmask = 1;
for (int k = 0; k < 6; k++) { // There are 6 flag sets per 2 minutes
-
- //if (a1 > 0) { OA->AddEvent(ti, a1); }
- if ((a1 & 1) == 1) { OA->AddEvent(ti, 1); }
-
- //if (a2 > 0) { H->AddEvent(ti, a2); }
- if ((a2 & 1) == 1) { H->AddEvent(ti, 1); }
-
- //if (a3 > 0) { FL->AddEvent(ti, a3); }
- if ((a3 & 1) == 1) { FL->AddEvent(ti, 1); }
-
- // These should be flags as above, but for now I re-used the redundant FLG graph
- if (k == 0) {
- if (sa1 == 1) {SA->AddEvent(ti, sa1); }
- }
- else if (k == 3) {
- if (sa2 == 1) { SA->AddEvent(ti, sa2); }
- }
- // else { FLG->AddEvent(ti, 0); }
-
- a1 = a1 >> 1;
- a2 = a2 >> 1;
- a3 = a3 >> 1;
+ if (a1 & bitmask) { OA->AddEvent(ti, 1); }
+ if (a2 & bitmask) { H->AddEvent(ti, 1); }
+ if (a3 & bitmask) { FL->AddEvent(ti, 1); }
+ bitmask <<= 1;
ti += 20000L; // Increment 20 seconds
}
- //FLG->AddEvent(ti, a3);
- //ti += 120000L;
idx += 5;
}
diff --git a/sleepyhead/SleepLib/schema.cpp b/sleepyhead/SleepLib/schema.cpp
index aa07290a..806b2ca1 100644
--- a/sleepyhead/SleepLib/schema.cpp
+++ b/sleepyhead/SleepLib/schema.cpp
@@ -213,7 +213,7 @@ void init()
schema::channel.add(GRP_CPAP, new Channel(CPAP_SensAwake = 0x100d, DATA, SESSION,
"SensAwake", QObject::tr("SensAwake"),
QObject::tr("SensAwake feature will reduce pressure when waking is detected."),
- QObject::tr("SA"), QObject::tr("events/hr"), DEFAULT, QColor("#404040")));
+ QObject::tr("SA"), QObject::tr("events/hr"), DEFAULT, QColor("gold")));
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag1 = 0x101e, DATA, SESSION,
"UserFlag1", QObject::tr("User Flag #1"),
QObject::tr("A user definable event detected by SleepyHead's flow waveform processor."),
diff --git a/sleepyhead/common_gui.cpp b/sleepyhead/common_gui.cpp
index 506dbecf..a6f65dc6 100644
--- a/sleepyhead/common_gui.cpp
+++ b/sleepyhead/common_gui.cpp
@@ -73,7 +73,7 @@ QColor COLOR_ClearAirway = QColor("#b254cd");
QColor COLOR_RERA = COLOR_Gold;
QColor COLOR_VibratorySnore = QColor("#ff4040");
QColor COLOR_FlowLimit = QColor("#404040");
-QColor COLOR_SensAwake = QColor("#40C040");
+QColor COLOR_SensAwake = COLOR_Gold;
QColor COLOR_LeakFlag = QColor("#40c0c0"); // Qt::darkBlue;
QColor COLOR_NRI = COLOR_ClearAirway;
QColor COLOR_ExP = Qt::darkCyan;
diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp
index ea6e0a90..8983a268 100644
--- a/sleepyhead/daily.cpp
+++ b/sleepyhead/daily.cpp
@@ -1303,7 +1303,7 @@ void Daily::Load(QDate date)
{ CPAP_ClearAirway, COLOR_ClearAirway, Qt::black, cai=cpap->count(CPAP_ClearAirway)/hours },
{ CPAP_NRI, COLOR_NRI, Qt::black, nri=cpap->count(CPAP_NRI)/hours },
{ CPAP_FlowLimit, COLOR_FlowLimit, Qt::white, fli=cpap->count(CPAP_FlowLimit)/hours },
- { CPAP_SensAwake, COLOR_SensAwake, Qt::white, sai=cpap->count(CPAP_SensAwake)/hours },
+ { CPAP_SensAwake, COLOR_SensAwake, Qt::black, sai=cpap->count(CPAP_SensAwake)/hours },
{ CPAP_ExP, COLOR_ExP, Qt::black, exp=cpap->count(CPAP_ExP)/hours },
{ CPAP_RERA, COLOR_RERA, Qt::black, rei=cpap->count(CPAP_RERA)/hours },
{ CPAP_VSnore, COLOR_VibratorySnore, Qt::black, vs=cpap->count(CPAP_VSnore)/cpap->hours() },
diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp
index b3b76130..e86bc745 100644
--- a/sleepyhead/mainwindow.cpp
+++ b/sleepyhead/mainwindow.cpp
@@ -759,9 +759,10 @@ QString MainWindow::getWelcomeHTML()
"" + tr("Currenly supported machines:") + "
"
"" + tr("CPAP") + ""
- "" + tr("Philips Respironics System One (CPAP, Auto, BiPAP & ASV models)") + ""
+ "" + tr("Philips Respironics System One (CPAP Pro, Auto, BiPAP & ASV models)") + ""
"" + tr("ResMed S9 models (CPAP, Auto, VPAP)") + ""
"" + tr("DeVilbiss Intellipap (Auto)") + ""
+ "" + tr("Fisher & Paykel ICON (CPAP, Auto)") + ""
"" + tr("Oximetry") + ""
"" + tr("Contec CMS50D+, CMS50E and CMS50F (not 50FW) Oximeters") + ""
"" + tr("ResMed S9 Oximeter Attachment") + ""
@@ -1020,10 +1021,10 @@ void MainWindow::on_action_About_triggered()
// Credits section
"
" +tr("Kudos & Credits") + "
" +
tr("Bugfixes, Patches and Platform Help:") + " " +
- tr("James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, and Sean Stangl.")
+ tr("James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl and Roy Stone.")
+ "
"
- "" + tr("Translators:") + " " + tr("Arie Klerk (Dutch), Steffen Reitz (German).") +
+ "
" + tr("Translators:") + " " + tr("Arie Klerk (Dutch), Steffen Reitz (German), and others I've still to add here.") +
"
"
"" + tr("3rd Party Libaries:") + " " +