From ef6b269141054fdc6b6b34219acc6ba25752c217 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 21 Jul 2023 08:56:36 -0700 Subject: [PATCH] Starting to support OSX --- .gitignore | 4 +- cmake/hosts/CMakeLists.txt | 2 + cmake/hosts/build-host-osx/CMakeLists.txt | 6 ++ .../target-liminal-osx-glfw/CMakeLists.txt | 10 ++++ src/CMakeLists.txt | 2 + src/dawnglfw/host/DawnGLFWHost.cpp | 4 ++ src/dawnliminal/game/LiminalGame.cpp | 4 +- .../shader/shaders/SimpleTexturedShader.cpp | 1 + src/dawnosx/CMakeLists.txt | 25 ++++++++ src/dawnosx/host/CMakeLists.txt | 10 ++++ src/dawnosx/host/DawnHostOSX.cpp | 57 +++++++++++++++++++ src/dawnosx/host/DawnHostOSX.hpp | 18 ++++++ src/dawnshared/dawnsharedlibs.hpp | 1 - 13 files changed, 141 insertions(+), 3 deletions(-) create mode 100644 cmake/hosts/build-host-osx/CMakeLists.txt create mode 100644 cmake/targets/target-liminal-osx-glfw/CMakeLists.txt create mode 100644 src/dawnosx/CMakeLists.txt create mode 100644 src/dawnosx/host/CMakeLists.txt create mode 100644 src/dawnosx/host/DawnHostOSX.cpp create mode 100644 src/dawnosx/host/DawnHostOSX.hpp diff --git a/.gitignore b/.gitignore index a407aa83..45833595 100644 --- a/.gitignore +++ b/.gitignore @@ -83,4 +83,6 @@ assets/borrowed .VSCode* /vita -/tools \ No newline at end of file +/tools + +._* \ No newline at end of file diff --git a/cmake/hosts/CMakeLists.txt b/cmake/hosts/CMakeLists.txt index b71c4f75..e5bdc4e0 100644 --- a/cmake/hosts/CMakeLists.txt +++ b/cmake/hosts/CMakeLists.txt @@ -8,6 +8,8 @@ if(WIN32) set(DAWN_BUILD_HOST "build-host-win32") elseif(UNIX AND NOT APPLE) set(DAWN_BUILD_HOST "build-host-linux64") +elseif(UNIX AND APPLE) + set(DAWN_BUILD_HOST "build-host-osx") endif() add_subdirectory(${DAWN_BUILD_HOST}) \ No newline at end of file diff --git a/cmake/hosts/build-host-osx/CMakeLists.txt b/cmake/hosts/build-host-osx/CMakeLists.txt new file mode 100644 index 00000000..d2107d5b --- /dev/null +++ b/cmake/hosts/build-host-osx/CMakeLists.txt @@ -0,0 +1,6 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +set(DAWN_BUILD_HOST_LIBS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-liminal-osx-glfw/CMakeLists.txt b/cmake/targets/target-liminal-osx-glfw/CMakeLists.txt new file mode 100644 index 00000000..8bafa8ff --- /dev/null +++ b/cmake/targets/target-liminal-osx-glfw/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +set(DAWN_BUILDING dawnliminal CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_TARGET_OSX true CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_TARGET_NAME "Liminal" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_VISUAL_NOVEL true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index aae12bb6..cd66ab8c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -30,6 +30,8 @@ if(DEFINED DAWN_TARGET_NAME) add_subdirectory(dawnwin32) elseif(DAWN_TARGET_LINUX64) add_subdirectory(dawnlinux64) + elseif(DAWN_TARGET_OSX) + add_subdirectory(dawnosx) elseif(DAWN_TARGET_VITA) add_subdirectory(dawnvita) else() diff --git a/src/dawnglfw/host/DawnGLFWHost.cpp b/src/dawnglfw/host/DawnGLFWHost.cpp index 023152cd..6be1660b 100644 --- a/src/dawnglfw/host/DawnGLFWHost.cpp +++ b/src/dawnglfw/host/DawnGLFWHost.cpp @@ -34,6 +34,10 @@ int32_t DawnHost::init(DawnGame *game) { // Setup window hints glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, false); + glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); + glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); + glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); + glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // Create Window this->data->window = glfwCreateWindow( diff --git a/src/dawnliminal/game/LiminalGame.cpp b/src/dawnliminal/game/LiminalGame.cpp index a44ae2bc..3d138f46 100644 --- a/src/dawnliminal/game/LiminalGame.cpp +++ b/src/dawnliminal/game/LiminalGame.cpp @@ -5,9 +5,11 @@ #include "game/DawnGame.hpp" #include "vnscenes/SceneInitial.hpp" +#include "scenes/HelloWorldScene.hpp" using namespace Dawn; Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { - return new SceneInitial(game); + // return new SceneInitial(game); + return new HelloWorldScene(game); } \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp b/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp index f8c3f57d..f39dde53 100644 --- a/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp +++ b/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp @@ -44,6 +44,7 @@ void SimpleTexturedShader::compile() { "} else {\n" "o_Color = u_Color;" "}\n" + "o_Color = vec4(1, 0, 0, 1);\n" "}\n" ); #elif DAWN_OPENGL_HLSL diff --git a/src/dawnosx/CMakeLists.txt b/src/dawnosx/CMakeLists.txt new file mode 100644 index 00000000..30904707 --- /dev/null +++ b/src/dawnosx/CMakeLists.txt @@ -0,0 +1,25 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Libraries +# target_link_libraries(${DAWN_TARGET_NAME} +# PUBLIC +# m +# ) + +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + +# Platform variables +target_compile_definitions(${DAWN_TARGET_NAME} + PUBLIC + DAWN_ASSET_BUILD_PREFIX="../../assets/" +) + +# Subdirs +add_subdirectory(host) \ No newline at end of file diff --git a/src/dawnosx/host/CMakeLists.txt b/src/dawnosx/host/CMakeLists.txt new file mode 100644 index 00000000..fb900d4e --- /dev/null +++ b/src/dawnosx/host/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + DawnHostOSX.cpp +) \ No newline at end of file diff --git a/src/dawnosx/host/DawnHostOSX.cpp b/src/dawnosx/host/DawnHostOSX.cpp new file mode 100644 index 00000000..8df21fc5 --- /dev/null +++ b/src/dawnosx/host/DawnHostOSX.cpp @@ -0,0 +1,57 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "DawnHostOSX.hpp" + +#if DAWN_DEBUG_BUILD + uint64_t dawnAllocatedItemCount; +#endif + +using namespace Dawn; + +int32_t main(int32_t argc, char **args) { + int32_t result; + + #if DAWN_DEBUG_BUILD + dawnAllocatedItemCount = 0; + #endif + + // Create the host + auto host = new DawnHost(); + auto game = new DawnGame(host); + + // Initialize the host and error check + result = host->init(game); + switch(result) { + case DAWN_HOST_INIT_RESULT_SUCCESS: + break; + default: + return result; + } + + // Request the main loop to start running. + result = host->start(game); + switch(result) { + case DAWN_HOST_START_RESULT_SUCCESS: + break; + case DAWN_HOST_START_RESULT_EXIT_SUCCESS: + break; + default: + return result; + } + + // Main loop finished without errors, cleanup + host->unload(game); + + delete game; + delete host; + + #if DAWN_DEBUG_BUILD + assertTrue(dawnAllocatedItemCount == 0); + #endif + + // Success + return 0; +} \ No newline at end of file diff --git a/src/dawnosx/host/DawnHostOSX.hpp b/src/dawnosx/host/DawnHostOSX.hpp new file mode 100644 index 00000000..cdff0cec --- /dev/null +++ b/src/dawnosx/host/DawnHostOSX.hpp @@ -0,0 +1,18 @@ +// Copyright (c) 2022 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnlibs.hpp" +#include "host/DawnHost.hpp" +#include "game/DawnGame.hpp" + +/** + * Main entry function received by parent Win32 Operating System. + * + * @param argc Count of arguments passed to the program. + * @param args Array of strings provided to the program. + * @return 0 for success, else for any issue/error. + */ +int32_t main(int32_t argc, char **args); \ No newline at end of file diff --git a/src/dawnshared/dawnsharedlibs.hpp b/src/dawnshared/dawnsharedlibs.hpp index db367b47..f3f37006 100644 --- a/src/dawnshared/dawnsharedlibs.hpp +++ b/src/dawnshared/dawnsharedlibs.hpp @@ -11,7 +11,6 @@ extern "C" { #include #include #include - #include #include #include #include