-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathWindow.cpp
83 lines (70 loc) · 1.77 KB
/
Window.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include "Diablo2.hpp"
#include "DCC.hpp"
#include "Logging.hpp"
#include "Renderer.hpp"
#include <assert.h>
///////////////////////////////////////////////////////
//
// Diablo II (OpenD2) Window Management Code
namespace Window
{
static SDL_Window* gpWindow;
/*
* Creates a window
*/
static SDL_Window* CreateWindow(D2GameConfigStrc* pConfig, OpenD2ConfigStrc* pOpenConfig)
{
SDL_Window* pWin = nullptr;
DWORD dwWindowFlags = 0;
if (!pConfig->bWindowed)
{
dwWindowFlags |= SDL_WINDOW_FULLSCREEN;
}
if (pOpenConfig->bBorderless)
{
dwWindowFlags |= SDL_WINDOW_BORDERLESS;
}
if (pConfig->bOpenGL)
{
dwWindowFlags |= SDL_WINDOW_OPENGL;
}
// TODO: make the size based on resolution
pWin = SDL_CreateWindow("Diablo II", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 800, 600, dwWindowFlags);
return pWin;
}
/*
* Inits SDL and creates a window
*/
void InitSDL(D2GameConfigStrc* pConfig, OpenD2ConfigStrc* pOpenConfig)
{
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_EVENTS | SDL_INIT_TIMER);
gpWindow = CreateWindow(pConfig, pOpenConfig);
Log_ErrorAssert(gpWindow != nullptr);
Renderer::Init(pConfig, pOpenConfig, gpWindow);
}
/*
* Shuts down SDL and destroys the window
*/
void ShutdownSDL()
{
DCC::GlobalShutdown();
delete RenderTarget;
SDL_DestroyWindow(gpWindow);
SDL_Quit();
}
/*
* Wrapper for SDL_ShowSimpleMessageBox
*/
void ShowMessageBox(int nMessageBoxType, char* szTitle, char* szMessage)
{
SDL_ShowSimpleMessageBox(nMessageBoxType, szTitle, szMessage, gpWindow);
}
/*
* Determines if the current window is in focus by comparing the given window ID versus the actual window ID
* @author eezstreet
*/
bool InFocus(DWORD nWindowID)
{
return SDL_GetWindowID(gpWindow) == nWindowID;
}
}