diff options
author | tcsullivan <tullivan99@gmail.com> | 2019-08-25 14:57:16 -0400 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2019-08-25 14:57:16 -0400 |
commit | ad4aa3b16a9fc333a9ee9c8b35a1f40cf47822bf (patch) | |
tree | 0b9f26a7143ca3c5082ecd05154a56523c6825a5 /src | |
parent | e6bd96e1aff62d0b0379f5b1a17a311a811e2206 (diff) |
created a window
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8528f0a..9b88994 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,10 +21,17 @@ #include <SDL2/SDL.h> #include <iostream> +#include <memory> + +constexpr const char *title = "gamedev2"; +constexpr int width = 640; +constexpr int height = 480; int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) { - if (SDL_Init(0) != 0) { + std::cout << "Hello, world!" << std::endl; + + if (SDL_Init(SDL_INIT_VIDEO) != 0) { std::cerr << "SDL failed to initialize: " << SDL_GetError() << std::endl; return -1; @@ -32,7 +39,16 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) atexit(SDL_Quit); } - std::cout << "Hello, world!" << std::endl; + std::unique_ptr<SDL_Window, decltype(&SDL_DestroyWindow)> window + (SDL_CreateWindow(title, SDL_WINDOWPOS_UNDEFINED, + SDL_WINDOWPOS_UNDEFINED, width, height, 0), SDL_DestroyWindow); + + if (window.get() == nullptr) { + std::cerr << "SDL window creation failed: " << SDL_GetError() << + std::endl; + } + + SDL_Delay(1000); return 0; } |