]> git.cworth.org Git - loudgame/blob - loudgame.h
Implement simple show, hint, and shuffle commands for lg-set.
[loudgame] / loudgame.h
1 /*
2  * Copyright (C) 2008 Carl Worth
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see http://www.gnu.org/licenses/ .
16  *
17  * Author: Carl Worth <cworth@cworth.org>
18  */
19
20 #ifndef __LOUDGAME_H__
21 #define __LOUDGAME_H__
22
23 #include <stdarg.h>
24 #include <loudmouth/loudmouth.h>
25
26 typedef struct _loudgame loudgame_t;
27
28 typedef void (*handle_message_cb) (loudgame_t   *lg,
29                                    const char   *peer,
30                                    const char   *message);
31
32 struct _loudgame {
33     gchar               *server;
34     gchar               *name;
35     gchar               *passwd;
36     LmConnection        *connection;
37     GMainLoop           *main_loop;
38     int                  return_value;
39
40     /* Callbacks */
41     handle_message_cb    handle_message;
42 };
43
44 int
45 loudgame_init (loudgame_t *lg, int argc, char **argv);
46
47 int
48 loudgame_run (loudgame_t *lg);
49
50 void
51 loudgame_send (loudgame_t       *lg,
52                const char       *peer,
53                const char       *message);
54
55 void
56 loudgame_sendf (loudgame_t      *lg,
57                 const char      *peer,
58                 const char      *format,
59                 ...);
60
61 void
62 loudgame_vsendf (loudgame_t     *lg,
63                  const char     *peer,
64                  const char     *format,
65                  va_list         va);
66
67 void
68 loudgame_quit (loudgame_t *lg, int return_value);
69
70 #endif /* __LOUDGAME_H__ */