]> git.tdb.fi Git - ext/subsurface.git/blob - dive.h
Sanitize and fix cylinder pressure overview
[ext/subsurface.git] / dive.h
1 #ifndef DIVE_H
2 #define DIVE_H
3
4 #include <stdlib.h>
5 #include <time.h>
6
7 /*
8  * Some silly typedefs to make our units very explicit.
9  *
10  * Also, the units are chosen so that values can be expressible as
11  * integers, so that we never have FP rounding issues. And they
12  * are small enough that converting to/from imperial units doesn't
13  * really matter.
14  *
15  * We also strive to make '0' a meaningless number saying "not
16  * initialized", since many values are things that may not have
17  * been reported (eg cylinder pressure or temperature from dive
18  * computers that don't support them). But sometimes -1 is an even
19  * more explicit way of saying "not there".
20  *
21  * Thus "millibar" for pressure, for example, or "millikelvin" for
22  * temperatures. Doing temperatures in celsius or fahrenheit would
23  * make for loss of precision when converting from one to the other,
24  * and using millikelvin is SI-like but also means that a temperature
25  * of '0' is clearly just a missing temperature or cylinder pressure.
26  *
27  * Also strive to use units that can not possibly be mistaken for a
28  * valid value in a "normal" system without conversion. If the max
29  * depth of a dive is '20000', you probably didn't convert from mm on
30  * output, or if the max depth gets reported as "0.2ft" it was either
31  * a really boring dive, or there was some missing input conversion,
32  * and a 60-ft dive got recorded as 60mm.
33  *
34  * Doing these as "structs containing value" means that we always
35  * have to explicitly write out those units in order to get at the
36  * actual value. So there is hopefully little fear of using a value
37  * in millikelvin as Fahrenheit by mistake.
38  *
39  * We don't actually use these all yet, so maybe they'll change, but
40  * I made a number of types as guidelines.
41  */
42 typedef struct {
43         int seconds;
44 } duration_t;
45
46 typedef struct {
47         int mm;
48 } depth_t;
49
50 typedef struct {
51         int mbar;
52 } pressure_t;
53
54 typedef struct {
55         int mkelvin;
56 } temperature_t;
57
58 typedef struct {
59         int mliter;
60 } volume_t;
61
62 typedef struct {
63         int permille;
64 } fraction_t;
65
66 typedef struct {
67         int grams;
68 } weight_t;
69
70 typedef struct {
71         fraction_t o2;
72         fraction_t he;
73 } gasmix_t;
74
75 typedef struct {
76         volume_t size;
77         pressure_t workingpressure;
78         const char *description;        /* "LP85", "AL72", "AL80", "HP100+" or whatever */
79 } cylinder_type_t;
80
81 typedef struct {
82         cylinder_type_t type;
83         gasmix_t gasmix;
84         pressure_t start, end;
85 } cylinder_t;
86
87 static inline int to_feet(depth_t depth)
88 {
89         return depth.mm * 0.00328084 + 0.5;
90 }
91
92 static inline int to_C(temperature_t temp)
93 {
94         if (!temp.mkelvin)
95                 return 0;
96         return (temp.mkelvin - 273150) / 1000;
97 }
98
99 static inline int to_PSI(pressure_t pressure)
100 {
101         return pressure.mbar * 0.0145037738 + 0.5;
102 }
103
104 struct sample {
105         duration_t time;
106         depth_t depth;
107         temperature_t temperature;
108         pressure_t cylinderpressure;
109         int cylinderindex;
110 };
111
112 #define MAX_CYLINDERS (8)
113
114 struct dive {
115         time_t when;
116         char *location;
117         char *notes;
118         depth_t maxdepth, meandepth;
119         duration_t duration, surfacetime;
120         depth_t visibility;
121         temperature_t airtemp, watertemp;
122         cylinder_t cylinder[MAX_CYLINDERS];
123         int samples;
124         struct sample sample[];
125 };
126
127 extern int verbose;
128
129 struct dive_table {
130         int nr, allocated;
131         struct dive **dives;
132 };
133
134 extern struct dive_table dive_table;
135
136 static inline struct dive *get_dive(unsigned int nr)
137 {
138         if (nr >= dive_table.nr)
139                 return NULL;
140         return dive_table.dives[nr];
141 }
142
143 extern void parse_xml_init(void);
144 extern void parse_xml_file(const char *filename);
145
146 extern void flush_dive_info_changes(void);
147 extern void save_dives(const char *filename);
148
149 static inline unsigned int dive_size(int samples)
150 {
151         return sizeof(struct dive) + samples*sizeof(struct sample);
152 }
153
154 extern struct dive *fixup_dive(struct dive *dive);
155 extern struct dive *try_to_merge(struct dive *a, struct dive *b);
156
157 #endif /* DIVE_H */