Add TODO: Maemo 5 Vibra support
[tennix.git] / input.h
blob1547056e1cf5fd4f87c2598e1b053fef4e1b9e30
2 /**
4 * Tennix! SDL Port
5 * Copyright (C) 2003, 2007, 2008, 2009 Thomas Perl <thp@thpinfo.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 * MA 02110-1301, USA.
22 **/
24 #ifndef __INPUT_H
25 #define __INPUT_H
27 #include "graphics.h"
29 #ifdef TENNIX_PYTHON
30 #include <Python.h>
31 #endif
33 #define JOYSTICK_PERCENTIZE(x) ((float)(x)/(float)(32768))
35 #define MAX_INPUT_DEVICES 16
37 enum {
38 INPUT_COORD_TYPE_PLAYER,
39 INPUT_COORD_TYPE_BALL
42 enum {
43 INPUT_TYPE_KEYBOARD,
44 INPUT_TYPE_JOYSTICK,
45 INPUT_TYPE_MOUSE,
46 INPUT_TYPE_NETWORK,
47 #ifdef TENNIX_PYTHON
48 INPUT_TYPE_AI_PYTHON,
49 #endif
50 INPUT_TYPE_MAX
53 enum {
54 INPUT_AXIS_X,
55 INPUT_AXIS_Y
58 enum {
59 INPUT_KEY_HIT,
60 INPUT_KEY_TOPSPIN,
61 INPUT_KEY_SMASH,
62 INPUT_KEY_COUNT
65 enum {
66 NET_KEY_HIT = 1 << INPUT_KEY_HIT,
67 NET_KEY_TOPSPIN = 1 << INPUT_KEY_TOPSPIN,
68 NET_KEY_SMASH = 1 << INPUT_KEY_SMASH
71 #define INPUT_DEVICE_NAME_MAX 100
73 typedef struct {
74 unsigned char type;
75 char name[INPUT_DEVICE_NAME_MAX];
77 /* Joystick-specific items */
78 SDL_Joystick* joystick;
79 int x_axis;
80 int y_axis;
82 /* Joystick, keyboard and mouse */
83 int input_keys[INPUT_KEY_COUNT];
85 /* Keyboard-specific items */
86 int up_key;
87 int down_key;
88 int left_key;
89 int right_key;
91 /* Mouse-specific items */
92 int mx;
93 int my;
94 int player_x;
95 int player_y;
97 /* Network-specific items */
98 NetworkInputData net;
100 #ifdef TENNIX_PYTHON
101 /* Python-specific items */
102 PyObject* py_bot_class;
103 PyObject* py_bot;
104 #endif
106 /* The picture for this input device */
107 image_id icon;
109 /* If nonzero, be exclusive to this player ID */
110 int exclusive_to_player;
111 } InputDevice;
113 void init_input();
114 void uninit_input();
116 #ifdef TENNIX_PYTHON
117 void input_add_python_bot(PyObject* pyclass);
118 #endif
120 InputDevice* find_input_devices(unsigned int*);
122 const char* input_device_get_name(InputDevice*);
123 float input_device_get_axis(InputDevice*, unsigned const char);
124 char input_device_get_key(InputDevice*, unsigned const char);
126 void input_device_join_game(InputDevice* device, void* gamestate, int player_id);
127 void input_device_part_game(InputDevice*);
130 #endif