X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fai%2FSpawner.cpp;fp=src%2Fai%2FSpawner.cpp;h=4f28cfb870b1f3fd0cc76f2c77265607e569d193;hb=825f479edf9867938b6789215ad7ae6303596cba;hp=946e3519c3fb359d8d6bba766c36d42adb4440df;hpb=78dcbeb7a905c4c153cb1b20e23f5adc1efc6d7e;p=blank.git diff --git a/src/ai/Spawner.cpp b/src/ai/Spawner.cpp index 946e351..4f28cfb 100644 --- a/src/ai/Spawner.cpp +++ b/src/ai/Spawner.cpp @@ -4,6 +4,7 @@ #include "RandomWalk.hpp" #include "../model/CompositeModel.hpp" #include "../model/Skeletons.hpp" +#include "../rand/GaloisLFSR.hpp" #include "../world/BlockLookup.hpp" #include "../world/BlockType.hpp" #include "../world/ChunkIndex.hpp" @@ -17,18 +18,18 @@ using namespace std; namespace blank { -Spawner::Spawner(World &world, Skeletons &skeletons, uint64_t seed) +Spawner::Spawner(World &world, Skeletons &skeletons, GaloisLFSR &rand) : world(world) , skeletons(skeletons) , controllers() -, random(seed) +, random(rand) , timer(64) , despawn_range(128 * 128) , spawn_distance(16 * 16) , max_entities(16) , chunk_range(4) , skeletons_offset(0) -, skeletons_length(skeletons.Size()) { +, skeletons_length(skeletons.size()) { timer.Start(); } @@ -40,7 +41,7 @@ Spawner::~Spawner() { void Spawner::LimitSkeletons(size_t begin, size_t end) { - if (begin >= skeletons.Size() || end > skeletons.Size() || begin >= end) { + if (begin >= skeletons.size() || end > skeletons.size() || begin >= end) { cout << "warning, skeleton limit out of bounds or invalid range given" << endl; } else { skeletons_offset = begin; @@ -101,15 +102,7 @@ void Spawner::TrySpawn() { } const Player &player = *i; - int index = random.Next() % player.GetChunks().TotalChunks(); - - glm::ivec3 chunk(player.GetChunks().PositionOf(index)); - - glm::ivec3 pos( - random.Next() % Chunk::width, - random.Next() % Chunk::height, - random.Next() % Chunk::depth - ); + BlockLookup spawn_block(player.GetChunks().RandomBlock(random)); // distance check //glm::vec3 diff(glm::vec3(chunk * Chunk::Extent() - pos) + player.entity->Position()); @@ -119,7 +112,6 @@ void Spawner::TrySpawn() { //} // check if the spawn block and the one above it are loaded and inhabitable - BlockLookup spawn_block(player.GetChunks()[index], pos); if (!spawn_block || spawn_block.GetType().collide_block) { return; } @@ -129,7 +121,7 @@ void Spawner::TrySpawn() { return; } - Spawn(player.GetEntity(), chunk, glm::vec3(pos) + glm::vec3(0.5f)); + Spawn(player.GetEntity(), spawn_block.GetChunk().Position(), spawn_block.GetBlockCoords()); } void Spawner::Spawn(Entity &reference, const glm::ivec3 &chunk, const glm::vec3 &pos) {