diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2017-05-07 15:34:27 +0300 |
---|---|---|
committer | Miika Turkia <miika.turkia@gmail.com> | 2017-05-07 15:34:27 +0300 |
commit | 6e1c00078dc440ca96745315455b731ca3a5fa09 (patch) | |
tree | 8f095b0c07018069742316a8047b9fe50aaf07ae /core/qthelper.cpp | |
parent | cef56c6290c82b882181bf7477ee96ad4fa65dcd (diff) | |
download | subsurface-6e1c00078dc440ca96745315455b731ca3a5fa09.tar.gz |
Add dive mode support for Seabear import
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Diffstat (limited to 'core/qthelper.cpp')
-rw-r--r-- | core/qthelper.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp index cbfbd2f72..41c9d310b 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -1545,13 +1545,27 @@ int parse_seabear_header(const char *filename, char **params, int pnr) } /* - * Note that we scan over the "Log interval" on purpose + * Grab the sample interval */ while ((parseLine = f.readLine().trimmed()).length() > 0 && !f.atEnd()) { if (parseLine.contains("//Log interval: ")) { params[pnr++] = strdup("delta"); params[pnr++] = strdup(parseLine.remove(QString::fromLatin1("//Log interval: ")).trimmed().remove(QString::fromLatin1(" s")).toUtf8().data()); + break; + } + } + + /* + * Dive mode, can be: OC, APNEA, BOTTOM TIMER, CCR, CCR SENSORBOARD + * Note that we scan over the "Log interval" on purpose + */ + + while ((parseLine = f.readLine().trimmed()).length() > 0 && !f.atEnd()) { + QString needle = "//Mode: "; + if (parseLine.contains(needle)) { + params[pnr++] = strdup("diveMode"); + params[pnr++] = strdup(parseLine.replace(needle, QString::fromLatin1("")).prepend("\"").append("\"").toUtf8().data()); } } |