772f2e4ccfe777fa843347b08268832e7e576b42
[tennix.git] / input.h
blob772f2e4ccfe777fa843347b08268832e7e576b42
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 #ifdef TENNIX_PYTHON
47 INPUT_TYPE_AI_PYTHON,
48 #endif
49 INPUT_TYPE_MAX
52 enum {
53 INPUT_AXIS_X,
54 INPUT_AXIS_Y
57 enum {
58 INPUT_KEY_HIT,
59 INPUT_KEY_TOPSPIN,
60 INPUT_KEY_SMASH,
61 INPUT_KEY_COUNT
64 #define INPUT_DEVICE_NAME_MAX 100
66 typedef struct {
67 unsigned char type;
68 char name[INPUT_DEVICE_NAME_MAX];
70 /* Joystick-specific items */
71 SDL_Joystick* joystick;
72 int x_axis;
73 int y_axis;
75 /* Joystick, keyboard and mouse */
76 int input_keys[INPUT_KEY_COUNT];
78 /* Keyboard-specific items */
79 int up_key;
80 int down_key;
81 int left_key;
82 int right_key;
84 /* Mouse-specific items */
85 int mx;
86 int my;
87 int player_x;
88 int player_y;
90 #ifdef TENNIX_PYTHON
91 /* Python-specific items */
92 PyObject* py_bot_class;
93 PyObject* py_bot;
94 #endif
96 /* The picture for this input device */
97 image_id icon;
99 /* If nonzero, be exclusive to this player ID */
100 int exclusive_to_player;
101 } InputDevice;
103 void init_input();
104 void uninit_input();
106 #ifdef TENNIX_PYTHON
107 void input_add_python_bot(PyObject* pyclass);
108 #endif
110 InputDevice* find_input_devices(unsigned int*);
112 const char* input_device_get_name(InputDevice*);
113 float input_device_get_axis(InputDevice*, unsigned const char);
114 char input_device_get_key(InputDevice*, unsigned const char);
116 void input_device_join_game(InputDevice* device, void* gamestate, int player_id);
117 void input_device_part_game(InputDevice*);
120 #endif