Only use one sending socket; auto-determine ports
[tennix.git] / tennix.h
blob1c8ada7486fa3757a7d61f4eebb121ca9f32fec9
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 __TENNIX_H
25 #define __TENNIX_H
27 #include <sys/param.h>
29 #include <SDL/SDL.h>
30 #include <SDL/SDL_net.h>
32 typedef unsigned char bool;
33 enum {
34 false,
35 true
38 typedef struct {
39 UDPsocket send_socket;
40 UDPsocket recv_input_socket;
41 UDPsocket recv_state_socket;
43 UDPpacket* input_packet;
44 UDPpacket* state_packet;
46 IPaddress peer;
48 bool input_available;
49 bool state_available;
51 Uint16 base_port_local;
52 Uint16 base_port_remote;
54 bool master;
55 } TennixNet;
57 #ifdef DELUXE_EDITION
58 # define HAVE_VOICE_FILES
59 # define NONFREE_LOCATIONS
60 #endif
62 #if defined(__MACH__) && defined(__APPLE__)
63 # define MACOSX
64 #endif
66 #define ARCHIVE_FILE "tennix.tnx"
67 #ifdef MACOSX
68 # define ARCHIVE_FILE_INSTALLED "Tennix.app/Contents/Resources/" ARCHIVE_FILE
69 #else
70 # define ARCHIVE_FILE_INSTALLED "/" PREFIX "/share/games/tennix/" ARCHIVE_FILE
71 #endif
73 #ifdef WIN32
74 # define GAMESTATE_FILE "current_match-" VERSION ".tennix"
75 #else
76 # define GAMESTATE_FILE ".tennix-current_match-" VERSION
77 #endif
79 #define COPYRIGHT "Copyright 2003, 2007, 2008, 2009 Thomas Perl"
80 #define URL "http://icculus.org/tennix/"
82 #define WIDTH 640
83 #define HEIGHT 480
85 #define MENU_BUTTON_HEIGHT 62
86 #define MENU_BUTTON_WIDTH 185
88 #define MENU_START_YPOS 150
89 #define MENU_RESUME_YPOS 230
90 #define MENU_QUIT_YPOS 350
92 #define M_POS_XPOS(x) (x>WIDTH-MENU_BUTTON_WIDTH)
93 #define M_POS_START(y) (y>MENU_START_YPOS && y<MENU_START_YPOS+MENU_BUTTON_HEIGHT)
94 #define M_POS_RESUME(y) (y>MENU_RESUME_YPOS && y<MENU_RESUME_YPOS+MENU_BUTTON_HEIGHT)
95 #define M_POS_QUIT(y) (y>MENU_QUIT_YPOS && y<MENU_QUIT_YPOS+MENU_BUTTON_HEIGHT)
97 #define MENU_OPTIONS_BORDER 20
98 #define MENU_OPTIONS_BUTTON_HEIGHT 25
99 #define MENU_OPTIONS_BUTTON_WIDTH 150
101 /* Menu items */
102 enum {
103 MENU_NONE = 0,
104 MENU_START = 1,
105 MENU_RESUME = 2,
106 MENU_COURT_CHANGE = 4,
107 MENU_PLAYER1 = 8,
108 MENU_PLAYER2 = 16,
109 MENU_QUIT = 32
112 #define M_POS_DECODE(x,y) (M_POS_XPOS(x)?((M_POS_START(y))?(MENU_START):((M_POS_QUIT(y))?(MENU_QUIT):((M_POS_RESUME(y))?(MENU_RESUME):(MENU_NONE)))):(MENU_NONE))
114 /* Menu states */
115 enum {
116 MENU_STATE_STARTED = 0,
117 MENU_STATE_SLIDE_TO_MAINMENU,
118 MENU_STATE_SLIDE_TO_MAINMENU_IN_PROGRESS,
119 MENU_STATE_MAINMENU,
120 MENU_STATE_SLIDE_TO_LOCATION,
121 MENU_STATE_SLIDE_TO_LOCATION_IN_PROGRESS,
122 MENU_STATE_FADE_TO_LOCATION,
123 MENU_STATE_LOCATION,
124 MENU_STATE_FADE_TO_OPTIONS,
125 MENU_STATE_OPTIONS,
126 MENU_STATE_SLIDE_TO_GAME,
127 MENU_STATE_SLIDE_TO_GAME_IN_PROGRESS,
128 MENU_STATE_GAME,
129 MENU_STATE_SLIDE_TO_RESUME,
130 MENU_STATE_SLIDE_TO_RESUME_IN_PROGRESS,
131 MENU_STATE_RESUME,
132 MENU_STATE_SLIDE_TO_QUIT,
133 MENU_STATE_SLIDE_TO_QUIT_IN_PROGRESS,
134 MENU_STATE_QUIT
137 /* Comment the following #define to disable FPS limiting */
138 /*#define ENABLE_FPS_LIMIT*/
139 #define DEFAULT_FPS 33
142 extern SDL_Surface *screen;
144 typedef struct {
145 const char *text;
146 int x;
147 int y;
148 int w;
149 int h;
150 Uint8 r;
151 Uint8 g;
152 Uint8 b;
153 unsigned int image_id;
154 } MenuButton;
156 void menu_button_init(MenuButton*);
158 #define CONTROLLER_SETUP_BORDER 50
159 #define CONTROLLER_SETUP_SIZE 200
161 #define M_POS_BUTTON(button,mx,my) (mx>=(button).x && mx<=(button).x+(button).w && my>=(button).y && my<=(button).y+(button).h)
163 #define SQUARE_DISTANCE(xdiff, ydiff) (((xdiff)*(xdiff)) + ((ydiff)*(ydiff)))
165 #endif