3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
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.
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.
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.
23 #include "common_irrlicht.h"
28 Meshes are cached for different day-to-night transition values
31 /*#define DAYNIGHT_CACHE_COUNT 3
32 // First one is day, last one is night.
33 extern u32 daynight_cache_ratios[DAYNIGHT_CACHE_COUNT];*/
36 Lower level lighting stuff
39 // This directly sets the range of light.
40 // Actually this is not the real maximum, and this is not the
41 // brightest. The brightest is LIGHT_SUN.
43 // Light is stored as 4 bits, thus 15 is the maximum.
44 // This brightness is reserved for sunlight
47 inline u8 diminish_light(u8 light)
51 if(light >= LIGHT_MAX)
57 inline u8 diminish_light(u8 light, u8 distance)
61 return light - distance;
64 inline u8 undiminish_light(u8 light)
66 // We don't know if light should undiminish from this particular 0.
67 // Thus, keep it at 0.
70 if(light == LIGHT_MAX)
76 extern u8 light_decode_table[LIGHT_MAX+1];
78 inline u8 decode_light(u8 light)
80 if(light == LIGHT_SUN)
81 return light_decode_table[LIGHT_MAX];
86 return light_decode_table[light];