diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-06-23 18:04:35 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-06-23 20:32:32 -0700 |
commit | 596095389ba703341839e21cbbe1b438a50622d2 (patch) | |
tree | 04992d72b1d418915b9799f3de2bbc2071525cff /planner.c | |
parent | 4a184a60fcf9871c00f8130f03c1595c4003537e (diff) | |
download | subsurface-596095389ba703341839e21cbbe1b438a50622d2.tar.gz |
Start hooking in the deco calculations
I expanded the DiveHandler to include the actual time / depth of each
node on the graph - this way things will stay consistent if we need to
rescale the graph.
One thing that this makes obvious is that the whole design for the
planner so far assumes metric data. We need to make sure this works well
with feet instead of meters as well (and that it uses the information in
the units settings).
With this change we actually create a dive based on the plan input and
add the deco stops (if needed) to it - but we don't do anything with the
results of those calculations, yet.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'planner.c')
-rw-r--r-- | planner.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -495,6 +495,7 @@ static int *sort_stops(int *dstops, int dnr, struct gaschanges *gstops, int gnr) return stoplevels; } +#if USE_GTK_UI static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive) { char buffer[20000]; @@ -590,6 +591,7 @@ static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive) } dive->notes = strdup(buffer); } +#endif void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep, char **error_string_p) { @@ -698,8 +700,8 @@ void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep, c record_dive(dive); stopidx--; } - add_plan_to_notes(diveplan, dive); #if USE_GTK_UI + add_plan_to_notes(diveplan, dive); /* now make the dive visible in the dive list */ report_dives(FALSE, FALSE); show_and_select_dive(dive); @@ -709,6 +711,7 @@ error_exit: free(gaschanges); } +#if USE_GTK_UI /* * Get a value in tenths (so "10.2" == 102, "9" = 90) * @@ -1013,4 +1016,4 @@ timestamp_t current_time_notz(void) struct tm *local = localtime(&now); return utc_mktime(local); } - +#endif |