chiark / gitweb /
8e10d4f63cffe79cd8407f48f86c2ab809db4c9c
[disorder] / disobedience / control.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2006, 2007 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 /** @file disobedience/control.c
21  * @brief Volume control and buttons
22  */
23
24 #include "disobedience.h"
25 #include "mixer.h"
26
27 /* Forward declarations ---------------------------------------------------- */
28
29 WT(adjustment);
30 WT(hscale);
31 WT(hbox);
32 WT(button);
33 WT(image);
34 WT(label);
35 WT(vbox);
36
37 struct icon;
38
39 static void update_pause(const struct icon *);
40 static void update_play(const struct icon *);
41 static void update_scratch(const struct icon *);
42 static void update_random_enable(const struct icon *);
43 static void update_random_disable(const struct icon *);
44 static void update_enable(const struct icon *);
45 static void update_disable(const struct icon *);
46 static void update_rtp(const struct icon *);
47 static void update_nortp(const struct icon *);
48 static void clicked_icon(GtkButton *, gpointer);
49 static void clicked_menu(GtkMenuItem *, gpointer userdata);
50 static void toggled_menu(GtkCheckMenuItem *, gpointer userdata);
51
52 static int enable_rtp(disorder_eclient *c,
53                       disorder_eclient_no_response *completed,
54                       void *v);
55 static int disable_rtp(disorder_eclient *c,
56                        disorder_eclient_no_response *completed,
57                        void *v);
58
59 static double left(double v, double b);
60 static double right(double v, double b);
61 static double volume(double l, double r);
62 static double balance(double l, double r);
63
64 static void volume_adjusted(GtkAdjustment *a, gpointer user_data);
65 static gchar *format_volume(GtkScale *scale, gdouble value);
66 static gchar *format_balance(GtkScale *scale, gdouble value);
67
68 static void volume_changed(const char *event,
69                            void *eventdata,
70                            void *callbackdata);
71
72 /* Control bar ------------------------------------------------------------- */
73
74 /** @brief Guard against feedback */
75 int suppress_actions = 1;
76
77 /** @brief Definition of an icon
78  *
79  * The design here is rather mad: rather than changing the image displayed by
80  * icons according to their state, we flip the visibility of pairs of icons.
81  */
82 struct icon {
83   /** @brief Filename for image */
84   const char *icon;
85
86   /** @brief Text for tooltip */
87   const char *tip;
88
89   /** @brief Associated menu item or NULL */
90   const char *menuitem;
91
92   /** @brief Called to update button when state may have changed */
93   void (*update)(const struct icon *i);
94
95   /** @brief @ref eclient.h function to call */
96   int (*action)(disorder_eclient *c,
97                 disorder_eclient_no_response *completed,
98                 void *v);
99
100   /** @brief Flag */
101   unsigned flags;
102   
103   /** @brief Pointer to button */
104   GtkWidget *button;
105
106   /** @brief Pointer to menu item */
107   GtkWidget *item;
108 };
109
110 /** @brief This is the active half of a pair */
111 #define ICON_ACTIVE 0x0001
112
113 /** @brief This is the inactive half of a pair */
114 #define ICON_INACTIVE 0x0002
115
116 /** @brief Table of all icons */
117 static struct icon icons[] = {
118   {
119     "pause.png",                        /* icon */
120     "Pause playing track",              /* tip */
121     "<GdisorderMain>/Control/Playing",  /* menuitem */
122     update_pause,                       /* update */
123     disorder_eclient_pause,             /* action */
124     ICON_ACTIVE,                        /* flags */
125     0,                                  /* button */
126     0                                   /* item */
127   },
128   {
129     "play.png",                         /* icon */
130     "Resume playing track",             /* tip */
131     "<GdisorderMain>/Control/Playing",  /* menuitem */
132     update_play,                        /* update */
133     disorder_eclient_resume,            /* action */
134     ICON_INACTIVE,                      /* flags */
135     0,                                  /* button */
136     0                                   /* item */
137   },
138   {
139     "cross.png",                        /* icon */
140     "Cancel playing track",             /* tip */
141     "<GdisorderMain>/Control/Scratch",  /* menuitem */
142     update_scratch,                     /* update */
143     disorder_eclient_scratch_playing,   /* action */
144     0,                                  /* flags */
145     0,                                  /* button */
146     0                                   /* item */
147   },
148   {
149     "random.png",                       /* icon */
150     "Enable random play",               /* tip */
151     "<GdisorderMain>/Control/Random play", /* menuitem */
152     update_random_enable,               /* update */
153     disorder_eclient_random_enable,     /* action */
154     ICON_INACTIVE,                      /* flags */
155     0,                                  /* button */
156     0                                   /* item */
157   },
158   {
159     "randomcross.png",                  /* icon */
160     "Disable random play",              /* tip */
161     "<GdisorderMain>/Control/Random play", /* menuitem */
162     update_random_disable,              /* update */
163     disorder_eclient_random_disable,    /* action */
164     ICON_ACTIVE,                        /* flags */
165     0,                                  /* button */
166     0                                   /* item */
167   },
168   {
169     "notes.png",                        /* icon */
170     "Enable play",                      /* tip */
171     0,                                  /* menuitem */
172     update_enable,                      /* update */
173     disorder_eclient_enable,            /* action */
174     ICON_INACTIVE,                      /* flags */
175     0,                                  /* button */
176     0                                   /* item */
177   },
178   {
179     "notescross.png",                   /* icon */
180     "Disable play",                     /* tip */
181     0,                                  /* menuitem */
182     update_disable,                     /* update */
183     disorder_eclient_disable,           /* action */
184     ICON_ACTIVE,                        /* flags */
185     0,                                  /* button */
186     0                                   /* item */
187   },
188   {
189     "speaker.png",                      /* icon */
190     "Play network stream",              /* tip */
191     "<GdisorderMain>/Control/Network player", /* menuitem */
192     update_rtp,                         /* update */
193     enable_rtp,                         /* action */
194     ICON_INACTIVE,                      /* flags */
195     0,                                  /* button */
196     0                                   /* item */
197   },
198   {
199     "speakercross.png",                 /* icon */
200     "Stop playing network stream",      /* tip */
201     "<GdisorderMain>/Control/Network player", /* menuitem */
202     update_nortp,                       /* update */
203     disable_rtp,                        /* action */
204     ICON_ACTIVE,                        /* flags */
205     0,                                  /* button */
206     0                                   /* item */
207   },
208 };
209
210 /** @brief Count of icons */
211 #define NICONS (int)(sizeof icons / sizeof *icons)
212
213 static GtkAdjustment *volume_adj;
214 static GtkAdjustment *balance_adj;
215 static GtkWidget *volume_widget;
216 static GtkWidget *balance_widget;
217
218 /** @brief Called whenever last_state changes in any way */
219 static void control_changed(const char attribute((unused)) *event,
220                             void attribute((unused)) *evendata,
221                             void attribute((unused)) *callbackdata) {
222   int n;
223   gboolean volume_supported;
224
225   D(("control_changed"));
226   for(n = 0; n < NICONS; ++n)
227     icons[n].update(&icons[n]);
228   /* Only display volume/balance controls if they will work */
229   if(!rtp_supported
230      || (rtp_supported && mixer_supported(DEFAULT_BACKEND)))
231     volume_supported = TRUE;
232   else
233     volume_supported = FALSE;
234   (volume_supported ? gtk_widget_show : gtk_widget_hide)(volume_widget);
235   (volume_supported ? gtk_widget_show : gtk_widget_hide)(balance_widget);
236 }
237
238 /** @brief Create the control bar */
239 GtkWidget *control_widget(void) {
240   GtkWidget *hbox = gtk_hbox_new(FALSE, 1), *vbox;
241   int n;
242
243   NW(hbox);
244   D(("control_widget"));
245   assert(mainmenufactory);              /* ordering must be right */
246   for(n = 0; n < NICONS; ++n) {
247     NW(button);
248     icons[n].button = iconbutton(icons[n].icon, icons[n].tip);
249     g_signal_connect(G_OBJECT(icons[n].button), "clicked",
250                      G_CALLBACK(clicked_icon), &icons[n]);
251     /* pop the icon in a vbox so it doesn't get vertically stretch if there are
252      * taller things in the control bar */
253     NW(vbox);
254     vbox = gtk_vbox_new(FALSE, 0);
255     gtk_box_pack_start(GTK_BOX(vbox), icons[n].button, TRUE, FALSE, 0);
256     gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, FALSE, 0);
257     if(icons[n].menuitem) {
258       icons[n].item = gtk_item_factory_get_widget(mainmenufactory,
259                                                   icons[n].menuitem);
260       switch(icons[n].flags & (ICON_ACTIVE|ICON_INACTIVE)) {
261       case ICON_ACTIVE:
262         g_signal_connect(G_OBJECT(icons[n].item), "toggled",
263                          G_CALLBACK(toggled_menu), &icons[n]);
264         break;
265       case ICON_INACTIVE:
266         /* Don't connect two instances of the signal! */
267         break;
268       default:
269         g_signal_connect(G_OBJECT(icons[n].item), "activate",
270                          G_CALLBACK(clicked_menu), &icons[n]);
271         break;
272       }
273     }
274   }
275   /* create the adjustments for the volume control */
276   NW(adjustment);
277   volume_adj = GTK_ADJUSTMENT(gtk_adjustment_new(0, 0, goesupto,
278                                                  goesupto / 20, goesupto / 20,
279                                                  0));
280   NW(adjustment);
281   balance_adj = GTK_ADJUSTMENT(gtk_adjustment_new(0, -1, 1,
282                                                   0.2, 0.2, 0));
283   /* the volume control */
284   NW(hscale);
285   volume_widget = gtk_hscale_new(volume_adj);
286   NW(hscale);
287   balance_widget = gtk_hscale_new(balance_adj);
288   gtk_widget_set_style(volume_widget, tool_style);
289   gtk_widget_set_style(balance_widget, tool_style);
290   gtk_scale_set_digits(GTK_SCALE(volume_widget), 10);
291   gtk_scale_set_digits(GTK_SCALE(balance_widget), 10);
292   gtk_widget_set_size_request(volume_widget, 192, -1);
293   gtk_widget_set_size_request(balance_widget, 192, -1);
294   gtk_tooltips_set_tip(tips, volume_widget, "Volume", "");
295   gtk_tooltips_set_tip(tips, balance_widget, "Balance", "");
296   gtk_box_pack_start(GTK_BOX(hbox), volume_widget, FALSE, TRUE, 0);
297   gtk_box_pack_start(GTK_BOX(hbox), balance_widget, FALSE, TRUE, 0);
298   /* space updates rather than hammering the server */
299   gtk_range_set_update_policy(GTK_RANGE(volume_widget), GTK_UPDATE_DELAYED);
300   gtk_range_set_update_policy(GTK_RANGE(balance_widget), GTK_UPDATE_DELAYED);
301   /* notice when the adjustments are changed */
302   g_signal_connect(G_OBJECT(volume_adj), "value-changed",
303                    G_CALLBACK(volume_adjusted), 0);
304   g_signal_connect(G_OBJECT(balance_adj), "value-changed",
305                    G_CALLBACK(volume_adjusted), 0);
306   /* format the volume/balance values ourselves */
307   g_signal_connect(G_OBJECT(volume_widget), "format-value",
308                    G_CALLBACK(format_volume), 0);
309   g_signal_connect(G_OBJECT(balance_widget), "format-value",
310                    G_CALLBACK(format_balance), 0);
311   event_register("enabled-changed", control_changed, 0);
312   event_register("random-changed", control_changed, 0);
313   event_register("pause-changed", control_changed, 0);
314   event_register("playing-changed", control_changed, 0);
315   event_register("rtp-changed", control_changed, 0);
316   event_register("volume-changed", volume_changed, 0);
317   return hbox;
318 }
319
320 /** @brief Update the volume control when it changes */
321 static void volume_changed(const char attribute((unused)) *event,
322                            void attribute((unused)) *eventdata,
323                            void attribute((unused)) *callbackdata) {
324   double l, r;
325
326   D(("volume_changed"));
327   l = volume_l / 100.0;
328   r = volume_r / 100.0;
329   ++suppress_actions;
330   gtk_adjustment_set_value(volume_adj, volume(l, r) * goesupto);
331   gtk_adjustment_set_value(balance_adj, balance(l, r));
332   --suppress_actions;
333 }
334
335 /** @brief Update the state of one of the control icons
336  * @param icon Target icon
337  * @param visible True if this version of the button should be visible
338  * @param usable True if the button is currently usable
339  *
340  * Several of the icons, rather bizarrely, come in pairs: for instance exactly
341  * one of the play and pause buttons is supposed to be visible at any given
342  * moment.
343  *
344  * @p usable need not take into account server availability, that is done
345  * automatically.
346  */
347 static void update_icon(const struct icon *icon,
348                         int visible, int usable) {
349   /* If the connection is down nothing is ever usable */
350   if(!(last_state & DISORDER_CONNECTED))
351     usable = 0;
352   (visible ? gtk_widget_show : gtk_widget_hide)(icon->button);
353   /* Only both updating usability if the button is visible */
354   if(visible)
355     gtk_widget_set_sensitive(icon->button, usable);
356   if(icon->item) {
357     /* There's an associated menu item.  These are always visible, but may not
358      * be usable. */
359     if((icon->flags & (ICON_ACTIVE|ICON_INACTIVE)) == ICON_ACTIVE) {
360       /* The active half of a pair */
361       gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(icon->item), visible);
362     }
363     gtk_widget_set_sensitive(icon->item, usable);
364   }
365 }
366
367 static void update_pause(const struct icon *icon) {
368   const int visible = !(last_state & DISORDER_TRACK_PAUSED);
369   const int usable = !!(last_state & DISORDER_PLAYING); /* TODO: might be a lie */
370   update_icon(icon, visible, usable);
371 }
372
373 static void update_play(const struct icon *icon) {
374   const int visible = !!(last_state & DISORDER_TRACK_PAUSED);
375   const int usable = !!(last_state & DISORDER_PLAYING);
376   update_icon(icon, visible, usable);
377 }
378
379 static void update_scratch(const struct icon *icon) {
380   const int visible = 1;
381   const int usable = !!(last_state & DISORDER_PLAYING);
382   update_icon(icon, visible, usable);
383 }
384
385 static void update_random_enable(const struct icon *icon) {
386   const int visible = !(last_state & DISORDER_RANDOM_ENABLED);
387   const int usable = 1;
388   update_icon(icon, visible, usable);
389 }
390
391 static void update_random_disable(const struct icon *icon) {
392   const int visible = !!(last_state & DISORDER_RANDOM_ENABLED);
393   const int usable = 1;
394   update_icon(icon, visible, usable);
395 }
396
397 static void update_enable(const struct icon *icon) {
398   const int visible = !(last_state & DISORDER_PLAYING_ENABLED);
399   const int usable = 1;
400   update_icon(icon, visible, usable);
401 }
402
403 static void update_disable(const struct icon *icon) {
404   const int visible = !!(last_state & DISORDER_PLAYING_ENABLED);
405   const int usable = 1;
406   update_icon(icon, visible, usable);
407 }
408
409 static void update_rtp(const struct icon *icon) {
410   const int visible = !rtp_is_running;
411   const int usable = rtp_supported;
412   update_icon(icon, visible, usable);
413 }
414
415 static void update_nortp(const struct icon *icon) {
416   const int visible = rtp_is_running;
417   const int usable = rtp_supported;
418   update_icon(icon, visible, usable);
419 }
420
421 static void icon_action_completed(void attribute((unused)) *v,
422                                   const char *error) {
423   if(error)
424     popup_protocol_error(0, error);
425 }
426
427 static void clicked_icon(GtkButton attribute((unused)) *button,
428                          gpointer userdata) {
429   const struct icon *icon = userdata;
430
431   if(!suppress_actions)  
432     icon->action(client, icon_action_completed, 0);
433 }
434
435 static void clicked_menu(GtkMenuItem attribute((unused)) *menuitem,
436                          gpointer userdata) {
437   const struct icon *icon = userdata;
438
439   if(!suppress_actions)
440     icon->action(client, icon_action_completed, 0);
441 }
442
443 static void toggled_menu(GtkCheckMenuItem *menuitem,
444                          gpointer userdata) {
445   const struct icon *icon = userdata;
446   size_t n;
447
448   if(suppress_actions)
449     return;
450   /* This is a bit fiddlier than the others, we need to find the action for the
451    * new state.  If the new state is active then we want the ICON_INACTIVE
452    * version and vica versa. */
453   for(n = 0; n < NICONS; ++n)
454     if(icons[n].item == icon->item
455        && !!(icons[n].flags & ICON_INACTIVE) == !!menuitem->active)
456       break;
457   if(n < NICONS)
458     icons[n].action(client, icon_action_completed, 0);
459 }
460
461 /** @brief Called when a volume command completes */
462 static void volume_completed(void attribute((unused)) *v,
463                              const char *error,
464                              int attribute((unused)) l,
465                              int attribute((unused)) r) {
466   if(error)
467     popup_protocol_error(0, error);
468   /* We don't set the UI's notion of the volume here, it is set from the log
469    * regardless of the reason it changed */
470 }
471
472 /** @brief Called when the volume has been adjusted */
473 static void volume_adjusted(GtkAdjustment attribute((unused)) *a,
474                             gpointer attribute((unused)) user_data) {
475   double v = gtk_adjustment_get_value(volume_adj) / goesupto;
476   double b = gtk_adjustment_get_value(balance_adj);
477
478   if(suppress_actions)
479     /* This is the result of an update from the server, not a change from the
480      * user.  Don't feedback! */
481     return;
482   D(("volume_adjusted"));
483   /* force to 'stereotypical' values */
484   v = nearbyint(100 * v) / 100;
485   b = nearbyint(5 * b) / 5;
486   /* Set the volume.  We don't want a reply, we'll get the actual new volume
487    * from the log. */
488   if(rtp_supported) {
489     int l = nearbyint(left(v, b) * 100), r = nearbyint(right(v, b) * 100);
490     mixer_control(DEFAULT_BACKEND, &l, &r, 1);
491   } else
492     disorder_eclient_volume(client, volume_completed,
493                             nearbyint(left(v, b) * 100),
494                             nearbyint(right(v, b) * 100),
495                             0);
496 }
497
498 /** @brief Formats the volume value */
499 static gchar *format_volume(GtkScale attribute((unused)) *scale,
500                             gdouble value) {
501   char s[32];
502
503   snprintf(s, sizeof s, "%.1f", (double)value);
504   return g_strdup(s);
505 }
506
507 /** @brief Formats the balance value */
508 static gchar *format_balance(GtkScale attribute((unused)) *scale,
509                              gdouble value) {
510   char s[32];
511
512   if(fabs(value) < 0.1)
513     return g_strdup("0");
514   snprintf(s, sizeof s, "%+.1f", (double)value);
515   return g_strdup(s);
516 }
517
518 /* Volume mapping.  We consider left, right, volume to be in [0,1]
519  * and balance to be in [-1,1].
520  * 
521  * First, we just have volume = max(left, right).
522  *
523  * Balance we consider to linearly represent the amount by which the quieter
524  * channel differs from the louder.  In detail:
525  *
526  *  if right > left then balance > 0:
527  *   balance = 0 => left = right  (as an endpoint, not an instance)
528  *   balance = 1 => left = 0
529  *   fitting to linear, left = right * (1 - balance)
530  *                so balance = 1 - left / right
531  *   (right > left => right > 0 so no division by 0.)
532  * 
533  *  if left > right then balance < 0:
534  *   balance = 0 => right = left  (same caveat as above)
535  *   balance = -1 => right = 0
536  *   again fitting to linear, right = left * (1 + balance)
537  *                       so balance = right / left - 1
538  *   (left > right => left > 0 so no division by 0.)
539  *
540  *  if left = right then we just have balance = 0.
541  *
542  * Thanks to Clive and Andrew.
543  */
544
545 /** @brief Return the greater of @p x and @p y */
546 static double max(double x, double y) {
547   return x > y ? x : y;
548 }
549
550 /** @brief Compute the left channel volume */
551 static double left(double v, double b) {
552   if(b > 0)                             /* volume = right */
553     return v * (1 - b);
554   else                                  /* volume = left */
555     return v;
556 }
557
558 /** @brief Compute the right channel volume */
559 static double right(double v, double b) {
560   if(b > 0)                             /* volume = right */
561     return v;
562   else                                  /* volume = left */
563     return v * (1 + b);
564 }
565
566 /** @brief Compute the overall volume */
567 static double volume(double l, double r) {
568   return max(l, r);
569 }
570
571 /** @brief Compute the balance */
572 static double balance(double l, double r) {
573   if(l > r)
574     return r / l - 1;
575   else if(r > l)
576     return 1 - l / r;
577   else                                  /* left = right */
578     return 0;
579 }
580
581 /** @brief Called to enable RTP play
582  *
583  * Rather odd signature is to fit in with the other icons which all call @ref
584  * lib/eclient.h functions.
585  */
586 static int enable_rtp(disorder_eclient attribute((unused)) *c,
587                       disorder_eclient_no_response attribute((unused)) *completed,
588                       void attribute((unused)) *v) {
589   start_rtp();
590   return 0;
591 }
592
593 /** @brief Called to disable RTP play
594  *
595  * Rather odd signature is to fit in with the other icons which all call @ref
596  * lib/eclient.h functions.
597  */
598 static int disable_rtp(disorder_eclient attribute((unused)) *c,
599                        disorder_eclient_no_response attribute((unused)) *completed,
600                        void attribute((unused)) *v) {
601   stop_rtp();
602   return 0;
603 }
604
605 /*
606 Local Variables:
607 c-basic-offset:2
608 comment-column:40
609 fill-column:79
610 indent-tabs-mode:nil
611 End:
612 */