Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / video / sdl / sdl_texture.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_SDL_TEXTURE_HPP
18 #define HEADER_SUPERTUX_VIDEO_SDL_TEXTURE_HPP
19
20 #include <algorithm>
21 #include <config.h>
22
23 #include <SDL.h>
24
25 #include "video/color.hpp"
26 #include "video/texture.hpp"
27
28 class SDLTexture : public Texture
29 {
30 protected:
31   SDL_Surface *texture;
32   //unsigned int width;
33   //unsigned int height;
34
35   struct ColorCache
36   {
37     static const int HASHED_BITS = 3;
38     static const int CACHE_SIZE = 1 << (HASHED_BITS * 3);
39
40     static void ref(SDL_Surface *surface)
41     {
42       if(surface)
43       {
44         surface->refcount++;
45       }
46     }
47
48     static int hash(const Color &color)
49     {
50       return
51         ((int) (color.red * ((1 << HASHED_BITS) - 1)) << (HASHED_BITS - 1) * 2) |
52         ((int) (color.green * ((1 << HASHED_BITS) - 1)) << (HASHED_BITS - 1)) |
53         ((int) (color.blue * ((1 << HASHED_BITS) - 1)) << 0);
54     }
55
56     SDL_Surface *data[CACHE_SIZE];
57
58     ColorCache()
59     {
60       memset(data, 0, CACHE_SIZE * sizeof(SDL_Surface *));
61     }
62
63     ~ColorCache()
64     {
65       std::for_each(data, data + CACHE_SIZE, SDL_FreeSurface);
66     }
67
68     void operator = (const ColorCache &other)
69     {
70       std::for_each(other.data, other.data + CACHE_SIZE, ref);
71       std::for_each(data, data + CACHE_SIZE, SDL_FreeSurface);
72       memcpy(data, other.data, CACHE_SIZE * sizeof(SDL_Surface *));
73     }
74
75     SDL_Surface *&operator [] (const Color &color)
76     {
77       return data[hash(color)];
78     }
79   };
80   //typedef std::map<Color, SDL_Surface *> ColorCache;
81   ColorCache cache[NUM_EFFECTS];
82
83 public:
84   SDLTexture(SDL_Surface* sdlsurface);
85   virtual ~SDLTexture();
86
87   SDL_Surface *get_transform(const Color &color, DrawingEffect effect);
88
89   SDL_Surface *get_texture() const
90   {
91     return texture;
92   }
93
94   unsigned int get_texture_width() const
95   {
96     return texture->w;
97   }
98
99   unsigned int get_texture_height() const
100   {
101     return texture->h;
102   }
103
104   unsigned int get_image_width() const
105   {
106     return texture->w;
107   }
108
109   unsigned int get_image_height() const
110   {
111     return texture->h;
112   }
113
114   /*unsigned int get_texture_width() const
115     {
116     return width;
117     }
118
119     unsigned int get_texture_height() const
120     {
121     return height;
122     }
123
124     unsigned int get_image_width() const
125     {
126     return width;
127     }
128
129     unsigned int get_image_height() const
130     {
131     return height;
132     }*/
133 };
134
135 #endif
136
137 /* EOF */