Unrelated, but anyway: tune light levels again
authorPerttu Ahola <celeron55@gmail.com>
Sun, 4 Mar 2012 18:48:32 +0000 (20:48 +0200)
committerPerttu Ahola <celeron55@gmail.com>
Tue, 27 Mar 2012 16:25:25 +0000 (19:25 +0300)
src/light.cpp

index 89bddb1c42dc4ab46f110cd16bf64a314af36bdf..2a0e274ae2dfb1bc6a25553912fd0bf03dd8b8ef 100644 (file)
@@ -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