mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
2d8e343221
This has become a bit of a catch-all overhaul of a large portion of the planner - I started out wanting to improve the CCR mode, but then as I started pulling all the other threads that needed addressing started to come with it. Improve how the gas selection is handled when planning dives in CCR mode, by making the type (OC / CCR) of segments dependent on the gas use type that was set for the selected gas. Add a preference to allow the user to chose to use OC gases as diluent, in a similar fashion to the original implementation. Hide gases that cannot be used in the currently selected dive mode in all drop downs. Include usage type in gas names if this is needed. Hide columns and disable elements in the 'Dive planner points' table if they can they can not be edited in the curently selected dive mode. Visually identify gases and usage types that are not appropriate for the currently selected dive mode. Move the 'Dive mode' selection to the top of the planner view, to accommodate the fact that this is a property of the dive and not a planner setting. Show a warning instead of the dive plan if the plan contains gases that are not usable in the selected dive mode. Fix the data entry for the setpoint in the 'Dive planner points' table. Fix problems with enabling / disabling planner settings when switching between dive modes. Refactor some names to make them more appropriate for their current usage. One point that is still open is to hide gas usage graphs in the planner profile if the gas isn't used for OC, as there is no way to meaningfully interpolate such usage. Signed-off-by: Michael Keller <github@ike.ch>
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef PLANNER_H
|
|
#define PLANNER_H
|
|
|
|
#include "units.h"
|
|
#include "divemode.h"
|
|
#include <string>
|
|
|
|
/* 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;
|
|
};
|
|
|
|
struct deco_state_cache;
|
|
|
|
typedef enum {
|
|
PLAN_OK,
|
|
PLAN_ERROR_TIMEOUT,
|
|
PLAN_ERROR_INAPPROPRIATE_GAS,
|
|
} planner_error_t;
|
|
|
|
extern int validate_gas(const char *text, struct gasmix *gas);
|
|
extern int validate_po2(const char *text, int *mbar_po2);
|
|
extern int get_cylinderid_at_time(struct dive *dive, struct divecomputer *dc, duration_t time);
|
|
extern bool diveplan_empty(struct diveplan *diveplan);
|
|
extern void add_plan_to_notes(struct diveplan *diveplan, struct dive *dive, bool show_disclaimer, planner_error_t error);
|
|
extern const char *get_planner_disclaimer();
|
|
|
|
extern void free_dps(struct diveplan *diveplan);
|
|
|
|
struct divedatapoint *plan_add_segment(struct diveplan *diveplan, int duration, int depth, int cylinderid, int po2, bool entered, enum divemode_t divemode);
|
|
#if DEBUG_PLAN
|
|
void dump_plan(struct diveplan *diveplan);
|
|
#endif
|
|
struct decostop {
|
|
int depth;
|
|
int time;
|
|
};
|
|
|
|
extern std::string get_planner_disclaimer_formatted();
|
|
extern bool plan(struct deco_state *ds, struct diveplan *diveplan, struct dive *dive, int dcNr, int timestep, struct decostop *decostoptable, deco_state_cache &cache, bool is_planner, bool show_disclaimer);
|
|
#endif // PLANNER_H
|