forked from Mirrorlandia_minetest/minetest
MapNode constructor to allow ndef+name
This commit is contained in:
parent
62164d955c
commit
eabfb370ac
@ -155,6 +155,20 @@ v3s16 unpackDir(u8 b)
|
|||||||
MapNode
|
MapNode
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// Create directly from a nodename
|
||||||
|
// If name is unknown, sets CONTENT_IGNORE
|
||||||
|
MapNode::MapNode(INodeDefManager *ndef, const std::string &name,
|
||||||
|
u8 a_param1, u8 a_param2)
|
||||||
|
{
|
||||||
|
content_t id = CONTENT_IGNORE;
|
||||||
|
ndef->getId(name, id);
|
||||||
|
param1 = a_param1;
|
||||||
|
param2 = a_param2;
|
||||||
|
// Set content (param0 and (param2&0xf0)) after other params
|
||||||
|
// because this needs to override part of param2
|
||||||
|
setContent(id);
|
||||||
|
}
|
||||||
|
|
||||||
void MapNode::setLight(enum LightBank bank, u8 a_light, INodeDefManager *nodemgr)
|
void MapNode::setLight(enum LightBank bank, u8 a_light, INodeDefManager *nodemgr)
|
||||||
{
|
{
|
||||||
// If node doesn't contain light data, ignore this
|
// If node doesn't contain light data, ignore this
|
||||||
|
@ -147,6 +147,11 @@ struct MapNode
|
|||||||
// because this needs to override part of param2
|
// because this needs to override part of param2
|
||||||
setContent(content);
|
setContent(content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create directly from a nodename
|
||||||
|
// If name is unknown, sets CONTENT_IGNORE
|
||||||
|
MapNode(INodeDefManager *ndef, const std::string &name,
|
||||||
|
u8 a_param1=0, u8 a_param2=0);
|
||||||
|
|
||||||
bool operator==(const MapNode &other)
|
bool operator==(const MapNode &other)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user