]> mj.ucw.cz Git - ursary.git/blob - ursaryd.h
Lights: Long press = full power
[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_sink {
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_input {
69   cnode n;
70   int idx;
71   char *name;
72   int client_idx;
73   int sink_idx;
74   uint channels;
75   uint volume;
76   bool mute;
77   int noct_group_idx;           // Used by the high-level logic below
78 };
79
80 extern clist pulse_client_list, pulse_sink_list, pulse_sink_input_list;
81
82 void pulse_init(void);
83 void pulse_dump(void);
84 bool pulse_is_ready(void);
85 struct pulse_sink *pulse_sink_by_name(const char *name);
86 struct pulse_sink *pulse_sink_by_idx(int idx);
87 void pulse_sink_set_volume(int idx, pa_cvolume *cvol);
88 void pulse_sink_set_mute(int idx, bool mute);
89 void pulse_sink_set_port(int idx, const char *port);
90 void pulse_sink_input_set_volume(int idx, pa_cvolume *cvol);
91 void pulse_sink_input_set_mute(int idx, bool mute);
92 void pulse_sink_input_move(int input_idx, int sink_idx);
93 struct pulse_client *pulse_client_by_idx(int idx);
94 void pulse_server_set_default_sink(const char *name);
95
96 /* pulse-ucw.c */
97
98 extern struct pa_mainloop_api pmain_api;
99
100 void pmain_init(void);
101
102 /* mpd.c */
103
104 enum mpd_state {
105   MPD_OFFLINE,
106   MPD_CONNECTING,
107   MPD_WAIT_GREETING,
108   MPD_ONLINE,
109 };
110
111 extern enum mpd_state mpd_state;
112
113 void mpd_init(void);
114 const char *mpd_get_player_state(void);
115 void mpd_play(void);
116 void mpd_stop(void);
117 void mpd_pause(int arg);
118 void mpd_next(void);
119 void mpd_prev(void);