Basic tile code ready.

This commit is contained in:
2024-09-16 07:07:01 -05:00
parent 7c34127900
commit e3a4368d1e
12 changed files with 136 additions and 15 deletions

View File

@ -94,6 +94,15 @@ struct EntityStepResult Entity::move(
// Get the tile at the destination, check for height if we are on stairs, etc. // Get the tile at the destination, check for height if we are on stairs, etc.
// If the tile is not walkable, return early. // If the tile is not walkable, return early.
auto chunk = map->getChunkAtTile(newPosition);
auto tilePos = newPosition.toTilePosition();
auto tileAt = chunk->getTileAt(tilePos);
if(tileAt.isSolid()) {
result.type = EntityStepResultType::SolidTileInWay;
result.tileInWayChunk = chunk;
result.tileInWayPosition = tilePos;
return result;
}
// Move the entity to the new tile. // Move the entity to the new tile.
this->lastTilePosition = this->tilePosition; this->lastTilePosition = this->tilePosition;

View File

@ -19,6 +19,7 @@ namespace Dawn {
Turn, Turn,
Step, Step,
EntityInWay, EntityInWay,
SolidTileInWay
}; };
struct EntityStepResult { struct EntityStepResult {
@ -26,6 +27,9 @@ namespace Dawn {
// I'd love to unionize this but it seems that it's not ideal rn. // I'd love to unionize this but it seems that it's not ideal rn.
std::shared_ptr<Entity> entityInWay; std::shared_ptr<Entity> entityInWay;
std::shared_ptr<Chunk> tileInWayChunk;
struct TilePosition tileInWayPosition;
}; };
class Entity : public SceneComponent { class Entity : public SceneComponent {

View File

@ -27,8 +27,8 @@ struct EntityTilePosition entityDirectionGetRelativeTilePosition(
) { ) {
struct EntityTilePosition result = pos; struct EntityTilePosition result = pos;
switch(dir) { switch(dir) {
case EntityDirection::Up: result.y += distance; break; case EntityDirection::Up: result.z -= distance; break;
case EntityDirection::Down: result.y -= distance; break; case EntityDirection::Down: result.z += distance; break;
case EntityDirection::Left: result.x -= distance; break; case EntityDirection::Left: result.x -= distance; break;
case EntityDirection::Right: result.x += distance; break; case EntityDirection::Right: result.x += distance; break;
default: default:

View File

@ -7,10 +7,26 @@
using namespace Dawn; using namespace Dawn;
const glm::vec3 EntityTilePosition::toWorldSpace() { const glm::vec3 EntityTilePosition::toWorldSpace() const {
return glm::vec3( return glm::vec3(
this->x, this->x,
this->y, this->y,
this->z this->z
); );
}
const struct ChunkPosition EntityTilePosition::toChunkPosition() const {
return {
(int32_t)(this->x / CHUNK_WIDTH),
(int32_t)(this->y / CHUNK_HEIGHT),
(int32_t)(this->z / CHUNK_DEPTH)
};
}
const struct TilePosition EntityTilePosition::toTilePosition() const {
return {
(uint8_t)(this->x % CHUNK_WIDTH),
(uint8_t)(this->y % CHUNK_HEIGHT),
(uint8_t)(this->z % CHUNK_DEPTH)
};
} }

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "component/world/Chunk.hpp"
namespace Dawn { namespace Dawn {
struct EntityTilePosition { struct EntityTilePosition {
@ -25,6 +25,20 @@ namespace Dawn {
* *
* @return This tile position in world space. * @return This tile position in world space.
*/ */
const glm::vec3 toWorldSpace(); const glm::vec3 toWorldSpace() const;
/**
* Converts the tile position to a chunk position.
*
* @return This tile position in chunk space.
*/
const struct ChunkPosition toChunkPosition() const;
/**
* Converts the tile position to a chunk tile position.
*
* @return This tile position in chunk tile space.
*/
const struct TilePosition toTilePosition() const;
}; };
} }

View File

@ -8,4 +8,5 @@ target_sources(${DAWN_TARGET_NAME}
World.cpp World.cpp
Map.cpp Map.cpp
Chunk.cpp Chunk.cpp
Tile.cpp
) )

View File

@ -11,6 +11,10 @@ Chunk::Chunk() {
} }
struct Tile Chunk::getTileAt(const struct TilePosition &pos) {
return this->tiles[pos.x][pos.y][pos.z];
}
Chunk::~Chunk() { Chunk::~Chunk() {
} }

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT // https://opensource.org/licenses/MIT
#pragma once #pragma once
#include "dawnlibs.hpp" #include "Tile.hpp"
#define CHUNK_WIDTH 32 #define CHUNK_WIDTH 32
#define CHUNK_HEIGHT 32 #define CHUNK_HEIGHT 32
@ -24,15 +24,6 @@ namespace Dawn {
}; };
} }
}; };
enum class TileID : uint16_t {
Null = 0,
Test = 1
};
struct Tile {
enum TileID id;
};
class Chunk { class Chunk {
public: public:
@ -40,6 +31,15 @@ namespace Dawn {
struct Tile tiles[CHUNK_WIDTH][CHUNK_HEIGHT][CHUNK_DEPTH]; struct Tile tiles[CHUNK_WIDTH][CHUNK_HEIGHT][CHUNK_DEPTH];
Chunk(); Chunk();
/**
* Gets the tile at the given position.
*
* @param pos The position of the tile to get.
* @return The tile at the given position.
*/
struct Tile getTileAt(const struct TilePosition &pos);
~Chunk(); ~Chunk();
}; };
} }

