Code

require libmpdclient 2.9, remove several #ifdefs
[ncmpc.git] / src / lirc.c
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2010 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
20 #include "lirc.h"
21 #include "ncmpc.h"
22 #include "Compiler.h"
24 #include <lirc/lirc_client.h>
26 static struct lirc_config *lc = NULL;
28 int ncmpc_lirc_open()
29 {
30         char prog[] = "ncmpc";
31         int lirc_socket = 0;
33         if ((lirc_socket = lirc_init(prog, 0)) == -1)
34                 return -1;
36         if (lirc_readconfig(NULL, &lc, NULL)) {
37                 lirc_deinit();
38                 return -1;
39         }
41         return lirc_socket;
42 }
44 void ncmpc_lirc_close()
45 {
46         if (lc)
47                 lirc_freeconfig(lc);
48         lirc_deinit();
49 }
51 gboolean
52 lirc_event(gcc_unused GIOChannel *source,
53            gcc_unused GIOCondition condition, gcc_unused gpointer data)
54 {
55         char *code, *txt;
56         command_t cmd;
58         begin_input_event();
60         if (lirc_nextcode(&code) == 0) {
61                 while (lirc_code2char(lc, code, &txt) == 0 && txt != NULL) {
62                         cmd = get_key_command_from_name(txt);
63                         if (do_input_event(cmd) != 0)
64                                 return FALSE;
65                 }
66         }
68         end_input_event();
69         return TRUE;
70 }