Oject keeping track if so called features
#1
Vanilla minecraft does keep track where it placed which structure (so called features).

I think this would make sense to add this too to cuberite. Features that need this:

- Limit mob spawning to locations (villagers, ...)
- eye of ender of fly route

Functions I would add to the object:

Code:
enum class eFeatures
{
    // List of all vanilla features...
};

bool IsFeatureAt(Vector3i, eFeature);
Vector3i GetNearestFeature(Vector3i, eFeature);
std::vector<Vector3i> GetAllFeatures(eFeatures);
Reply
Thanks given by:
#2
Vanilla has to keept track of that somewhere but i didn't find out where Sad
Reply
Thanks given by:
#3
I know that vanilla saves where structures got placed into chunk data. http://minecraft.gamepedia.com/Chunk_format
Reply
Thanks given by:




Users browsing this thread: 2 Guest(s)