/* Copyright (c) 2011, The Mineserver Project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the The Mineserver Project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef _CHUNKMAP_H #define _CHUNKMAP_H #include #include #include #include #include #include "packets.h" #include "user.h" #include "nbt.h" class NBT_Value; struct spawnedItem { int EID; int16_t item; char count; int16_t health; vec pos; time_t spawnedAt; uint32_t spawnedBy; spawnedItem() { spawnedAt = time(NULL); spawnedBy = 0; } }; struct chestData { int32_t x; int32_t y; int32_t z; Item items[27]; }; struct signData { int32_t x; int32_t y; int32_t z; std::string text1; std::string text2; std::string text3; std::string text4; }; struct furnaceData { int32_t x; int32_t y; int32_t z; Item items[3]; int16_t burnTime; int16_t cookTime; int32_t map; }; void removeFurnace(furnaceData* data_); struct sChunk { uint8_t* blocks; uint8_t* data; uint8_t* blocklight; uint8_t* skylight; uint8_t* heightmap; int32_t x; int32_t z; int refCount; bool lightRegen; bool changed; time_t lastused; NBT_Value* nbt; std::set users; std::vector items; // ToDo: clear these std::vector chests; std::vector signs; std::vector furnaces; sChunk() : refCount(0), lightRegen(false), changed(false), lastused(0), nbt(NULL) { } ~sChunk() { if (!chests.empty()) { std::vector::iterator chest_it = chests.begin(); for (; chest_it != chests.end(); ++chest_it) { delete *chest_it; } chests.clear(); } if (!signs.empty()) { std::vector::iterator sign_it = signs.begin(); for (; sign_it != signs.end(); ++sign_it) { delete *sign_it; } signs.clear(); } if (!furnaces.empty()) { std::vector::iterator furnace_it = furnaces.begin(); for (; furnace_it != furnaces.end(); ++furnace_it) { removeFurnace((*furnace_it)); delete *furnace_it; } furnaces.clear(); } if (nbt != NULL) { delete nbt; nbt = NULL; } } bool hasUser(User* user) { return users.count(user) != 0; } void sendPacket(const Packet& packet, User* nosend = NULL) { std::set::iterator iter_a = users.begin(), iter_b = users.end(); for (; iter_a != iter_b; ++iter_a) { if ((*iter_a) != nosend) { if ((*iter_a)->logged) { (*iter_a)->buffer.addToWrite(packet.getWrite(), packet.getWriteLen()); } } } } static bool userBoundary(sChunk* left, std::list &lusers, sChunk* right, std::list &rusers) { bool diff = false; std::set::iterator iter_a; std::set::iterator iter_b; iter_a = left->users.begin(), iter_b = left->users.end(); for (; iter_a != iter_b; ++iter_a) { if (!right->users.count(*iter_a)) { lusers.push_front(*iter_a); diff = true; } } iter_a = right->users.begin(), iter_b = right->users.end(); for (; iter_a != iter_b; ++iter_a) { if (!left->users.count(*iter_a)) { rusers.push_front(*iter_a); diff = true; } } return diff; } }; struct sChunkNode { sChunkNode(sChunk* _chunk, sChunkNode* _prev, sChunkNode* _next) : chunk(_chunk), prev(_prev), next(_next) {} ~sChunkNode() { if (chunk != NULL) { delete chunk; chunk = NULL; } } sChunk* chunk; sChunkNode* prev; sChunkNode* next; }; class ChunkMap { public: ChunkMap() { memset(m_buckets, 0, sizeof(m_buckets)); } ~ChunkMap() { for (int i = 0; i < 441; ++i) { sChunkNode* node = m_buckets[i]; sChunkNode* next = NULL; if (node != NULL) { next = node->next; delete node; node = next; } m_buckets[i] = NULL; } } int hash(int x, int z) { x %= 21; if (x < 0) { x += 21; } z %= 21; if (z < 0) { z += 21; } return x + z * 21; } int numChunks() { int num = 0; for (int i = 0; i < 441; ++i) for (sChunkNode* node = m_buckets[i]; node != NULL; node = node->next) { num++; } return num; } sChunk* getChunk(int x, int z) { sChunkNode* node = NULL; for (node = m_buckets[hash(x, z)]; node != NULL; node = node->next) { if ((node->chunk->x == x) && (node->chunk->z == z)) { return node->chunk; } } return NULL; } void unlinkChunk(int x, int z) { int _hash = hash(x, z); sChunkNode* root = m_buckets[_hash]; sChunkNode* node = root; // Loop until we reach the end of the chain while (node != NULL) { // We've got the right node, time to get to work! if ((node->chunk->x == x) && (node->chunk->z == z)) { node->chunk->refCount--; if (node->chunk->refCount == 0) { delete node->chunk; node->chunk = NULL; } // If we have both next and previous nodes, we need to connect them up // when we remove this node because we're in the middle of the chain. if (node->next != NULL && node->prev != NULL) { node->next->prev = node->prev; node->prev->next = node->next; } // Otherwise we're at one of the ends of the chain, so we just need to // cut it off where it is. else if (node->next != NULL) { node->next->prev = NULL; } else if (node->prev != NULL) { node->prev->next = NULL; } // If the node we're looking at is the root node, we need to update the // bucket to point at the new start of the chain. if (node == root) { m_buckets[_hash] = node->next; } // Free up the memory we were using for this node. delete node; node = NULL; return; } // This isn't the right node, look at the next one. else { node = node->next; } } } void linkChunk(sChunk* chunk, int x, int z) { int _hash = hash(x, z); chunk->refCount++; m_buckets[_hash] = new sChunkNode(chunk, NULL, m_buckets[_hash]); if (m_buckets[_hash]->next != NULL) { m_buckets[_hash]->next->prev = m_buckets[_hash]; } } sChunkNode** getBuckets() { return m_buckets; } //private: sChunkNode* m_buckets[441]; }; #endif