diff --git a/CMakeLists.txt b/CMakeLists.txt index 7007c6f0..178aa27b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,13 +7,11 @@ cmake_minimum_required(VERSION 3.13) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) -set(CMAKE_CXX_STANDARD 11) -set(CMAKE_CXX_STANDARD_REQUIRED True) # Set some global flags add_compile_definitions( _CRT_SECURE_NO_WARNINGS=1 - ASSET_PREFIX="../assets/" + ASSET_PREFIX="assets/" ) # Do initial set up depending on the build target type. @@ -37,6 +35,15 @@ set(ASSETS_SOURCE_DIR "${ROOT_DIR}/assets") set(ASSETS_BUILD_DIR "${BUILD_DIR}/assets") set(TEMP_DIR "${BUILD_DIR}/temp") +# Add global sources. +add_subdirectory(lib) + +# Setup Platform specific libraries +set(LIBS_PLATFORM "") +if(NOT WIN32) + list(APPEND LIBS_PLATFORM m) +endif() + # Include tools add_subdirectory(tools) @@ -47,8 +54,6 @@ elseif(TARGET_TYPE STREQUAL game) add_subdirectory(client) endif() -# Add global sources. -add_subdirectory(lib) # Set up shared assets tool_copy(shader_textured diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 61d6cfd2..99294e13 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -3,4 +3,5 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT + add_subdirectory(glfwclient) \ No newline at end of file diff --git a/client/glfwclient/CMakeLists.txt b/client/glfwclient/CMakeLists.txt index d8cec54f..d239b5e7 100644 --- a/client/glfwclient/CMakeLists.txt +++ b/client/glfwclient/CMakeLists.txt @@ -17,14 +17,9 @@ target_link_libraries(${PROJECT_NAME} glad ) -# Sources -file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c) -file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h) - target_sources(${PROJECT_NAME} PRIVATE - ${SOURCES} - ${HEADERS} + glfwclient.c ) # Includes diff --git a/client/glfwclient/glfwclient.h b/client/glfwclient/glfwclient.h index 426f22d8..b9753daa 100644 --- a/client/glfwclient/glfwclient.h +++ b/client/glfwclient/glfwclient.h @@ -6,7 +6,7 @@ #pragma once #include #include -#include "libs.h" +#include #include "display/render.h" #include "input/input.h" #include "game/game.h" diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 14746ae4..2b4a384b 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -10,6 +10,5 @@ add_subdirectory(duktape) add_subdirectory(glad) # STB -file(GLOB_RECURSE STB_SOURCES stb/*.h) add_library(stb INTERFACE) target_include_directories(stb INTERFACE stb) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3d184721..3e544910 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -6,30 +6,38 @@ # Dawn Libraries target_link_libraries(${PROJECT_NAME} PUBLIC + ${LIBS_PLATFORM} glad cglm stb duktape ) +target_include_directories(${PROJECT_NAME} + PRIVATE + ${LIBS_PLATFORM} +) + +# Source H files target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_LIST_DIR} ) -# Dawn Sources -file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c(pp|xx)) -file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h(pp|xx)) - -# Exclude Game Sources -list(FILTER SOURCES EXCLUDE REGEX ".*games\\/.*") -list(FILTER HEADERS EXCLUDE REGEX ".*games\\/.*") - -target_sources(${PROJECT_NAME} - PRIVATE - ${SOURCES} - ${HEADERS} -) +# Add in each part of the engine. +add_subdirectory(display) +add_subdirectory(engine) +add_subdirectory(epoch) +add_subdirectory(file) +add_subdirectory(input) +add_subdirectory(locale) +add_subdirectory(physics) +add_subdirectory(poker) +add_subdirectory(save) +add_subdirectory(scene) +add_subdirectory(ui) +add_subdirectory(util) +add_subdirectory(vn) # Add Game Sources add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/games/${TARGET_GAME}) \ No newline at end of file diff --git a/src/display/CMakeLists.txt b/src/display/CMakeLists.txt new file mode 100644 index 00000000..530dc6da --- /dev/null +++ b/src/display/CMakeLists.txt @@ -0,0 +1,24 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + bitmapfont.c + camera.c + font.c + framebuffer.c + matrix.c + render.c + renderlist.c + shader.c + spritebatch.c + texture.c + tileset.c +) + +# Subdirs +add_subdirectory(animation) +add_subdirectory(primitive) \ No newline at end of file diff --git a/src/display/animation/CMakeLists.txt b/src/display/animation/CMakeLists.txt new file mode 100644 index 00000000..299c00e4 --- /dev/null +++ b/src/display/animation/CMakeLists.txt @@ -0,0 +1,13 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + animation.c + easing.c + queue.c + timeline.c +) \ No newline at end of file diff --git a/src/display/primitive/CMakeLists.txt b/src/display/primitive/CMakeLists.txt new file mode 100644 index 00000000..b56f4fbe --- /dev/null +++ b/src/display/primitive/CMakeLists.txt @@ -0,0 +1,13 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + cube.c + primitive.c + quad.c + skywall.c +) \ No newline at end of file diff --git a/src/display/renderlist.h b/src/display/renderlist.h index 3c628414..8df72778 100644 --- a/src/display/renderlist.h +++ b/src/display/renderlist.h @@ -86,11 +86,8 @@ renderpass_t * renderListRenderPass( * * @param list List to render. * @param shader Shader to use while rendering. - * @param uniforms Uniforms for the render list. [ view, proj, model, ...text ] */ -void renderListRender( - renderlist_t *list, shader_t *shader, shaderuniform_t *uniforms -); +void renderListRender(renderlist_t *list, shader_t *shader); /** * Takes a previously rendered render list and renders it to the backbuffer. diff --git a/src/engine/CMakeLists.txt b/src/engine/CMakeLists.txt new file mode 100644 index 00000000..3e1d5dcd --- /dev/null +++ b/src/engine/CMakeLists.txt @@ -0,0 +1,12 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + client.c + engine.c + thread.c +) diff --git a/src/epoch/CMakeLists.txt b/src/epoch/CMakeLists.txt new file mode 100644 index 00000000..c44dea13 --- /dev/null +++ b/src/epoch/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + epoch.c +) diff --git a/src/file/CMakeLists.txt b/src/file/CMakeLists.txt new file mode 100644 index 00000000..7832d58e --- /dev/null +++ b/src/file/CMakeLists.txt @@ -0,0 +1,16 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + asset.c + assetmanager.c + csv.c + xml.c +) + +# Subdirs +add_subdirectory(loaders) \ No newline at end of file diff --git a/src/file/loaders/CMakeLists.txt b/src/file/loaders/CMakeLists.txt new file mode 100644 index 00000000..9a2d5e79 --- /dev/null +++ b/src/file/loaders/CMakeLists.txt @@ -0,0 +1,14 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + font.c + item.c + scaledtexture.c + shader.c + texture.c +) \ No newline at end of file diff --git a/src/input/CMakeLists.txt b/src/input/CMakeLists.txt new file mode 100644 index 00000000..881b33fb --- /dev/null +++ b/src/input/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + input.c +) \ No newline at end of file diff --git a/src/libs.h b/src/libs.h index 33ad1631..d0ac5a50 100644 --- a/src/libs.h +++ b/src/libs.h @@ -36,6 +36,7 @@ // Unix Fixes #include #include + #include typedef pthread_t threadhandle_t; #define sysThreadCreate(mthd,otp,usr) pthread_create(&otp,NULL,mthd,usr) diff --git a/src/locale/CMakeLists.txt b/src/locale/CMakeLists.txt new file mode 100644 index 00000000..61670f8e --- /dev/null +++ b/src/locale/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + language.c +) \ No newline at end of file diff --git a/src/physics/CMakeLists.txt b/src/physics/CMakeLists.txt new file mode 100644 index 00000000..87ab0b5a --- /dev/null +++ b/src/physics/CMakeLists.txt @@ -0,0 +1,12 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + aabb.c + sphere.c + vector.c +) \ No newline at end of file diff --git a/src/poker/CMakeLists.txt b/src/poker/CMakeLists.txt new file mode 100644 index 00000000..d5b820c7 --- /dev/null +++ b/src/poker/CMakeLists.txt @@ -0,0 +1,17 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + bet.c + card.c + dealer.c + player.c + poker.c + pot.c + turn.c + winner.c +) \ No newline at end of file diff --git a/src/save/CMakeLists.txt b/src/save/CMakeLists.txt new file mode 100644 index 00000000..c4484f48 --- /dev/null +++ b/src/save/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + save.c +) \ No newline at end of file diff --git a/src/scene/CMakeLists.txt b/src/scene/CMakeLists.txt new file mode 100644 index 00000000..cb895194 --- /dev/null +++ b/src/scene/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + scene.c +) \ No newline at end of file diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt new file mode 100644 index 00000000..81836276 --- /dev/null +++ b/src/ui/CMakeLists.txt @@ -0,0 +1,19 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + align.c + breakpoint.c + frame.c + framedtextmenu.c + grid.c + image.c + label.c + menu.c + rectangle.c + textmenu.c +) \ No newline at end of file diff --git a/src/util/CMakeLists.txt b/src/util/CMakeLists.txt new file mode 100644 index 00000000..3542d606 --- /dev/null +++ b/src/util/CMakeLists.txt @@ -0,0 +1,15 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + array.c + dictionary.c + dynarray.c + list.c + mem.c + string.c +) \ No newline at end of file diff --git a/src/vn/CMakeLists.txt b/src/vn/CMakeLists.txt new file mode 100644 index 00000000..3edc347f --- /dev/null +++ b/src/vn/CMakeLists.txt @@ -0,0 +1,15 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + vncharacter.c + vnscene.c +) + +# Subdirs +add_subdirectory(conversation) +add_subdirectory(ui) \ No newline at end of file diff --git a/src/vn/conversation/CMakeLists.txt b/src/vn/conversation/CMakeLists.txt new file mode 100644 index 00000000..52fd7aa9 --- /dev/null +++ b/src/vn/conversation/CMakeLists.txt @@ -0,0 +1,11 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + talk.c + vnconversation.c +) \ No newline at end of file diff --git a/src/vn/ui/CMakeLists.txt b/src/vn/ui/CMakeLists.txt new file mode 100644 index 00000000..30f1ccbd --- /dev/null +++ b/src/vn/ui/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${PROJECT_NAME} + PRIVATE + vntextbox.c +) \ No newline at end of file diff --git a/tools/display/CMakeLists.txt b/tools/display/CMakeLists.txt index 40cb95b2..e70cf449 100644 --- a/tools/display/CMakeLists.txt +++ b/tools/display/CMakeLists.txt @@ -24,6 +24,10 @@ target_link_libraries(texture_generation PUBLIC stb ) +target_link_libraries(texture_generation + PRIVATE + ${LIBS_PLATFORM} +) # Function for creating the target function(tool_texture target in out) diff --git a/tools/file/CMakeLists.txt b/tools/file/CMakeLists.txt index ef24250b..e7e497df 100644 --- a/tools/file/CMakeLists.txt +++ b/tools/file/CMakeLists.txt @@ -5,7 +5,8 @@ function(tool_assets args) add_custom_target(assets - COMMAND tar -C ${ASSETS_BUILD_DIR} -czvf assets.tar.gz * + # COMMAND tar -C ${ASSETS_BUILD_DIR} -czvf assets.tar.gz * + COMMAND echo ${ASSETS_BUILD_DIR} DEPENDS ${ARGV} COMMENT "Compressing Assets" ) diff --git a/tools/game/CMakeLists.txt b/tools/game/CMakeLists.txt index 04e364b6..a4e611c1 100644 --- a/tools/game/CMakeLists.txt +++ b/tools/game/CMakeLists.txt @@ -5,12 +5,8 @@ function(tool_game name version) ) file(WRITE ${TEMP_DIR}/dawn/game/game.h - "#include \"games/${TARGET_GAME}/game.h\"" + "#pragma once\n#include " ) - # target_sources(${PROJECT_NAME} - # PRIVATE - # ${TEMP_DIR}/dawn/game/game.h - # ) target_include_directories(${PROJECT_NAME} PUBLIC ${TEMP_DIR}/dawn) endfunction() \ No newline at end of file diff --git a/tools/utils/file.c b/tools/utils/file.c index be7ed7da..bce0bf82 100644 --- a/tools/utils/file.c +++ b/tools/utils/file.c @@ -29,7 +29,7 @@ void fileMkdirp(char *path) { while(c = path[i]) { if((c == '\\' || c == '/') && i > 0) { buffer[i] = '\0'; - _mkdir(buffer); + fileMkdir(buffer, 0755); inFile = false; hasMore = false; buffer[i] = FILE_PATH_SEP; @@ -45,7 +45,7 @@ void fileMkdirp(char *path) { if(!inFile && hasMore) { buffer[i] = '\0'; - _mkdir(buffer); + fileMkdir(buffer, 0755); } } @@ -117,5 +117,32 @@ bool fileListChildren( *count = i; return true; #else + struct dirent *de; + DIR *dr; + int32_t i; + + // Open Dir + dr = opendir(directory); + if(dr == NULL) { + printf("Could not open directory"); + return false; + } + + + // Iterate + i = 0; + while ((de = readdir(dr)) != NULL) { + // File or folder? + if(de->d_type != DT_REG) continue; + + // Copy into child buffer + children[i] = buffer + (i * FILE_CHILD_NAME_MAX); + strcpy(children[i], de->d_name); + i++; + } + if(closedir(dr)) return false; + + *count = i; + return true; #endif } \ No newline at end of file diff --git a/tools/utils/file.h b/tools/utils/file.h index a98c43aa..addd68b8 100644 --- a/tools/utils/file.h +++ b/tools/utils/file.h @@ -18,9 +18,13 @@ #include #define getcwd _getcwd #define FILE_PATH_SEP '\\' + #define fileMkdir(path, perms) _mkdir(path) #elif defined(__GNUC__) #include + #include + #include #define FILE_PATH_SEP '/' + #define fileMkdir(path, perms) mkdir(path, perms) #endif void fileNormalizeSlashes(char *string); diff --git a/tools/vn/CMakeLists.txt b/tools/vn/CMakeLists.txt index 116e529f..0d588f5e 100644 --- a/tools/vn/CMakeLists.txt +++ b/tools/vn/CMakeLists.txt @@ -25,6 +25,10 @@ target_link_libraries(character_generator PUBLIC stb ) +target_link_libraries(character_generator + PRIVATE + ${LIBS_PLATFORM} +) # Function Target function(tool_vn_character target in out)