1347f5485847683a67d8fb7d244ecb3ce187a37f
[supertux.git] / src / src / video / video_systems.hpp
1 //  $Id: video_systems.hpp 5138 2007-08-15 01:02:22Z tuxdev $
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 //  02111-1307, USA.
20 #ifndef __RENDER_SYTSTEMS_HPP__
21 #define __RENDER_SYTSTEMS_HPP__
22
23 #include <config.h>
24
25 #include <string>
26 #include <SDL.h>
27
28 class Renderer;
29 class Lightmap;
30 class Texture;
31 class Surface;
32
33 enum VideoSystem {
34   AUTO_VIDEO,
35   OPENGL,
36   PURE_SDL,
37   NUM_SYSTEMS
38 };
39
40 Renderer *new_renderer();
41 Lightmap *new_lightmap();
42 Texture *new_texture(SDL_Surface *image);
43 void *new_surface_data(const Surface &surface);
44 void free_surface_data(void *surface_data);
45 VideoSystem get_video_system(const std::string &video);
46 std::string get_video_string(VideoSystem video);
47
48 #endif