Remove some development code from makefile
[tennix.git] / tennix.h
bloba55186bc2c3b1ba01e644e22e9d0190f409da1e7
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 COPYRIGHT "Copyright 2003, 2007 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/2-150&&x<WIDTH/2+150)
40 #define M_POS_START_GAME(x,y) (M_POS_XPOS(x) && y>120 && y<160)
41 #define M_POS_START_MULTI(x,y) (M_POS_XPOS(x) && y>170 && y<200)
42 #define M_POS_CREDITS(x,y) (M_POS_XPOS(x) && y>210 && y<250)
43 #define M_POS_QUIT(x,y) (M_POS_XPOS(x) && y>280 && y<320)
45 #define HIGHLIGHT_X 420
47 #define HIGHLIGHT_START_GAME 145
48 #define HIGHLIGHT_START_MULTI 190
49 #define HIGHLIGHT_CREDITS 235
50 #define HIGHLIGHT_QUIT 305
52 extern SDL_Surface *screen;
54 typedef struct {
55 const char* data;
56 unsigned int size;
57 } ResourceData;
59 #define RESOURCE(x) ((ResourceData){ x, sizeof( x) })
61 typedef struct {
62 int x;
63 int y;
64 float current_x;
65 float current_y;
66 int new_x;
67 int new_y;
68 int w;
69 int h;
70 float phase;
71 int r;
72 int g;
73 int b;
74 int size;
75 int new_size;
76 } Point;
78 #define ELEKTRONS_WIDTH 65
79 #define ELEKTRON_LAZYNESS 30.0
80 #define ELEKTRONS 50
82 #endif