mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-09 00:56:16 +00:00
These functions accessed the global divelog make this explicit. I'm still not happy about the situation, because these functions access global state, such as the selection. I think these should be moved up the call-chain. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef DIVELIST_H
|
|
#define DIVELIST_H
|
|
|
|
#include "triptable.h"
|
|
#include "divesitetable.h"
|
|
#include "units.h"
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
struct dive;
|
|
struct divelog;
|
|
struct device;
|
|
struct deco_state;
|
|
|
|
int comp_dives(const struct dive &a, const struct dive &b);
|
|
int comp_dives_ptr(const struct dive *a, const struct dive *b);
|
|
|
|
struct dive_table : public sorted_owning_table<dive, &comp_dives> {
|
|
dive *get_by_uniq_id(int id) const;
|
|
void record_dive(std::unique_ptr<dive> d); // call fixup_dive() before adding dive to table.
|
|
struct dive *register_dive(std::unique_ptr<dive> d);
|
|
std::unique_ptr<dive> unregister_dive(int idx);
|
|
|
|
int init_decompression(struct deco_state *ds, const struct dive *dive, bool in_planner) const;
|
|
void update_cylinder_related_info(struct dive *) const;
|
|
int get_dive_nr_at_idx(int idx) const;
|
|
timestamp_t get_surface_interval(timestamp_t when) const;
|
|
struct dive *find_next_visible_dive(timestamp_t when);
|
|
private:
|
|
int calculate_cns(struct dive *dive) const; // Note: writes into dive->cns
|
|
};
|
|
|
|
/* this is used for both git and xml format */
|
|
#define DATAFORMAT_VERSION 3
|
|
|
|
extern void get_dive_gas(const struct dive *dive, int *o2_p, int *he_p, int *o2low_p);
|
|
|
|
int get_min_datafile_version();
|
|
void report_datafile_version(int version);
|
|
void clear_dive_file_data();
|
|
extern bool has_dive(unsigned int deviceid, unsigned int diveid);
|
|
|
|
#endif // DIVELIST_H
|