]> mj.ucw.cz Git - ursary.git/blob - ursaryd.h
Muting of sources
[ursary.git] / ursaryd.h
1 /*
2  *      The Ursary Audio Controls
3  *
4  *      (c) 2014 Martin Mares <mj@ucw.cz>
5  */
6
7 #include <pulse/pulseaudio.h>
8
9 #define SET_STRING(_field, _val) do { if (!_field || strcmp(_field, _val)) { xfree(_field); _field = xstrdup(_val); } } while (0)
10
11 /* ursary.c */
12
13 void schedule_update(void);
14
15 void notify_rotary(int rotary, int delta);
16 void notify_touch(int rotary, int on);
17 void notify_button(int button, int on);
18
19 /* nocturn.c */
20
21 void noct_init(void);
22 bool noct_is_ready(void);
23 void noct_set_ring(int ring, int mode, int val);
24 void noct_set_button(int button, int val);
25 void noct_clear(void);
26
27 extern char noct_rotary_touched[10];    // 8=center, 9=slider
28 extern char noct_button_pressed[16];
29
30 enum ring_mode {
31   RING_MODE_LEFT,
32   RING_MODE_RIGHT,
33   RING_MODE_MID_RIGHT,
34   RING_MODE_MID_SYM,
35   RING_MODE_SINGLE_ON,
36   RING_MODE_SINGLE_OFF,
37 };
38
39 /* dmx.c */
40
41 void dmx_init(void);
42 void dmx_set_pwm(uint index, uint val);
43 bool dmx_is_ready(void);
44
45 /* pulse.c */
46
47 extern char *pulse_default_sink_name;
48
49 struct pulse_client {
50   cnode n;
51   int idx;
52   char *name;
53   char *host;
54 };
55
56 struct pulse_source {
57   cnode n;
58   int idx;
59   char *name;
60   uint channels;
61   uint volume;
62   uint base_volume;
63   bool mute;
64   bool suspended;
65   char *active_port;
66 };
67
68 struct pulse_sink {
69   cnode n;
70   int idx;
71   char *name;
72   uint channels;
73   uint volume;
74   uint base_volume;
75   bool mute;
76   bool suspended;
77   char *active_port;
78 };
79
80 struct pulse_sink_input {
81   cnode n;
82   int idx;
83   char *name;
84   int client_idx;
85   int sink_idx;
86   uint channels;
87   uint volume;
88   bool mute;
89   int noct_group_idx;           // Used by the high-level logic below
90 };
91
92 extern clist pulse_client_list, pulse_source_list, pulse_sink_list, pulse_sink_input_list;
93
94 void pulse_init(void);
95 void pulse_dump(void);
96 bool pulse_is_ready(void);
97 struct pulse_source *pulse_source_by_name(const char *name);
98 struct pulse_source *pulse_source_by_idx(int idx);
99 void pulse_source_set_volume(int idx, pa_cvolume *cvol);
100 void pulse_source_set_mute(int idx, bool mute);
101 void pulse_source_set_port(int idx, const char *port);
102 struct pulse_sink *pulse_sink_by_name(const char *name);
103 struct pulse_sink *pulse_sink_by_idx(int idx);
104 void pulse_sink_set_volume(int idx, pa_cvolume *cvol);
105 void pulse_sink_set_mute(int idx, bool mute);
106 void pulse_sink_set_port(int idx, const char *port);
107 void pulse_sink_input_set_volume(int idx, pa_cvolume *cvol);
108 void pulse_sink_input_set_mute(int idx, bool mute);
109 void pulse_sink_input_move(int input_idx, int sink_idx);
110 struct pulse_client *pulse_client_by_idx(int idx);
111 void pulse_server_set_default_sink(const char *name);
112
113 /* pulse-ucw.c */
114
115 extern struct pa_mainloop_api pmain_api;
116
117 void pmain_init(void);
118
119 /* mpd.c */
120
121 enum mpd_state {
122   MPD_OFFLINE,
123   MPD_CONNECTING,
124   MPD_WAIT_GREETING,
125   MPD_ONLINE,
126 };
127
128 extern enum mpd_state mpd_state;
129
130 void mpd_init(void);
131 const char *mpd_get_player_state(void);
132 void mpd_play(void);
133 void mpd_stop(void);
134 void mpd_pause(int arg);
135 void mpd_next(void);
136 void mpd_prev(void);