]> git.lizzy.rs Git - minetest.git/blob - src/tile.h
Add shutdown hook interface to Lua API
[minetest.git] / src / tile.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef TILE_HEADER
21 #define TILE_HEADER
22
23 #include "irrlichttypes.h"
24 #include "irr_v2d.h"
25 #include "irr_v3d.h"
26 #include <ITexture.h>
27 #include <IrrlichtDevice.h>
28 #include "threads.h"
29 #include <string>
30
31 class IGameDef;
32
33 /*
34         tile.{h,cpp}: Texture handling stuff.
35 */
36
37 /*
38         Gets the path to a texture by first checking if the texture exists
39         in texture_path and if not, using the data path.
40
41         Checks all supported extensions by replacing the original extension.
42
43         If not found, returns "".
44
45         Utilizes a thread-safe cache.
46 */
47 std::string getTexturePath(const std::string &filename);
48
49 /*
50         Specifies a texture in an atlas.
51
52         This is used to specify single textures also.
53
54         This has been designed to be small enough to be thrown around a lot.
55 */
56 struct AtlasPointer
57 {
58         u32 id; // Texture id
59         video::ITexture *atlas; // Atlas in where the texture is
60         v2f pos; // Position in atlas
61         v2f size; // Size in atlas
62         u16 tiled; // X-wise tiling count. If 0, width of atlas is width of image.
63
64         AtlasPointer():
65                 id(0),
66                 atlas(NULL),
67                 pos(0,0),
68                 size(1,1),
69                 tiled(1)
70         {}
71
72         AtlasPointer(
73                         u16 id_,
74                         video::ITexture *atlas_=NULL,
75                         v2f pos_=v2f(0,0),
76                         v2f size_=v2f(1,1),
77                         u16 tiled_=1
78                 ):
79                 id(id_),
80                 atlas(atlas_),
81                 pos(pos_),
82                 size(size_),
83                 tiled(tiled_)
84         {
85         }
86
87         bool operator==(const AtlasPointer &other) const
88         {
89                 return (
90                         id == other.id
91                 );
92                 /*return (
93                         id == other.id &&
94                         atlas == other.atlas &&
95                         pos == other.pos &&
96                         size == other.size &&
97                         tiled == other.tiled
98                 );*/
99         }
100
101         bool operator!=(const AtlasPointer &other) const
102         {
103                 return !(*this == other);
104         }
105
106         float x0(){ return pos.X; }
107         float x1(){ return pos.X + size.X; }
108         float y0(){ return pos.Y; }
109         float y1(){ return pos.Y + size.Y; }
110 };
111
112 /*
113         TextureSource creates and caches textures.
114 */
115
116 class ITextureSource
117 {
118 public:
119         ITextureSource(){}
120         virtual ~ITextureSource(){}
121         virtual u32 getTextureId(const std::string &name){return 0;}
122         virtual u32 getTextureIdDirect(const std::string &name){return 0;}
123         virtual std::string getTextureName(u32 id){return "";}
124         virtual AtlasPointer getTexture(u32 id){return AtlasPointer(0);}
125         virtual AtlasPointer getTexture(const std::string &name)
126                 {return AtlasPointer(0);}
127         virtual video::ITexture* getTextureRaw(const std::string &name)
128                 {return NULL;}
129         virtual AtlasPointer getTextureRawAP(const AtlasPointer &ap)
130                 {return AtlasPointer(0);}
131         virtual IrrlichtDevice* getDevice()
132                 {return NULL;}
133         virtual void updateAP(AtlasPointer &ap){};
134 };
135
136 class IWritableTextureSource : public ITextureSource
137 {
138 public:
139         IWritableTextureSource(){}
140         virtual ~IWritableTextureSource(){}
141         virtual u32 getTextureId(const std::string &name){return 0;}
142         virtual u32 getTextureIdDirect(const std::string &name){return 0;}
143         virtual std::string getTextureName(u32 id){return "";}
144         virtual AtlasPointer getTexture(u32 id){return AtlasPointer(0);}
145         virtual AtlasPointer getTexture(const std::string &name)
146                 {return AtlasPointer(0);}
147         virtual video::ITexture* getTextureRaw(const std::string &name)
148                 {return NULL;}
149         virtual IrrlichtDevice* getDevice()
150                 {return NULL;}
151         virtual void updateAP(AtlasPointer &ap){};
152
153         virtual void processQueue()=0;
154         virtual void insertSourceImage(const std::string &name, video::IImage *img)=0;
155         virtual void rebuildImagesAndTextures()=0;
156         virtual void buildMainAtlas(class IGameDef *gamedef)=0;
157 };
158
159 IWritableTextureSource* createTextureSource(IrrlichtDevice *device);
160
161 enum MaterialType{
162         MATERIAL_ALPHA_NONE,
163         MATERIAL_ALPHA_VERTEX,
164         MATERIAL_ALPHA_SIMPLE, // >127 = opaque
165         MATERIAL_ALPHA_BLEND,
166 };
167
168 // Material flags
169 // Should backface culling be enabled?
170 #define MATERIAL_FLAG_BACKFACE_CULLING 0x01
171 // Should a crack be drawn?
172 #define MATERIAL_FLAG_CRACK 0x02
173 // Should the crack be drawn on transparent pixels (unset) or not (set)?
174 // Ignored if MATERIAL_FLAG_CRACK is not set.
175 #define MATERIAL_FLAG_CRACK_OVERLAY 0x04
176 // Animation made up by splitting the texture to vertical frames, as
177 // defined by extra parameters
178 #define MATERIAL_FLAG_ANIMATION_VERTICAL_FRAMES 0x08
179
180 /*
181         This fully defines the looks of a tile.
182         The SMaterial of a tile is constructed according to this.
183 */
184 struct TileSpec
185 {
186         TileSpec():
187                 texture(0),
188                 alpha(255),
189                 //material_type(MATERIAL_ALPHA_NONE),
190                 // Use this so that leaves don't need a separate material
191                 material_type(MATERIAL_ALPHA_SIMPLE),
192                 material_flags(
193                         //0 // <- DEBUG, Use the one below
194                         MATERIAL_FLAG_BACKFACE_CULLING
195                 ),
196                 animation_frame_count(1),
197                 animation_frame_length_ms(0)
198         {
199         }
200
201         bool operator==(const TileSpec &other) const
202         {
203                 return (
204                         texture == other.texture &&
205                         alpha == other.alpha &&
206                         material_type == other.material_type &&
207                         material_flags == other.material_flags
208                 );
209         }
210
211         bool operator!=(const TileSpec &other) const
212         {
213                 return !(*this == other);
214         }
215         
216         // Sets everything else except the texture in the material
217         void applyMaterialOptions(video::SMaterial &material) const
218         {
219                 if(material_type == MATERIAL_ALPHA_NONE)
220                         material.MaterialType = video::EMT_SOLID;
221                 else if(material_type == MATERIAL_ALPHA_VERTEX)
222                         material.MaterialType = video::EMT_TRANSPARENT_VERTEX_ALPHA;
223                 else if(material_type == MATERIAL_ALPHA_SIMPLE)
224                         material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
225                 else if(material_type == MATERIAL_ALPHA_BLEND)
226                         material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
227
228                 material.BackfaceCulling = (material_flags & MATERIAL_FLAG_BACKFACE_CULLING) ? true : false;
229         }
230         
231         // NOTE: Deprecated, i guess?
232         void setTexturePos(u8 tx_, u8 ty_, u8 tw_, u8 th_)
233         {
234                 texture.pos = v2f((float)tx_/256.0, (float)ty_/256.0);
235                 texture.size = v2f(((float)tw_ + 1.0)/256.0, ((float)th_ + 1.0)/256.0);
236         }
237         
238         AtlasPointer texture;
239         // Vertex alpha (when MATERIAL_ALPHA_VERTEX is used)
240         u8 alpha;
241         // Material parameters
242         u8 material_type;
243         u8 material_flags;
244         // Animation parameters
245         u8 animation_frame_count;
246         u16 animation_frame_length_ms;
247 };
248
249 #endif