Save CCR cylinder use in XML and git

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-11-16 22:11:34 +00:00
parent 84dc8b8962
commit 202c5cbfeb
6 changed files with 31 additions and 1 deletions

3
dive.c
View file

@ -26,6 +26,9 @@ static const char *default_tags[] = {
QT_TRANSLATE_NOOP("gettextFromC", "deco")
};
const char *cylinderuse_text[] = { "OC-gas", "diluent", "oxygen" };
int event_is_gaschange(struct event *ev)
{
return ev->type == SAMPLE_EVENT_GASCHANGE ||

4
dive.h
View file

@ -48,7 +48,9 @@ extern "C" {
#endif
enum dive_comp_type {OC, CCR, PSCR}; // Flags (Open-circuit and Closed-circuit-rebreather) for setting dive computer type
enum cylinderuse {OC_GAS, DILUENT, OXYGEN}; // The different uses for cylinders
enum cylinderuse {OC_GAS, DILUENT, OXYGEN, NUM_GAS_USE}; // The different uses for cylinders
extern const char *cylinderuse_text[];
struct gasmix {
fraction_t o2;

View file

@ -254,6 +254,14 @@ static void parse_cylinder_keyvalue(void *_cylinder, const char *key, const char
cylinder->end = get_pressure(value);
return;
}
if (!strcmp(key, "use")) {
for (enum cylinderuse i = 0; i < NUM_GAS_USE; i++) {
if (same_string(value, cylinderuse_text[i])) {
cylinder->cylinder_use = i;
return;
}
}
}
report_error("Unknown cylinder key/value pair (%s/%s)", key, value);
}

View file

@ -317,6 +317,16 @@ static void pressure(char *buffer, pressure_t *pressure)
}
}
static void cylinder_use(char *buffer, enum cylinderuse *cyl_use)
{
for (enum cylinderuse i = 0; i < NUM_GAS_USE; i++) {
if (same_string(buffer, cylinderuse_text[i])) {
*cyl_use = i;
return;
}
}
}
static void salinity(char *buffer, int *salinity)
{
union int_or_float val;
@ -1226,6 +1236,8 @@ static void try_to_fill_dive(struct dive *dive, const char *name, char *buf)
return;
if (MATCH("end.cylinder", pressure, &dive->cylinder[cur_cylinder_index].end))
return;
if (MATCH("use.cylinder", cylinder_use, &dive->cylinder[cur_cylinder_index].cylinder_use))
return;
if (MATCH("description.weightsystem", utf8_string, &dive->weightsystem[cur_ws_index].description))
return;
if (MATCH("weight.weightsystem", weight, &dive->weightsystem[cur_ws_index].weight))

View file

@ -159,6 +159,9 @@ static void save_cylinder_info(struct membuffer *b, struct dive *dive)
put_gasmix(b, &cylinder->gasmix);
put_pressure(b, cylinder->start, " start=", "bar");
put_pressure(b, cylinder->end, " end=", "bar");
if (cylinder->cylinder_use != OC_GAS)
put_format(b, " use=%s", cylinderuse_text[cylinder->cylinder_use]);
put_string(b, "\n");
}
}

View file

@ -179,6 +179,8 @@ static void save_cylinder_info(struct membuffer *b, struct dive *dive)
put_gasmix(b, &cylinder->gasmix);
put_pressure(b, cylinder->start, " start='", " bar'");
put_pressure(b, cylinder->end, " end='", " bar'");
if (cylinder->cylinder_use != OC_GAS)
show_utf8(b, cylinderuse_text[cylinder->cylinder_use], " use='", "'", 1);
put_format(b, " />\n");
}
}