mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Remove unused Map::getDayNightDiff + fix one undefined variable in mapblock.cpp
This commit is contained in:
parent
3e50850260
commit
9d412dd075
57
src/map.cpp
57
src/map.cpp
@ -362,63 +362,6 @@ bool Map::removeNodeWithEvent(v3s16 p)
|
|||||||
return succeeded;
|
return succeeded;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Map::getDayNightDiff(v3s16 blockpos)
|
|
||||||
{
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(0,0,0);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
// Leading edges
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(-1,0,0);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(0,-1,0);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(0,0,-1);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
// Trailing edges
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(1,0,0);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(0,1,0);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
try{
|
|
||||||
v3s16 p = blockpos + v3s16(0,0,1);
|
|
||||||
MapBlock *b = getBlockNoCreate(p);
|
|
||||||
if(b->getDayNightDiff())
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
catch(InvalidPositionException &e){}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct TimeOrderedMapBlock {
|
struct TimeOrderedMapBlock {
|
||||||
MapSector *sect;
|
MapSector *sect;
|
||||||
MapBlock *block;
|
MapBlock *block;
|
||||||
|
@ -216,15 +216,6 @@ public:
|
|||||||
bool addNodeWithEvent(v3s16 p, MapNode n, bool remove_metadata = true);
|
bool addNodeWithEvent(v3s16 p, MapNode n, bool remove_metadata = true);
|
||||||
bool removeNodeWithEvent(v3s16 p);
|
bool removeNodeWithEvent(v3s16 p);
|
||||||
|
|
||||||
/*
|
|
||||||
Takes the blocks at the edges into account
|
|
||||||
*/
|
|
||||||
bool getDayNightDiff(v3s16 blockpos);
|
|
||||||
|
|
||||||
//core::aabbox3d<s16> getDisplayedBlockArea();
|
|
||||||
|
|
||||||
//bool updateChangedVisibleArea();
|
|
||||||
|
|
||||||
// Call these before and after saving of many blocks
|
// Call these before and after saving of many blocks
|
||||||
virtual void beginSave() { return; }
|
virtual void beginSave() { return; }
|
||||||
virtual void endSave() { return; }
|
virtual void endSave() { return; }
|
||||||
|
@ -361,7 +361,7 @@ void MapBlock::actuallyUpdateDayNightDiff()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool differs;
|
bool differs = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Check if any lighting value differs
|
Check if any lighting value differs
|
||||||
@ -465,7 +465,7 @@ static void getBlockNodeIdMapping(NameIdMapping *nimap, MapNode *nodes,
|
|||||||
|
|
||||||
const ContentFeatures &f = nodedef->get(global_id);
|
const ContentFeatures &f = nodedef->get(global_id);
|
||||||
const std::string &name = f.name;
|
const std::string &name = f.name;
|
||||||
if(name == "")
|
if (name.empty())
|
||||||
unknown_contents.insert(global_id);
|
unknown_contents.insert(global_id);
|
||||||
else
|
else
|
||||||
nimap->set(id, name);
|
nimap->set(id, name);
|
||||||
|
Loading…
Reference in New Issue
Block a user