mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Undo: make undo-system dive site-aware
As opposed to dive trips, dive sites were always directly added to the global table, even on import. Instead, parse the divesites into a distinct table and merge them on import. Currently, this does not do any merging of dive sites, i.e. dive sites are considered as either equal or different. Nevertheless, merging of data should be rather easy to implement and simply follow the code of the dive merging. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
37146c5742
commit
82af1b2377
22 changed files with 269 additions and 114 deletions
|
@ -24,10 +24,10 @@ struct dive_site
|
|||
struct taxonomy_data taxonomy;
|
||||
};
|
||||
|
||||
struct dive_site_table {
|
||||
typedef struct dive_site_table {
|
||||
int nr, allocated;
|
||||
struct dive_site **dive_sites;
|
||||
};
|
||||
} dive_site_table_t;
|
||||
|
||||
extern struct dive_site_table dive_site_table;
|
||||
|
||||
|
@ -45,6 +45,10 @@ static inline struct dive_site *get_dive_site(int nr, struct dive_site_table *ds
|
|||
int get_divesite_idx(const struct dive_site *ds, struct dive_site_table *ds_table);
|
||||
struct dive_site *get_dive_site_by_uuid(uint32_t uuid, struct dive_site_table *ds_table);
|
||||
void dive_site_table_sort(struct dive_site_table *ds_table);
|
||||
void add_dive_site_to_table(struct dive_site *ds, struct dive_site_table *ds_table);
|
||||
void remove_dive_site_from_table(struct dive_site *ds, struct dive_site_table *ds_table);
|
||||
void register_dive_site(struct dive_site *ds);
|
||||
void unregister_dive_site(struct dive_site *ds);
|
||||
struct dive_site *alloc_or_get_dive_site(uint32_t uuid, struct dive_site_table *ds_table);
|
||||
int nr_of_dives_at_dive_site(struct dive_site *ds, bool select_only);
|
||||
bool is_dive_site_used(struct dive_site *ds, bool select_only);
|
||||
|
@ -56,6 +60,7 @@ struct dive_site *get_dive_site_by_name(const char *name, struct dive_site_table
|
|||
struct dive_site *get_dive_site_by_gps(const location_t *, struct dive_site_table *ds_table);
|
||||
struct dive_site *get_dive_site_by_gps_and_name(char *name, const location_t *, struct dive_site_table *ds_table);
|
||||
struct dive_site *get_dive_site_by_gps_proximity(const location_t *, int distance, struct dive_site_table *ds_table);
|
||||
struct dive_site *get_same_dive_site(const struct dive_site *);
|
||||
bool dive_site_is_empty(struct dive_site *ds);
|
||||
void copy_dive_site_taxonomy(struct dive_site *orig, struct dive_site *copy);
|
||||
void copy_dive_site(struct dive_site *orig, struct dive_site *copy);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue