2011-11-13 03:57:55 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-11-13 03:57:55 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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
|
2011-11-13 03:57:55 -05: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-11-13 03:57:55 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-11-13 03:57:55 -05:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2011-11-14 14:41:30 -05:00
|
|
|
#ifndef NODEDEF_HEADER
|
|
|
|
#define NODEDEF_HEADER
|
2011-11-13 03:57:55 -05:00
|
|
|
|
2012-06-16 21:00:31 -04:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2011-11-13 03:57:55 -05:00
|
|
|
#include <string>
|
2011-11-15 12:58:36 -05:00
|
|
|
#include <iostream>
|
2012-02-28 12:45:23 -05:00
|
|
|
#include <map>
|
2013-03-30 19:12:23 -04:00
|
|
|
#include <list>
|
2015-05-08 01:21:23 -04:00
|
|
|
#include "util/numeric.h"
|
2011-11-13 03:57:55 -05:00
|
|
|
#include "mapnode.h"
|
|
|
|
#ifndef SERVER
|
2015-03-05 05:52:57 -05:00
|
|
|
#include "client/tile.h"
|
2014-05-14 17:19:31 -04:00
|
|
|
#include "shader.h"
|
2017-01-09 14:39:22 -05:00
|
|
|
class Client;
|
2011-11-13 03:57:55 -05:00
|
|
|
#endif
|
2012-03-04 07:22:35 -05:00
|
|
|
#include "itemgroup.h"
|
2012-03-23 14:23:03 -04:00
|
|
|
#include "sound.h" // SimpleSoundSpec
|
2012-06-16 19:40:36 -04:00
|
|
|
#include "constants.h" // BS
|
2016-12-23 07:48:32 -05:00
|
|
|
#include "tileanimation.h"
|
2012-06-16 19:40:36 -04:00
|
|
|
|
2015-04-16 04:12:26 -04:00
|
|
|
class INodeDefManager;
|
2012-01-12 00:10:39 -05:00
|
|
|
class IItemDefManager;
|
2011-11-13 17:19:48 -05:00
|
|
|
class ITextureSource;
|
2014-05-14 17:19:31 -04:00
|
|
|
class IShaderSource;
|
2011-11-15 12:58:36 -05:00
|
|
|
class IGameDef;
|
2015-04-16 04:12:26 -04:00
|
|
|
class NodeResolver;
|
2011-11-13 03:57:55 -05:00
|
|
|
|
2013-03-30 19:12:23 -04:00
|
|
|
typedef std::list<std::pair<content_t, int> > GroupItems;
|
|
|
|
|
2011-11-13 03:57:55 -05:00
|
|
|
enum ContentParamType
|
|
|
|
{
|
|
|
|
CPT_NONE,
|
|
|
|
CPT_LIGHT,
|
2012-01-20 18:11:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ContentParamType2
|
|
|
|
{
|
|
|
|
CPT2_NONE,
|
|
|
|
// Need 8-bit param2
|
|
|
|
CPT2_FULL,
|
|
|
|
// Flowing liquid properties
|
|
|
|
CPT2_FLOWINGLIQUID,
|
2011-11-13 03:57:55 -05:00
|
|
|
// Direction for chests and furnaces and such
|
2012-01-20 18:11:44 -05:00
|
|
|
CPT2_FACEDIR,
|
|
|
|
// Direction for signs, torches and such
|
|
|
|
CPT2_WALLMOUNTED,
|
2013-07-13 13:48:14 -04:00
|
|
|
// Block level like FLOWINGLIQUID
|
|
|
|
CPT2_LEVELED,
|
2015-10-02 17:36:28 -04:00
|
|
|
// 2D rotation for things like plants
|
|
|
|
CPT2_DEGROTATE,
|
2015-12-11 01:58:11 -05:00
|
|
|
// Mesh options for plants
|
2017-01-12 09:46:30 -05:00
|
|
|
CPT2_MESHOPTIONS,
|
|
|
|
// Index for palette
|
|
|
|
CPT2_COLOR,
|
|
|
|
// 3 bits of palette index, then facedir
|
|
|
|
CPT2_COLORED_FACEDIR,
|
|
|
|
// 5 bits of palette index, then wallmounted
|
|
|
|
CPT2_COLORED_WALLMOUNTED
|
2011-11-13 03:57:55 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
enum LiquidType
|
|
|
|
{
|
|
|
|
LIQUID_NONE,
|
|
|
|
LIQUID_FLOWING,
|
2013-07-13 13:48:14 -04:00
|
|
|
LIQUID_SOURCE,
|
2011-11-13 03:57:55 -05:00
|
|
|
};
|
|
|
|
|
2011-11-13 05:31:05 -05:00
|
|
|
enum NodeBoxType
|
|
|
|
{
|
|
|
|
NODEBOX_REGULAR, // Regular block; allows buildable_to
|
2012-03-18 23:25:09 -04:00
|
|
|
NODEBOX_FIXED, // Static separately defined box(es)
|
2012-01-20 18:11:44 -05:00
|
|
|
NODEBOX_WALLMOUNTED, // Box for wall mounted nodes; (top, bottom, side)
|
2013-07-13 13:48:14 -04:00
|
|
|
NODEBOX_LEVELED, // Same as fixed, but with dynamic height from param2. for snow, ...
|
Nodebox: Allow nodeboxes to "connect"
We introduce a new nodebox type "connected", and allow these nodes to
have optional nodeboxes that connect it to other connecting nodeboxes.
This is all done at scenedraw time in the client. The client will
inspect the surrounding nodes and if they are to be connected to,
it will draw the appropriate connecting nodeboxes to make those
connections.
In the node_box definition, we have to specify separate nodeboxes for
each valid connection. This allows us to make nodes that connect only
horizontally (the common case) by providing optional nodeboxes for +x,
-x, +z, -z directions. Or this allows us to make wires that can connect
up and down, by providing nodeboxes that connect it up and down (+y,
-y) as well.
The optional nodeboxes can be arrays. They are named "connect_top,
"connect_bottom", "connect_front", "connect_left", "connect_back" and
"connect_right". Here, "front" means the south facing side of the node
that has facedir = 0.
Additionally, a "fixed" nodebox list present will always be drawn,
so one can make a central post, for instance. This "fixed" nodebox
can be omitted, or it can be an array of nodeboxes.
Collision boxes are also updated in exactly the same fashion, which
allows you to walk over the upper extremities of the individual
node boxes, or stand really close to them. You can also walk up
node noxes that are small in height, all as expected, and unlike the
NDT_FENCELIKE nodes.
I've posted a screenshot demonstrating the flexibility at
http://i.imgur.com/zaJq8jo.png
In the screenshot, all connecting nodes are of this new subtype.
Transparent textures render incorrectly, Which I don't think is
related to this text, as other nodeboxes also have issues with this.
A protocol bump is performed in order to be able to send older clients
a nodeblock that is usable for them. In order to avoid abuse of users
we send older clients a "full-size" node, so that it's impossible for
them to try and walk through a fence or wall that's created in this
fashion. This was tested with a pre-bump client connected against a
server running the new protocol.
These nodes connect to other nodes, and you can select which ones
those are by specifying node names (or group names) in the
connects_to string array:
connects_to = { "group:fence", "default:wood" }
By default, nodes do not connect to anything, allowing you to create
nodes that always have to be paired in order to connect. lua_api.txt
is updated to reflect the extension to the node_box API.
Example lua code needed to generate these nodes can be found here:
https://gist.github.com/sofar/b381c8c192c8e53e6062
2016-02-25 03:16:31 -05:00
|
|
|
NODEBOX_CONNECTED, // optionally draws nodeboxes if a neighbor node attaches
|
2011-11-13 05:31:05 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct NodeBox
|
|
|
|
{
|
|
|
|
enum NodeBoxType type;
|
|
|
|
// NODEBOX_REGULAR (no parameters)
|
|
|
|
// NODEBOX_FIXED
|
2012-03-18 23:25:09 -04:00
|
|
|
std::vector<aabb3f> fixed;
|
2011-11-13 05:31:05 -05:00
|
|
|
// NODEBOX_WALLMOUNTED
|
2012-03-18 23:25:09 -04:00
|
|
|
aabb3f wall_top;
|
|
|
|
aabb3f wall_bottom;
|
|
|
|
aabb3f wall_side; // being at the -X side
|
Nodebox: Allow nodeboxes to "connect"
We introduce a new nodebox type "connected", and allow these nodes to
have optional nodeboxes that connect it to other connecting nodeboxes.
This is all done at scenedraw time in the client. The client will
inspect the surrounding nodes and if they are to be connected to,
it will draw the appropriate connecting nodeboxes to make those
connections.
In the node_box definition, we have to specify separate nodeboxes for
each valid connection. This allows us to make nodes that connect only
horizontally (the common case) by providing optional nodeboxes for +x,
-x, +z, -z directions. Or this allows us to make wires that can connect
up and down, by providing nodeboxes that connect it up and down (+y,
-y) as well.
The optional nodeboxes can be arrays. They are named "connect_top,
"connect_bottom", "connect_front", "connect_left", "connect_back" and
"connect_right". Here, "front" means the south facing side of the node
that has facedir = 0.
Additionally, a "fixed" nodebox list present will always be drawn,
so one can make a central post, for instance. This "fixed" nodebox
can be omitted, or it can be an array of nodeboxes.
Collision boxes are also updated in exactly the same fashion, which
allows you to walk over the upper extremities of the individual
node boxes, or stand really close to them. You can also walk up
node noxes that are small in height, all as expected, and unlike the
NDT_FENCELIKE nodes.
I've posted a screenshot demonstrating the flexibility at
http://i.imgur.com/zaJq8jo.png
In the screenshot, all connecting nodes are of this new subtype.
Transparent textures render incorrectly, Which I don't think is
related to this text, as other nodeboxes also have issues with this.
A protocol bump is performed in order to be able to send older clients
a nodeblock that is usable for them. In order to avoid abuse of users
we send older clients a "full-size" node, so that it's impossible for
them to try and walk through a fence or wall that's created in this
fashion. This was tested with a pre-bump client connected against a
server running the new protocol.
These nodes connect to other nodes, and you can select which ones
those are by specifying node names (or group names) in the
connects_to string array:
connects_to = { "group:fence", "default:wood" }
By default, nodes do not connect to anything, allowing you to create
nodes that always have to be paired in order to connect. lua_api.txt
is updated to reflect the extension to the node_box API.
Example lua code needed to generate these nodes can be found here:
https://gist.github.com/sofar/b381c8c192c8e53e6062
2016-02-25 03:16:31 -05:00
|
|
|
// NODEBOX_CONNECTED
|
|
|
|
std::vector<aabb3f> connect_top;
|
|
|
|
std::vector<aabb3f> connect_bottom;
|
|
|
|
std::vector<aabb3f> connect_front;
|
|
|
|
std::vector<aabb3f> connect_left;
|
|
|
|
std::vector<aabb3f> connect_back;
|
|
|
|
std::vector<aabb3f> connect_right;
|
2011-11-13 05:31:05 -05:00
|
|
|
|
2012-03-18 23:25:09 -04:00
|
|
|
NodeBox()
|
|
|
|
{ reset(); }
|
2011-11-15 12:58:36 -05:00
|
|
|
|
2012-03-18 23:25:09 -04:00
|
|
|
void reset();
|
2013-08-01 16:50:58 -04:00
|
|
|
void serialize(std::ostream &os, u16 protocol_version) const;
|
2011-11-15 12:58:36 -05:00
|
|
|
void deSerialize(std::istream &is);
|
2011-11-13 05:31:05 -05:00
|
|
|
};
|
|
|
|
|
2011-11-13 03:57:55 -05:00
|
|
|
struct MapNode;
|
|
|
|
class NodeMetadata;
|
|
|
|
|
2016-05-22 14:33:06 -04:00
|
|
|
enum LeavesStyle {
|
|
|
|
LEAVES_FANCY,
|
|
|
|
LEAVES_SIMPLE,
|
|
|
|
LEAVES_OPAQUE,
|
|
|
|
};
|
|
|
|
|
|
|
|
class TextureSettings {
|
|
|
|
public:
|
|
|
|
LeavesStyle leaves_style;
|
|
|
|
bool opaque_water;
|
|
|
|
bool connected_glass;
|
|
|
|
bool use_normal_texture;
|
|
|
|
bool enable_mesh_cache;
|
|
|
|
bool enable_minimap;
|
|
|
|
|
|
|
|
TextureSettings() {}
|
|
|
|
|
|
|
|
void readSettings();
|
|
|
|
};
|
|
|
|
|
2016-01-23 22:53:27 -05:00
|
|
|
enum NodeDrawType
|
|
|
|
{
|
|
|
|
NDT_NORMAL, // A basic solid block
|
|
|
|
NDT_AIRLIKE, // Nothing is drawn
|
|
|
|
NDT_LIQUID, // Do not draw face towards same kind of flowing/source liquid
|
|
|
|
NDT_FLOWINGLIQUID, // A very special kind of thing
|
|
|
|
NDT_GLASSLIKE, // Glass-like, don't draw faces towards other glass
|
|
|
|
NDT_ALLFACES, // Leaves-like, draw all faces no matter what
|
|
|
|
NDT_ALLFACES_OPTIONAL, // Fancy -> allfaces, fast -> normal
|
|
|
|
NDT_TORCHLIKE,
|
|
|
|
NDT_SIGNLIKE,
|
|
|
|
NDT_PLANTLIKE,
|
|
|
|
NDT_FENCELIKE,
|
|
|
|
NDT_RAILLIKE,
|
|
|
|
NDT_NODEBOX,
|
|
|
|
NDT_GLASSLIKE_FRAMED, // Glass-like, draw connected frames and all all
|
|
|
|
// visible faces
|
|
|
|
// uses 2 textures, one for frames, second for faces
|
|
|
|
NDT_FIRELIKE, // Draw faces slightly rotated and only on connecting nodes,
|
|
|
|
NDT_GLASSLIKE_FRAMED_OPTIONAL, // enabled -> connected, disabled -> Glass-like
|
|
|
|
// uses 2 textures, one for frames, second for faces
|
|
|
|
NDT_MESH, // Uses static meshes
|
|
|
|
};
|
|
|
|
|
2012-06-15 20:40:45 -04:00
|
|
|
/*
|
|
|
|
Stand-alone definition of a TileSpec (basically a server-side TileSpec)
|
|
|
|
*/
|
2016-12-23 07:48:32 -05:00
|
|
|
|
2012-06-15 20:40:45 -04:00
|
|
|
struct TileDef
|
2011-11-15 08:32:09 -05:00
|
|
|
{
|
2012-06-15 20:40:45 -04:00
|
|
|
std::string name;
|
|
|
|
bool backface_culling; // Takes effect only in special cases
|
2015-07-16 09:36:48 -04:00
|
|
|
bool tileable_horizontal;
|
|
|
|
bool tileable_vertical;
|
2017-01-12 09:46:30 -05:00
|
|
|
//! If true, the tile has its own color.
|
|
|
|
bool has_color;
|
|
|
|
//! The color of the tile.
|
|
|
|
video::SColor color;
|
|
|
|
|
2016-12-23 07:48:32 -05:00
|
|
|
struct TileAnimationParams animation;
|
2012-06-15 20:40:45 -04:00
|
|
|
|
|
|
|
TileDef()
|
|
|
|
{
|
|
|
|
name = "";
|
|
|
|
backface_culling = true;
|
2015-07-16 09:36:48 -04:00
|
|
|
tileable_horizontal = true;
|
|
|
|
tileable_vertical = true;
|
2017-01-12 09:46:30 -05:00
|
|
|
has_color = false;
|
|
|
|
color = video::SColor(0xFFFFFFFF);
|
2016-11-14 09:28:06 -05:00
|
|
|
animation.type = TAT_NONE;
|
2012-06-15 20:40:45 -04:00
|
|
|
}
|
2011-11-15 12:58:36 -05:00
|
|
|
|
2013-01-24 19:37:19 -05:00
|
|
|
void serialize(std::ostream &os, u16 protocol_version) const;
|
2016-01-23 22:53:27 -05:00
|
|
|
void deSerialize(std::istream &is, const u8 contentfeatures_version, const NodeDrawType drawtype);
|
2011-11-15 08:32:09 -05:00
|
|
|
};
|
|
|
|
|
2014-07-25 01:35:55 -04:00
|
|
|
#define CF_SPECIAL_COUNT 6
|
2011-11-15 08:32:09 -05:00
|
|
|
|
2011-11-13 03:57:55 -05:00
|
|
|
struct ContentFeatures
|
|
|
|
{
|
2011-11-15 12:58:36 -05:00
|
|
|
/*
|
|
|
|
Cached stuff
|
2017-01-12 09:46:30 -05:00
|
|
|
*/
|
2011-11-13 03:57:55 -05:00
|
|
|
#ifndef SERVER
|
2011-11-15 07:43:15 -05:00
|
|
|
// 0 1 2 3 4 5
|
2014-12-11 00:41:54 -05:00
|
|
|
// up down right left back front
|
2011-11-13 03:57:55 -05:00
|
|
|
TileSpec tiles[6];
|
2012-03-13 13:56:12 -04:00
|
|
|
// Special tiles
|
2011-11-15 07:43:15 -05:00
|
|
|
// - Currently used for flowing liquids
|
2012-03-13 13:56:12 -04:00
|
|
|
TileSpec special_tiles[CF_SPECIAL_COUNT];
|
2011-11-15 12:58:36 -05:00
|
|
|
u8 solidness; // Used when choosing which face is drawn
|
|
|
|
u8 visual_solidness; // When solidness=0, this tells how it looks like
|
|
|
|
bool backface_culling;
|
2011-11-13 03:57:55 -05:00
|
|
|
#endif
|
2012-01-12 00:10:39 -05:00
|
|
|
|
2012-06-05 16:51:37 -04:00
|
|
|
// Server-side cached callback existence for fast skipping
|
|
|
|
bool has_on_construct;
|
|
|
|
bool has_on_destruct;
|
|
|
|
bool has_after_destruct;
|
|
|
|
|
2011-11-15 12:58:36 -05:00
|
|
|
/*
|
|
|
|
Actual data
|
2017-01-12 09:46:30 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --- GENERAL PROPERTIES ---
|
2011-11-15 12:58:36 -05:00
|
|
|
|
2011-11-16 02:36:19 -05:00
|
|
|
std::string name; // "" = undefined node
|
2012-03-04 07:22:35 -05:00
|
|
|
ItemGroupList groups; // Same as in itemdef
|
2017-01-12 09:46:30 -05:00
|
|
|
// Type of MapNode::param1
|
|
|
|
ContentParamType param_type;
|
|
|
|
// Type of MapNode::param2
|
|
|
|
ContentParamType2 param_type_2;
|
|
|
|
|
|
|
|
// --- VISUAL PROPERTIES ---
|
2011-11-16 02:36:19 -05:00
|
|
|
|
2011-11-15 12:58:36 -05:00
|
|
|
enum NodeDrawType drawtype;
|
2014-10-14 22:13:53 -04:00
|
|
|
std::string mesh;
|
|
|
|
#ifndef SERVER
|
|
|
|
scene::IMesh *mesh_ptr[24];
|
2015-06-21 22:34:56 -04:00
|
|
|
video::SColor minimap_color;
|
2014-12-11 00:41:54 -05:00
|
|
|
#endif
|
2011-11-15 12:58:36 -05:00
|
|
|
float visual_scale; // Misc. scale parameter
|
2012-06-15 20:40:45 -04:00
|
|
|
TileDef tiledef[6];
|
|
|
|
TileDef tiledef_special[CF_SPECIAL_COUNT]; // eg. flowing liquid
|
2017-01-12 09:46:30 -05:00
|
|
|
// If 255, the node is opaque.
|
|
|
|
// Otherwise it uses texture alpha.
|
2011-11-15 07:43:15 -05:00
|
|
|
u8 alpha;
|
2017-01-12 09:46:30 -05:00
|
|
|
// The color of the node.
|
|
|
|
video::SColor color;
|
|
|
|
std::string palette_name;
|
|
|
|
std::vector<video::SColor> *palette;
|
|
|
|
// Used for waving leaves/plants
|
|
|
|
u8 waving;
|
|
|
|
// for NDT_CONNECTED pairing
|
|
|
|
u8 connect_sides;
|
|
|
|
std::vector<std::string> connects_to;
|
|
|
|
std::set<content_t> connects_to_ids;
|
2011-11-15 12:58:36 -05:00
|
|
|
// Post effect color, drawn when the camera is inside the node.
|
|
|
|
video::SColor post_effect_color;
|
2017-01-12 09:46:30 -05:00
|
|
|
// Flowing liquid or snow, value = default level
|
|
|
|
u8 leveled;
|
|
|
|
|
|
|
|
// --- LIGHTING-RELATED ---
|
2015-06-21 22:34:56 -04:00
|
|
|
|
2011-11-13 03:57:55 -05:00
|
|
|
bool light_propagates;
|
|
|
|
bool sunlight_propagates;
|
2017-01-12 09:46:30 -05:00
|
|
|
// Amount of light the node emits
|
|
|
|
u8 light_source;
|
|
|
|
|
|
|
|
// --- MAP GENERATION ---
|
|
|
|
|
|
|
|
// True for all ground-like things like stone and mud, false for eg. trees
|
|
|
|
bool is_ground_content;
|
|
|
|
|
|
|
|
// --- INTERACTION PROPERTIES ---
|
|
|
|
|
2011-11-13 03:57:55 -05:00
|
|
|
// This is used for collision detection.
|
|
|
|
// Also for general solidness queries.
|
|
|
|
bool walkable;
|
|
|
|
// Player can point to these
|
|
|
|
bool pointable;
|
|
|
|
// Player can dig these
|
|
|
|
bool diggable;
|
|
|
|
// Player can climb these
|
|
|
|
bool climbable;
|
|
|
|
// Player can build on these
|
|
|
|
bool buildable_to;
|
2013-01-27 04:33:25 -05:00
|
|
|
// Player cannot build to these (placement prediction disabled)
|
|
|
|
bool rightclickable;
|
2017-01-12 09:46:30 -05:00
|
|
|
u32 damage_per_second;
|
|
|
|
|
|
|
|
// --- LIQUID PROPERTIES ---
|
|
|
|
|
2011-11-13 04:07:01 -05:00
|
|
|
// Whether the node is non-liquid, source liquid or flowing liquid
|
|
|
|
enum LiquidType liquid_type;
|
2011-11-13 03:57:55 -05:00
|
|
|
// If the content is liquid, this is the flowing version of the liquid.
|
2011-11-25 10:00:50 -05:00
|
|
|
std::string liquid_alternative_flowing;
|
2011-11-13 03:57:55 -05:00
|
|
|
// If the content is liquid, this is the source version of the liquid.
|
2011-11-25 10:00:50 -05:00
|
|
|
std::string liquid_alternative_source;
|
2011-11-13 03:57:55 -05:00
|
|
|
// Viscosity for fluid flow, ranging from 1 to 7, with
|
|
|
|
// 1 giving almost instantaneous propagation and 7 being
|
|
|
|
// the slowest possible
|
|
|
|
u8 liquid_viscosity;
|
2012-09-07 12:48:12 -04:00
|
|
|
// Is liquid renewable (new liquid source will be created between 2 existing)
|
|
|
|
bool liquid_renewable;
|
2013-07-16 10:28:18 -04:00
|
|
|
// Number of flowing liquids surrounding source
|
|
|
|
u8 liquid_range;
|
2013-08-01 12:36:11 -04:00
|
|
|
u8 drowning;
|
2017-01-12 09:46:30 -05:00
|
|
|
// Liquids flow into and replace node
|
|
|
|
bool floodable;
|
|
|
|
|
|
|
|
// --- NODEBOXES ---
|
|
|
|
|
2012-03-18 23:25:09 -04:00
|
|
|
NodeBox node_box;
|
2011-11-13 05:31:05 -05:00
|
|
|
NodeBox selection_box;
|
2014-10-18 12:46:16 -04:00
|
|
|
NodeBox collision_box;
|
2011-11-13 03:57:55 -05:00
|
|
|
|
2017-01-12 09:46:30 -05:00
|
|
|
// --- SOUND PROPERTIES ---
|
|
|
|
|
2012-03-23 14:23:03 -04:00
|
|
|
SimpleSoundSpec sound_footstep;
|
2012-03-24 05:10:28 -04:00
|
|
|
SimpleSoundSpec sound_dig;
|
2012-03-23 21:28:08 -04:00
|
|
|
SimpleSoundSpec sound_dug;
|
2012-03-23 14:23:03 -04:00
|
|
|
|
2017-01-12 09:46:30 -05:00
|
|
|
// --- LEGACY ---
|
|
|
|
|
|
|
|
// Compatibility with old maps
|
|
|
|
// Set to true if paramtype used to be 'facedir_simple'
|
|
|
|
bool legacy_facedir_simple;
|
|
|
|
// Set to true if wall_mounted used to be set to true
|
|
|
|
bool legacy_wallmounted;
|
Nodebox: Allow nodeboxes to "connect"
We introduce a new nodebox type "connected", and allow these nodes to
have optional nodeboxes that connect it to other connecting nodeboxes.
This is all done at scenedraw time in the client. The client will
inspect the surrounding nodes and if they are to be connected to,
it will draw the appropriate connecting nodeboxes to make those
connections.
In the node_box definition, we have to specify separate nodeboxes for
each valid connection. This allows us to make nodes that connect only
horizontally (the common case) by providing optional nodeboxes for +x,
-x, +z, -z directions. Or this allows us to make wires that can connect
up and down, by providing nodeboxes that connect it up and down (+y,
-y) as well.
The optional nodeboxes can be arrays. They are named "connect_top,
"connect_bottom", "connect_front", "connect_left", "connect_back" and
"connect_right". Here, "front" means the south facing side of the node
that has facedir = 0.
Additionally, a "fixed" nodebox list present will always be drawn,
so one can make a central post, for instance. This "fixed" nodebox
can be omitted, or it can be an array of nodeboxes.
Collision boxes are also updated in exactly the same fashion, which
allows you to walk over the upper extremities of the individual
node boxes, or stand really close to them. You can also walk up
node noxes that are small in height, all as expected, and unlike the
NDT_FENCELIKE nodes.
I've posted a screenshot demonstrating the flexibility at
http://i.imgur.com/zaJq8jo.png
In the screenshot, all connecting nodes are of this new subtype.
Transparent textures render incorrectly, Which I don't think is
related to this text, as other nodeboxes also have issues with this.
A protocol bump is performed in order to be able to send older clients
a nodeblock that is usable for them. In order to avoid abuse of users
we send older clients a "full-size" node, so that it's impossible for
them to try and walk through a fence or wall that's created in this
fashion. This was tested with a pre-bump client connected against a
server running the new protocol.
These nodes connect to other nodes, and you can select which ones
those are by specifying node names (or group names) in the
connects_to string array:
connects_to = { "group:fence", "default:wood" }
By default, nodes do not connect to anything, allowing you to create
nodes that always have to be paired in order to connect. lua_api.txt
is updated to reflect the extension to the node_box API.
Example lua code needed to generate these nodes can be found here:
https://gist.github.com/sofar/b381c8c192c8e53e6062
2016-02-25 03:16:31 -05:00
|
|
|
|
2011-11-15 12:58:36 -05:00
|
|
|
/*
|
|
|
|
Methods
|
|
|
|
*/
|
2014-12-11 00:41:54 -05:00
|
|
|
|
2011-11-15 12:58:36 -05:00
|
|
|
ContentFeatures();
|
|
|
|
~ContentFeatures();
|
|
|
|
void reset();
|
2015-05-05 16:52:06 -04:00
|
|
|
void serialize(std::ostream &os, u16 protocol_version) const;
|
2012-01-12 00:10:39 -05:00
|
|
|
void deSerialize(std::istream &is);
|
2015-05-05 16:52:06 -04:00
|
|
|
void serializeOld(std::ostream &os, u16 protocol_version) const;
|
2012-11-26 16:59:03 -05:00
|
|
|
void deSerializeOld(std::istream &is, int version);
|
2017-01-12 09:46:30 -05:00
|
|
|
/*!
|
|
|
|
* Since vertex alpha is no lnger supported, this method
|
|
|
|
* adds instructions to the texture names to blend alpha there.
|
|
|
|
*
|
|
|
|
* tiledef, tiledef_special and alpha must be initialized
|
|
|
|
* before calling this.
|
|
|
|
*/
|
|
|
|
void correctAlpha();
|
2011-11-15 12:58:36 -05:00
|
|
|
|
2011-11-14 14:41:30 -05:00
|
|
|
/*
|
|
|
|
Some handy methods
|
|
|
|
*/
|
|
|
|
bool isLiquid() const{
|
|
|
|
return (liquid_type != LIQUID_NONE);
|
|
|
|
}
|
|
|
|
bool sameLiquid(const ContentFeatures &f) const{
|
|
|
|
if(!isLiquid() || !f.isLiquid()) return false;
|
|
|
|
return (liquid_alternative_flowing == f.liquid_alternative_flowing);
|
|
|
|
}
|
2016-05-22 14:33:06 -04:00
|
|
|
|
|
|
|
#ifndef SERVER
|
|
|
|
void fillTileAttribs(ITextureSource *tsrc, TileSpec *tile, TileDef *tiledef,
|
|
|
|
u32 shader_id, bool use_normal_texture, bool backface_culling,
|
2017-01-12 09:46:30 -05:00
|
|
|
u8 material_type);
|
2016-05-22 14:33:06 -04:00
|
|
|
void updateTextures(ITextureSource *tsrc, IShaderSource *shdsrc,
|
2017-01-09 14:39:22 -05:00
|
|
|
scene::IMeshManipulator *meshmanip, Client *client, const TextureSettings &tsettings);
|
2016-05-22 14:33:06 -04:00
|
|
|
#endif
|
2011-11-14 14:41:30 -05:00
|
|
|
};
|
2011-11-13 03:57:55 -05:00
|
|
|
|
2015-05-05 16:52:06 -04:00
|
|
|
class INodeDefManager {
|
2011-11-14 14:41:30 -05:00
|
|
|
public:
|
|
|
|
INodeDefManager(){}
|
|
|
|
virtual ~INodeDefManager(){}
|
|
|
|
// Get node definition
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual const ContentFeatures &get(content_t c) const=0;
|
|
|
|
virtual const ContentFeatures &get(const MapNode &n) const=0;
|
2011-11-16 06:03:28 -05:00
|
|
|
virtual bool getId(const std::string &name, content_t &result) const=0;
|
2011-11-19 11:48:09 -05:00
|
|
|
virtual content_t getId(const std::string &name) const=0;
|
2012-03-31 05:30:11 -04:00
|
|
|
// Allows "group:name" in addition to regular node names
|
2016-02-09 01:08:31 -05:00
|
|
|
// returns false if node name not found, true otherwise
|
|
|
|
virtual bool getIds(const std::string &name, std::set<content_t> &result)
|
2012-03-31 05:30:11 -04:00
|
|
|
const=0;
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual const ContentFeatures &get(const std::string &name) const=0;
|
2014-12-11 00:41:54 -05:00
|
|
|
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual void serialize(std::ostream &os, u16 protocol_version) const=0;
|
2014-10-08 15:28:14 -04:00
|
|
|
|
2015-01-04 16:32:31 -05:00
|
|
|
virtual bool getNodeRegistrationStatus() const=0;
|
|
|
|
|
2015-05-07 02:34:15 -04:00
|
|
|
virtual void pendNodeResolve(NodeResolver *nr)=0;
|
2015-04-16 04:12:26 -04:00
|
|
|
virtual bool cancelNodeResolveCallback(NodeResolver *nr)=0;
|
Allow nodes to specify which sides to connect to.
NDT_CONNECTED attempts to connect to any side of nodes that it can
connect to, which is troublesome for FACEDIR type nodes that generally
may only have one usable face, and can be rotated.
We introduce a node parameter `connect_sides` that is valid for
any node type. If specified, it lists faces of the node (in "top",
"bottom", "front", "left", "back", "right", form, as array) that
connecting nodeboxes can connect to. "front" corresponds to the south
facing side of a node with facedir = 0.
If the node is rotatable using *simple* FACEDIR, then the attached
face is properly rotated before checking. This allows e.g. a chest
to be attached to only from the rear side.
2016-03-04 02:18:04 -05:00
|
|
|
virtual bool nodeboxConnects(const MapNode from, const MapNode to, u8 connect_face)=0;
|
2017-01-04 13:18:40 -05:00
|
|
|
/*!
|
|
|
|
* Returns the smallest box in node coordinates that
|
|
|
|
* contains all nodes' selection boxes.
|
|
|
|
*/
|
|
|
|
virtual core::aabbox3d<s16> getSelectionBoxIntUnion() const=0;
|
2011-11-14 14:41:30 -05:00
|
|
|
};
|
|
|
|
|
2015-05-05 16:52:06 -04:00
|
|
|
class IWritableNodeDefManager : public INodeDefManager {
|
2011-11-14 14:41:30 -05:00
|
|
|
public:
|
|
|
|
IWritableNodeDefManager(){}
|
|
|
|
virtual ~IWritableNodeDefManager(){}
|
|
|
|
virtual IWritableNodeDefManager* clone()=0;
|
|
|
|
// Get node definition
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual const ContentFeatures &get(content_t c) const=0;
|
|
|
|
virtual const ContentFeatures &get(const MapNode &n) const=0;
|
2011-11-16 06:03:28 -05:00
|
|
|
virtual bool getId(const std::string &name, content_t &result) const=0;
|
2013-07-13 18:55:47 -04:00
|
|
|
// If not found, returns CONTENT_IGNORE
|
2011-11-19 11:48:09 -05:00
|
|
|
virtual content_t getId(const std::string &name) const=0;
|
2012-03-31 05:30:11 -04:00
|
|
|
// Allows "group:name" in addition to regular node names
|
2016-02-09 01:08:31 -05:00
|
|
|
virtual bool getIds(const std::string &name, std::set<content_t> &result)
|
2015-05-05 16:52:06 -04:00
|
|
|
const=0;
|
2013-07-13 18:55:47 -04:00
|
|
|
// If not found, returns the features of CONTENT_UNKNOWN
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual const ContentFeatures &get(const std::string &name) const=0;
|
2012-01-12 00:10:39 -05:00
|
|
|
|
2011-11-16 06:03:28 -05:00
|
|
|
// Register node definition by name (allocate an id)
|
|
|
|
// If returns CONTENT_IGNORE, could not allocate id
|
|
|
|
virtual content_t set(const std::string &name,
|
|
|
|
const ContentFeatures &def)=0;
|
|
|
|
// If returns CONTENT_IGNORE, could not allocate id
|
|
|
|
virtual content_t allocateDummy(const std::string &name)=0;
|
2016-07-10 09:15:43 -04:00
|
|
|
// Remove a node
|
|
|
|
virtual void removeNode(const std::string &name)=0;
|
2012-01-12 00:10:39 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Update item alias mapping.
|
|
|
|
Call after updating item definitions.
|
|
|
|
*/
|
|
|
|
virtual void updateAliases(IItemDefManager *idef)=0;
|
2011-11-14 15:07:42 -05:00
|
|
|
|
2015-03-30 06:55:29 -04:00
|
|
|
/*
|
|
|
|
Override textures from servers with ones specified in texturepack/override.txt
|
|
|
|
*/
|
|
|
|
virtual void applyTextureOverrides(const std::string &override_filepath)=0;
|
|
|
|
|
2011-11-14 15:07:42 -05:00
|
|
|
/*
|
|
|
|
Update tile textures to latest return values of TextueSource.
|
|
|
|
*/
|
2015-03-15 02:25:22 -04:00
|
|
|
virtual void updateTextures(IGameDef *gamedef,
|
2015-05-05 16:52:06 -04:00
|
|
|
void (*progress_cbk)(void *progress_args, u32 progress, u32 max_progress),
|
|
|
|
void *progress_cbk_args)=0;
|
2011-11-15 12:58:36 -05:00
|
|
|
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual void serialize(std::ostream &os, u16 protocol_version) const=0;
|
2012-01-12 00:10:39 -05:00
|
|
|
virtual void deSerialize(std::istream &is)=0;
|
2014-10-08 15:28:14 -04:00
|
|
|
|
2015-01-04 16:32:31 -05:00
|
|
|
virtual bool getNodeRegistrationStatus() const=0;
|
|
|
|
virtual void setNodeRegistrationStatus(bool completed)=0;
|
|
|
|
|
2015-05-07 02:34:15 -04:00
|
|
|
virtual void pendNodeResolve(NodeResolver *nr)=0;
|
2015-04-16 04:12:26 -04:00
|
|
|
virtual bool cancelNodeResolveCallback(NodeResolver *nr)=0;
|
|
|
|
virtual void runNodeResolveCallbacks()=0;
|
2015-05-05 16:52:06 -04:00
|
|
|
virtual void resetNodeResolveState()=0;
|
Nodebox: Allow nodeboxes to "connect"
We introduce a new nodebox type "connected", and allow these nodes to
have optional nodeboxes that connect it to other connecting nodeboxes.
This is all done at scenedraw time in the client. The client will
inspect the surrounding nodes and if they are to be connected to,
it will draw the appropriate connecting nodeboxes to make those
connections.
In the node_box definition, we have to specify separate nodeboxes for
each valid connection. This allows us to make nodes that connect only
horizontally (the common case) by providing optional nodeboxes for +x,
-x, +z, -z directions. Or this allows us to make wires that can connect
up and down, by providing nodeboxes that connect it up and down (+y,
-y) as well.
The optional nodeboxes can be arrays. They are named "connect_top,
"connect_bottom", "connect_front", "connect_left", "connect_back" and
"connect_right". Here, "front" means the south facing side of the node
that has facedir = 0.
Additionally, a "fixed" nodebox list present will always be drawn,
so one can make a central post, for instance. This "fixed" nodebox
can be omitted, or it can be an array of nodeboxes.
Collision boxes are also updated in exactly the same fashion, which
allows you to walk over the upper extremities of the individual
node boxes, or stand really close to them. You can also walk up
node noxes that are small in height, all as expected, and unlike the
NDT_FENCELIKE nodes.
I've posted a screenshot demonstrating the flexibility at
http://i.imgur.com/zaJq8jo.png
In the screenshot, all connecting nodes are of this new subtype.
Transparent textures render incorrectly, Which I don't think is
related to this text, as other nodeboxes also have issues with this.
A protocol bump is performed in order to be able to send older clients
a nodeblock that is usable for them. In order to avoid abuse of users
we send older clients a "full-size" node, so that it's impossible for
them to try and walk through a fence or wall that's created in this
fashion. This was tested with a pre-bump client connected against a
server running the new protocol.
These nodes connect to other nodes, and you can select which ones
those are by specifying node names (or group names) in the
connects_to string array:
connects_to = { "group:fence", "default:wood" }
By default, nodes do not connect to anything, allowing you to create
nodes that always have to be paired in order to connect. lua_api.txt
is updated to reflect the extension to the node_box API.
Example lua code needed to generate these nodes can be found here:
https://gist.github.com/sofar/b381c8c192c8e53e6062
2016-02-25 03:16:31 -05:00
|
|
|
virtual void mapNodeboxConnections()=0;
|
2017-01-04 13:18:40 -05:00
|
|
|
virtual core::aabbox3d<s16> getSelectionBoxIntUnion() const=0;
|
2011-11-14 14:41:30 -05:00
|
|
|
};
|
|
|
|
|
2014-10-08 15:28:14 -04:00
|
|
|
IWritableNodeDefManager *createNodeDefManager();
|
2011-11-13 03:57:55 -05:00
|
|
|
|
2014-12-17 03:20:17 -05:00
|
|
|
class NodeResolver {
|
|
|
|
public:
|
2015-04-16 04:12:26 -04:00
|
|
|
NodeResolver();
|
|
|
|
virtual ~NodeResolver();
|
|
|
|
virtual void resolveNodeNames() = 0;
|
|
|
|
|
|
|
|
bool getIdFromNrBacklog(content_t *result_out,
|
|
|
|
const std::string &node_alt, content_t c_fallback);
|
|
|
|
bool getIdsFromNrBacklog(std::vector<content_t> *result_out,
|
|
|
|
bool all_required=false, content_t c_fallback=CONTENT_IGNORE);
|
|
|
|
|
|
|
|
void nodeResolveInternal();
|
|
|
|
|
|
|
|
u32 m_nodenames_idx;
|
|
|
|
u32 m_nnlistsizes_idx;
|
|
|
|
std::vector<std::string> m_nodenames;
|
|
|
|
std::vector<size_t> m_nnlistsizes;
|
2014-12-17 03:20:17 -05:00
|
|
|
INodeDefManager *m_ndef;
|
2015-04-16 04:12:26 -04:00
|
|
|
bool m_resolve_done;
|
2014-12-17 03:20:17 -05:00
|
|
|
};
|
|
|
|
|
2011-11-13 03:57:55 -05:00
|
|
|
#endif
|