From: Perttu Ahola Date: Sun, 4 Mar 2012 18:48:32 +0000 (+0200) Subject: Unrelated, but anyway: tune light levels again X-Git-Tag: 0.4.dev-20120408~109 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=af29c0ade5024cb3bdaf00c3fa0d70351fd4ce28;p=oweals%2Fminetest.git Unrelated, but anyway: tune light levels again --- diff --git a/src/light.cpp b/src/light.cpp index 89bddb1c4..2a0e274ae 100644 --- a/src/light.cpp +++ b/src/light.cpp @@ -20,6 +20,30 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "light.h" #if 1 +// Middle-raised variation of a_n+1 = a_n * 0.786 +// Length of LIGHT_MAX+1 means LIGHT_MAX is the last value. +// LIGHT_SUN is read as LIGHT_MAX from here. +u8 light_decode_table[LIGHT_MAX+1] = +{ +8, +11+2, +14+7, +18+10, +22+15, +29+20, +37+20, +47+15, +60+10, +76+7, +97+5, +123+2, +157, +200, +255, +}; +#endif + +#if 0 /* Made using this and: - adding 220 as the second last one