Remove glm

This commit is contained in:
2024-09-25 15:01:26 -04:00
parent 303d0c0a6f
commit 5101a856be
8 changed files with 31 additions and 10 deletions

2
.gitignore vendored
View File

@ -65,7 +65,7 @@ CTestTestfile.cmake
_deps _deps
# Custom # Custom
build /build/*
.vscode .vscode
assets/testworld/tileset.png assets/testworld/tileset.png

3
.gitmodules vendored
View File

@ -1,9 +1,6 @@
[submodule "lib/glfw"] [submodule "lib/glfw"]
path = lib/glfw path = lib/glfw
url = https://github.com/glfw/glfw.git url = https://github.com/glfw/glfw.git
[submodule "lib/glm"]
path = lib/glm
url = https://github.com/g-truc/glm.git
[submodule "lib/openal-soft"] [submodule "lib/openal-soft"]
path = lib/openal-soft path = lib/openal-soft
url = https://github.com/kcat/openal-soft url = https://github.com/kcat/openal-soft

View File

@ -0,0 +1,11 @@
{
"name": "Some Map",
"width": 3,
"height": 3,
"depth": 3,
"tiles": [
0, 0, 0,
0, 0, 0,
0, 0, 0
]
}

View File

@ -3,7 +3,15 @@
# This software is released under the MIT License. # This software is released under the MIT License.
# https://opensource.org/licenses/MIT # https://opensource.org/licenses/MIT
add_subdirectory(glm) include(FetchContent)
# add_subdirectory(glm)
FetchContent_Declare(
glm
GIT_REPOSITORY https://github.com/g-truc/glm.git
GIT_TAG bf71a834948186f4097caa076cd2663c69a10e1e
)
FetchContent_MakeAvailable(glm)
if(DAWN_TARGET STREQUAL "linux-x64-glfw") if(DAWN_TARGET STREQUAL "linux-x64-glfw")
add_subdirectory(glad) add_subdirectory(glad)
@ -14,6 +22,11 @@ else()
message(FATAL_ERROR "Unknown target: ${DAWN_TARGET}") message(FATAL_ERROR "Unknown target: ${DAWN_TARGET}")
endif() endif()
# JSON
FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz)
FetchContent_MakeAvailable(json)
# if(DAWN_TARGET_OPENAL) # if(DAWN_TARGET_OPENAL)
# set(LIBTYPE "STATIC") # set(LIBTYPE "STATIC")
# add_subdirectory(openal-soft) # add_subdirectory(openal-soft)

Submodule lib/glm deleted from 45008b225e

View File

@ -6,9 +6,10 @@
# Libraries # Libraries
target_link_libraries(${DAWN_TARGET_NAME} target_link_libraries(${DAWN_TARGET_NAME}
PUBLIC PUBLIC
glm glm::glm
archive_static archive_static
freetype freetype
nlohmann_json::nlohmann_json
) )
# Includes # Includes

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.z -= distance; break; case EntityDirection::Down: result.y -= distance; break;
case EntityDirection::Down: result.z += distance; break; case EntityDirection::Up: result.y += 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

@ -8,6 +8,6 @@
using namespace Dawn; using namespace Dawn;
bool_t Tile::isSolid() { bool_t Tile::isSolid() {
if(this->id == TileID::Null) return true; if(this->id == TileID::Null) return false;
return false; return false;
} }