11 static int cylinder_changed;
12 static GtkComboBox *cylinder_description;
13 static GtkSpinButton *cylinder_size, *cylinder_pressure, *nitrox_value;
15 static void set_cylinder_spinbuttons(int ml, int mbar)
17 double volume, pressure;
20 pressure = mbar / 1000.0;
22 if (output_units.volume == CUFT) {
23 volume /= 28.3168466; /* Liters to cuft */
24 volume *= pressure / 1.01325;
26 if (output_units.pressure == PSI) {
27 pressure *= 14.5037738; /* Bar to PSI */
31 gtk_spin_button_set_value(cylinder_size, volume);
32 gtk_spin_button_set_value(cylinder_pressure, pressure);
35 static void cylinder_cb(GtkComboBox *combo_box, gpointer data)
38 GtkTreeModel *model = gtk_combo_box_get_model(combo_box);
39 GValue value1 = {0, }, value2 = {0,};
40 cylinder_t *cyl = current_dive->cylinder + 0;
42 /* Did the user set it to some non-standard value? */
43 if (!gtk_combo_box_get_active_iter(combo_box, &iter)) {
49 * We get "change" signal callbacks just because we set
50 * the description by hand. Whatever. So ignore them if
53 if (!cylinder_changed && cyl->type.description) {
55 char *desc = gtk_combo_box_get_active_text(combo_box);
57 same = !strcmp(desc, cyl->type.description);
64 gtk_tree_model_get_value(model, &iter, 1, &value1);
65 gtk_tree_model_get_value(model, &iter, 2, &value2);
67 set_cylinder_spinbuttons(g_value_get_int(&value1), g_value_get_int(&value2));
71 * The gtk_tree_model_foreach() interface is bad. It could have
72 * returned whether the callback ever returned true
74 static int found_match = 0;
76 static gboolean match_cylinder(GtkTreeModel *model,
82 const char *desc = data;
85 gtk_tree_model_get_value(model, iter, 0, &value);
86 name = g_value_get_string(&value);
87 if (strcmp(desc, name))
89 gtk_combo_box_set_active_iter(cylinder_description, iter);
94 static void add_cylinder(const char *desc, int ml, int mbar)
99 model = gtk_combo_box_get_model(cylinder_description);
100 gtk_tree_model_foreach(model, match_cylinder, (gpointer)desc);
103 GtkListStore *store = GTK_LIST_STORE(model);
106 gtk_list_store_append(store, &iter);
107 gtk_list_store_set(store, &iter,
112 gtk_combo_box_set_active_iter(cylinder_description, &iter);
116 void show_dive_equipment(struct dive *dive)
118 cylinder_t *cyl = &dive->cylinder[0];
119 const char *desc = cyl->type.description;
126 ml = cyl->type.size.mliter;
127 mbar = cyl->type.workingpressure.mbar;
128 add_cylinder(desc, ml, mbar);
130 set_cylinder_spinbuttons(cyl->type.size.mliter, cyl->type.workingpressure.mbar);
131 o2 = cyl->gasmix.o2.permille / 10.0;
134 gtk_spin_button_set_value(nitrox_value, o2);
137 static GtkWidget *create_spinbutton(GtkWidget *vbox, const char *name, double min, double max, double incr)
139 GtkWidget *frame, *hbox, *button;
141 frame = gtk_frame_new(name);
142 gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, TRUE, 0);
144 hbox = gtk_hbox_new(FALSE, 3);
145 gtk_container_add(GTK_CONTAINER(frame), hbox);
147 button = gtk_spin_button_new_with_range(min, max, incr);
148 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, TRUE, 0);
150 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(button), GTK_UPDATE_IF_VALID);
155 static void fill_cylinder_info(cylinder_t *cyl, const char *desc, double volume, double pressure, int o2)
159 if (output_units.pressure == PSI)
160 pressure /= 14.5037738;
162 if (pressure && output_units.volume == CUFT) {
163 volume *= 28.3168466; /* CUFT to liter */
164 volume /= pressure / 1.01325;
167 ml = volume * 1000 + 0.5;
168 mbar = pressure * 1000 + 0.5;
172 cyl->type.description = desc;
173 cyl->type.size.mliter = ml;
174 cyl->type.workingpressure.mbar = mbar;
175 cyl->gasmix.o2.permille = o2;
178 * Also, insert it into the model if it doesn't already exist
180 add_cylinder(desc, ml, mbar);
183 static void record_cylinder_changes(struct dive *dive)
186 GtkComboBox *box = cylinder_description;
187 double volume, pressure;
190 desc = gtk_combo_box_get_active_text(box);
191 volume = gtk_spin_button_get_value(cylinder_size);
192 pressure = gtk_spin_button_get_value(cylinder_pressure);
193 o2 = gtk_spin_button_get_value(nitrox_value)*10 + 0.5;
194 fill_cylinder_info(dive->cylinder+0, desc, volume, pressure, o2);
197 void flush_dive_equipment_changes(struct dive *dive)
199 record_cylinder_changes(dive);
203 * We hardcode the most common standard cylinders,
204 * we should pick up any other names from the dive
207 static struct tank_info {
209 int size; /* cuft if < 1000, otherwise mliter */
210 int psi; /* If zero, size is in mliter */
212 /* Need an empty entry for the no-cylinder case */
215 /* Size-only metric cylinders */
219 /* Most common AL cylinders */
220 { "AL50", 50, 3000 },
221 { "AL63", 63, 3000 },
222 { "AL72", 72, 3000 },
223 { "AL80", 80, 3000 },
224 { "AL100", 100, 3300 },
226 /* Somewhat common LP steel cylinders */
227 { "LP85", 85, 2640 },
228 { "LP95", 95, 2640 },
229 { "LP108", 108, 2640 },
230 { "LP121", 121, 2640 },
232 /* Somewhat common HP steel cylinders */
233 { "HP65", 65, 3442 },
234 { "HP80", 80, 3442 },
235 { "HP100", 100, 3442 },
236 { "HP119", 119, 3442 },
237 { "HP130", 130, 3442 },
239 /* We'll fill in more from the dive log dynamically */
243 static void fill_tank_list(GtkListStore *store)
246 struct tank_info *info = tank_info;
249 int size = info->size;
251 int mbar = 0, ml = size;
253 /* Is it in cuft and psi? */
255 double bar = 0.0689475729 * psi;
256 double airvolume = 28316.8466 * size;
257 double atm = bar / 1.01325;
259 ml = airvolume / atm + 0.5;
260 mbar = bar*1000 + 0.5;
263 gtk_list_store_append(store, &iter);
264 gtk_list_store_set(store, &iter,
273 static void cylinder_widget(GtkWidget *box, int nr, GtkListStore *model)
275 GtkWidget *frame, *hbox;
279 hbox = gtk_hbox_new(FALSE, 3);
280 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 0);
282 snprintf(buffer, sizeof(buffer), "Cylinder %d", nr);
283 frame = gtk_frame_new(buffer);
284 gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 0);
286 hbox = gtk_hbox_new(FALSE, 3);
287 gtk_container_add(GTK_CONTAINER(frame), hbox);
289 frame = gtk_frame_new("Description");
290 gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 0);
292 widget = gtk_combo_box_entry_new_with_model(GTK_TREE_MODEL(model), 0);
293 gtk_container_add(GTK_CONTAINER(frame), widget);
295 cylinder_description = GTK_COMBO_BOX(widget);
296 g_signal_connect(widget, "changed", G_CALLBACK(cylinder_cb), NULL);
298 widget = create_spinbutton(hbox, "Size", 0, 200, 0.1);
299 cylinder_size = GTK_SPIN_BUTTON(widget);
301 widget = create_spinbutton(hbox, "Pressure", 0, 5000, 1);
302 cylinder_pressure = GTK_SPIN_BUTTON(widget);
304 widget = create_spinbutton(hbox, "Nitrox", 21, 100, 0.1);
305 nitrox_value = GTK_SPIN_BUTTON(widget);
306 gtk_spin_button_set_range(nitrox_value, 21.0, 100.0);
309 static GtkListStore *create_tank_size_model(void)
313 model = gtk_list_store_new(3,
314 G_TYPE_STRING, /* Tank name */
315 G_TYPE_INT, /* Tank size in mliter */
316 G_TYPE_INT, /* Tank working pressure in mbar */
319 fill_tank_list(model);
323 GtkWidget *equipment_widget(void)
328 vbox = gtk_vbox_new(FALSE, 3);
330 model = create_tank_size_model();
331 cylinder_widget(vbox, 0, model);