f2b131f4d47ce7169c56070f6ad6063c9ffde99a
[oweals/minetest.git] / src / tile.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010 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 General Public License as published by
7 the Free Software Foundation; either version 2 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 General Public License for more details.
14
15 You should have received a copy of the GNU 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 #include "tile.h"
21 #include "main.h"
22
23 // A mapping from tiles to paths of textures
24 const char * g_tile_texture_paths[TILES_COUNT] =
25 {
26         NULL,
27         "../data/stone.png",
28         "../data/water.png",
29         "../data/grass.png",
30         "../data/tree.png",
31         "../data/leaves.png",
32         "../data/grass_footsteps.png",
33         "../data/mese.png",
34         "../data/mud.png",
35         "../data/tree_top.png",
36         "../data/mud_with_grass.png",
37         "../data/cloud.png",
38 };
39
40 const char * tile_texture_path_get(u32 i)
41 {
42         assert(i < TILES_COUNT);
43
44         return g_tile_texture_paths[i];
45 }
46
47 // A mapping from tiles to materials
48 // Initialized at run-time.
49 video::SMaterial g_tile_materials[TILES_COUNT];
50
51 void tile_materials_preload(IrrlichtWrapper *irrlicht)
52 {
53         for(s32 i=0; i<TILES_COUNT; i++)
54         {
55                 const char *path = g_tile_texture_paths[i];
56
57                 video::ITexture *t = NULL;
58
59                 if(path != NULL)
60                 {
61                         t = irrlicht->getTexture(path);
62                         assert(t != NULL);
63                 }
64
65                 g_tile_materials[i].Lighting = false;
66                 g_tile_materials[i].BackfaceCulling = false;
67                 g_tile_materials[i].setFlag(video::EMF_BILINEAR_FILTER, false);
68                 g_tile_materials[i].setFlag(video::EMF_ANTI_ALIASING, video::EAAM_OFF);
69                 //if(i != TILE_WATER)
70                 g_tile_materials[i].setFlag(video::EMF_FOG_ENABLE, true);
71                 
72                 //g_tile_materials[i].setFlag(video::EMF_TEXTURE_WRAP, video::ETC_REPEAT);
73                 //g_tile_materials[i].setFlag(video::EMF_ANISOTROPIC_FILTER, false);
74
75                 g_tile_materials[i].setTexture(0, t);
76         }
77         
78         g_tile_materials[TILE_WATER].MaterialType = video::EMT_TRANSPARENT_VERTEX_ALPHA;
79         //g_tile_materials[TILE_WATER].MaterialType = video::EMT_TRANSPARENT_ADD_COLOR;
80 }
81
82 video::SMaterial & tile_material_get(u32 i)
83 {
84         assert(i < TILES_COUNT);
85
86         return g_tile_materials[i];
87 }
88