View File

@ -118,4 +118,15 @@ std::shared_ptr<Chunk> Map::getChunkAt(const struct ChunkPosition &pos) {
assertTrue(i >= 0 && i < this->mapChunkCount, "Chunk index out of bounds."); assertTrue(i >= 0 && i < this->mapChunkCount, "Chunk index out of bounds.");
return this->chunkOrder[i]; return this->chunkOrder[i];
}
std::shared_ptr<Chunk> Map::getChunkAtTile(const EntityTilePosition &pos) {
auto chunkPos = pos.toChunkPosition();
return this->getChunkAt(chunkPos);
}
struct Tile Map::getTileAt(const EntityTilePosition &pos) {
auto chunk = this->getChunkAtTile(pos);
auto tilePos = pos.toTilePosition();
return chunk->getTileAt(tilePos);
} }

View File

@ -84,6 +84,22 @@ namespace Dawn {
*/ */
std::shared_ptr<Chunk> getChunkAt(const struct ChunkPosition &pos); std::shared_ptr<Chunk> getChunkAt(const struct ChunkPosition &pos);
/**
* Gets the chunk at the given tile position.
*
* @param pos The tile position of the chunk to get.
* @return The chunk at the given tile position.
*/
std::shared_ptr<Chunk> getChunkAtTile(const EntityTilePosition &pos);
/**
* Gets the tile at the given position.
*
* @param pos The position of the tile to get.
* @return The tile at the given position.
*/
struct Tile getTileAt(const EntityTilePosition &pos);
friend class Entity; friend class Entity;
}; };
} }

View File

@ -0,0 +1,12 @@
// Copyright (c) 2024 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "Tile.hpp"
using namespace Dawn;
bool_t Tile::isSolid() {
return false;
}

View File

@ -0,0 +1,34 @@
// Copyright (c) 2024 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
namespace Dawn {
enum class TileID : uint16_t {
Null = 0,
Test = 1
};
union TileData {
int64_t raw;
};
struct Tile {
enum TileID id;
union TileData data;
/**
* Returns whether or not this tile is solid.
*
* @return Whether or not this tile is solid.
*/
bool_t isSolid();
};
struct TilePosition {
uint8_t x, y, z;
};
}