2012-03-15 23:25:18 +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-03-15 23:25:18 +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-03-15 23:25:18 +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-03-15 23:25:18 +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-03-15 23:25:18 +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 CLIENTMAP_HEADER
|
|
|
|
#define CLIENTMAP_HEADER
|
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2012-03-15 23:25:18 +01:00
|
|
|
#include "map.h"
|
2014-04-27 16:09:21 +02:00
|
|
|
#include "camera.h"
|
2012-12-20 18:19:49 +01:00
|
|
|
#include <set>
|
|
|
|
#include <map>
|
2012-03-15 23:25:18 +01:00
|
|
|
|
|
|
|
struct MapDrawControl
|
|
|
|
{
|
|
|
|
// Overrides limits by drawing everything
|
2017-06-16 11:25:52 +02:00
|
|
|
bool range_all = false;
|
2012-03-15 23:25:18 +01:00
|
|
|
// Wanted drawing range
|
2017-06-16 11:25:52 +02:00
|
|
|
float wanted_range = 0.0f;
|
2012-03-15 23:25:18 +01:00
|
|
|
// Maximum number of blocks to draw
|
2017-06-16 11:25:52 +02:00
|
|
|
u32 wanted_max_blocks = 0;
|
2016-11-04 03:14:32 +01:00
|
|
|
// show a wire frame for debugging
|
2017-06-16 11:25:52 +02:00
|
|
|
bool show_wireframe = false;
|
2012-03-15 23:25:18 +01:00
|
|
|
// Number of blocks rendered is written here by the renderer
|
2017-06-16 11:25:52 +02:00
|
|
|
u32 blocks_drawn = 0;
|
2012-03-15 23:25:18 +01:00
|
|
|
// Number of blocks that would have been drawn in wanted_range
|
2017-06-16 11:25:52 +02:00
|
|
|
u32 blocks_would_have_drawn = 0;
|
2013-08-03 17:46:18 +02:00
|
|
|
// Distance to the farthest block drawn
|
2017-06-16 11:25:52 +02:00
|
|
|
float farthest_drawn = 0;
|
2012-03-15 23:25:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class Client;
|
|
|
|
class ITextureSource;
|
|
|
|
|
|
|
|
/*
|
|
|
|
ClientMap
|
2017-01-09 20:39:22 +01:00
|
|
|
|
2012-03-15 23:25:18 +01:00
|
|
|
This is the only map class that is able to render itself on screen.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ClientMap : public Map, public scene::ISceneNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClientMap(
|
|
|
|
Client *client,
|
|
|
|
MapDrawControl &control,
|
|
|
|
s32 id
|
|
|
|
);
|
|
|
|
|
|
|
|
~ClientMap();
|
|
|
|
|
|
|
|
s32 mapType() const
|
|
|
|
{
|
|
|
|
return MAPTYPE_CLIENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drop()
|
|
|
|
{
|
|
|
|
ISceneNode::drop();
|
|
|
|
}
|
|
|
|
|
2014-01-26 11:40:21 +01:00
|
|
|
void updateCamera(v3f pos, v3f dir, f32 fov, v3s16 offset)
|
2012-03-15 23:25:18 +01:00
|
|
|
{
|
|
|
|
m_camera_position = pos;
|
|
|
|
m_camera_direction = dir;
|
|
|
|
m_camera_fov = fov;
|
2014-01-26 11:40:21 +01:00
|
|
|
m_camera_offset = offset;
|
2012-03-15 23:25:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Forcefully get a sector from somewhere
|
|
|
|
*/
|
|
|
|
MapSector * emergeSector(v2s16 p);
|
|
|
|
|
|
|
|
//void deSerializeSector(v2s16 p2d, std::istream &is);
|
|
|
|
|
|
|
|
/*
|
|
|
|
ISceneNode methods
|
|
|
|
*/
|
|
|
|
|
|
|
|
virtual void OnRegisterSceneNode();
|
|
|
|
|
|
|
|
virtual void render()
|
|
|
|
{
|
|
|
|
video::IVideoDriver* driver = SceneManager->getVideoDriver();
|
|
|
|
driver->setTransform(video::ETS_WORLD, AbsoluteTransformation);
|
|
|
|
renderMap(driver, SceneManager->getSceneNodeRenderPass());
|
|
|
|
}
|
2017-01-09 20:39:22 +01:00
|
|
|
|
2016-02-11 15:21:21 +01:00
|
|
|
virtual const aabb3f &getBoundingBox() const
|
2012-03-15 23:25:18 +01:00
|
|
|
{
|
|
|
|
return m_box;
|
|
|
|
}
|
2017-01-09 20:39:22 +01:00
|
|
|
|
|
|
|
void getBlocksInViewRange(v3s16 cam_pos_nodes,
|
2016-02-17 03:39:21 +01:00
|
|
|
v3s16 *p_blocks_min, v3s16 *p_blocks_max);
|
2012-09-04 08:48:26 +02:00
|
|
|
void updateDrawList(video::IVideoDriver* driver);
|
2012-03-15 23:25:18 +01:00
|
|
|
void renderMap(video::IVideoDriver* driver, s32 pass);
|
|
|
|
|
2012-03-16 15:34:30 +01:00
|
|
|
int getBackgroundBrightness(float max_d, u32 daylight_factor,
|
|
|
|
int oldvalue, bool *sunlight_seen_result);
|
|
|
|
|
2014-04-27 16:09:21 +02:00
|
|
|
void renderPostFx(CameraMode cam_mode);
|
2012-03-15 23:25:18 +01:00
|
|
|
|
|
|
|
// For debug printing
|
|
|
|
virtual void PrintInfo(std::ostream &out);
|
2016-11-30 09:13:14 +01:00
|
|
|
|
|
|
|
const MapDrawControl & getControl() const { return m_control; }
|
|
|
|
f32 getCameraFov() const { return m_camera_fov; }
|
2012-03-15 23:25:18 +01:00
|
|
|
private:
|
|
|
|
Client *m_client;
|
2017-01-09 20:39:22 +01:00
|
|
|
|
2017-06-16 11:25:52 +02:00
|
|
|
aabb3f m_box = aabb3f(-BS * 1000000, -BS * 1000000, -BS * 1000000,
|
|
|
|
BS * 1000000, BS * 1000000, BS * 1000000);
|
2017-01-09 20:39:22 +01:00
|
|
|
|
2012-03-15 23:25:18 +01:00
|
|
|
MapDrawControl &m_control;
|
|
|
|
|
|
|
|
v3f m_camera_position;
|
2017-06-16 11:25:52 +02:00
|
|
|
v3f m_camera_direction = v3f(0,0,1);
|
|
|
|
f32 m_camera_fov = M_PI;
|
2014-01-26 11:40:21 +01:00
|
|
|
v3s16 m_camera_offset;
|
2012-09-04 08:48:26 +02:00
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
std::map<v3s16, MapBlock*> m_drawlist;
|
2017-01-09 20:39:22 +01:00
|
|
|
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v2s16> m_last_drawn_sectors;
|
2014-12-06 15:37:37 +01:00
|
|
|
|
|
|
|
bool m_cache_trilinear_filter;
|
|
|
|
bool m_cache_bilinear_filter;
|
|
|
|
bool m_cache_anistropic_filter;
|
2012-03-15 23:25:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|