mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
4706b0f11a
There used to be code to remove the old planner notes when replanning a dive. It used a global variable and seemed rather brittle. Moreover, the place that set the global variable was inadvertently removed. Therefore has been effectively dead code. Reimplement the functionality, but be more robust by considering that the deco-type may have changed: Split the translated disclaimer string in two parts, before and after the "%s" place-holder. Search for these two parts. Remove the disclaimer and everything after the disclaimer. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
74 lines
2.2 KiB
C
74 lines
2.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef PLANNER_H
|
|
#define PLANNER_H
|
|
|
|
#define LONGDECO 1
|
|
#define NOT_RECREATIONAL 2
|
|
|
|
#include "units.h"
|
|
#include "divemode.h"
|
|
|
|
/* this should be converted to use our types */
|
|
struct divedatapoint {
|
|
int time;
|
|
depth_t depth;
|
|
int cylinderid;
|
|
pressure_t minimum_gas;
|
|
int setpoint;
|
|
bool entered;
|
|
struct divedatapoint *next;
|
|
enum divemode_t divemode;
|
|
};
|
|
|
|
struct diveplan {
|
|
timestamp_t when;
|
|
int surface_pressure; /* mbar */
|
|
int bottomsac; /* ml/min */
|
|
int decosac; /* ml/min */
|
|
int salinity;
|
|
short gflow;
|
|
short gfhigh;
|
|
short vpmb_conservatism;
|
|
struct divedatapoint *dp;
|
|
int eff_gflow, eff_gfhigh;
|
|
int surface_interval;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int validate_gas(const char *text, struct gasmix *gas);
|
|
extern int validate_po2(const char *text, int *mbar_po2);
|
|
extern timestamp_t current_time_notz(void);
|
|
extern void set_last_stop(bool last_stop_6m);
|
|
extern void set_verbatim(bool verbatim);
|
|
extern void set_display_runtime(bool display);
|
|
extern void set_display_duration(bool display);
|
|
extern void set_display_transitions(bool display);
|
|
extern int get_cylinderid_at_time(struct dive *dive, struct divecomputer *dc, duration_t time);
|
|
extern int get_gasidx(struct dive *dive, struct gasmix mix);
|
|
extern bool diveplan_empty(struct diveplan *diveplan);
|
|
extern void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool show_disclaimer, int error);
|
|
extern const char *get_planner_disclaimer();
|
|
|
|
extern void free_dps(struct diveplan *diveplan);
|
|
extern struct dive *planned_dive;
|
|
extern char *cache_data;
|
|
extern char *disclaimer;
|
|
|
|
struct divedatapoint *plan_add_segment(struct diveplan *diveplan, int duration, int depth, int cylinderid, int po2, bool entered, enum divemode_t divemode);
|
|
struct divedatapoint *create_dp(int time_incr, int depth, int cylinderid, int po2);
|
|
#if DEBUG_PLAN
|
|
void dump_plan(struct diveplan *diveplan);
|
|
#endif
|
|
struct decostop {
|
|
int depth;
|
|
int time;
|
|
};
|
|
extern bool plan(struct deco_state *ds, struct diveplan *diveplan, struct dive *dive, int timestep, struct decostop *decostoptable, struct deco_state **cached_datap, bool is_planner, bool show_disclaimer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // PLANNER_H
|