Display surface interval in diveplan

...instead of just stating "repetitive dive". As requested by
a user.

Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
Robert C. Helling 2017-01-03 15:14:42 +01:00 committed by Subsurface
parent 72bcb6481f
commit 43599742a3
4 changed files with 21 additions and 15 deletions

View file

@ -128,7 +128,7 @@ void interpolate_transition(struct dive *dive, duration_t t0, duration_t t1, dep
}
/* returns the tissue tolerance at the end of this (partial) dive */
bool tissue_at_end(struct dive *dive, char **cached_datap)
unsigned int tissue_at_end(struct dive *dive, char **cached_datap)
{
struct divecomputer *dc;
struct sample *sample, *psample;
@ -136,19 +136,19 @@ bool tissue_at_end(struct dive *dive, char **cached_datap)
depth_t lastdepth = {};
duration_t t0 = {}, t1 = {};
struct gasmix gas;
bool repetitive = false;
unsigned int surface_interval = 0;
if (!dive)
return false;
return 0;
if (*cached_datap) {
restore_deco_state(*cached_datap);
} else {
repetitive = init_decompression(dive);
surface_interval = init_decompression(dive);
cache_deco_state(cached_datap);
}
dc = &dive->dc;
if (!dc->samples)
return false;
return 0;
psample = sample = dc->sample;
for (i = 0; i < dc->samples; i++, sample++) {
@ -191,7 +191,7 @@ bool tissue_at_end(struct dive *dive, char **cached_datap)
psample = sample;
t0 = t1;
}
return repetitive;
return surface_interval;
}
@ -596,10 +596,16 @@ static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool
snprintf(temp, sz_temp, translate("gettextFromC", "recreational mode based on Bühlmann ZHL-16B with GFlow = %d and GFhigh = %d"),
diveplan->gflow, diveplan->gfhigh);
}
len += snprintf(buffer + len, sz_buffer - len, "<div><b>%s%s</b><br>%s</div>",
translate("gettextFromC", "Subsurface dive plan"),
diveplan->repetitive ? translate("gettextFromC", " (repetitive)") : "",
temp);
if (diveplan->surface_interval > 60) {
len += snprintf(buffer + len, sz_buffer - len, "<div><b>%s %d:%02d)</b><br>%s</div>",
translate("gettextFromC", "Subsurface dive plan (surface interval "),
FRACTION(diveplan->surface_interval / 60, 60),
temp);
} else {
len += snprintf(buffer + len, sz_buffer - len, "<div><b>%s</b><br>%s</div>",
translate("gettextFromC", "Subsurface dive plan"),
temp);
}
len += snprintf(buffer + len, sz_buffer - len, translate("gettextFromC", "<div>Runtime: %dmin</div><br>"),
diveplan_duration(diveplan));
@ -1086,7 +1092,7 @@ bool plan(struct diveplan *diveplan, char **cached_datap, bool is_planner, bool
gi = gaschangenr - 1;
/* Set tissue tolerance and initial vpmb gradient at start of ascent phase */
diveplan->repetitive = tissue_at_end(&displayed_dive, cached_datap);
diveplan->surface_interval = tissue_at_end(&displayed_dive, cached_datap);
nuclear_regeneration(clock);
vpmb_start_gradient();