diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-26 23:11:30 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-26 23:11:30 -0400 |
commit | 6acad98c1dba2c07045ae724da1f833ee8369d47 (patch) | |
tree | f8678d42598e378f95ba14feaeb9bbee2e5c749c /src | |
parent | 3cea77e3e6ef432d1bfc6026139b482154ccf604 (diff) | |
parent | 3412f3bd9fc6cf9dbac0f0b5c8bc8a7ffe0c22a6 (diff) |
Fixed Makefile to be fully recursive
Diffstat (limited to 'src')
-rw-r--r-- | src/Script/entityx/entity_lua.cpp | 6 | ||||
-rw-r--r-- | src/Script/entityx/entity_lua.hpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 88 |
3 files changed, 74 insertions, 22 deletions
diff --git a/src/Script/entityx/entity_lua.cpp b/src/Script/entityx/entity_lua.cpp index e62f040..b23628b 100644 --- a/src/Script/entityx/entity_lua.cpp +++ b/src/Script/entityx/entity_lua.cpp @@ -1,4 +1,7 @@ -#include "entityx_lua.h" +//#include "entityx_lua.h" +#include <Script/entityx/entity_lua.hpp> +#include <stdio.h> +#include <string.h> using namespace entityx::lua; ComponentList entityx::lua::components; @@ -62,7 +65,6 @@ void entityx::lua::setup_entityx_api(lua_State* L) // We don't need __gc for Entity::Id (with static_assert it is_trivially_destructible) ref_EntityId = luaL_ref(L, LUA_REGISTRYINDEX); - // Create global entityx table lua_newtable(L); diff --git a/src/Script/entityx/entity_lua.hpp b/src/Script/entityx/entity_lua.hpp index 034640a..bcad91c 100644 --- a/src/Script/entityx/entity_lua.hpp +++ b/src/Script/entityx/entity_lua.hpp @@ -5,7 +5,7 @@ #include <type_traits> #include <lua.hpp> -#include <entityx.h> +#include <entityx/entityx.h> #include <Script/entityx/LuaTypes.hpp> #include <Script/entityx/EntityLua.hpp> diff --git a/src/main.cpp b/src/main.cpp index 65d80a7..0597d48 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,7 +18,8 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#include <entityx.h> +#include <lua.hpp> +#include <entityx/entityx.h> #include <Script/entityx/entity_lua.hpp> #include <SDL2/SDL.h> @@ -29,19 +30,63 @@ #include <memory> #include <thread> -constexpr const char *title = "gamedev2"; -constexpr int width = 640; -constexpr int height = 480; +class Window { +private: + constexpr static const char *title = "gamedev2"; + constexpr static int width = 640; + constexpr static int height = 480; + + static std::unique_ptr<SDL_Window, void (*)(SDL_Window *)> window; + static SDL_GLContext context; + + static void destroyWindow(SDL_Window *w) { + SDL_GL_DeleteContext(context); + SDL_DestroyWindow(w); + } + +public: + static int init(void) { + if (SDL_InitSubSystem(SDL_INIT_VIDEO) != 0) { + std::cerr << "SDL video failed to initialize: " + << SDL_GetError() << std::endl; + return -1; + } + + window.reset(SDL_CreateWindow(title, + SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, + width, height, + SDL_WINDOW_OPENGL)); + + if (window.get() == nullptr) { + std::cerr << "SDL window creation failed: " + << SDL_GetError() << std::endl; + return -1; + } + + context = SDL_GL_CreateContext(window.get()); + + return 0; + } + + static void render(void) { + SDL_GL_SwapWindow(window.get()); + } +}; + +std::unique_ptr<SDL_Window, void (*)(SDL_Window *)> Window::window (nullptr, + Window::destroyWindow); +SDL_GLContext Window::context; std::atomic_bool shouldRun; static void renderLoop(void); static void logicLoop(void); +static void LuaTest(void); int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) { // Initialize SDL - if (SDL_Init(SDL_INIT_VIDEO) != 0) { + if (SDL_Init(0) != 0) { std::cerr << "SDL failed to initialize: " << SDL_GetError() << std::endl; return -1; @@ -49,16 +94,10 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) atexit(SDL_Quit); } - // Create our window - std::unique_ptr<SDL_Window, decltype(&SDL_DestroyWindow)> window - (SDL_CreateWindow(title, SDL_WINDOWPOS_UNDEFINED, - SDL_WINDOWPOS_UNDEFINED, width, height, 0), SDL_DestroyWindow); + LuaTest(); - if (window.get() == nullptr) { - std::cerr << "SDL window creation failed: " << SDL_GetError() - << std::endl; - return -1; - } + // Create our window + Window::init(); // Start game shouldRun.store(true); @@ -71,11 +110,10 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) void renderLoop(void) { - using namespace std::chrono_literals; - - // TODO render - while (shouldRun.load()) - std::this_thread::sleep_for(100ms); + while (shouldRun.load()) { + Window::render(); + std::this_thread::yield(); + } } void logicLoop(void) @@ -101,3 +139,15 @@ void logicLoop(void) } } + +void LuaTest(void) +{ + using namespace entityx; + using namespace entityx::lua; + + lua_State* L = luaL_newstate(); + luaL_openlibs(L); + setup_entityx_api(L); + + lua_close(L); +} |