aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-08-04 18:44:57 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-09 19:19:04 +0100
commit7c9f46acd202121e67557bb634961ef17a9f6c1f (patch)
treef21b6ff42a930cc97c31db9f20c03f1613e70291 /mobile-widgets/qmlmanager.cpp
parentcd4f66014f7b5269dff9e088c9d7d38241c03156 (diff)
downloadsubsurface-7c9f46acd202121e67557bb634961ef17a9f6c1f.tar.gz
Core: remove MAX_CYLINDERS restriction
Instead of using fixed size arrays, use a new cylinder_table structure. The code copies the weightsystem code, but is significantly more complex because cylinders are such an integral part of the core. Two functions to access the cylinders were added: get_cylinder() and get_or_create_cylinder() The former does a simple array access and supposes that the cylinder exists. The latter is used by the parser(s) and if a cylinder with the given id does not exist, cylinders up to that id are generated. One point will make C programmers cringe: the cylinder structure is passed by value. This is due to the way the table-macros work. A refactoring of the table macros is planned. It has to be noted that the size of a cylinder_t is 64 bytes, i.e. 8 long words on a 64-bit architecture, so passing on the stack is probably not even significantly slower than passing as reference. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index bace5aed6..f14092fb1 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -1125,10 +1125,10 @@ void QMLManager::commitChanges(QString diveId, QString number, QString date, QSt
if (state != "add" && !is_cylinder_used(d, i))
continue;
- d->cylinder[i].start.mbar = parsePressureToMbar(startpressure[j]);
- d->cylinder[i].end.mbar = parsePressureToMbar(endpressure[j]);
- if (d->cylinder[i].end.mbar > d->cylinder[i].start.mbar)
- d->cylinder[i].end.mbar = d->cylinder[i].start.mbar;
+ d->cylinders.cylinders[i].start.mbar = parsePressureToMbar(startpressure[j]);
+ d->cylinders.cylinders[i].end.mbar = parsePressureToMbar(endpressure[j]);
+ if (d->cylinders.cylinders[i].end.mbar > d->cylinders.cylinders[i].start.mbar)
+ d->cylinders.cylinders[i].end.mbar = d->cylinders.cylinders[i].start.mbar;
j++;
}
@@ -1146,8 +1146,8 @@ void QMLManager::commitChanges(QString diveId, QString number, QString date, QSt
he >= 0 && he <= 1000 &&
o2 + he <= 1000) {
diveChanged = true;
- d->cylinder[i].gasmix.o2.permille = o2;
- d->cylinder[i].gasmix.he.permille = he;
+ d->cylinders.cylinders[i].gasmix.o2.permille = o2;
+ d->cylinders.cylinders[i].gasmix.he.permille = he;
}
j++;
}
@@ -1157,7 +1157,7 @@ void QMLManager::commitChanges(QString diveId, QString number, QString date, QSt
diveChanged = true;
unsigned long i;
int size = 0, wp = 0, j = 0, k = 0;
- for (j = 0; k < usedCylinder.length() && j < MAX_CYLINDERS; j++) {
+ for (j = 0; k < usedCylinder.length(); j++) {
if (state != "add" && !is_cylinder_used(d, j))
continue;
@@ -1173,9 +1173,9 @@ void QMLManager::commitChanges(QString diveId, QString number, QString date, QSt
break;
}
}
- d->cylinder[j].type.description = copy_qstring(usedCylinder[k]);
- d->cylinder[j].type.size.mliter = size;
- d->cylinder[j].type.workingpressure.mbar = wp;
+ d->cylinders.cylinders[j].type.description = copy_qstring(usedCylinder[k]);
+ d->cylinders.cylinders[j].type.size.mliter = size;
+ d->cylinders.cylinders[j].type.workingpressure.mbar = wp;
k++;
}
}
@@ -1788,9 +1788,9 @@ QStringList QMLManager::cylinderInit() const
struct dive *d;
int i = 0;
for_each_dive (i, d) {
- for (int j = 0; j < MAX_CYLINDERS; j++) {
- if (!empty_string(d->cylinder[j].type.description))
- cylinders << d->cylinder[j].type.description;
+ for (int j = 0; j < d->cylinders.nr; j++) {
+ if (!empty_string(d->cylinders.cylinders[j].type.description))
+ cylinders << d->cylinders.cylinders[j].type.description;
}
}