Add new, sliding main menu system
[tennix.git] / tennix.h
blobc5e9c520fdd3d4148ac083c95c1e89dc78309609
2 /**
4 * Tennix! SDL Port
5 * Copyright (C) 2003, 2007, 2008 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 COPYRIGHT "Copyright 2003, 2007, 2008 Thomas Perl"
33 #define URL "http://icculus.org/tennix/"
35 #define WIDTH 640
36 #define HEIGHT 480
38 #define M_POS_XPOS(x) (x>WIDTH-185)
40 #define M_POS_START_GAME(x,y) (M_POS_XPOS(x) && y>150 && y<150+62)
41 #define M_POS_START_MULTI(x,y) (M_POS_XPOS(x) && y>230 && y<230+62)
42 #define M_POS_QUIT(x,y) (M_POS_XPOS(x) && y>350 && y<350+62)
45 extern SDL_Surface *screen;
47 typedef struct {
48 const char* data;
49 unsigned int size;
50 } ResourceData;
52 #define RESOURCE(x) ((ResourceData){ x, sizeof( x) })
54 typedef struct {
55 int x;
56 int y;
57 float current_x;
58 float current_y;
59 int new_x;
60 int new_y;
61 int w;
62 int h;
63 float phase;
64 int r;
65 int g;
66 int b;
67 int size;
68 int new_size;
69 } Point;
71 #endif