Add name to new test level
[supertux.git] / src / video / video_system.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_VIDEO_VIDEO_SYSTEM_HPP
18 #define HEADER_SUPERTUX_VIDEO_VIDEO_SYSTEM_HPP
19
20 #include <SDL.h>
21 #include <string>
22
23 #include "util/currenton.hpp"
24 #include "video/texture_ptr.hpp"
25
26 class Renderer;
27 class Lightmap;
28 class Surface;
29 class SurfaceData;
30
31 class VideoSystem : public Currenton<VideoSystem>
32 {
33 public:
34   enum Enum {
35     AUTO_VIDEO,
36     OPENGL,
37     PURE_SDL,
38     NUM_SYSTEMS
39   };
40
41   static std::unique_ptr<VideoSystem> create(VideoSystem::Enum video_system);
42
43   static Enum get_video_system(const std::string &video);
44   static std::string get_video_string(Enum video);
45
46 public:
47   VideoSystem() {}
48   virtual ~VideoSystem() {}
49
50   virtual Renderer& get_renderer() = 0;
51   virtual Lightmap& get_lightmap() = 0;
52   virtual TexturePtr new_texture(SDL_Surface *image) = 0;
53   virtual SurfaceData* new_surface_data(const Surface &surface) = 0;
54   virtual void free_surface_data(SurfaceData* surface_data) = 0;
55
56   virtual void apply_config() = 0;
57   virtual void resize(int w, int h) = 0;
58
59 private:
60   VideoSystem(const VideoSystem&) = delete;
61   VideoSystem& operator=(const VideoSystem&) = delete;
62 };
63
64 #endif
65
66 /* EOF */