Remove bogus assert
[supertux.git] / src / video / texture_manager.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_TEXTURE_MANAGER_HPP
18 #define HEADER_SUPERTUX_VIDEO_TEXTURE_MANAGER_HPP
19
20 #include <SDL_video.h>
21
22 #include <config.h>
23
24 #include <map>
25 #include <memory>
26 #include <set>
27 #include <string>
28 #include <vector>
29
30 #include "util/currenton.hpp"
31 #include "video/glutil.hpp"
32 #include "video/texture_ptr.hpp"
33
34 class Texture;
35 class GLTexture;
36 class Rect;
37
38 class TextureManager : public Currenton<TextureManager>
39 {
40 public:
41   TextureManager();
42   ~TextureManager();
43
44   TexturePtr get(const std::string& filename);
45   TexturePtr get(const std::string& filename, const Rect& rect);
46
47 #ifdef HAVE_OPENGL
48   void register_texture(GLTexture* texture);
49   void remove_texture(GLTexture* texture);
50
51   void save_textures();
52   void reload_textures();
53 #endif
54
55 private:
56   friend class Texture;
57
58   typedef std::map<std::string, std::weak_ptr<Texture> > ImageTextures;
59   ImageTextures m_image_textures;
60
61   typedef std::map<std::string, SDL_Surface*> Surfaces;
62   Surfaces m_surfaces;
63
64 private:
65   void reap_cache_entry(const std::string& filename);
66
67   TexturePtr create_image_texture(const std::string& filename, const Rect& rect);
68
69   /** on failure a dummy texture is returned and no exception is thrown */
70   TexturePtr create_image_texture(const std::string& filename);
71
72   /** throw an exception on error */
73   TexturePtr create_image_texture_raw(const std::string& filename);
74   TexturePtr create_image_texture_raw(const std::string& filename, const Rect& rect);
75
76   TexturePtr create_dummy_texture();
77
78 #ifdef HAVE_OPENGL
79 private:
80   typedef std::set<GLTexture*> Textures;
81   Textures m_textures;
82
83   struct SavedTexture
84   {
85     GLTexture* texture;
86     GLint width;
87     GLint height;
88     char* pixels;
89     GLint border;
90
91     GLint min_filter;
92     GLint mag_filter;
93     GLint wrap_s;
94     GLint wrap_t;
95   };
96   std::vector<SavedTexture> m_saved_textures;
97
98 private:
99   void save_texture(GLTexture* texture);
100 #endif
101 };
102
103 #endif
104
105 /* EOF */