Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[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 <config.h>
21
22 #include <map>
23 #include <set>
24 #include <string>
25 #include <vector>
26
27 #include "video/glutil.hpp"
28
29 class Texture;
30 class GLTexture;
31
32 class TextureManager
33 {
34 public:
35   TextureManager();
36   ~TextureManager();
37
38   Texture* get(const std::string& filename);
39
40 #ifdef HAVE_OPENGL
41   void register_texture(GLTexture* texture);
42   void remove_texture(GLTexture* texture);
43
44   void save_textures();
45   void reload_textures();
46 #endif
47
48 private:
49   friend class Texture;
50   void release(Texture* texture);
51
52   typedef std::map<std::string, Texture*> ImageTextures;
53   ImageTextures image_textures;
54
55   Texture* create_image_texture(const std::string& filename);
56
57 #ifdef HAVE_OPENGL
58   typedef std::set<GLTexture*> Textures;
59   Textures textures;
60
61   struct SavedTexture
62   {
63     GLTexture* texture;
64     GLint width;
65     GLint height;
66     char* pixels;
67     GLint border;
68
69     GLint min_filter;
70     GLint mag_filter;
71     GLint wrap_s;
72     GLint wrap_t;
73   };
74   std::vector<SavedTexture> saved_textures;
75
76   void save_texture(GLTexture* texture);
77 #endif
78 };
79
80 extern TextureManager* texture_manager;
81
82 #endif
83
84 /* EOF */