Setting version to 0.3.0 in tennix.h
[tennix.git] / tennix.h
blobc83bb0cc95eedbc55de18db87bb0e56f27ee743a
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>170*2 && x<280*2)
53 #define M_POS_START_GAME(x,y) (M_POS_XPOS(x) && y>60*2 && y<70*2)
54 #define M_POS_HIGH_SCORES(x,y) (M_POS_XPOS(x) && y>80*2 && y<90*2)
55 #define M_POS_CREDITS(x,y) (M_POS_XPOS(x) && y>100*2 && y<115*2)
56 #define M_POS_QUIT(x,y) (M_POS_XPOS(x) && y>140*2 && y<150*2)
58 extern SDL_Surface *screen;
60 #endif