mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Cleanup: move deco function declarations to deco.h
Another tiny step in making dive.h smaller: move function declarations to deco.h if these functions are defined in deco.c and don't directly concern dives. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
16214e753a
commit
0136d76cf4
7 changed files with 22 additions and 19 deletions
18
core/deco.h
18
core/deco.h
|
@ -6,11 +6,29 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct dive;
|
||||
struct deco_state;
|
||||
struct decostop;
|
||||
|
||||
extern const double buehlmann_N2_t_halflife[];
|
||||
|
||||
extern int deco_allowed_depth(double tissues_tolerance, double surface_pressure, const struct dive *dive, bool smooth);
|
||||
|
||||
double get_gf(struct deco_state *ds, double ambpressure_bar, const struct dive *dive);
|
||||
extern void clear_deco(struct deco_state *ds, double surface_pressure);
|
||||
extern void dump_tissues(struct deco_state *ds);
|
||||
extern void set_gf(short gflow, short gfhigh);
|
||||
extern void set_vpmb_conservatism(short conservatism);
|
||||
extern void cache_deco_state(struct deco_state *source, struct deco_state **datap);
|
||||
extern void restore_deco_state(struct deco_state *data, struct deco_state *target, bool keep_vpmb_state);
|
||||
extern void nuclear_regeneration(struct deco_state *ds, double time);
|
||||
extern void vpmb_start_gradient(struct deco_state *ds);
|
||||
extern void vpmb_next_gradient(struct deco_state *ds, double deco_time, double surface_pressure);
|
||||
extern double tissue_tolerance_calc(struct deco_state *ds, const struct dive *dive, double pressure);
|
||||
extern void calc_crushing_pressure(struct deco_state *ds, double pressure);
|
||||
extern void vpmb_start_gradient(struct deco_state *ds);
|
||||
extern void clear_vpmb_state(struct deco_state *ds);
|
||||
extern void printdecotable(struct decostop *table);
|
||||
|
||||
extern double regressiona();
|
||||
extern double regressionb();
|
||||
|
|
15
core/dive.h
15
core/dive.h
|
@ -449,20 +449,9 @@ struct deco_state {
|
|||
};
|
||||
|
||||
extern void add_segment(struct deco_state *ds, double pressure, struct gasmix gasmix, int period_in_seconds, int setpoint, enum divemode_t divemode, int sac);
|
||||
extern void clear_deco(struct deco_state *ds, double surface_pressure);
|
||||
extern void dump_tissues(struct deco_state *ds);
|
||||
extern void set_gf(short gflow, short gfhigh);
|
||||
extern void set_vpmb_conservatism(short conservatism);
|
||||
extern void cache_deco_state(struct deco_state *source, struct deco_state **datap);
|
||||
extern void restore_deco_state(struct deco_state *data, struct deco_state *target, bool keep_vpmb_state);
|
||||
extern void nuclear_regeneration(struct deco_state *ds, double time);
|
||||
extern void vpmb_start_gradient(struct deco_state *ds);
|
||||
extern void vpmb_next_gradient(struct deco_state *ds, double deco_time, double surface_pressure);
|
||||
extern double tissue_tolerance_calc(struct deco_state *ds, const struct dive *dive, double pressure);
|
||||
extern bool is_dc_planner(const struct divecomputer *dc);
|
||||
extern bool has_planned(const struct dive *dive, bool planned);
|
||||
|
||||
|
||||
/* this should be converted to use our types */
|
||||
struct divedatapoint {
|
||||
int time;
|
||||
|
@ -499,10 +488,6 @@ struct decostop {
|
|||
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);
|
||||
extern void calc_crushing_pressure(struct deco_state *ds, double pressure);
|
||||
extern void vpmb_start_gradient(struct deco_state *ds);
|
||||
extern void clear_vpmb_state(struct deco_state *ds);
|
||||
extern void printdecotable(struct decostop *table);
|
||||
|
||||
/* Since C doesn't have parameter-based overloading, two versions of get_next_event. */
|
||||
extern const struct event *get_next_event(const struct event *event, const char *name);
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#include <libxslt/transform.h>
|
||||
|
||||
#include "subsurface-string.h"
|
||||
#include "deco.h"
|
||||
#include "divesite.h"
|
||||
#include "divelist.h"
|
||||
#include "display.h"
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include "qPrefTechnicalDetails.h"
|
||||
#include "qPrefPrivate.h"
|
||||
|
||||
|
||||
#include "core/deco.h"
|
||||
|
||||
static const QString group = QStringLiteral("TecDetails");
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <QMessageBox>
|
||||
|
||||
#include "qt-models/models.h"
|
||||
#include "core/dive.h" // TODO: replace by deco.h
|
||||
#include "core/deco.h"
|
||||
|
||||
PreferencesGraph::PreferencesGraph() : AbstractPreferencesWidget(tr("Profile"), QIcon(":graph-icon"), 5)
|
||||
{
|
||||
|
|
|
@ -23,7 +23,6 @@ private slots:
|
|||
|
||||
private:
|
||||
Ui::PreferencesGraph *ui;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "core/settings/qPrefDivePlanner.h"
|
||||
#include "desktop-widgets/command.h"
|
||||
#include "core/gettextfromc.h"
|
||||
#include "core/deco.h"
|
||||
#include <QApplication>
|
||||
#include <QTextDocument>
|
||||
#include <QtConcurrent>
|
||||
|
|
Loading…
Reference in a new issue