First cut of multi-player support
[tennix.git] / graphics.h
blob53e022ecb28956612d3f8eaacacb685ac01573ec
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 __GRAPHICS_H
25 #define __GRAPHICS_H
27 #include "tennix.h"
29 #include "SDL_image.h"
30 #include "SDL_ttf.h"
31 #include "SDL_rotozoom.h"
33 #define RECT_UPDATE_CACHE 150
35 #define FADE_DURATION 500
36 #define BUTTON_HIGHLIGHT 0.4
37 #define BUTTON_BORDER 2
39 #define GET_PIXEL_DATA(surface,x,y) (*((Uint32*)((char*)surface->pixels + x * surface->format->BytesPerPixel + y * surface->pitch)))
41 #define GET_PIXEL_RGB(surface,x,y,r,g,b) (SDL_GetRGB( GET_PIXEL_DATA(surface,x,y), surface->format, r, g, b))
42 #define SET_PIXEL_RGB(surface,x,y,r,g,b) (GET_PIXEL_DATA(surface,x,y)=SDL_MapRGB(surface->format, r, g, b))
44 struct _FreeListItem {
45 char* data;
46 struct _FreeListItem* next;
49 typedef struct _FreeListItem FreeListItem;
51 typedef struct {
52 FreeListItem* head;
53 } FreeList;
55 FreeList* freelist_create();
56 void freelist_append(FreeList* list, char* data);
57 void freelist_free_all(FreeList* list);
59 typedef struct {
60 TTF_Font* data;
61 } Font;
63 typedef struct {
64 const char *filename;
65 int size;
66 int style;
67 } FontDescription;
69 typedef unsigned int font_id;
70 enum {
71 FONT_SMALL = 0,
72 FONT_MEDIUM,
73 FONT_LARGE,
74 FONT_XLARGE,
75 FONT_COUNT
78 typedef struct {
79 SDL_Surface* data;
80 } Image;
82 typedef unsigned int image_id;
83 enum {
84 GR_COURT = 0,
85 GR_SHADOW,
86 GR_RACKET,
87 GR_BALL,
88 GR_REFEREE,
89 GR_CTT_HARD,
90 GR_CTT_CLAY,
91 GR_CTT_GRASS,
92 GR_SIDEBAR,
93 GR_TENNIXLOGO,
94 GR_BTN_PLAY,
95 GR_BTN_RESUME,
96 GR_BTN_QUIT,
97 GR_STADIUM,
98 GR_FOG,
99 GR_FOG2,
100 GR_NIGHT,
101 GR_TALK,
102 GR_CURSOR,
103 GR_WORLDMAP,
104 GR_INPUT_GAMEPAD,
105 GR_INPUT_KEYBOARD_ARROWS,
106 GR_INPUT_KEYBOARD_OL,
107 GR_INPUT_KEYBOARD_WS,
108 GR_INPUT_MAEMO_DPAD,
109 GR_INPUT_MOUSE,
110 GR_INPUT_TOUCHSCREEN,
111 GR_INPUT_AI,
112 GR_BACK,
113 GR_FORWARD,
114 GR_LOC_MARGARET_COURT_ARENA,
115 GR_LOC_STADE_ROLAND_GARROS,
116 GR_LOC_COURT_NO_1,
117 GR_LOC_ARTHUR_ASHE_STADIUM,
118 #ifdef NONFREE_LOCATIONS
119 GR_LOC_TRAINING_CAMP,
120 GR_LOC_AUSTRIAN_OPEN,
121 GR_LOC_OLYMPIC_GREEN_TENNIS,
122 #endif
123 GR_COUNT
126 #define GR_CTT_FIRST GR_CTT_HARD
127 #define GR_CTT_LAST GR_CTT_GRASS
129 void init_graphics();
130 void uninit_graphics();
131 int get_image_width(image_id);
132 int get_image_height(image_id);
133 int get_sprite_width(image_id, int);
134 void show_sprite(image_id, int, int, int, int, int);
135 #define show_image(id, x_offset, y_offset, opacity) show_sprite(id, 0, 1, x_offset, y_offset, opacity)
136 void show_image_rotozoom(image_id id, int x, int y, float rotate, float zoom);
137 void line_horiz( int y, Uint8 r, Uint8 g, Uint8 b);
138 void line_vert( int x, Uint8 r, Uint8 g, Uint8 b);
139 void rectangle( int x, int y, int w, int h, Uint8 r, Uint8 g, Uint8 b);
140 void rectangle_alpha(int x, int y, int w, int h, Uint8 r, Uint8 g, Uint8 b, Uint8 opacity);
141 void fill_image_offset(image_id id, int x, int y, int w, int h, int offset_x, int offset_y);
142 #define fill_image(id, x, y, w, h) fill_image_offset(id, x, y, w, h, 0, 0)
143 void draw_button( int x, int y, int w, int h, Uint8 r, Uint8 g, Uint8 b, char pressed);
144 void draw_button_text(const char* s, int x, int y, int w, int h, Uint8 r, Uint8 g, Uint8 b, char pressed);
145 void draw_button_object(MenuButton*, int, int);
147 void clear_screen();
148 void store_screen();
149 void reset_screen();
151 void clearscr();
152 void update_rect(Sint32 x, Sint32 y, Sint32 w, Sint32 h);
153 #define update_rect2(r) (update_rect(r.x, r.y, r.w, r.h))
154 void updatescr();
155 void start_fade();
157 SDL_Surface* font_render_surface(font_id id, const char* text, Uint8 r,
158 Uint8 g, Uint8 b);
160 #define font_render_surface_simple(id, text) \
161 (font_render_surface(id, text, 255, 255, 255))
163 #define rotozoom_surface(surface, rotate, zoom) \
164 (rotozoomSurface(surface, rotate, zoom, SMOOTHING_OFF))
166 void blit_surface(SDL_Surface* surface, int x, int y, int pos, int count);
168 #define blit_surface_simple(surface, x, y) (blit_surface(surface, x, y, 0, 1))
170 SDL_Surface* get_surface(image_id id);
172 void font_draw_string_color(font_id id, const char* s, int x_offset, int y_offset, Uint8 r, Uint8 g, Uint8 b);
173 #define font_draw_string(id,s,x_offset,y_offset) font_draw_string_color(id,s,x_offset,y_offset,255,255,255)
174 int font_get_string_width(font_id id, const char* s);
175 int font_get_height(font_id id);
177 void draw_line_faded( int x1, int y1, int x2, int y2, int r, int g, int b, int r2, int g2, int b2);
178 #define draw_line(x1,y1,x2,y2,r,g,b) draw_line_faded(x1,y1,x2,y2,r,g,b,r,g,b)
180 extern Uint32 fading_start;
182 #endif