Fix occlusion culling, again (#4930)
[oweals/minetest.git] / src / clientmap.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser 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 "clientmap.h"
21 #include "client.h"
22 #include "mapblock_mesh.h"
23 #include <IMaterialRenderer.h>
24 #include <matrix4.h>
25 #include "log.h"
26 #include "mapsector.h"
27 #include "nodedef.h"
28 #include "mapblock.h"
29 #include "profiler.h"
30 #include "settings.h"
31 #include "camera.h"               // CameraModes
32 #include "util/mathconstants.h"
33 #include <algorithm>
34
35 #define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"
36
37 ClientMap::ClientMap(
38                 Client *client,
39                 IGameDef *gamedef,
40                 MapDrawControl &control,
41                 scene::ISceneNode* parent,
42                 scene::ISceneManager* mgr,
43                 s32 id
44 ):
45         Map(dout_client, gamedef),
46         scene::ISceneNode(parent, mgr, id),
47         m_client(client),
48         m_control(control),
49         m_camera_position(0,0,0),
50         m_camera_direction(0,0,1),
51         m_camera_fov(M_PI)
52 {
53         m_box = aabb3f(-BS*1000000,-BS*1000000,-BS*1000000,
54                         BS*1000000,BS*1000000,BS*1000000);
55
56         /* TODO: Add a callback function so these can be updated when a setting
57          *       changes.  At this point in time it doesn't matter (e.g. /set
58          *       is documented to change server settings only)
59          *
60          * TODO: Local caching of settings is not optimal and should at some stage
61          *       be updated to use a global settings object for getting thse values
62          *       (as opposed to the this local caching). This can be addressed in
63          *       a later release.
64          */
65         m_cache_trilinear_filter  = g_settings->getBool("trilinear_filter");
66         m_cache_bilinear_filter   = g_settings->getBool("bilinear_filter");
67         m_cache_anistropic_filter = g_settings->getBool("anisotropic_filter");
68
69 }
70
71 ClientMap::~ClientMap()
72 {
73         /*MutexAutoLock lock(mesh_mutex);
74
75         if(mesh != NULL)
76         {
77                 mesh->drop();
78                 mesh = NULL;
79         }*/
80 }
81
82 MapSector * ClientMap::emergeSector(v2s16 p2d)
83 {
84         DSTACK(FUNCTION_NAME);
85         // Check that it doesn't exist already
86         try{
87                 return getSectorNoGenerate(p2d);
88         }
89         catch(InvalidPositionException &e)
90         {
91         }
92
93         // Create a sector
94         ClientMapSector *sector = new ClientMapSector(this, p2d, m_gamedef);
95
96         {
97                 //MutexAutoLock lock(m_sector_mutex); // Bulk comment-out
98                 m_sectors[p2d] = sector;
99         }
100
101         return sector;
102 }
103
104 void ClientMap::OnRegisterSceneNode()
105 {
106         if(IsVisible)
107         {
108                 SceneManager->registerNodeForRendering(this, scene::ESNRP_SOLID);
109                 SceneManager->registerNodeForRendering(this, scene::ESNRP_TRANSPARENT);
110         }
111
112         ISceneNode::OnRegisterSceneNode();
113 }
114
115 static bool isOccluded(Map *map, v3s16 p0, v3s16 p1, float step, float stepfac,
116                 float start_off, float end_off, u32 needed_count, INodeDefManager *nodemgr)
117 {
118         float d0 = (float)BS * p0.getDistanceFrom(p1);
119         v3s16 u0 = p1 - p0;
120         v3f uf = v3f(u0.X, u0.Y, u0.Z) * BS;
121         uf.normalize();
122         v3f p0f = v3f(p0.X, p0.Y, p0.Z) * BS;
123         u32 count = 0;
124         for(float s=start_off; s<d0+end_off; s+=step){
125                 v3f pf = p0f + uf * s;
126                 v3s16 p = floatToInt(pf, BS);
127                 MapNode n = map->getNodeNoEx(p);
128                 bool is_transparent = false;
129                 const ContentFeatures &f = nodemgr->get(n);
130                 if(f.solidness == 0)
131                         is_transparent = (f.visual_solidness != 2);
132                 else
133                         is_transparent = (f.solidness != 2);
134                 if(!is_transparent){
135                         count++;
136                         if(count >= needed_count)
137                                 return true;
138                 }
139                 step *= stepfac;
140         }
141         return false;
142 }
143
144 void ClientMap::getBlocksInViewRange(v3s16 cam_pos_nodes, 
145                 v3s16 *p_blocks_min, v3s16 *p_blocks_max)
146 {
147         v3s16 box_nodes_d = m_control.wanted_range * v3s16(1, 1, 1);
148         // Define p_nodes_min/max as v3s32 because 'cam_pos_nodes -/+ box_nodes_d'
149         // can exceed the range of v3s16 when a large view range is used near the
150         // world edges.
151         v3s32 p_nodes_min(
152                 cam_pos_nodes.X - box_nodes_d.X,
153                 cam_pos_nodes.Y - box_nodes_d.Y,
154                 cam_pos_nodes.Z - box_nodes_d.Z);
155         v3s32 p_nodes_max(
156                 cam_pos_nodes.X + box_nodes_d.X,
157                 cam_pos_nodes.Y + box_nodes_d.Y,
158                 cam_pos_nodes.Z + box_nodes_d.Z);
159         // Take a fair amount as we will be dropping more out later
160         // Umm... these additions are a bit strange but they are needed.
161         *p_blocks_min = v3s16(
162                         p_nodes_min.X / MAP_BLOCKSIZE - 3,
163                         p_nodes_min.Y / MAP_BLOCKSIZE - 3,
164                         p_nodes_min.Z / MAP_BLOCKSIZE - 3);
165         *p_blocks_max = v3s16(
166                         p_nodes_max.X / MAP_BLOCKSIZE + 1,
167                         p_nodes_max.Y / MAP_BLOCKSIZE + 1,
168                         p_nodes_max.Z / MAP_BLOCKSIZE + 1);
169 }
170
171 void ClientMap::updateDrawList(video::IVideoDriver* driver)
172 {
173         ScopeProfiler sp(g_profiler, "CM::updateDrawList()", SPT_AVG);
174         g_profiler->add("CM::updateDrawList() count", 1);
175
176         INodeDefManager *nodemgr = m_gamedef->ndef();
177
178         for (std::map<v3s16, MapBlock*>::iterator i = m_drawlist.begin();
179                         i != m_drawlist.end(); ++i) {
180                 MapBlock *block = i->second;
181                 block->refDrop();
182         }
183         m_drawlist.clear();
184
185         v3f camera_position = m_camera_position;
186         v3f camera_direction = m_camera_direction;
187         f32 camera_fov = m_camera_fov;
188
189         // Use a higher fov to accomodate faster camera movements.
190         // Blocks are cropped better when they are drawn.
191         // Or maybe they aren't? Well whatever.
192         camera_fov *= 1.2;
193
194         v3s16 cam_pos_nodes = floatToInt(camera_position, BS);
195         v3s16 p_blocks_min;
196         v3s16 p_blocks_max;
197         getBlocksInViewRange(cam_pos_nodes, &p_blocks_min, &p_blocks_max);
198
199         // Number of blocks in rendering range
200         u32 blocks_in_range = 0;
201         // Number of blocks occlusion culled
202         u32 blocks_occlusion_culled = 0;
203         // Number of blocks in rendering range but don't have a mesh
204         u32 blocks_in_range_without_mesh = 0;
205         // Blocks that had mesh that would have been drawn according to
206         // rendering range (if max blocks limit didn't kick in)
207         u32 blocks_would_have_drawn = 0;
208         // Blocks that were drawn and had a mesh
209         u32 blocks_drawn = 0;
210         // Blocks which had a corresponding meshbuffer for this pass
211         //u32 blocks_had_pass_meshbuf = 0;
212         // Blocks from which stuff was actually drawn
213         //u32 blocks_without_stuff = 0;
214         // Distance to farthest drawn block
215         float farthest_drawn = 0;
216
217         for (std::map<v2s16, MapSector*>::iterator si = m_sectors.begin();
218                         si != m_sectors.end(); ++si) {
219                 MapSector *sector = si->second;
220                 v2s16 sp = sector->getPos();
221
222                 if (m_control.range_all == false) {
223                         if (sp.X < p_blocks_min.X || sp.X > p_blocks_max.X ||
224                                         sp.Y < p_blocks_min.Z || sp.Y > p_blocks_max.Z)
225                                 continue;
226                 }
227
228                 MapBlockVect sectorblocks;
229                 sector->getBlocks(sectorblocks);
230
231                 /*
232                         Loop through blocks in sector
233                 */
234
235                 u32 sector_blocks_drawn = 0;
236
237                 for (MapBlockVect::iterator i = sectorblocks.begin();
238                                 i != sectorblocks.end(); ++i) {
239                         MapBlock *block = *i;
240
241                         /*
242                                 Compare block position to camera position, skip
243                                 if not seen on display
244                         */
245
246                         if (block->mesh != NULL)
247                                 block->mesh->updateCameraOffset(m_camera_offset);
248
249                         float range = 100000 * BS;
250                         if (m_control.range_all == false)
251                                 range = m_control.wanted_range * BS;
252
253                         float d = 0.0;
254                         if (!isBlockInSight(block->getPos(), camera_position,
255                                         camera_direction, camera_fov, range, &d))
256                                 continue;
257
258                         // This is ugly (spherical distance limit?)
259                         /*if(m_control.range_all == false &&
260                                         d - 0.5*BS*MAP_BLOCKSIZE > range)
261                                 continue;*/
262
263                         blocks_in_range++;
264
265                         /*
266                                 Ignore if mesh doesn't exist
267                         */
268                         {
269                                 //MutexAutoLock lock(block->mesh_mutex);
270
271                                 if (block->mesh == NULL) {
272                                         blocks_in_range_without_mesh++;
273                                         continue;
274                                 }
275                         }
276
277                         /*
278                                 Occlusion culling
279                         */
280
281                         // No occlusion culling when free_move is on and camera is
282                         // inside ground
283                         bool occlusion_culling_enabled = true;
284                         if (g_settings->getBool("free_move")) {
285                                 MapNode n = getNodeNoEx(cam_pos_nodes);
286                                 if (n.getContent() == CONTENT_IGNORE ||
287                                                 nodemgr->get(n).solidness == 2)
288                                         occlusion_culling_enabled = false;
289                         }
290
291                         v3s16 cpn = block->getPos() * MAP_BLOCKSIZE;
292                         cpn += v3s16(MAP_BLOCKSIZE / 2, MAP_BLOCKSIZE / 2, MAP_BLOCKSIZE / 2);
293                         float step = BS * 1;
294                         float stepfac = 1.1;
295                         float startoff = BS * 1;
296                         // The occlusion search of 'isOccluded()' must stop short of the target
297                         // point by distance 'endoff' (end offset) to not enter the target mapblock.
298                         // For the 8 mapblock corners 'endoff' must therefore be the maximum diagonal
299                         // of a mapblock, because we must consider all view angles.
300                         // sqrt(1^2 + 1^2 + 1^2) = 1.732
301                         float endoff = -BS * MAP_BLOCKSIZE * 1.732050807569;
302                         v3s16 spn = cam_pos_nodes;
303                         s16 bs2 = MAP_BLOCKSIZE / 2 + 1;
304                         // to reduce the likelihood of falsely occluded blocks
305                         // require at least two solid blocks
306                         // this is a HACK, we should think of a more precise algorithm
307                         u32 needed_count = 2;
308                         if (occlusion_culling_enabled &&
309                                         // For the central point of the mapblock 'endoff' can be halved
310                                         isOccluded(this, spn, cpn,
311                                                 step, stepfac, startoff, endoff / 2.0f, needed_count, nodemgr) &&
312                                         isOccluded(this, spn, cpn + v3s16(bs2,bs2,bs2),
313                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
314                                         isOccluded(this, spn, cpn + v3s16(bs2,bs2,-bs2),
315                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
316                                         isOccluded(this, spn, cpn + v3s16(bs2,-bs2,bs2),
317                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
318                                         isOccluded(this, spn, cpn + v3s16(bs2,-bs2,-bs2),
319                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
320                                         isOccluded(this, spn, cpn + v3s16(-bs2,bs2,bs2),
321                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
322                                         isOccluded(this, spn, cpn + v3s16(-bs2,bs2,-bs2),
323                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
324                                         isOccluded(this, spn, cpn + v3s16(-bs2,-bs2,bs2),
325                                                 step, stepfac, startoff, endoff, needed_count, nodemgr) &&
326                                         isOccluded(this, spn, cpn + v3s16(-bs2,-bs2,-bs2),
327                                                 step, stepfac, startoff, endoff, needed_count, nodemgr)) {
328                                 blocks_occlusion_culled++;
329                                 continue;
330                         }
331
332                         // This block is in range. Reset usage timer.
333                         block->resetUsageTimer();
334
335                         // Limit block count in case of a sudden increase
336                         blocks_would_have_drawn++;
337                         if (blocks_drawn >= m_control.wanted_max_blocks &&
338                                         !m_control.range_all &&
339                                         d > m_control.wanted_range * BS)
340                                 continue;
341
342                         // Add to set
343                         block->refGrab();
344                         m_drawlist[block->getPos()] = block;
345
346                         sector_blocks_drawn++;
347                         blocks_drawn++;
348                         if (d / BS > farthest_drawn)
349                                 farthest_drawn = d / BS;
350
351                 } // foreach sectorblocks
352
353                 if (sector_blocks_drawn != 0)
354                         m_last_drawn_sectors.insert(sp);
355         }
356
357         m_control.blocks_would_have_drawn = blocks_would_have_drawn;
358         m_control.blocks_drawn = blocks_drawn;
359         m_control.farthest_drawn = farthest_drawn;
360
361         g_profiler->avg("CM: blocks in range", blocks_in_range);
362         g_profiler->avg("CM: blocks occlusion culled", blocks_occlusion_culled);
363         if (blocks_in_range != 0)
364                 g_profiler->avg("CM: blocks in range without mesh (frac)",
365                                 (float)blocks_in_range_without_mesh / blocks_in_range);
366         g_profiler->avg("CM: blocks drawn", blocks_drawn);
367         g_profiler->avg("CM: farthest drawn", farthest_drawn);
368         g_profiler->avg("CM: wanted max blocks", m_control.wanted_max_blocks);
369 }
370
371 struct MeshBufList
372 {
373         video::SMaterial m;
374         std::vector<scene::IMeshBuffer*> bufs;
375 };
376
377 struct MeshBufListList
378 {
379         std::vector<MeshBufList> lists;
380
381         void clear()
382         {
383                 lists.clear();
384         }
385
386         void add(scene::IMeshBuffer *buf)
387         {
388                 for(std::vector<MeshBufList>::iterator i = lists.begin();
389                                 i != lists.end(); ++i){
390                         MeshBufList &l = *i;
391                         video::SMaterial &m = buf->getMaterial();
392
393                         // comparing a full material is quite expensive so we don't do it if
394                         // not even first texture is equal
395                         if (l.m.TextureLayer[0].Texture != m.TextureLayer[0].Texture)
396                                 continue;
397
398                         if (l.m == m) {
399                                 l.bufs.push_back(buf);
400                                 return;
401                         }
402                 }
403                 MeshBufList l;
404                 l.m = buf->getMaterial();
405                 l.bufs.push_back(buf);
406                 lists.push_back(l);
407         }
408 };
409
410 void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass)
411 {
412         DSTACK(FUNCTION_NAME);
413
414         bool is_transparent_pass = pass == scene::ESNRP_TRANSPARENT;
415
416         std::string prefix;
417         if (pass == scene::ESNRP_SOLID)
418                 prefix = "CM: solid: ";
419         else
420                 prefix = "CM: transparent: ";
421
422         /*
423                 This is called two times per frame, reset on the non-transparent one
424         */
425         if (pass == scene::ESNRP_SOLID)
426                 m_last_drawn_sectors.clear();
427
428         /*
429                 Get time for measuring timeout.
430
431                 Measuring time is very useful for long delays when the
432                 machine is swapping a lot.
433         */
434         int time1 = time(0);
435
436         /*
437                 Get animation parameters
438         */
439         float animation_time = m_client->getAnimationTime();
440         int crack = m_client->getCrackLevel();
441         u32 daynight_ratio = m_client->getEnv().getDayNightRatio();
442
443         v3f camera_position = m_camera_position;
444         v3f camera_direction = m_camera_direction;
445         f32 camera_fov = m_camera_fov;
446
447         /*
448                 Get all blocks and draw all visible ones
449         */
450
451         v3s16 cam_pos_nodes = floatToInt(camera_position, BS);
452         v3s16 p_blocks_min;
453         v3s16 p_blocks_max;
454         getBlocksInViewRange(cam_pos_nodes, &p_blocks_min, &p_blocks_max);
455
456         u32 vertex_count = 0;
457         u32 meshbuffer_count = 0;
458
459         // For limiting number of mesh animations per frame
460         u32 mesh_animate_count = 0;
461         u32 mesh_animate_count_far = 0;
462
463         // Blocks that were drawn and had a mesh
464         u32 blocks_drawn = 0;
465         // Blocks which had a corresponding meshbuffer for this pass
466         u32 blocks_had_pass_meshbuf = 0;
467         // Blocks from which stuff was actually drawn
468         u32 blocks_without_stuff = 0;
469
470         /*
471                 Draw the selected MapBlocks
472         */
473
474         {
475         ScopeProfiler sp(g_profiler, prefix + "drawing blocks", SPT_AVG);
476
477         MeshBufListList drawbufs;
478
479         for (std::map<v3s16, MapBlock*>::iterator i = m_drawlist.begin();
480                         i != m_drawlist.end(); ++i) {
481                 MapBlock *block = i->second;
482
483                 // If the mesh of the block happened to get deleted, ignore it
484                 if (block->mesh == NULL)
485                         continue;
486
487                 float d = 0.0;
488                 if (!isBlockInSight(block->getPos(), camera_position,
489                                 camera_direction, camera_fov, 100000 * BS, &d))
490                         continue;
491
492                 // Mesh animation
493                 {
494                         //MutexAutoLock lock(block->mesh_mutex);
495                         MapBlockMesh *mapBlockMesh = block->mesh;
496                         assert(mapBlockMesh);
497                         // Pretty random but this should work somewhat nicely
498                         bool faraway = d >= BS * 50;
499                         //bool faraway = d >= m_control.wanted_range * BS;
500                         if (mapBlockMesh->isAnimationForced() || !faraway ||
501                                         mesh_animate_count_far < (m_control.range_all ? 200 : 50)) {
502                                 bool animated = mapBlockMesh->animate(faraway, animation_time,
503                                         crack, daynight_ratio);
504                                 if (animated)
505                                         mesh_animate_count++;
506                                 if (animated && faraway)
507                                         mesh_animate_count_far++;
508                         } else {
509                                 mapBlockMesh->decreaseAnimationForceTimer();
510                         }
511                 }
512
513                 /*
514                         Get the meshbuffers of the block
515                 */
516                 {
517                         //MutexAutoLock lock(block->mesh_mutex);
518
519                         MapBlockMesh *mapBlockMesh = block->mesh;
520                         assert(mapBlockMesh);
521
522                         scene::IMesh *mesh = mapBlockMesh->getMesh();
523                         assert(mesh);
524
525                         u32 c = mesh->getMeshBufferCount();
526                         for (u32 i = 0; i < c; i++)
527                         {
528                                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(i);
529
530                                 buf->getMaterial().setFlag(video::EMF_TRILINEAR_FILTER, m_cache_trilinear_filter);
531                                 buf->getMaterial().setFlag(video::EMF_BILINEAR_FILTER, m_cache_bilinear_filter);
532                                 buf->getMaterial().setFlag(video::EMF_ANISOTROPIC_FILTER, m_cache_anistropic_filter);
533                                 buf->getMaterial().setFlag(video::EMF_WIREFRAME, m_control.show_wireframe);
534
535                                 const video::SMaterial& material = buf->getMaterial();
536                                 video::IMaterialRenderer* rnd =
537                                                 driver->getMaterialRenderer(material.MaterialType);
538                                 bool transparent = (rnd && rnd->isTransparent());
539                                 if (transparent == is_transparent_pass) {
540                                         if (buf->getVertexCount() == 0)
541                                                 errorstream << "Block [" << analyze_block(block)
542                                                          << "] contains an empty meshbuf" << std::endl;
543                                         drawbufs.add(buf);
544                                 }
545                         }
546                 }
547         }
548
549         std::vector<MeshBufList> &lists = drawbufs.lists;
550
551         int timecheck_counter = 0;
552         for (std::vector<MeshBufList>::iterator i = lists.begin();
553                         i != lists.end(); ++i) {
554                 timecheck_counter++;
555                 if (timecheck_counter > 50) {
556                         timecheck_counter = 0;
557                         int time2 = time(0);
558                         if (time2 > time1 + 4) {
559                                 infostream << "ClientMap::renderMap(): "
560                                         "Rendering takes ages, returning."
561                                         << std::endl;
562                                 return;
563                         }
564                 }
565
566                 MeshBufList &list = *i;
567
568                 driver->setMaterial(list.m);
569
570                 for (std::vector<scene::IMeshBuffer*>::iterator j = list.bufs.begin();
571                                 j != list.bufs.end(); ++j) {
572                         scene::IMeshBuffer *buf = *j;
573                         driver->drawMeshBuffer(buf);
574                         vertex_count += buf->getVertexCount();
575                         meshbuffer_count++;
576                 }
577
578         }
579         } // ScopeProfiler
580
581         // Log only on solid pass because values are the same
582         if (pass == scene::ESNRP_SOLID) {
583                 g_profiler->avg("CM: animated meshes", mesh_animate_count);
584                 g_profiler->avg("CM: animated meshes (far)", mesh_animate_count_far);
585         }
586
587         g_profiler->avg(prefix + "vertices drawn", vertex_count);
588         if (blocks_had_pass_meshbuf != 0)
589                 g_profiler->avg(prefix + "meshbuffers per block",
590                         (float)meshbuffer_count / (float)blocks_had_pass_meshbuf);
591         if (blocks_drawn != 0)
592                 g_profiler->avg(prefix + "empty blocks (frac)",
593                         (float)blocks_without_stuff / blocks_drawn);
594
595         /*infostream<<"renderMap(): is_transparent_pass="<<is_transparent_pass
596                         <<", rendered "<<vertex_count<<" vertices."<<std::endl;*/
597 }
598
599 static bool getVisibleBrightness(Map *map, v3f p0, v3f dir, float step,
600                 float step_multiplier, float start_distance, float end_distance,
601                 INodeDefManager *ndef, u32 daylight_factor, float sunlight_min_d,
602                 int *result, bool *sunlight_seen)
603 {
604         int brightness_sum = 0;
605         int brightness_count = 0;
606         float distance = start_distance;
607         dir.normalize();
608         v3f pf = p0;
609         pf += dir * distance;
610         int noncount = 0;
611         bool nonlight_seen = false;
612         bool allow_allowing_non_sunlight_propagates = false;
613         bool allow_non_sunlight_propagates = false;
614         // Check content nearly at camera position
615         {
616                 v3s16 p = floatToInt(p0 /*+ dir * 3*BS*/, BS);
617                 MapNode n = map->getNodeNoEx(p);
618                 if(ndef->get(n).param_type == CPT_LIGHT &&
619                                 !ndef->get(n).sunlight_propagates)
620                         allow_allowing_non_sunlight_propagates = true;
621         }
622         // If would start at CONTENT_IGNORE, start closer
623         {
624                 v3s16 p = floatToInt(pf, BS);
625                 MapNode n = map->getNodeNoEx(p);
626                 if(n.getContent() == CONTENT_IGNORE){
627                         float newd = 2*BS;
628                         pf = p0 + dir * 2*newd;
629                         distance = newd;
630                         sunlight_min_d = 0;
631                 }
632         }
633         for(int i=0; distance < end_distance; i++){
634                 pf += dir * step;
635                 distance += step;
636                 step *= step_multiplier;
637
638                 v3s16 p = floatToInt(pf, BS);
639                 MapNode n = map->getNodeNoEx(p);
640                 if(allow_allowing_non_sunlight_propagates && i == 0 &&
641                                 ndef->get(n).param_type == CPT_LIGHT &&
642                                 !ndef->get(n).sunlight_propagates){
643                         allow_non_sunlight_propagates = true;
644                 }
645                 if(ndef->get(n).param_type != CPT_LIGHT ||
646                                 (!ndef->get(n).sunlight_propagates &&
647                                         !allow_non_sunlight_propagates)){
648                         nonlight_seen = true;
649                         noncount++;
650                         if(noncount >= 4)
651                                 break;
652                         continue;
653                 }
654                 if(distance >= sunlight_min_d && *sunlight_seen == false
655                                 && nonlight_seen == false)
656                         if(n.getLight(LIGHTBANK_DAY, ndef) == LIGHT_SUN)
657                                 *sunlight_seen = true;
658                 noncount = 0;
659                 brightness_sum += decode_light(n.getLightBlend(daylight_factor, ndef));
660                 brightness_count++;
661         }
662         *result = 0;
663         if(brightness_count == 0)
664                 return false;
665         *result = brightness_sum / brightness_count;
666         /*std::cerr<<"Sampled "<<brightness_count<<" points; result="
667                         <<(*result)<<std::endl;*/
668         return true;
669 }
670
671 int ClientMap::getBackgroundBrightness(float max_d, u32 daylight_factor,
672                 int oldvalue, bool *sunlight_seen_result)
673 {
674         const bool debugprint = false;
675         INodeDefManager *ndef = m_gamedef->ndef();
676         static v3f z_directions[50] = {
677                 v3f(-100, 0, 0)
678         };
679         static f32 z_offsets[sizeof(z_directions)/sizeof(*z_directions)] = {
680                 -1000,
681         };
682         if(z_directions[0].X < -99){
683                 for(u32 i=0; i<sizeof(z_directions)/sizeof(*z_directions); i++){
684                         z_directions[i] = v3f(
685                                 0.01 * myrand_range(-100, 100),
686                                 1.0,
687                                 0.01 * myrand_range(-100, 100)
688                         );
689                         z_offsets[i] = 0.01 * myrand_range(0,100);
690                 }
691         }
692         if(debugprint)
693                 std::cerr<<"In goes "<<PP(m_camera_direction)<<", out comes ";
694         int sunlight_seen_count = 0;
695         float sunlight_min_d = max_d*0.8;
696         if(sunlight_min_d > 35*BS)
697                 sunlight_min_d = 35*BS;
698         std::vector<int> values;
699         for(u32 i=0; i<sizeof(z_directions)/sizeof(*z_directions); i++){
700                 v3f z_dir = z_directions[i];
701                 z_dir.normalize();
702                 core::CMatrix4<f32> a;
703                 a.buildRotateFromTo(v3f(0,1,0), z_dir);
704                 v3f dir = m_camera_direction;
705                 a.rotateVect(dir);
706                 int br = 0;
707                 float step = BS*1.5;
708                 if(max_d > 35*BS)
709                         step = max_d / 35 * 1.5;
710                 float off = step * z_offsets[i];
711                 bool sunlight_seen_now = false;
712                 bool ok = getVisibleBrightness(this, m_camera_position, dir,
713                                 step, 1.0, max_d*0.6+off, max_d, ndef, daylight_factor,
714                                 sunlight_min_d,
715                                 &br, &sunlight_seen_now);
716                 if(sunlight_seen_now)
717                         sunlight_seen_count++;
718                 if(!ok)
719                         continue;
720                 values.push_back(br);
721                 // Don't try too much if being in the sun is clear
722                 if(sunlight_seen_count >= 20)
723                         break;
724         }
725         int brightness_sum = 0;
726         int brightness_count = 0;
727         std::sort(values.begin(), values.end());
728         u32 num_values_to_use = values.size();
729         if(num_values_to_use >= 10)
730                 num_values_to_use -= num_values_to_use/2;
731         else if(num_values_to_use >= 7)
732                 num_values_to_use -= num_values_to_use/3;
733         u32 first_value_i = (values.size() - num_values_to_use) / 2;
734         if(debugprint){
735                 for(u32 i=0; i < first_value_i; i++)
736                         std::cerr<<values[i]<<" ";
737                 std::cerr<<"[";
738         }
739         for(u32 i=first_value_i; i < first_value_i+num_values_to_use; i++){
740                 if(debugprint)
741                         std::cerr<<values[i]<<" ";
742                 brightness_sum += values[i];
743                 brightness_count++;
744         }
745         if(debugprint){
746                 std::cerr<<"]";
747                 for(u32 i=first_value_i+num_values_to_use; i < values.size(); i++)
748                         std::cerr<<values[i]<<" ";
749         }
750         int ret = 0;
751         if(brightness_count == 0){
752                 MapNode n = getNodeNoEx(floatToInt(m_camera_position, BS));
753                 if(ndef->get(n).param_type == CPT_LIGHT){
754                         ret = decode_light(n.getLightBlend(daylight_factor, ndef));
755                 } else {
756                         ret = oldvalue;
757                 }
758         } else {
759                 /*float pre = (float)brightness_sum / (float)brightness_count;
760                 float tmp = pre;
761                 const float d = 0.2;
762                 pre *= 1.0 + d*2;
763                 pre -= tmp * d;
764                 int preint = pre;
765                 ret = MYMAX(0, MYMIN(255, preint));*/
766                 ret = brightness_sum / brightness_count;
767         }
768         if(debugprint)
769                 std::cerr<<"Result: "<<ret<<" sunlight_seen_count="
770                                 <<sunlight_seen_count<<std::endl;
771         *sunlight_seen_result = (sunlight_seen_count > 0);
772         return ret;
773 }
774
775 void ClientMap::renderPostFx(CameraMode cam_mode)
776 {
777         INodeDefManager *nodemgr = m_gamedef->ndef();
778
779         // Sadly ISceneManager has no "post effects" render pass, in that case we
780         // could just register for that and handle it in renderMap().
781
782         MapNode n = getNodeNoEx(floatToInt(m_camera_position, BS));
783
784         // - If the player is in a solid node, make everything black.
785         // - If the player is in liquid, draw a semi-transparent overlay.
786         // - Do not if player is in third person mode
787         const ContentFeatures& features = nodemgr->get(n);
788         video::SColor post_effect_color = features.post_effect_color;
789         if(features.solidness == 2 && !(g_settings->getBool("noclip") &&
790                         m_gamedef->checkLocalPrivilege("noclip")) &&
791                         cam_mode == CAMERA_MODE_FIRST)
792         {
793                 post_effect_color = video::SColor(255, 0, 0, 0);
794         }
795         if (post_effect_color.getAlpha() != 0)
796         {
797                 // Draw a full-screen rectangle
798                 video::IVideoDriver* driver = SceneManager->getVideoDriver();
799                 v2u32 ss = driver->getScreenSize();
800                 core::rect<s32> rect(0,0, ss.X, ss.Y);
801                 driver->draw2DRectangle(post_effect_color, rect);
802         }
803 }
804
805 void ClientMap::PrintInfo(std::ostream &out)
806 {
807         out<<"ClientMap: ";
808 }
809
810