2012-01-27 11:58:52 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-01-27 11:58:52 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2012-01-27 11:58:52 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-01-27 11:58:52 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-01-27 11:58:52 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VOXELALGORITHMS_HEADER
|
|
|
|
#define VOXELALGORITHMS_HEADER
|
|
|
|
|
|
|
|
#include "voxel.h"
|
2012-01-27 12:24:06 +01:00
|
|
|
#include "mapnode.h"
|
2016-10-27 23:25:44 +02:00
|
|
|
#include "util/container.h"
|
2012-01-27 11:58:52 +01:00
|
|
|
|
2016-10-20 21:41:38 +02:00
|
|
|
class Map;
|
2016-12-10 19:02:44 +01:00
|
|
|
class ServerMap;
|
2016-10-20 21:41:38 +02:00
|
|
|
class MapBlock;
|
2016-12-10 19:02:44 +01:00
|
|
|
class MMVManip;
|
2016-10-20 21:41:38 +02:00
|
|
|
|
2012-01-27 11:58:52 +01:00
|
|
|
namespace voxalgo
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO: Move unspreadLight and spreadLight from VoxelManipulator to here
|
|
|
|
|
|
|
|
void setLight(VoxelManipulator &v, VoxelArea a, u8 light,
|
|
|
|
INodeDefManager *ndef);
|
|
|
|
|
2012-01-27 12:24:06 +01:00
|
|
|
void clearLightAndCollectSources(VoxelManipulator &v, VoxelArea a,
|
|
|
|
enum LightBank bank, INodeDefManager *ndef,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v3s16> & light_sources,
|
|
|
|
std::map<v3s16, u8> & unlight_from);
|
2012-01-27 12:24:06 +01:00
|
|
|
|
2012-01-27 11:58:52 +01:00
|
|
|
struct SunlightPropagateResult
|
|
|
|
{
|
|
|
|
bool bottom_sunlight_valid;
|
|
|
|
|
|
|
|
SunlightPropagateResult(bool bottom_sunlight_valid_):
|
|
|
|
bottom_sunlight_valid(bottom_sunlight_valid_)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
SunlightPropagateResult propagateSunlight(VoxelManipulator &v, VoxelArea a,
|
|
|
|
bool inexistent_top_provides_sunlight,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v3s16> & light_sources,
|
2012-01-27 11:58:52 +01:00
|
|
|
INodeDefManager *ndef);
|
|
|
|
|
2016-10-20 21:41:38 +02:00
|
|
|
/*!
|
|
|
|
* Updates the lighting on the map.
|
|
|
|
* The result will be correct only if
|
2016-10-23 17:51:13 +02:00
|
|
|
* no nodes were changed except the given ones.
|
|
|
|
* Before calling this procedure make sure that all new nodes on
|
|
|
|
* the map have zero light level!
|
2016-10-20 21:41:38 +02:00
|
|
|
*
|
2016-10-23 17:51:13 +02:00
|
|
|
* \param oldnodes contains the MapNodes that were replaced by the new
|
|
|
|
* MapNodes and their positions
|
2016-10-20 21:41:38 +02:00
|
|
|
* \param modified_blocks output, contains all map blocks that
|
|
|
|
* the function modified
|
|
|
|
*/
|
2016-10-23 17:51:13 +02:00
|
|
|
void update_lighting_nodes(
|
2016-10-20 21:41:38 +02:00
|
|
|
Map *map,
|
2016-10-23 17:51:13 +02:00
|
|
|
std::vector<std::pair<v3s16, MapNode> > &oldnodes,
|
2016-10-20 21:41:38 +02:00
|
|
|
std::map<v3s16, MapBlock*> &modified_blocks);
|
|
|
|
|
2016-10-27 23:25:44 +02:00
|
|
|
/*!
|
|
|
|
* Updates borders of the given mapblock.
|
|
|
|
* Only updates if the block was marked with incomplete
|
|
|
|
* lighting and the neighbor is also loaded.
|
|
|
|
*
|
|
|
|
* \param block the block to update
|
|
|
|
* \param modified_blocks output, contains all map blocks that
|
|
|
|
* the function modified
|
|
|
|
*/
|
|
|
|
void update_block_border_lighting(Map *map, MapBlock *block,
|
|
|
|
std::map<v3s16, MapBlock*> &modified_blocks);
|
|
|
|
|
2016-12-10 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* Copies back nodes from a voxel manipulator
|
|
|
|
* to the map and updates lighting.
|
|
|
|
* For server use only.
|
|
|
|
*
|
|
|
|
* \param modified_blocks output, contains all map blocks that
|
|
|
|
* the function modified
|
|
|
|
*/
|
|
|
|
void blit_back_with_light(ServerMap *map, MMVManip *vm,
|
|
|
|
std::map<v3s16, MapBlock*> *modified_blocks);
|
|
|
|
|
2017-03-11 17:07:04 +01:00
|
|
|
/*!
|
|
|
|
* Corrects the light in a map block.
|
|
|
|
* For server use only.
|
|
|
|
*
|
|
|
|
* \param block the block to update
|
|
|
|
*/
|
|
|
|
void repair_block_light(ServerMap *map, MapBlock *block,
|
|
|
|
std::map<v3s16, MapBlock*> *modified_blocks);
|
|
|
|
|
2017-01-04 19:18:40 +01:00
|
|
|
/*!
|
|
|
|
* This class iterates trough voxels that intersect with
|
|
|
|
* a line. The collision detection does not see nodeboxes,
|
|
|
|
* every voxel is a cube and is returned.
|
|
|
|
* This iterator steps to all nodes exactly once.
|
|
|
|
*/
|
|
|
|
struct VoxelLineIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//! Starting position of the line in world coordinates.
|
|
|
|
v3f m_start_position;
|
|
|
|
//! Direction and length of the line in world coordinates.
|
|
|
|
v3f m_line_vector;
|
|
|
|
/*!
|
|
|
|
* Each component stores the next smallest positive number, by
|
|
|
|
* which multiplying the line's vector gives a vector that ends
|
|
|
|
* on the intersection of two nodes.
|
|
|
|
*/
|
2017-06-21 11:51:29 +02:00
|
|
|
v3f m_next_intersection_multi = v3f(10000.0f, 10000.0f, 10000.0f);
|
2017-01-04 19:18:40 +01:00
|
|
|
/*!
|
|
|
|
* Each component stores the smallest positive number, by which
|
|
|
|
* m_next_intersection_multi's components can be increased.
|
|
|
|
*/
|
2017-06-21 11:51:29 +02:00
|
|
|
v3f m_intersection_multi_inc = v3f(10000.0f, 10000.0f, 10000.0f);
|
2017-01-04 19:18:40 +01:00
|
|
|
/*!
|
|
|
|
* Direction of the line. Each component can be -1 or 1 (if a
|
|
|
|
* component of the line's vector is 0, then there will be 1).
|
|
|
|
*/
|
2017-06-21 11:51:29 +02:00
|
|
|
v3s16 m_step_directions = v3s16(1, 1, 1);
|
2017-01-04 19:18:40 +01:00
|
|
|
//! Position of the current node.
|
|
|
|
v3s16 m_current_node_pos;
|
|
|
|
//! If true, the next node will intersect the line, too.
|
|
|
|
bool m_has_next;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Creates a voxel line iterator with the given line.
|
|
|
|
* @param start_position starting point of the line
|
|
|
|
* in voxel coordinates
|
|
|
|
* @param line_vector length and direction of the
|
|
|
|
* line in voxel coordinates. start_position+line_vector
|
|
|
|
* is the end of the line
|
|
|
|
*/
|
|
|
|
VoxelLineIterator(const v3f &start_position,const v3f &line_vector);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Steps to the next voxel.
|
|
|
|
* Updates m_current_node_pos and
|
|
|
|
* m_previous_node_pos.
|
|
|
|
* Note that it works even if hasNext() is false,
|
|
|
|
* continuing the line as a ray.
|
|
|
|
*/
|
|
|
|
void next();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns true if the next voxel intersects the given line.
|
|
|
|
*/
|
|
|
|
inline bool hasNext() const { return m_has_next; }
|
|
|
|
};
|
|
|
|
|
2012-01-27 11:58:52 +01:00
|
|
|
} // namespace voxalgo
|
|
|
|
|
2017-01-04 19:18:40 +01:00
|
|
|
|
|
|
|
|
2012-01-27 11:58:52 +01:00
|
|
|
#endif
|
|
|
|
|