commit b55204243c1ac75b913b1116b4a1d7cb97f7f207 Author: Lauchmelder Date: Thu Dec 9 18:27:48 2021 +0100 Implemented basic app framework diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b76cd25 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.vs/ +[Oo]ut/ +[Bb]uild/ + +*.json \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..caf199e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "vendor/SDL"] + path = vendor/SDL + url = git@github.com:libsdl-org/SDL.git diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..74d4073 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,20 @@ +# CMakeList.txt : Top-level CMake project file, do global configuration +# and include sub-projects here. +# +cmake_minimum_required (VERSION 3.8) + +project ("EulerFluid") + +find_package (SDL2) +if (SDL2_FOUND) + message (STATUS "SDL2 found, using system-installed SDL2") +else (SDL2_FOUND) + message (STATUS "SDL2 not found, using vendored static SDL2") + set (BUILD_SHARED_LIBS OFF) + add_subdirectory ("vendor/SDL") + set (SDL2_INCLUDE_DIRS SDL2-static) + set (SDL2_LIBRARIES SDL2-static SDL2main) +endif (SDL2_FOUND) + +# Include sub-projects. +add_subdirectory ("src") diff --git a/src/Application.cpp b/src/Application.cpp new file mode 100644 index 0000000..6703fb4 --- /dev/null +++ b/src/Application.cpp @@ -0,0 +1,89 @@ +#include "Application.hpp" + +#include +#include + +Application::Application(int width, int height, const char* title) +{ + window = SDL_CreateWindow( + title, + SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, + width, height, + SDL_WINDOW_SHOWN + ); + if (window == nullptr) + { + char errbuf[512]; + SDL_GetErrorMsg(errbuf, 512); + + std::cerr << "Failed to create SDL Window: " << std::endl + << errbuf << std::endl; + + return; + } + + // Let's just pretend we're the first application in this program to create a renderer :) what could go wrong + renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED); + if (renderer == nullptr) + { + char errbuf[512]; + SDL_GetErrorMsg(errbuf, 512); + + std::cerr << "Failed to create SDL Renderer: " << std::endl + << errbuf << std::endl; + + return; + } +} + +Application::~Application() +{ + SDL_DestroyRenderer(renderer); // Let's just destroy this renderer regardless of other applications in this program :) what could go wrong + SDL_DestroyWindow(window); +} + +void Application::Launch() +{ + if (renderer == nullptr || window == nullptr) + { + throw std::runtime_error("Can't launch application. Window or Renderer is in invalid state."); + } + + while (!shouldClose) + { + HandleEvents(); + Update(); + Render(); + } +} + +void Application::HandleEvents() +{ + static SDL_Event event; + + while (SDL_PollEvent(&event)) + { + if (event.type == SDL_WINDOWEVENT) + { + switch (event.window.event) + { + case SDL_WINDOWEVENT_CLOSE: + shouldClose = true; + break; + } + } + } +} + +void Application::Update() +{ + +} + +void Application::Render() +{ + SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); + SDL_RenderClear(renderer); + + SDL_RenderPresent(renderer); +} diff --git a/src/Application.hpp b/src/Application.hpp new file mode 100644 index 0000000..51a5335 --- /dev/null +++ b/src/Application.hpp @@ -0,0 +1,26 @@ +#pragma once + +// Forward Declarations +struct SDL_Window; +struct SDL_Renderer; + +// Should be a singleton but who cares +class Application +{ +public: + Application(int width, int height, const char* title); + ~Application(); + + void Launch(); + +private: + void HandleEvents(); + void Update(); + void Render(); + +private: + SDL_Window* window = nullptr; + SDL_Renderer* renderer = nullptr; + + bool shouldClose = false; +}; \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..e488fd0 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,16 @@ +# CMakeList.txt : CMake project for EulerFluid, include source and define +# project specific logic here. +# +cmake_minimum_required (VERSION 3.8) + +# Add source to this project's executable. +add_executable (EulerFluid "main.cpp" "Application.hpp" "Application.cpp") + +target_include_directories(EulerFluid PUBLIC ${SDL2_INCLUDE_DIRS}) +target_link_libraries(EulerFluid PUBLIC ${SDL2_LIBRARIES}) + +if(MSVC) +target_compile_definitions(EulerFluid PUBLIC _CRT_SECURE_NO_WARNINGS) +endif() + +# TODO: Add tests and install targets if needed. diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..d533295 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,10 @@ +#include "Application.hpp" + +int main(int argc, char** argv) +{ + Application* app = new Application(800, 800, "Euler Fluid Simulation"); + app->Launch(); + + delete app; + return 0; +} \ No newline at end of file diff --git a/vendor/SDL b/vendor/SDL new file mode 160000 index 0000000..615f7b4 --- /dev/null +++ b/vendor/SDL @@ -0,0 +1 @@ +Subproject commit 615f7b4453864d9475e8b20faa78ec67be357f1e