2013-01-05 07:11:42 +00:00
|
|
|
/* planner.c
|
|
|
|
*
|
|
|
|
* code that allows us to plan future dives
|
|
|
|
*
|
|
|
|
* (c) Dirk Hohndel 2013
|
|
|
|
*/
|
2013-01-07 19:23:14 +00:00
|
|
|
#include <libintl.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <ctype.h>
|
2013-01-05 07:11:42 +00:00
|
|
|
#include "dive.h"
|
|
|
|
#include "divelist.h"
|
2013-01-07 19:23:14 +00:00
|
|
|
#include "display-gtk.h"
|
2013-01-05 07:11:42 +00:00
|
|
|
|
2013-01-08 19:31:09 +00:00
|
|
|
|
2013-01-10 00:01:15 +00:00
|
|
|
int decostoplevels[] = { 0, 3000, 6000, 9000, 12000, 15000, 18000, 21000, 24000, 27000,
|
2013-01-08 19:31:09 +00:00
|
|
|
30000, 33000, 36000, 39000, 42000, 45000, 48000, 51000, 54000, 57000,
|
|
|
|
60000, 63000, 66000, 69000, 72000, 75000, 78000, 81000, 84000, 87000,
|
|
|
|
90000};
|
2013-01-16 23:17:39 +00:00
|
|
|
double plangflow, plangfhigh;
|
2013-01-05 07:11:42 +00:00
|
|
|
|
2013-01-07 20:49:07 +00:00
|
|
|
#if DEBUG_PLAN
|
|
|
|
void dump_plan(struct diveplan *diveplan)
|
|
|
|
{
|
|
|
|
struct divedatapoint *dp;
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
if (!diveplan) {
|
|
|
|
printf ("Diveplan NULL\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
utc_mkdate(diveplan->when, &tm);
|
|
|
|
|
2013-01-08 22:05:25 +00:00
|
|
|
printf("\nDiveplan @ %04d-%02d-%02d %02d:%02d:%02d (surfpres %dmbar):\n",
|
2013-01-07 20:49:07 +00:00
|
|
|
tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
|
|
|
|
tm.tm_hour, tm.tm_min, tm.tm_sec,
|
2013-01-24 13:04:02 +00:00
|
|
|
diveplan->surface_pressure);
|
2013-01-07 20:49:07 +00:00
|
|
|
dp = diveplan->dp;
|
|
|
|
while (dp) {
|
|
|
|
printf("\t%3u:%02u: %dmm gas: %d o2 %d h2\n", FRACTION(dp->time, 60), dp->depth, dp->o2, dp->he);
|
|
|
|
dp = dp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-10 00:01:15 +00:00
|
|
|
void get_gas_from_events(struct divecomputer *dc, int time, int *o2, int *he)
|
|
|
|
{
|
|
|
|
struct event *event = dc->events;
|
|
|
|
while (event && event->time.seconds <= time) {
|
|
|
|
if (!strcmp(event->name, "gaschange")) {
|
|
|
|
*o2 = 10 * event->value & 0xffff;
|
|
|
|
*he = 10 * event->value >> 16;
|
|
|
|
}
|
|
|
|
event = event->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int get_gasidx(struct dive *dive, int o2, int he)
|
|
|
|
{
|
|
|
|
int gasidx = -1;
|
|
|
|
|
|
|
|
while (++gasidx < MAX_CYLINDERS)
|
|
|
|
if (dive->cylinder[gasidx].gasmix.o2.permille == o2 &&
|
|
|
|
dive->cylinder[gasidx].gasmix.he.permille == he)
|
|
|
|
return gasidx;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-01-16 01:17:24 +00:00
|
|
|
static void get_gas_string(int o2, int he, char *text, int len)
|
|
|
|
{
|
|
|
|
if (he == 0 && (o2 == 0 || (o2 >= O2_IN_AIR - 1 && o2 <= O2_IN_AIR + 1)))
|
|
|
|
snprintf(text, len, _("air"));
|
|
|
|
else if (he == 0)
|
|
|
|
snprintf(text, len, _("EAN%d"), (o2 + 5) / 10);
|
|
|
|
else
|
|
|
|
snprintf(text, len, "(%d/%d)", (o2 + 5) / 10, (he + 5) / 10);
|
|
|
|
}
|
|
|
|
|
2013-01-05 07:11:42 +00:00
|
|
|
/* returns the tissue tolerance at the end of this (partial) dive */
|
2013-01-06 19:13:46 +00:00
|
|
|
double tissue_at_end(struct dive *dive, char **cached_datap)
|
2013-01-05 07:11:42 +00:00
|
|
|
{
|
|
|
|
struct divecomputer *dc;
|
|
|
|
struct sample *sample, *psample;
|
2013-01-10 00:01:15 +00:00
|
|
|
int i, j, t0, t1, gasidx, lastdepth;
|
2013-01-05 07:11:42 +00:00
|
|
|
double tissue_tolerance;
|
|
|
|
|
|
|
|
if (!dive)
|
|
|
|
return 0.0;
|
2013-01-06 19:13:46 +00:00
|
|
|
if (*cached_datap) {
|
|
|
|
tissue_tolerance = restore_deco_state(*cached_datap);
|
|
|
|
} else {
|
|
|
|
tissue_tolerance = init_decompression(dive);
|
|
|
|
cache_deco_state(tissue_tolerance, cached_datap);
|
|
|
|
}
|
2013-01-05 07:11:42 +00:00
|
|
|
dc = &dive->dc;
|
|
|
|
if (!dc->samples)
|
2013-01-06 19:13:46 +00:00
|
|
|
return tissue_tolerance;
|
2013-01-05 07:11:42 +00:00
|
|
|
psample = sample = dc->sample;
|
2013-01-08 21:54:29 +00:00
|
|
|
lastdepth = t0 = 0;
|
2013-01-05 07:11:42 +00:00
|
|
|
for (i = 0; i < dc->samples; i++, sample++) {
|
2013-01-10 00:01:15 +00:00
|
|
|
int o2 = 0, he = 0;
|
2013-01-05 07:11:42 +00:00
|
|
|
t1 = sample->time.seconds;
|
2013-01-10 00:01:15 +00:00
|
|
|
get_gas_from_events(&dive->dc, t0, &o2, &he);
|
|
|
|
if ((gasidx = get_gasidx(dive, o2, he)) == -1) {
|
|
|
|
printf("can't find gas %d/%d\n", o2/10, he/10);
|
|
|
|
gasidx = 0;
|
|
|
|
}
|
2013-01-08 21:54:29 +00:00
|
|
|
if (i > 0)
|
|
|
|
lastdepth = psample->depth.mm;
|
2013-01-05 07:11:42 +00:00
|
|
|
for (j = t0; j < t1; j++) {
|
2013-01-08 23:48:23 +00:00
|
|
|
int depth = interpolate(lastdepth, sample->depth.mm, j - t0, t1 - t0);
|
2013-01-05 07:11:42 +00:00
|
|
|
tissue_tolerance = add_segment(depth_to_mbar(depth, dive) / 1000.0,
|
2013-02-02 18:38:51 +00:00
|
|
|
&dive->cylinder[gasidx].gasmix, 1, sample->po2, dive);
|
2013-01-05 07:11:42 +00:00
|
|
|
}
|
|
|
|
psample = sample;
|
|
|
|
t0 = t1;
|
|
|
|
}
|
|
|
|
return tissue_tolerance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* how many seconds until we can ascend to the next stop? */
|
2013-01-06 19:13:46 +00:00
|
|
|
int time_at_last_depth(struct dive *dive, int next_stop, char **cached_data_p)
|
2013-01-05 07:11:42 +00:00
|
|
|
{
|
2013-01-10 00:01:15 +00:00
|
|
|
int depth, gasidx, o2 = 0, he = 0;
|
2013-01-05 07:11:42 +00:00
|
|
|
double surface_pressure, tissue_tolerance;
|
|
|
|
int wait = 0;
|
|
|
|
struct sample *sample;
|
|
|
|
|
|
|
|
if (!dive)
|
|
|
|
return 0;
|
2013-01-23 18:25:31 +00:00
|
|
|
surface_pressure = dive->dc.surface_pressure.mbar / 1000.0;
|
2013-01-06 19:13:46 +00:00
|
|
|
tissue_tolerance = tissue_at_end(dive, cached_data_p);
|
2013-01-05 07:11:42 +00:00
|
|
|
sample = &dive->dc.sample[dive->dc.samples - 1];
|
|
|
|
depth = sample->depth.mm;
|
2013-01-10 00:01:15 +00:00
|
|
|
get_gas_from_events(&dive->dc, sample->time.seconds, &o2, &he);
|
|
|
|
gasidx = get_gasidx(dive, o2, he);
|
2013-01-05 07:11:42 +00:00
|
|
|
while (deco_allowed_depth(tissue_tolerance, surface_pressure, dive, 1) > next_stop) {
|
|
|
|
wait++;
|
|
|
|
tissue_tolerance = add_segment(depth_to_mbar(depth, dive) / 1000.0,
|
2013-02-02 18:38:51 +00:00
|
|
|
&dive->cylinder[gasidx].gasmix, 1, sample->po2, dive);
|
2013-01-05 07:11:42 +00:00
|
|
|
}
|
|
|
|
return wait;
|
|
|
|
}
|
|
|
|
|
|
|
|
int add_gas(struct dive *dive, int o2, int he)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct gasmix *mix;
|
|
|
|
cylinder_t *cyl;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_CYLINDERS; i++) {
|
|
|
|
cyl = dive->cylinder + i;
|
|
|
|
if (cylinder_nodata(cyl))
|
|
|
|
break;
|
|
|
|
mix = &cyl->gasmix;
|
|
|
|
if (o2 == mix->o2.permille && he == mix->he.permille)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
if (i == MAX_CYLINDERS) {
|
|
|
|
printf("too many cylinders\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
mix = &cyl->gasmix;
|
|
|
|
mix->o2.permille = o2;
|
|
|
|
mix->he.permille = he;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct dive *create_dive_from_plan(struct diveplan *diveplan)
|
|
|
|
{
|
|
|
|
struct dive *dive;
|
|
|
|
struct divedatapoint *dp;
|
|
|
|
struct divecomputer *dc;
|
2013-01-29 03:54:05 +00:00
|
|
|
struct sample *sample;
|
2013-01-14 22:53:38 +00:00
|
|
|
int oldo2 = O2_IN_AIR, oldhe = 0;
|
2013-01-29 03:54:05 +00:00
|
|
|
int oldpo2 = 0;
|
2013-01-10 00:01:15 +00:00
|
|
|
int lasttime = 0;
|
2013-01-05 07:11:42 +00:00
|
|
|
|
|
|
|
if (!diveplan || !diveplan->dp)
|
|
|
|
return NULL;
|
2013-01-08 16:52:48 +00:00
|
|
|
#if DEBUG_PLAN & 4
|
2013-01-10 00:01:15 +00:00
|
|
|
printf("in create_dive_from_plan\n");
|
2013-01-08 16:52:48 +00:00
|
|
|
dump_plan(diveplan);
|
|
|
|
#endif
|
2013-01-05 07:11:42 +00:00
|
|
|
dive = alloc_dive();
|
|
|
|
dive->when = diveplan->when;
|
2013-01-23 18:25:31 +00:00
|
|
|
dive->dc.surface_pressure.mbar = diveplan->surface_pressure;
|
2013-01-05 07:11:42 +00:00
|
|
|
dc = &dive->dc;
|
2013-01-29 09:27:36 +00:00
|
|
|
dc->model = strdup(_("Simulated Dive"));
|
2013-01-05 07:11:42 +00:00
|
|
|
dp = diveplan->dp;
|
2013-01-07 21:13:10 +00:00
|
|
|
|
2013-01-07 16:38:55 +00:00
|
|
|
/* let's start with the gas given on the first segment */
|
2013-01-07 21:13:10 +00:00
|
|
|
if (dp->o2 || dp->he) {
|
|
|
|
oldo2 = dp->o2;
|
|
|
|
oldhe = dp->he;
|
|
|
|
}
|
2013-01-29 03:54:05 +00:00
|
|
|
sample = prepare_sample(dc);
|
|
|
|
sample->po2 = dp->po2;
|
|
|
|
finish_sample(dc);
|
2013-01-07 21:13:10 +00:00
|
|
|
add_gas(dive, oldo2, oldhe);
|
|
|
|
while (dp) {
|
|
|
|
int o2 = dp->o2, he = dp->he;
|
2013-02-02 17:03:26 +00:00
|
|
|
int po2 = dp->po2;
|
2013-01-07 21:13:10 +00:00
|
|
|
int time = dp->time;
|
|
|
|
int depth = dp->depth;
|
|
|
|
|
2013-01-08 23:03:37 +00:00
|
|
|
if (time == 0) {
|
|
|
|
/* special entries that just inform the algorithm about
|
|
|
|
* additional gases that are available */
|
|
|
|
add_gas(dive, o2, he);
|
|
|
|
dp = dp->next;
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-07 21:13:10 +00:00
|
|
|
if (!o2 && !he) {
|
|
|
|
o2 = oldo2;
|
|
|
|
he = oldhe;
|
2013-01-07 16:38:55 +00:00
|
|
|
}
|
2013-01-07 21:13:10 +00:00
|
|
|
|
2013-02-02 17:40:29 +00:00
|
|
|
/* Check for SetPoint change */
|
2013-02-02 17:03:26 +00:00
|
|
|
if (oldpo2 != po2) {
|
|
|
|
if (lasttime)
|
2013-02-02 17:40:29 +00:00
|
|
|
add_event(dc, lasttime, 20, 0, po2, "SP change"); // SAMPLE_EVENT_PO2
|
2013-02-02 17:03:26 +00:00
|
|
|
oldpo2 = po2;
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
/* Create new gas, and gas change event if necessary */
|
|
|
|
if (o2 != oldo2 || he != oldhe) {
|
|
|
|
int value = (o2 / 10) | (he / 10 << 16);
|
|
|
|
add_gas(dive, o2, he);
|
2013-02-02 17:03:26 +00:00
|
|
|
add_event(dc, lasttime, 25, 0, value, "gaschange"); // SAMPLE_EVENT_GASCHANGE2
|
2013-01-07 21:13:10 +00:00
|
|
|
oldo2 = o2; oldhe = he;
|
2013-01-05 07:11:42 +00:00
|
|
|
}
|
2013-01-07 21:13:10 +00:00
|
|
|
|
|
|
|
/* Create sample */
|
2013-01-05 07:11:42 +00:00
|
|
|
sample = prepare_sample(dc);
|
2013-01-29 03:54:05 +00:00
|
|
|
/* set po2 at beginning of this segment */
|
|
|
|
/* and keep it valid for last sample - where it likely doesn't matter */
|
|
|
|
sample[-1].po2 = po2;
|
2013-01-23 19:12:24 +00:00
|
|
|
sample->po2 = po2;
|
2013-01-07 21:13:10 +00:00
|
|
|
sample->time.seconds = time;
|
|
|
|
sample->depth.mm = depth;
|
|
|
|
finish_sample(dc);
|
2013-01-10 00:01:15 +00:00
|
|
|
lasttime = time;
|
2013-01-05 07:11:42 +00:00
|
|
|
dp = dp->next;
|
|
|
|
}
|
2013-01-29 03:54:05 +00:00
|
|
|
if (dc->samples <= 1) {
|
2013-01-07 06:09:12 +00:00
|
|
|
/* not enough there yet to create a dive - most likely the first time is missing */
|
|
|
|
free(dive);
|
|
|
|
dive = NULL;
|
|
|
|
}
|
2013-01-10 00:01:15 +00:00
|
|
|
#if DEBUG_PLAN & 32
|
|
|
|
if (dive)
|
|
|
|
save_dive(stdout, dive);
|
|
|
|
#endif
|
2013-01-05 07:11:42 +00:00
|
|
|
return dive;
|
|
|
|
}
|
|
|
|
|
2013-01-07 06:09:12 +00:00
|
|
|
void free_dps(struct divedatapoint *dp)
|
|
|
|
{
|
|
|
|
while (dp) {
|
|
|
|
struct divedatapoint *ndp = dp->next;
|
|
|
|
free(dp);
|
|
|
|
dp = ndp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-23 19:12:24 +00:00
|
|
|
struct divedatapoint *create_dp(int time_incr, int depth, int o2, int he, int po2)
|
2013-01-05 07:11:42 +00:00
|
|
|
{
|
|
|
|
struct divedatapoint *dp;
|
|
|
|
|
|
|
|
dp = malloc(sizeof(struct divedatapoint));
|
|
|
|
dp->time = time_incr;
|
|
|
|
dp->depth = depth;
|
|
|
|
dp->o2 = o2;
|
|
|
|
dp->he = he;
|
2013-01-23 19:12:24 +00:00
|
|
|
dp->po2 = po2;
|
2013-01-16 01:17:24 +00:00
|
|
|
dp->entered = FALSE;
|
2013-01-05 07:11:42 +00:00
|
|
|
dp->next = NULL;
|
|
|
|
return dp;
|
|
|
|
}
|
|
|
|
|
2013-01-07 06:09:12 +00:00
|
|
|
struct divedatapoint *get_nth_dp(struct diveplan *diveplan, int idx)
|
|
|
|
{
|
|
|
|
struct divedatapoint **ldpp, *dp = diveplan->dp;
|
|
|
|
int i = 0;
|
|
|
|
ldpp = &diveplan->dp;
|
|
|
|
|
|
|
|
while (dp && i++ < idx) {
|
|
|
|
ldpp = &dp->next;
|
|
|
|
dp = dp->next;
|
|
|
|
}
|
|
|
|
while (i++ <= idx) {
|
2013-01-23 19:12:24 +00:00
|
|
|
*ldpp = dp = create_dp(0, 0, 0, 0, 0);
|
2013-01-07 06:09:12 +00:00
|
|
|
ldpp = &((*ldpp)->next);
|
|
|
|
}
|
|
|
|
return dp;
|
|
|
|
}
|
|
|
|
|
2013-01-07 16:13:23 +00:00
|
|
|
void add_duration_to_nth_dp(struct diveplan *diveplan, int idx, int duration, gboolean is_rel)
|
2013-01-07 06:09:12 +00:00
|
|
|
{
|
2013-01-07 16:13:23 +00:00
|
|
|
struct divedatapoint *pdp, *dp = get_nth_dp(diveplan, idx);
|
2013-01-08 00:21:26 +00:00
|
|
|
if (idx > 0) {
|
2013-01-07 16:13:23 +00:00
|
|
|
pdp = get_nth_dp(diveplan, idx - 1);
|
2013-01-08 23:03:37 +00:00
|
|
|
if (duration && (is_rel || duration <= pdp->time))
|
2013-01-08 00:21:26 +00:00
|
|
|
duration += pdp->time;
|
2013-01-07 16:13:23 +00:00
|
|
|
}
|
2013-01-07 06:09:12 +00:00
|
|
|
dp->time = duration;
|
|
|
|
}
|
|
|
|
|
2013-01-16 01:17:24 +00:00
|
|
|
/* this function is ONLY called from the dialog callback - so it
|
|
|
|
* marks this entry as 'entered'.
|
|
|
|
* Do NOT call from other parts of the planning code without changing
|
|
|
|
* that logic */
|
2013-01-07 06:09:12 +00:00
|
|
|
void add_depth_to_nth_dp(struct diveplan *diveplan, int idx, int depth)
|
|
|
|
{
|
|
|
|
struct divedatapoint *dp = get_nth_dp(diveplan, idx);
|
|
|
|
dp->depth = depth;
|
2013-01-16 01:17:24 +00:00
|
|
|
dp->entered = TRUE;
|
2013-01-07 06:09:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void add_gas_to_nth_dp(struct diveplan *diveplan, int idx, int o2, int he)
|
|
|
|
{
|
|
|
|
struct divedatapoint *dp = get_nth_dp(diveplan, idx);
|
2013-01-07 21:13:10 +00:00
|
|
|
dp->o2 = o2;
|
|
|
|
dp->he = he;
|
2013-01-07 06:09:12 +00:00
|
|
|
}
|
2013-01-23 19:12:24 +00:00
|
|
|
|
|
|
|
void add_po2_to_nth_dp(struct diveplan *diveplan, int idx, int po2)
|
|
|
|
{
|
|
|
|
struct divedatapoint *dp = get_nth_dp(diveplan, idx);
|
|
|
|
dp->po2 = po2;
|
|
|
|
}
|
|
|
|
|
2013-01-05 07:11:42 +00:00
|
|
|
void add_to_end_of_diveplan(struct diveplan *diveplan, struct divedatapoint *dp)
|
|
|
|
{
|
|
|
|
struct divedatapoint **lastdp = &diveplan->dp;
|
|
|
|
struct divedatapoint *ldp = *lastdp;
|
2013-01-08 23:03:37 +00:00
|
|
|
int lasttime = 0;
|
2013-01-29 21:10:46 +00:00
|
|
|
while (*lastdp) {
|
2013-01-05 07:11:42 +00:00
|
|
|
ldp = *lastdp;
|
2013-01-08 23:03:37 +00:00
|
|
|
if (ldp->time > lasttime)
|
|
|
|
lasttime = ldp->time;
|
2013-01-05 07:11:42 +00:00
|
|
|
lastdp = &(*lastdp)->next;
|
|
|
|
}
|
|
|
|
*lastdp = dp;
|
|
|
|
if (ldp)
|
2013-01-08 23:03:37 +00:00
|
|
|
dp->time += lasttime;
|
2013-01-05 07:11:42 +00:00
|
|
|
}
|
|
|
|
|
2013-01-23 19:12:24 +00:00
|
|
|
void plan_add_segment(struct diveplan *diveplan, int duration, int depth, int o2, int he, int po2)
|
2013-01-05 07:11:42 +00:00
|
|
|
{
|
2013-01-23 19:12:24 +00:00
|
|
|
struct divedatapoint *dp = create_dp(duration, depth, o2, he, po2);
|
2013-01-05 07:11:42 +00:00
|
|
|
add_to_end_of_diveplan(diveplan, dp);
|
|
|
|
}
|
|
|
|
|
2013-01-10 00:01:15 +00:00
|
|
|
struct gaschanges {
|
|
|
|
int depth;
|
|
|
|
int gasidx;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct gaschanges *analyze_gaslist(struct diveplan *diveplan, struct dive *dive, int *gaschangenr)
|
2013-01-08 16:52:48 +00:00
|
|
|
{
|
2013-01-10 00:01:15 +00:00
|
|
|
int nr = 0;
|
|
|
|
struct gaschanges *gaschanges = NULL;
|
|
|
|
struct divedatapoint *dp = diveplan->dp;
|
|
|
|
|
|
|
|
while (dp) {
|
|
|
|
if (dp->time == 0) {
|
|
|
|
int i = 0, j = 0;
|
|
|
|
nr++;
|
|
|
|
gaschanges = realloc(gaschanges, nr * sizeof(struct gaschanges));
|
|
|
|
while (i < nr - 1) {
|
|
|
|
if (dp->depth < gaschanges[i].depth) {
|
|
|
|
memmove(gaschanges + i + 1, gaschanges + i, (nr - i - 1) * sizeof(struct gaschanges));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
gaschanges[i].depth = dp->depth;
|
|
|
|
do {
|
|
|
|
if (dive->cylinder[j].gasmix.o2.permille == dp->o2 &&
|
|
|
|
dive->cylinder[j].gasmix.he.permille == dp->he) {
|
|
|
|
gaschanges[i].gasidx = j;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
} while (j < MAX_CYLINDERS);
|
2013-01-08 16:52:48 +00:00
|
|
|
}
|
2013-01-10 00:01:15 +00:00
|
|
|
dp = dp->next;
|
|
|
|
}
|
|
|
|
*gaschangenr = nr;
|
|
|
|
#if DEBUG_PLAN & 16
|
|
|
|
for (nr = 0; nr < *gaschangenr; nr++)
|
|
|
|
printf("gaschange nr %d: @ %5.2lfm gasidx %d (%d/%d)\n", nr, gaschanges[nr].depth / 1000.0,
|
|
|
|
gaschanges[nr].gasidx, dive->cylinder[gaschanges[nr].gasidx].gasmix.o2.permille / 10,
|
|
|
|
dive->cylinder[gaschanges[nr].gasidx].gasmix.he.permille / 10);
|
|
|
|
#endif
|
|
|
|
return gaschanges;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sort all the stops into one ordered list */
|
|
|
|
static int *sort_stops(int *dstops, int dnr, struct gaschanges *gstops, int gnr)
|
|
|
|
{
|
|
|
|
int i, gi, di;
|
|
|
|
int total = dnr + gnr;
|
|
|
|
int *stoplevels = malloc(total * sizeof(int));
|
|
|
|
|
|
|
|
/* no gaschanges */
|
|
|
|
if (gnr == 0) {
|
|
|
|
memcpy(stoplevels, dstops, dnr * sizeof(int));
|
|
|
|
return stoplevels;
|
|
|
|
}
|
|
|
|
i = total - 1;
|
|
|
|
gi = gnr - 1;
|
|
|
|
di = dnr - 1;
|
|
|
|
while (i >= 0) {
|
|
|
|
if (dstops[di] > gstops[gi].depth) {
|
|
|
|
stoplevels[i] = dstops[di];
|
|
|
|
di--;
|
|
|
|
} else if (dstops[di] == gstops[gi].depth) {
|
|
|
|
stoplevels[i] = dstops[di];
|
|
|
|
di--;
|
|
|
|
gi--;
|
|
|
|
} else {
|
|
|
|
stoplevels[i] = gstops[gi].depth;
|
|
|
|
gi--;
|
|
|
|
}
|
|
|
|
i--;
|
|
|
|
if (di < 0) {
|
|
|
|
while (gi >= 0)
|
|
|
|
stoplevels[i--] = gstops[gi--].depth;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (gi < 0) {
|
|
|
|
while (di >= 0)
|
|
|
|
stoplevels[i--] = dstops[di--];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (i >= 0)
|
|
|
|
stoplevels[i--] = 0;
|
|
|
|
|
|
|
|
#if DEBUG_PLAN & 16
|
|
|
|
int k;
|
|
|
|
for (k = gnr + dnr -1; k >= 0; k--) {
|
|
|
|
printf("stoplevel[%d]: %5.2lfm\n", k, stoplevels[k]/1000.0);
|
|
|
|
if (stoplevels[k] == 0)
|
|
|
|
break;
|
2013-01-08 16:52:48 +00:00
|
|
|
}
|
2013-01-10 00:01:15 +00:00
|
|
|
#endif
|
|
|
|
return stoplevels;
|
2013-01-08 16:52:48 +00:00
|
|
|
}
|
|
|
|
|
2013-01-16 01:17:24 +00:00
|
|
|
static void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive)
|
|
|
|
{
|
|
|
|
char buffer[2000];
|
2013-01-16 01:24:17 +00:00
|
|
|
int consumption[MAX_CYLINDERS] = { 0, };
|
|
|
|
int len, gasidx, lastdepth = 0, lasttime = 0;
|
2013-01-16 01:17:24 +00:00
|
|
|
struct divedatapoint *dp = diveplan->dp;
|
|
|
|
int o2, he;
|
|
|
|
|
|
|
|
if (!dp)
|
|
|
|
return;
|
|
|
|
|
2013-01-29 09:27:36 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), _("Subsurface dive plan\nbased on GFlow = %.0f and GFhigh = %.0f\n\n"),
|
2013-01-16 23:17:39 +00:00
|
|
|
plangflow * 100, plangfhigh * 100);
|
2013-01-16 01:17:24 +00:00
|
|
|
/* we start with gas 0, then check if that was changed */
|
|
|
|
o2 = dive->cylinder[0].gasmix.o2.permille;
|
|
|
|
he = dive->cylinder[0].gasmix.he.permille;
|
|
|
|
do {
|
|
|
|
const char *depth_unit;
|
2013-02-02 21:44:51 +00:00
|
|
|
char gas[64];
|
2013-01-16 01:17:24 +00:00
|
|
|
double depthvalue;
|
|
|
|
int decimals;
|
2013-01-16 01:24:17 +00:00
|
|
|
double used;
|
2013-01-16 01:17:24 +00:00
|
|
|
int newo2 = o2, newhe = he;
|
|
|
|
struct divedatapoint *nextdp;
|
|
|
|
|
|
|
|
if (dp->time == 0)
|
|
|
|
continue;
|
|
|
|
depthvalue = get_depth_units(dp->depth, &decimals, &depth_unit);
|
|
|
|
/* do we change gas after this segment? We need to look at the gas
|
|
|
|
* for the next segment (that isn't just a record of available gas !!)
|
|
|
|
* to find out */
|
|
|
|
nextdp = dp->next;
|
|
|
|
while (nextdp && nextdp->time == 0)
|
|
|
|
nextdp = nextdp->next;
|
|
|
|
if (nextdp) {
|
|
|
|
newo2 = nextdp->o2;
|
|
|
|
newhe = nextdp->he;
|
|
|
|
if (newhe == 0 && newo2 == 0) {
|
|
|
|
/* same as last segment */
|
|
|
|
newo2 = o2;
|
|
|
|
newhe = he;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* do we want to skip this leg as it is devoid of anything useful? */
|
|
|
|
if (!dp->entered && o2 == newo2 && he == newhe && nextdp && dp->depth != lastdepth && nextdp->depth != dp->depth)
|
|
|
|
continue;
|
2013-02-02 21:44:51 +00:00
|
|
|
get_gas_string(o2, he, gas, sizeof(gas));
|
2013-01-16 01:24:17 +00:00
|
|
|
gasidx = get_gasidx(dive, o2, he);
|
2013-01-16 01:17:24 +00:00
|
|
|
len = strlen(buffer);
|
|
|
|
if (dp->depth != lastdepth) {
|
2013-01-16 01:24:17 +00:00
|
|
|
used = diveplan->bottomsac / 1000.0 * depth_to_mbar((dp->depth + lastdepth) / 2, dive) *
|
|
|
|
(dp->time - lasttime) / 60;
|
2013-01-29 09:27:36 +00:00
|
|
|
snprintf(buffer + len, sizeof(buffer) - len, _("Transition to %.*f %s in %d:%02d min - runtime %d:%02u on %s\n"),
|
2013-01-16 01:17:24 +00:00
|
|
|
decimals, depthvalue, depth_unit,
|
|
|
|
FRACTION(dp->time - lasttime, 60),
|
|
|
|
FRACTION(dp->time, 60),
|
|
|
|
gas);
|
|
|
|
} else {
|
2013-01-16 01:24:17 +00:00
|
|
|
/* we use deco SAC rate during the calculated deco stops, bottom SAC rate everywhere else */
|
|
|
|
int sac = dp->entered ? diveplan->bottomsac : diveplan->decosac;
|
|
|
|
used = sac / 1000.0 * depth_to_mbar(dp->depth, dive) * (dp->time - lasttime) / 60;
|
2013-01-29 09:27:36 +00:00
|
|
|
snprintf(buffer + len, sizeof(buffer) - len, _("Stay at %.*f %s for %d:%02d min - runtime %d:%02u on %s\n"),
|
2013-01-16 01:17:24 +00:00
|
|
|
decimals, depthvalue, depth_unit,
|
|
|
|
FRACTION(dp->time - lasttime, 60),
|
|
|
|
FRACTION(dp->time, 60),
|
|
|
|
gas);
|
|
|
|
}
|
2013-01-16 01:24:17 +00:00
|
|
|
consumption[gasidx] += used;
|
2013-02-02 21:44:51 +00:00
|
|
|
get_gas_string(newo2, newhe, gas, sizeof(gas));
|
2013-01-16 01:17:24 +00:00
|
|
|
if (o2 != newo2 || he != newhe) {
|
|
|
|
len = strlen(buffer);
|
2013-01-29 09:27:36 +00:00
|
|
|
snprintf(buffer + len, sizeof(buffer) - len, _("Switch gas to %s\n"), gas);
|
2013-01-16 01:17:24 +00:00
|
|
|
}
|
|
|
|
o2 = newo2;
|
|
|
|
he = newhe;
|
|
|
|
lasttime = dp->time;
|
|
|
|
lastdepth = dp->depth;
|
2013-01-29 21:10:46 +00:00
|
|
|
} while ((dp = dp->next) != NULL);
|
2013-01-16 01:24:17 +00:00
|
|
|
len = strlen(buffer);
|
2013-01-29 09:27:36 +00:00
|
|
|
snprintf(buffer + len, sizeof(buffer) - len, _("Gas consumption:\n"));
|
2013-01-16 01:24:17 +00:00
|
|
|
for (gasidx = 0; gasidx < MAX_CYLINDERS; gasidx++) {
|
|
|
|
double volume;
|
|
|
|
const char *unit;
|
2013-02-03 10:22:10 +00:00
|
|
|
char gas[64];
|
2013-01-16 01:24:17 +00:00
|
|
|
if (consumption[gasidx] == 0)
|
|
|
|
continue;
|
|
|
|
len = strlen(buffer);
|
|
|
|
volume = get_volume_units(consumption[gasidx], NULL, &unit);
|
|
|
|
get_gas_string(dive->cylinder[gasidx].gasmix.o2.permille,
|
2013-02-02 21:44:51 +00:00
|
|
|
dive->cylinder[gasidx].gasmix.he.permille, gas, sizeof(gas));
|
2013-01-29 09:27:36 +00:00
|
|
|
snprintf(buffer + len, sizeof(buffer) - len, _("%.0f%s of %s\n"), volume, unit, gas);
|
2013-01-16 01:24:17 +00:00
|
|
|
}
|
2013-01-16 01:17:24 +00:00
|
|
|
dive->notes = strdup(buffer);
|
|
|
|
}
|
|
|
|
|
2013-01-07 06:09:12 +00:00
|
|
|
void plan(struct diveplan *diveplan, char **cached_datap, struct dive **divep)
|
2013-01-05 07:11:42 +00:00
|
|
|
{
|
|
|
|
struct dive *dive;
|
|
|
|
struct sample *sample;
|
2013-01-23 19:12:24 +00:00
|
|
|
int wait_time, o2, he, po2;
|
2013-01-05 07:11:42 +00:00
|
|
|
int ceiling, depth, transitiontime;
|
2013-01-10 00:01:15 +00:00
|
|
|
int stopidx, gi;
|
2013-01-05 07:11:42 +00:00
|
|
|
double tissue_tolerance;
|
2013-01-10 00:01:15 +00:00
|
|
|
struct gaschanges *gaschanges;
|
|
|
|
int gaschangenr;
|
|
|
|
int *stoplevels;
|
2013-01-05 07:11:42 +00:00
|
|
|
|
2013-01-16 23:17:39 +00:00
|
|
|
set_gf(plangflow, plangfhigh);
|
2013-01-05 07:11:42 +00:00
|
|
|
if (!diveplan->surface_pressure)
|
2013-01-14 22:53:38 +00:00
|
|
|
diveplan->surface_pressure = SURFACE_PRESSURE;
|
2013-01-07 06:09:12 +00:00
|
|
|
if (*divep)
|
|
|
|
delete_single_dive(dive_table.nr - 1);
|
|
|
|
*divep = dive = create_dive_from_plan(diveplan);
|
2013-01-05 20:56:45 +00:00
|
|
|
if (!dive)
|
|
|
|
return;
|
2013-01-05 07:11:42 +00:00
|
|
|
record_dive(dive);
|
|
|
|
|
|
|
|
sample = &dive->dc.sample[dive->dc.samples - 1];
|
2013-01-08 16:52:48 +00:00
|
|
|
/* we start with gas 0, then check if that was changed */
|
|
|
|
o2 = dive->cylinder[0].gasmix.o2.permille;
|
|
|
|
he = dive->cylinder[0].gasmix.he.permille;
|
|
|
|
get_gas_from_events(&dive->dc, sample->time.seconds, &o2, &he);
|
2013-01-23 19:12:24 +00:00
|
|
|
po2 = dive->dc.sample[dive->dc.samples - 1].po2;
|
2013-01-10 00:01:15 +00:00
|
|
|
depth = dive->dc.sample[dive->dc.samples - 1].depth.mm;
|
2013-01-07 06:09:12 +00:00
|
|
|
tissue_tolerance = tissue_at_end(dive, cached_datap);
|
2013-01-05 07:11:42 +00:00
|
|
|
ceiling = deco_allowed_depth(tissue_tolerance, diveplan->surface_pressure / 1000.0, dive, 1);
|
2013-01-08 22:05:25 +00:00
|
|
|
#if DEBUG_PLAN & 4
|
2013-01-10 00:01:15 +00:00
|
|
|
printf("gas %d/%d\n", o2, he);
|
|
|
|
printf("depth %5.2lfm ceiling %5.2lfm\n", depth / 1000.0, ceiling / 1000.0);
|
2013-01-08 16:52:48 +00:00
|
|
|
#endif
|
2013-01-10 00:01:15 +00:00
|
|
|
if (depth < ceiling) /* that's not good... */
|
|
|
|
depth = ceiling;
|
|
|
|
for (stopidx = 0; stopidx < sizeof(decostoplevels) / sizeof(int); stopidx++)
|
|
|
|
if (decostoplevels[stopidx] >= depth)
|
2013-01-05 07:11:42 +00:00
|
|
|
break;
|
2013-01-10 00:01:15 +00:00
|
|
|
stopidx--;
|
|
|
|
|
|
|
|
/* so now we now the first decostop level above us
|
|
|
|
* NOTE, this could be the surface or a long list of potential stops
|
|
|
|
* we do NOT start only at the ceiling, as the ceiling may come down
|
|
|
|
* further during the ascent.
|
|
|
|
* Next we need to figure out if there are better gases available
|
|
|
|
* and at which depths we are supposed to switch to them */
|
|
|
|
gaschanges = analyze_gaslist(diveplan, dive, &gaschangenr);
|
|
|
|
stoplevels = sort_stops(decostoplevels, stopidx + 1, gaschanges, gaschangenr);
|
|
|
|
|
|
|
|
gi = gaschangenr - 1;
|
|
|
|
stopidx += gaschangenr;
|
2013-01-08 21:48:36 +00:00
|
|
|
if (depth > stoplevels[stopidx]) {
|
|
|
|
transitiontime = (depth - stoplevels[stopidx]) / 150;
|
|
|
|
#if DEBUG_PLAN & 2
|
|
|
|
printf("transitiontime %d:%02d to depth %5.2lfm\n", FRACTION(transitiontime, 60), stoplevels[stopidx] / 1000.0);
|
|
|
|
#endif
|
2013-01-23 19:12:24 +00:00
|
|
|
plan_add_segment(diveplan, transitiontime, stoplevels[stopidx], o2, he, po2);
|
2013-01-08 21:48:36 +00:00
|
|
|
/* re-create the dive */
|
|
|
|
delete_single_dive(dive_table.nr - 1);
|
|
|
|
*divep = dive = create_dive_from_plan(diveplan);
|
|
|
|
record_dive(dive);
|
|
|
|
}
|
2013-01-10 00:01:15 +00:00
|
|
|
while (stopidx > 0) { /* this indicates that we aren't surfacing directly */
|
|
|
|
if (gi >= 0 && stoplevels[stopidx] == gaschanges[gi].depth) {
|
|
|
|
o2 = dive->cylinder[gaschanges[gi].gasidx].gasmix.o2.permille;
|
|
|
|
he = dive->cylinder[gaschanges[gi].gasidx].gasmix.he.permille;
|
|
|
|
#if DEBUG_PLAN & 16
|
|
|
|
printf("switch to gas %d (%d/%d) @ %5.2lfm\n", gaschanges[gi].gasidx,
|
|
|
|
o2 / 10, he / 10, gaschanges[gi].depth / 1000.0);
|
|
|
|
#endif
|
|
|
|
gi--;
|
|
|
|
}
|
2013-01-07 06:09:12 +00:00
|
|
|
wait_time = time_at_last_depth(dive, stoplevels[stopidx - 1], cached_datap);
|
2013-01-08 21:59:48 +00:00
|
|
|
/* typically deco plans are done in one minute increments; we may want to
|
|
|
|
* make this configurable at some point */
|
|
|
|
wait_time = ((wait_time + 59) / 60) * 60;
|
2013-01-08 16:52:48 +00:00
|
|
|
#if DEBUG_PLAN & 2
|
2013-01-08 21:48:36 +00:00
|
|
|
printf("waittime %d:%02d at depth %5.2lfm\n", FRACTION(wait_time, 60), stoplevels[stopidx] / 1000.0);
|
2013-01-08 16:52:48 +00:00
|
|
|
#endif
|
2013-01-05 07:11:42 +00:00
|
|
|
if (wait_time)
|
2013-01-23 19:12:24 +00:00
|
|
|
plan_add_segment(diveplan, wait_time, stoplevels[stopidx], o2, he, po2);
|
2013-01-05 07:11:42 +00:00
|
|
|
transitiontime = (stoplevels[stopidx] - stoplevels[stopidx - 1]) / 150;
|
2013-01-08 16:52:48 +00:00
|
|
|
#if DEBUG_PLAN & 2
|
2013-01-08 21:48:36 +00:00
|
|
|
printf("transitiontime %d:%02d to depth %5.2lfm\n", FRACTION(transitiontime, 60), stoplevels[stopidx - 1] / 1000.0);
|
2013-01-08 16:52:48 +00:00
|
|
|
#endif
|
2013-01-23 19:12:24 +00:00
|
|
|
plan_add_segment(diveplan, transitiontime, stoplevels[stopidx - 1], o2, he, po2);
|
2013-01-05 07:11:42 +00:00
|
|
|
/* re-create the dive */
|
|
|
|
delete_single_dive(dive_table.nr - 1);
|
2013-01-07 06:09:12 +00:00
|
|
|
*divep = dive = create_dive_from_plan(diveplan);
|
2013-01-05 07:11:42 +00:00
|
|
|
record_dive(dive);
|
|
|
|
stopidx--;
|
|
|
|
}
|
2013-01-16 01:17:24 +00:00
|
|
|
add_plan_to_notes(diveplan, dive);
|
2013-01-14 04:41:48 +00:00
|
|
|
/* now make the dive visible in the dive list */
|
2013-01-05 07:11:42 +00:00
|
|
|
report_dives(FALSE, FALSE);
|
2013-01-14 04:41:48 +00:00
|
|
|
show_and_select_dive(dive);
|
2013-01-10 00:01:15 +00:00
|
|
|
free(stoplevels);
|
|
|
|
free(gaschanges);
|
2013-01-05 07:11:42 +00:00
|
|
|
}
|
2013-01-07 19:23:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* and now the UI for all this */
|
|
|
|
/*
|
|
|
|
* Get a value in tenths (so "10.2" == 102, "9" = 90)
|
|
|
|
*
|
|
|
|
* Return negative for errors.
|
|
|
|
*/
|
2013-01-07 21:13:10 +00:00
|
|
|
static int get_tenths(const char *begin, const char **endp)
|
2013-01-07 19:23:14 +00:00
|
|
|
{
|
2013-01-07 21:13:10 +00:00
|
|
|
char *end;
|
|
|
|
int value = strtol(begin, &end, 10);
|
|
|
|
|
|
|
|
if (begin == end)
|
2013-01-07 19:23:14 +00:00
|
|
|
return -1;
|
|
|
|
value *= 10;
|
|
|
|
|
|
|
|
/* Fraction? We only look at the first digit */
|
2013-01-07 21:13:10 +00:00
|
|
|
if (*end == '.') {
|
2013-01-16 00:54:59 +00:00
|
|
|
end++;
|
2013-01-07 21:13:10 +00:00
|
|
|
if (!isdigit(*end))
|
2013-01-07 19:23:14 +00:00
|
|
|
return -1;
|
2013-01-07 21:13:10 +00:00
|
|
|
value += *end - '0';
|
2013-01-07 19:23:14 +00:00
|
|
|
do {
|
2013-01-16 00:54:59 +00:00
|
|
|
end++;
|
2013-01-07 21:13:10 +00:00
|
|
|
} while (isdigit(*end));
|
2013-01-07 19:23:14 +00:00
|
|
|
}
|
2013-01-16 00:54:59 +00:00
|
|
|
*endp = end;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get_thousandths(const char *begin, const char **endp)
|
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
int value = strtol(begin, &end, 10);
|
|
|
|
|
|
|
|
if (begin == end)
|
|
|
|
return -1;
|
|
|
|
value *= 1000;
|
|
|
|
|
|
|
|
/* now deal with up to three more digits after decimal point */
|
|
|
|
if (*end == '.') {
|
|
|
|
int factor = 100;
|
|
|
|
do {
|
|
|
|
++end;
|
|
|
|
if (!isdigit(*end))
|
|
|
|
break;
|
|
|
|
value += (*end - '0') * factor;
|
|
|
|
factor /= 10;
|
|
|
|
} while (factor);
|
|
|
|
}
|
|
|
|
*endp = end;
|
2013-01-07 19:23:14 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
static int get_permille(const char *begin, const char **end)
|
2013-01-07 19:23:14 +00:00
|
|
|
{
|
|
|
|
int value = get_tenths(begin, end);
|
|
|
|
if (value >= 0) {
|
|
|
|
/* Allow a percentage sign */
|
|
|
|
if (**end == '%')
|
|
|
|
++*end;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
static int validate_gas(const char *text, int *o2_p, int *he_p)
|
2013-01-07 19:23:14 +00:00
|
|
|
{
|
|
|
|
int o2, he;
|
|
|
|
|
|
|
|
if (!text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
if (!*text)
|
|
|
|
return 0;
|
|
|
|
|
2013-01-29 09:27:36 +00:00
|
|
|
if (!strcasecmp(text, _("air"))) {
|
2013-02-03 10:22:10 +00:00
|
|
|
o2 = O2_IN_AIR; he = 0; text += strlen(_("air"));
|
2013-01-29 09:27:36 +00:00
|
|
|
} else if (!strncasecmp(text, _("ean"), 3)) {
|
2013-01-07 19:23:14 +00:00
|
|
|
o2 = get_permille(text+3, &text); he = 0;
|
|
|
|
} else {
|
|
|
|
o2 = get_permille(text, &text); he = 0;
|
|
|
|
if (*text == '/')
|
|
|
|
he = get_permille(text+1, &text);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We don't want any extra crud */
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
if (*text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Validate the gas mix */
|
|
|
|
if (*text || o2 < 1 || o2 > 1000 || he < 0 || o2+he > 1000)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Let it rip */
|
|
|
|
*o2_p = o2;
|
|
|
|
*he_p = he;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
static int validate_time(const char *text, int *sec_p, int *rel_p)
|
2013-01-07 19:23:14 +00:00
|
|
|
{
|
|
|
|
int min, sec, rel;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
if (!text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
|
|
|
|
rel = 0;
|
|
|
|
if (*text == '+') {
|
|
|
|
rel = 1;
|
|
|
|
text++;
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
}
|
|
|
|
|
|
|
|
min = strtol(text, &end, 10);
|
|
|
|
if (text == end)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (min < 0 || min > 1000)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Ok, minutes look ok */
|
|
|
|
text = end;
|
|
|
|
sec = 0;
|
|
|
|
if (*text == ':') {
|
|
|
|
text++;
|
|
|
|
sec = strtol(text, &end, 10);
|
|
|
|
if (end != text+2)
|
|
|
|
return 0;
|
|
|
|
if (sec < 0)
|
|
|
|
return 0;
|
|
|
|
text = end;
|
|
|
|
if (*text == ':') {
|
|
|
|
if (sec >= 60)
|
|
|
|
return 0;
|
|
|
|
min = min*60 + sec;
|
|
|
|
text++;
|
|
|
|
sec = strtol(text, &end, 10);
|
|
|
|
if (end != text+2)
|
|
|
|
return 0;
|
|
|
|
if (sec < 0)
|
|
|
|
return 0;
|
|
|
|
text = end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Maybe we should accept 'min' at the end? */
|
|
|
|
if (isspace(*text))
|
|
|
|
text++;
|
|
|
|
if (*text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*sec_p = min*60 + sec;
|
|
|
|
*rel_p = rel;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
static int validate_depth(const char *text, int *mm_p)
|
2013-01-07 19:23:14 +00:00
|
|
|
{
|
|
|
|
int depth, imperial;
|
|
|
|
|
|
|
|
if (!text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
depth = get_tenths(text, &text);
|
|
|
|
if (depth < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
|
2013-01-11 01:26:10 +00:00
|
|
|
imperial = get_units()->length == FEET;
|
2013-01-07 19:23:14 +00:00
|
|
|
if (*text == 'm') {
|
|
|
|
imperial = 0;
|
|
|
|
text++;
|
2013-01-29 09:27:36 +00:00
|
|
|
} else if (!strcasecmp(text, _("ft"))) {
|
2013-01-07 19:23:14 +00:00
|
|
|
imperial = 1;
|
|
|
|
text += 2;
|
|
|
|
}
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
if (*text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (imperial) {
|
|
|
|
depth = feet_to_mm(depth / 10.0);
|
|
|
|
} else {
|
|
|
|
depth *= 100;
|
|
|
|
}
|
|
|
|
*mm_p = depth;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-23 19:12:24 +00:00
|
|
|
static int validate_po2(const char *text, int *mbar_po2)
|
|
|
|
{
|
|
|
|
int po2;
|
|
|
|
|
|
|
|
if (!text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
po2 = get_tenths(text, &text);
|
|
|
|
if (po2 < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
if (*text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*mbar_po2 = po2 * 100;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:54:59 +00:00
|
|
|
static int validate_volume(const char *text, int *sac)
|
|
|
|
{
|
|
|
|
int volume, imperial;
|
|
|
|
|
|
|
|
if (!text)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
volume = get_thousandths(text, &text);
|
|
|
|
if (volume < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
|
|
|
|
imperial = get_units()->volume == CUFT;
|
|
|
|
if (*text == 'l') {
|
|
|
|
imperial = 0;
|
|
|
|
text++;
|
2013-01-29 09:27:36 +00:00
|
|
|
} else if (!strncasecmp(text, _("cuft"), 4)) {
|
2013-01-16 00:54:59 +00:00
|
|
|
imperial = 1;
|
|
|
|
text += 4;
|
|
|
|
}
|
|
|
|
while (isspace(*text) || *text == '/')
|
|
|
|
text++;
|
2013-01-29 09:27:36 +00:00
|
|
|
if (!strncasecmp(text, _("min"), 3))
|
2013-01-16 00:54:59 +00:00
|
|
|
text += 3;
|
|
|
|
while (isspace(*text))
|
|
|
|
text++;
|
|
|
|
if (*text)
|
|
|
|
return 0;
|
|
|
|
if (imperial)
|
|
|
|
volume = cuft_to_l(volume) + 0.5; /* correct for mcuft -> ml */
|
|
|
|
*sac = volume;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-07 19:23:14 +00:00
|
|
|
static GtkWidget *add_entry_to_box(GtkWidget *box, const char *label)
|
|
|
|
{
|
|
|
|
GtkWidget *entry, *frame;
|
|
|
|
|
|
|
|
entry = gtk_entry_new();
|
|
|
|
gtk_entry_set_max_length(GTK_ENTRY(entry), 16);
|
|
|
|
if (label) {
|
|
|
|
frame = gtk_frame_new(label);
|
|
|
|
gtk_container_add(GTK_CONTAINER(frame), entry);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 0);
|
|
|
|
} else {
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), entry, FALSE, FALSE, 2);
|
|
|
|
}
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_WAYPOINTS 8
|
2013-01-23 19:12:24 +00:00
|
|
|
GtkWidget *entry_depth[MAX_WAYPOINTS], *entry_duration[MAX_WAYPOINTS], *entry_gas[MAX_WAYPOINTS], *entry_po2[MAX_WAYPOINTS];
|
2013-01-07 19:23:14 +00:00
|
|
|
int nr_waypoints = 0;
|
|
|
|
static GtkListStore *gas_model = NULL;
|
|
|
|
struct diveplan diveplan = {};
|
|
|
|
char *cache_data = NULL;
|
|
|
|
struct dive *planned_dive = NULL;
|
|
|
|
|
|
|
|
/* make a copy of the diveplan so far and display the corresponding dive */
|
|
|
|
void show_planned_dive(void)
|
|
|
|
{
|
|
|
|
struct diveplan tempplan;
|
|
|
|
struct divedatapoint *dp, **dpp;
|
|
|
|
|
|
|
|
memcpy(&tempplan, &diveplan, sizeof(struct diveplan));
|
|
|
|
dpp = &tempplan.dp;
|
|
|
|
dp = diveplan.dp;
|
2013-01-29 21:10:46 +00:00
|
|
|
while (dp && *dpp) {
|
2013-01-07 19:23:14 +00:00
|
|
|
*dpp = malloc(sizeof(struct divedatapoint));
|
|
|
|
memcpy(*dpp, dp, sizeof(struct divedatapoint));
|
|
|
|
dp = dp->next;
|
|
|
|
dpp = &(*dpp)->next;
|
|
|
|
}
|
2013-01-07 20:49:07 +00:00
|
|
|
#if DEBUG_PLAN & 1
|
2013-01-10 00:01:15 +00:00
|
|
|
printf("in show_planned_dive:\n");
|
2013-01-07 20:49:07 +00:00
|
|
|
dump_plan(&tempplan);
|
|
|
|
#endif
|
2013-01-07 19:23:14 +00:00
|
|
|
plan(&tempplan, &cache_data, &planned_dive);
|
|
|
|
free_dps(tempplan.dp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean gas_focus_out_cb(GtkWidget *entry, GdkEvent *event, gpointer data)
|
|
|
|
{
|
2013-01-07 21:13:10 +00:00
|
|
|
const char *gastext;
|
2013-01-07 19:23:14 +00:00
|
|
|
int o2, he;
|
|
|
|
int idx = data - NULL;
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
gastext = gtk_entry_get_text(GTK_ENTRY(entry));
|
|
|
|
o2 = he = 0;
|
|
|
|
if (validate_gas(gastext, &o2, &he))
|
2013-01-07 19:23:14 +00:00
|
|
|
add_string_list_entry(gastext, gas_model);
|
2013-01-07 21:13:10 +00:00
|
|
|
add_gas_to_nth_dp(&diveplan, idx, o2, he);
|
|
|
|
show_planned_dive();
|
2013-01-07 19:23:14 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-07 20:50:02 +00:00
|
|
|
static void gas_changed_cb(GtkWidget *combo, gpointer data)
|
|
|
|
{
|
2013-01-07 21:13:10 +00:00
|
|
|
const char *gastext;
|
2013-01-07 20:50:02 +00:00
|
|
|
int o2, he;
|
|
|
|
int idx = data - NULL;
|
|
|
|
|
2013-01-28 00:40:01 +00:00
|
|
|
gastext = get_active_text(GTK_COMBO_BOX(combo));
|
2013-01-08 16:48:13 +00:00
|
|
|
/* stupidly this gets called for two reasons:
|
|
|
|
* a) any keystroke into the entry field
|
|
|
|
* b) mouse selection of a dropdown
|
|
|
|
* we only care about b) (a) is handled much better with the focus-out event)
|
|
|
|
* so let's check that the text returned is actually in our model before going on
|
|
|
|
*/
|
|
|
|
if (match_list(gas_model, gastext) != MATCH_EXACT)
|
|
|
|
return;
|
2013-01-07 21:13:10 +00:00
|
|
|
o2 = he = 0;
|
|
|
|
if (!validate_gas(gastext, &o2, &he)) {
|
2013-01-07 20:50:02 +00:00
|
|
|
/* this should never happen as only validated texts should be
|
|
|
|
* in the dropdown */
|
|
|
|
printf("invalid gas for row %d\n",idx);
|
|
|
|
}
|
2013-01-07 21:13:10 +00:00
|
|
|
add_gas_to_nth_dp(&diveplan, idx, o2, he);
|
|
|
|
show_planned_dive();
|
2013-01-07 20:50:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 19:23:14 +00:00
|
|
|
static gboolean depth_focus_out_cb(GtkWidget *entry, GdkEvent *event, gpointer data)
|
|
|
|
{
|
2013-01-07 21:13:10 +00:00
|
|
|
const char *depthtext;
|
2013-01-07 19:23:14 +00:00
|
|
|
int depth;
|
|
|
|
int idx = data - NULL;
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
depthtext = gtk_entry_get_text(GTK_ENTRY(entry));
|
2013-01-07 19:23:14 +00:00
|
|
|
if (validate_depth(depthtext, &depth)) {
|
|
|
|
add_depth_to_nth_dp(&diveplan, idx, depth);
|
|
|
|
show_planned_dive();
|
|
|
|
} else {
|
|
|
|
/* we need to instead change the color of the input field or something */
|
|
|
|
printf("invalid depth for row %d\n", idx);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean duration_focus_out_cb(GtkWidget *entry, GdkEvent * event, gpointer data)
|
|
|
|
{
|
2013-01-07 21:13:10 +00:00
|
|
|
const char *durationtext;
|
2013-01-07 19:23:14 +00:00
|
|
|
int duration, is_rel;
|
|
|
|
int idx = data - NULL;
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
durationtext = gtk_entry_get_text(GTK_ENTRY(entry));
|
2013-01-10 00:01:15 +00:00
|
|
|
if (validate_time(durationtext, &duration, &is_rel))
|
2013-01-07 19:23:14 +00:00
|
|
|
add_duration_to_nth_dp(&diveplan, idx, duration, is_rel);
|
2013-01-10 00:01:15 +00:00
|
|
|
show_planned_dive();
|
2013-01-07 19:23:14 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-23 19:12:24 +00:00
|
|
|
static gboolean po2_focus_out_cb(GtkWidget *entry, GdkEvent * event, gpointer data)
|
|
|
|
{
|
|
|
|
const char *po2text;
|
|
|
|
int po2;
|
|
|
|
int idx = data - NULL;
|
|
|
|
|
|
|
|
po2text = gtk_entry_get_text(GTK_ENTRY(entry));
|
|
|
|
if (validate_po2(po2text, &po2))
|
|
|
|
add_po2_to_nth_dp(&diveplan, idx, po2);
|
|
|
|
show_planned_dive();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-15 17:14:22 +00:00
|
|
|
/* Subsurface follows the lead of most divecomputers to use times
|
|
|
|
* without timezone - so all times are implicitly assumed to be
|
|
|
|
* local time of the dive location; so in order to give the current
|
|
|
|
* time in that way we actually need to add the timezone offset */
|
|
|
|
static timestamp_t current_time_notz(void)
|
|
|
|
{
|
|
|
|
timestamp_t now = time(NULL);
|
2013-01-31 18:57:17 +00:00
|
|
|
GTimeZone *tz = g_time_zone_new_local();
|
|
|
|
gint interval = g_time_zone_find_interval(tz, G_TIME_TYPE_UNIVERSAL, now);
|
|
|
|
gint32 offset = g_time_zone_get_offset(tz, interval);
|
|
|
|
g_time_zone_unref(tz);
|
2013-01-15 17:14:22 +00:00
|
|
|
return now + offset;
|
|
|
|
}
|
|
|
|
|
2013-01-07 19:23:14 +00:00
|
|
|
static gboolean starttime_focus_out_cb(GtkWidget *entry, GdkEvent * event, gpointer data)
|
|
|
|
{
|
2013-01-07 21:13:10 +00:00
|
|
|
const char *starttimetext;
|
2013-01-07 19:23:14 +00:00
|
|
|
int starttime, is_rel;
|
|
|
|
|
2013-01-07 21:13:10 +00:00
|
|
|
starttimetext = gtk_entry_get_text(GTK_ENTRY(entry));
|
2013-01-07 19:23:14 +00:00
|
|
|
if (validate_time(starttimetext, &starttime, &is_rel)) {
|
2013-01-31 12:47:26 +00:00
|
|
|
/* we alway make this relative - either from the current time or from the
|
|
|
|
* end of the last dive, whichever is later */
|
|
|
|
timestamp_t cur = current_time_notz();
|
|
|
|
if (dive_table.nr) {
|
|
|
|
struct dive *last_dive = get_dive(dive_table.nr - 1);
|
|
|
|
if (last_dive && last_dive->when + last_dive->dc.duration.seconds > cur)
|
|
|
|
cur = last_dive->when + last_dive->dc.duration.seconds;
|
|
|
|
}
|
|
|
|
diveplan.when = cur + starttime;
|
2013-01-10 00:01:15 +00:00
|
|
|
show_planned_dive();
|
2013-01-07 19:23:14 +00:00
|
|
|
} else {
|
|
|
|
/* we need to instead change the color of the input field or something */
|
|
|
|
printf("invalid starttime\n");
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-10 00:01:15 +00:00
|
|
|
static gboolean surfpres_focus_out_cb(GtkWidget *entry, GdkEvent * event, gpointer data)
|
|
|
|
{
|
|
|
|
const char *surfprestext;
|
|
|
|
|
|
|
|
surfprestext = gtk_entry_get_text(GTK_ENTRY(entry));
|
|
|
|
diveplan.surface_pressure = atoi(surfprestext);
|
|
|
|
show_planned_dive();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:54:59 +00:00
|
|
|
static gboolean sac_focus_out_cb(GtkWidget *entry, GdkEvent * event, gpointer data)
|
|
|
|
{
|
|
|
|
const char *sactext;
|
|
|
|
|
|
|
|
sactext = gtk_entry_get_text(GTK_ENTRY(entry));
|
|
|
|
if (validate_volume(sactext, data))
|
|
|
|
show_planned_dive();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-16 23:17:39 +00:00
|
|
|
static gboolean gf_focus_out_cb(GtkWidget *entry, GdkEvent * event, gpointer data)
|
|
|
|
{
|
|
|
|
const char *gftext;
|
|
|
|
int gf;
|
|
|
|
double *gfp = data;
|
|
|
|
|
|
|
|
gftext = gtk_entry_get_text(GTK_ENTRY(entry));
|
|
|
|
if (sscanf(gftext, "%d", &gf) == 1) {
|
|
|
|
*gfp = gf / 100.0;
|
|
|
|
show_planned_dive();
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-01-07 20:50:02 +00:00
|
|
|
static GtkWidget *add_gas_combobox_to_box(GtkWidget *box, const char *label, int idx)
|
2013-01-07 19:23:14 +00:00
|
|
|
{
|
|
|
|
GtkWidget *frame, *combo;
|
|
|
|
|
|
|
|
if (!gas_model) {
|
|
|
|
gas_model = gtk_list_store_new(1, G_TYPE_STRING);
|
2013-01-29 09:27:36 +00:00
|
|
|
add_string_list_entry(_("AIR"), gas_model);
|
|
|
|
add_string_list_entry(_("EAN32"), gas_model);
|
|
|
|
add_string_list_entry(_("EAN36"), gas_model);
|
2013-01-07 19:23:14 +00:00
|
|
|
}
|
2013-01-28 00:40:01 +00:00
|
|
|
combo = combo_box_with_model_and_entry(gas_model);
|
2013-01-07 19:23:14 +00:00
|
|
|
gtk_widget_add_events(combo, GDK_FOCUS_CHANGE_MASK);
|
2013-01-07 20:50:02 +00:00
|
|
|
g_signal_connect(gtk_bin_get_child(GTK_BIN(combo)), "focus-out-event", G_CALLBACK(gas_focus_out_cb), NULL + idx);
|
|
|
|
g_signal_connect(combo, "changed", G_CALLBACK(gas_changed_cb), NULL + idx);
|
2013-01-07 19:23:14 +00:00
|
|
|
if (label) {
|
|
|
|
frame = gtk_frame_new(label);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_container_add(GTK_CONTAINER(frame), combo);
|
|
|
|
} else {
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), combo, FALSE, FALSE, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return combo;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_waypoint_widgets(GtkWidget *box, int idx)
|
|
|
|
{
|
|
|
|
GtkWidget *hbox;
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new(FALSE, 0);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0);
|
|
|
|
if (idx == 0) {
|
|
|
|
entry_depth[idx] = add_entry_to_box(hbox, _("Ending Depth"));
|
|
|
|
entry_duration[idx] = add_entry_to_box(hbox, _("Segment Time"));
|
2013-02-03 04:49:47 +00:00
|
|
|
entry_gas[idx] = add_gas_combobox_to_box(hbox, C_("Type of","Gas Used"), idx);
|
2013-01-23 19:12:24 +00:00
|
|
|
entry_po2[idx] = add_entry_to_box(hbox, _("CC SetPoint"));
|
2013-01-07 19:23:14 +00:00
|
|
|
} else {
|
|
|
|
entry_depth[idx] = add_entry_to_box(hbox, NULL);
|
|
|
|
entry_duration[idx] = add_entry_to_box(hbox, NULL);
|
2013-01-07 20:50:02 +00:00
|
|
|
entry_gas[idx] = add_gas_combobox_to_box(hbox, NULL, idx);
|
2013-01-23 19:12:24 +00:00
|
|
|
entry_po2[idx] = add_entry_to_box(hbox, NULL);
|
2013-01-07 19:23:14 +00:00
|
|
|
}
|
|
|
|
gtk_widget_add_events(entry_depth[idx], GDK_FOCUS_CHANGE_MASK);
|
|
|
|
g_signal_connect(entry_depth[idx], "focus-out-event", G_CALLBACK(depth_focus_out_cb), NULL + idx);
|
|
|
|
gtk_widget_add_events(entry_duration[idx], GDK_FOCUS_CHANGE_MASK);
|
|
|
|
g_signal_connect(entry_duration[idx], "focus-out-event", G_CALLBACK(duration_focus_out_cb), NULL + idx);
|
2013-01-23 19:12:24 +00:00
|
|
|
gtk_widget_add_events(entry_po2[idx], GDK_FOCUS_CHANGE_MASK);
|
|
|
|
g_signal_connect(entry_po2[idx], "focus-out-event", G_CALLBACK(po2_focus_out_cb), NULL + idx);
|
2013-01-07 19:23:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void add_waypoint_cb(GtkButton *button, gpointer _data)
|
|
|
|
{
|
|
|
|
GtkWidget *vbox = _data;
|
|
|
|
if (nr_waypoints < MAX_WAYPOINTS) {
|
|
|
|
GtkWidget *ovbox, *dialog;
|
|
|
|
add_waypoint_widgets(vbox, nr_waypoints);
|
|
|
|
nr_waypoints++;
|
|
|
|
ovbox = gtk_widget_get_parent(GTK_WIDGET(button));
|
|
|
|
dialog = gtk_widget_get_parent(ovbox);
|
|
|
|
gtk_widget_show_all(dialog);
|
|
|
|
} else {
|
|
|
|
// some error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-16 00:30:24 +00:00
|
|
|
static void add_entry_with_callback(GtkWidget *box, int length, char *label, char *initialtext,
|
2013-01-29 21:10:46 +00:00
|
|
|
gboolean (*callback)(GtkWidget *, GdkEvent *, gpointer), gpointer data)
|
2013-01-16 00:30:24 +00:00
|
|
|
{
|
|
|
|
GtkWidget *entry = add_entry_to_box(box, label);
|
|
|
|
gtk_entry_set_max_length(GTK_ENTRY(entry), length);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(entry), initialtext);
|
|
|
|
gtk_widget_add_events(entry, GDK_FOCUS_CHANGE_MASK);
|
2013-01-16 00:54:59 +00:00
|
|
|
g_signal_connect(entry, "focus-out-event", G_CALLBACK(callback), data);
|
2013-01-16 00:30:24 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 17:14:22 +00:00
|
|
|
/* set up the dialog where the user can input their dive plan */
|
2013-01-07 19:23:14 +00:00
|
|
|
void input_plan()
|
|
|
|
{
|
2013-01-16 00:30:24 +00:00
|
|
|
GtkWidget *planner, *content, *vbox, *hbox, *outervbox, *add_row, *label;
|
2013-01-16 23:17:39 +00:00
|
|
|
char *bottom_sac, *deco_sac, gflowstring[4], gfhighstring[4];
|
2013-01-07 19:23:14 +00:00
|
|
|
|
|
|
|
if (diveplan.dp)
|
|
|
|
free_dps(diveplan.dp);
|
|
|
|
memset(&diveplan, 0, sizeof(diveplan));
|
2013-01-16 23:17:39 +00:00
|
|
|
free(cache_data);
|
|
|
|
cache_data = NULL;
|
2013-01-07 19:23:14 +00:00
|
|
|
planned_dive = NULL;
|
|
|
|
planner = gtk_dialog_new_with_buttons(_("Dive Plan - THIS IS JUST A SIMULATION; DO NOT USE FOR DIVING"),
|
|
|
|
GTK_WINDOW(main_window),
|
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
NULL);
|
|
|
|
content = gtk_dialog_get_content_area (GTK_DIALOG (planner));
|
|
|
|
outervbox = gtk_vbox_new(FALSE, 2);
|
|
|
|
gtk_container_add (GTK_CONTAINER (content), outervbox);
|
2013-01-10 00:01:15 +00:00
|
|
|
label = gtk_label_new(_("<small>Add segments below.\nEach line describes part of the planned dive.\n"
|
|
|
|
"An entry with depth, time and gas describes a segment that ends "
|
|
|
|
"at the given depth, takes the given time (if relative, e.g. '+3:30') "
|
|
|
|
"or ends at the given time (if absolute), and uses the given gas.\n"
|
|
|
|
"An empty gas means 'use previous gas' (or AIR if no gas was specified).\n"
|
|
|
|
"An entry that has a depth and a gas given but no time is special; it "
|
|
|
|
"informs the planner that the gas specified is available for the ascent "
|
2013-01-23 19:12:24 +00:00
|
|
|
"once the depth given has been reached.\n"
|
2013-01-29 09:27:36 +00:00
|
|
|
"CC SetPoint specifies CC (rebreather) dives, leave empty for OC.</small>"));
|
2013-01-10 00:01:15 +00:00
|
|
|
gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
|
|
|
|
gtk_label_set_use_markup(GTK_LABEL(label), TRUE);
|
|
|
|
gtk_box_pack_start(GTK_BOX(outervbox), label, TRUE, TRUE, 0);
|
2013-01-07 19:23:14 +00:00
|
|
|
vbox = gtk_vbox_new(FALSE, 0);
|
|
|
|
gtk_box_pack_start(GTK_BOX(outervbox), vbox, TRUE, TRUE, 0);
|
2013-01-10 00:01:15 +00:00
|
|
|
hbox = gtk_hbox_new(FALSE, 0);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0);
|
2013-01-16 00:54:59 +00:00
|
|
|
add_entry_with_callback(hbox, 12, _("Dive starts when?"), "+60:00", starttime_focus_out_cb, NULL);
|
|
|
|
add_entry_with_callback(hbox, 12, _("Surface Pressure (mbar)"), SURFACE_PRESSURE_STRING, surfpres_focus_out_cb, NULL);
|
2013-01-16 23:17:39 +00:00
|
|
|
|
|
|
|
hbox = gtk_hbox_new(FALSE, 0);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0);
|
2013-01-16 00:54:59 +00:00
|
|
|
if (get_units()->volume == CUFT) {
|
2013-01-29 09:27:36 +00:00
|
|
|
bottom_sac = _("0.7 cuft/min");
|
|
|
|
deco_sac = _("0.6 cuft/min");
|
2013-01-16 00:54:59 +00:00
|
|
|
diveplan.bottomsac = 1000 * cuft_to_l(0.7);
|
|
|
|
diveplan.decosac = 1000 * cuft_to_l(0.6);
|
|
|
|
} else {
|
2013-01-29 09:27:36 +00:00
|
|
|
bottom_sac = _("20 l/min");
|
|
|
|
deco_sac = _("17 l/min");
|
2013-01-16 00:54:59 +00:00
|
|
|
diveplan.bottomsac = 20000;
|
|
|
|
diveplan.decosac = 17000;
|
|
|
|
}
|
|
|
|
add_entry_with_callback(hbox, 12, _("SAC during dive"), bottom_sac, sac_focus_out_cb, &diveplan.bottomsac);
|
|
|
|
add_entry_with_callback(hbox, 12, _("SAC during decostop"), deco_sac, sac_focus_out_cb, &diveplan.decosac);
|
2013-01-16 23:17:39 +00:00
|
|
|
plangflow = prefs.gflow;
|
|
|
|
plangfhigh = prefs.gfhigh;
|
|
|
|
snprintf(gflowstring, sizeof(gflowstring), "%3.0f", 100 * plangflow);
|
|
|
|
snprintf(gfhighstring, sizeof(gflowstring), "%3.0f", 100 * plangfhigh);
|
|
|
|
add_entry_with_callback(hbox, 5, _("GFlow for plan"), gflowstring, gf_focus_out_cb, &plangflow);
|
|
|
|
add_entry_with_callback(hbox, 5, _("GFhigh for plan"), gfhighstring, gf_focus_out_cb, &plangfhigh);
|
2013-01-15 17:14:22 +00:00
|
|
|
diveplan.when = current_time_notz() + 3600;
|
2013-01-14 22:53:38 +00:00
|
|
|
diveplan.surface_pressure = SURFACE_PRESSURE;
|
2013-01-07 19:23:14 +00:00
|
|
|
nr_waypoints = 4;
|
|
|
|
add_waypoint_widgets(vbox, 0);
|
|
|
|
add_waypoint_widgets(vbox, 1);
|
|
|
|
add_waypoint_widgets(vbox, 2);
|
|
|
|
add_waypoint_widgets(vbox, 3);
|
|
|
|
add_row = gtk_button_new_with_label(_("Add waypoint"));
|
|
|
|
g_signal_connect(G_OBJECT(add_row), "clicked", G_CALLBACK(add_waypoint_cb), vbox);
|
|
|
|
gtk_box_pack_start(GTK_BOX(outervbox), add_row, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show_all(planner);
|
|
|
|
if (gtk_dialog_run(GTK_DIALOG(planner)) == GTK_RESPONSE_ACCEPT) {
|
2013-01-07 21:13:10 +00:00
|
|
|
plan(&diveplan, &cache_data, &planned_dive);
|
2013-01-16 22:44:11 +00:00
|
|
|
mark_divelist_changed(TRUE);
|
2013-01-07 22:52:31 +00:00
|
|
|
} else {
|
|
|
|
if (planned_dive) {
|
|
|
|
/* we have added a dive during the dynamic construction
|
|
|
|
* in the dialog; get rid of it */
|
|
|
|
delete_single_dive(dive_table.nr - 1);
|
|
|
|
report_dives(FALSE, FALSE);
|
|
|
|
planned_dive = NULL;
|
|
|
|
}
|
2013-01-07 19:23:14 +00:00
|
|
|
}
|
|
|
|
gtk_widget_destroy(planner);
|
2013-01-16 23:17:39 +00:00
|
|
|
set_gf(prefs.gflow, prefs.gfhigh);
|
2013-01-07 19:23:14 +00:00
|
|
|
}
|