]> git.lizzy.rs Git - minetest.git/blob - src/light.h
8714269015f5e10d8b193b9d91fe45cefaef4b60
[minetest.git] / src / light.h
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 #ifndef LIGHT_HEADER
21 #define LIGHT_HEADER
22
23 #include "common_irrlicht.h"
24
25 // This directly sets the range of light
26 #define LIGHT_MAX 14
27 // This brightness is reserved for sunlight
28 #define LIGHT_SUN 15
29
30 inline u8 diminish_light(u8 light)
31 {
32         if(light == 0)
33                 return 0;
34         if(light >= LIGHT_MAX)
35                 return LIGHT_MAX - 1;
36                 
37         return light - 1;
38 }
39
40 inline u8 diminish_light(u8 light, u8 distance)
41 {
42         if(distance >= light)
43                 return 0;
44         return  light - distance;
45 }
46
47 inline u8 undiminish_light(u8 light)
48 {
49         // We don't know if light should undiminish from this particular 0.
50         // Thus, keep it at 0.
51         if(light == 0)
52                 return 0;
53         if(light == LIGHT_MAX)
54                 return light;
55         
56         return light + 1;
57 }
58
59 extern u8 light_decode_table[LIGHT_MAX+1];
60
61 inline u8 decode_light(u8 light)
62 {
63         if(light == LIGHT_SUN)
64                 return light_decode_table[LIGHT_MAX];
65         
66         if(light > LIGHT_MAX)
67                 throw;
68         
69         return light_decode_table[light];
70 }
71
72 #endif
73