Removed powershot sound
[tennix.git] / tennix.h
blobca1c54e938587082b8fa98512fa4fcbbbdcc6cef
2 /**
4 * Tennix! SDL Port
5 * Copyright (C) 2003, 2007 Thomas Perl <thp@perli.net>
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.h"
32 #define VERSION "0.3.0"
33 #define COPYRIGHT "Copyright (c) 2003, 2007 Thomas Perl"
34 #define URL "http://thpinfo.com/2007/tennix/"
37 #define DATADIR "/data/"
38 #ifdef MACOSX
39 #undef DATADIR
40 #define DATADIR "/../Resources/"
41 #endif
43 #define WIDTH 640
44 #define HEIGHT 480
46 #define SPONSOR_BMP "data/sponsor.bmp"
47 #define SPONSOR_COUNT 6
49 #define RACKET_BMP "data/player-racket.bmp"
51 #define M_POS_XPOS(x) (x>340 && x<640)
53 #define M_POS_START_GAME(x,y) (M_POS_XPOS(x) && y>120 && y<160)
54 #define M_POS_START_MULTI(x,y) (M_POS_XPOS(x) && y>170 && y<200)
55 #define M_POS_CREDITS(x,y) (M_POS_XPOS(x) && y>210 && y<250)
56 #define M_POS_QUIT(x,y) (M_POS_XPOS(x) && y>280 && y<320)
58 #define HIGHLIGHT_X 370
60 #define HIGHLIGHT_START_GAME 145
61 #define HIGHLIGHT_START_MULTI 190
62 #define HIGHLIGHT_CREDITS 235
63 #define HIGHLIGHT_QUIT 305
65 extern SDL_Surface *screen;
67 typedef struct {
68 int x;
69 int y;
70 int w;
71 int h;
72 float phase;
73 } Point;
75 #define ELEKTRONS 50
77 #endif