dludwig@8327
|
1 |
/*
|
dludwig@8327
|
2 |
Simple DirectMedia Layer
|
dludwig@8327
|
3 |
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
|
dludwig@8327
|
4 |
|
dludwig@8327
|
5 |
This software is provided 'as-is', without any express or implied
|
dludwig@8327
|
6 |
warranty. In no event will the authors be held liable for any damages
|
dludwig@8327
|
7 |
arising from the use of this software.
|
dludwig@8327
|
8 |
|
dludwig@8327
|
9 |
Permission is granted to anyone to use this software for any purpose,
|
dludwig@8327
|
10 |
including commercial applications, and to alter it and redistribute it
|
dludwig@8327
|
11 |
freely, subject to the following restrictions:
|
dludwig@8327
|
12 |
|
dludwig@8327
|
13 |
1. The origin of this software must not be misrepresented; you must not
|
dludwig@8327
|
14 |
claim that you wrote the original software. If you use this software
|
dludwig@8327
|
15 |
in a product, an acknowledgment in the product documentation would be
|
dludwig@8327
|
16 |
appreciated but is not required.
|
dludwig@8327
|
17 |
2. Altered source versions must be plainly marked as such, and must not be
|
dludwig@8327
|
18 |
misrepresented as being the original software.
|
dludwig@8327
|
19 |
3. This notice may not be removed or altered from any source distribution.
|
dludwig@8327
|
20 |
*/
|
slouken@8609
|
21 |
#include "../../SDL_internal.h"
|
dludwig@8327
|
22 |
|
dludwig@8327
|
23 |
#if SDL_VIDEO_DRIVER_WINRT
|
dludwig@8327
|
24 |
|
slouken@8582
|
25 |
/*
|
slouken@8582
|
26 |
* Windows includes:
|
slouken@8582
|
27 |
*/
|
slouken@8582
|
28 |
#include <Windows.h>
|
slouken@8582
|
29 |
using namespace Windows::UI::Core;
|
slouken@8582
|
30 |
using Windows::UI::Core::CoreCursor;
|
slouken@8582
|
31 |
|
slouken@8582
|
32 |
/*
|
slouken@8582
|
33 |
* SDL includes:
|
dludwig@8515
|
34 |
*/
|
dludwig@8327
|
35 |
#include "SDL_winrtevents_c.h"
|
dludwig@8531
|
36 |
#include "../../core/winrt/SDL_winrtapp_common.h"
|
dludwig@8522
|
37 |
#include "../../core/winrt/SDL_winrtapp_direct3d.h"
|
dludwig@8522
|
38 |
#include "../../core/winrt/SDL_winrtapp_xaml.h"
|
dludwig@8505
|
39 |
#include "SDL_assert.h"
|
dludwig@8505
|
40 |
#include "SDL_system.h"
|
dludwig@8331
|
41 |
|
dludwig@8494
|
42 |
extern "C" {
|
dludwig@8494
|
43 |
#include "../SDL_sysvideo.h"
|
dludwig@8494
|
44 |
#include "../../events/SDL_events_c.h"
|
dludwig@8494
|
45 |
}
|
dludwig@8494
|
46 |
|
dludwig@8505
|
47 |
|
dludwig@8515
|
48 |
/* Forward declarations */
|
dludwig@8515
|
49 |
static void WINRT_YieldXAMLThread();
|
dludwig@8327
|
50 |
|
dludwig@8494
|
51 |
|
dludwig@8505
|
52 |
/* Global event management */
|
dludwig@8494
|
53 |
|
dludwig@8327
|
54 |
void
|
dludwig@8327
|
55 |
WINRT_PumpEvents(_THIS)
|
dludwig@8327
|
56 |
{
|
dludwig@8505
|
57 |
if (SDL_WinRTGlobalApp) {
|
dludwig@8505
|
58 |
SDL_WinRTGlobalApp->PumpEvents();
|
dludwig@8531
|
59 |
} else if (WINRT_XAMLWasEnabled) {
|
dludwig@8505
|
60 |
WINRT_YieldXAMLThread();
|
dludwig@8505
|
61 |
}
|
dludwig@8327
|
62 |
}
|
dludwig@8327
|
63 |
|
dludwig@8505
|
64 |
|
dludwig@8505
|
65 |
/* XAML Thread management */
|
slouken@8582
|
66 |
|
slouken@8582
|
67 |
enum SDL_XAMLAppThreadState
|
slouken@8582
|
68 |
{
|
slouken@8582
|
69 |
ThreadState_NotLaunched = 0,
|
slouken@8582
|
70 |
ThreadState_Running,
|
slouken@8582
|
71 |
ThreadState_Yielding
|
dludwig@8505
|
72 |
};
|
dludwig@8505
|
73 |
|
slouken@8582
|
74 |
static SDL_XAMLAppThreadState _threadState = ThreadState_NotLaunched;
|
slouken@8582
|
75 |
static SDL_Thread * _XAMLThread = nullptr;
|
slouken@8582
|
76 |
static SDL_mutex * _mutex = nullptr;
|
slouken@8582
|
77 |
static SDL_cond * _cond = nullptr;
|
slouken@8582
|
78 |
|
slouken@8582
|
79 |
static void
|
slouken@8582
|
80 |
WINRT_YieldXAMLThread()
|
slouken@8582
|
81 |
{
|
slouken@8582
|
82 |
SDL_LockMutex(_mutex);
|
slouken@8582
|
83 |
SDL_assert(_threadState == ThreadState_Running);
|
slouken@8582
|
84 |
_threadState = ThreadState_Yielding;
|
slouken@8582
|
85 |
SDL_UnlockMutex(_mutex);
|
slouken@8582
|
86 |
|
slouken@8582
|
87 |
SDL_CondSignal(_cond);
|
slouken@8582
|
88 |
|
slouken@8582
|
89 |
SDL_LockMutex(_mutex);
|
slouken@8582
|
90 |
while (_threadState != ThreadState_Running) {
|
slouken@8582
|
91 |
SDL_CondWait(_cond, _mutex);
|
slouken@8582
|
92 |
}
|
slouken@8582
|
93 |
SDL_UnlockMutex(_mutex);
|
slouken@8582
|
94 |
}
|
slouken@8582
|
95 |
|
slouken@8582
|
96 |
static int
|
slouken@8582
|
97 |
WINRT_XAMLThreadMain(void * userdata)
|
slouken@8582
|
98 |
{
|
slouken@8582
|
99 |
// TODO, WinRT: pass the C-style main() a reasonably realistic
|
slouken@8582
|
100 |
// representation of command line arguments.
|
slouken@8582
|
101 |
int argc = 0;
|
slouken@8582
|
102 |
char **argv = NULL;
|
slouken@8582
|
103 |
return WINRT_SDLAppEntryPoint(argc, argv);
|
slouken@8582
|
104 |
}
|
slouken@8582
|
105 |
|
slouken@8582
|
106 |
void
|
slouken@8582
|
107 |
WINRT_CycleXAMLThread()
|
slouken@8582
|
108 |
{
|
slouken@8582
|
109 |
switch (_threadState) {
|
slouken@8582
|
110 |
case ThreadState_NotLaunched:
|
slouken@8582
|
111 |
{
|
slouken@8582
|
112 |
_cond = SDL_CreateCond();
|
slouken@8582
|
113 |
|
slouken@8582
|
114 |
_mutex = SDL_CreateMutex();
|
slouken@8582
|
115 |
_threadState = ThreadState_Running;
|
slouken@8582
|
116 |
_XAMLThread = SDL_CreateThread(WINRT_XAMLThreadMain, "SDL/XAML App Thread", nullptr);
|
slouken@8582
|
117 |
|
slouken@8582
|
118 |
SDL_LockMutex(_mutex);
|
slouken@8582
|
119 |
while (_threadState != ThreadState_Yielding) {
|
slouken@8582
|
120 |
SDL_CondWait(_cond, _mutex);
|
slouken@8582
|
121 |
}
|
slouken@8582
|
122 |
SDL_UnlockMutex(_mutex);
|
slouken@8582
|
123 |
|
slouken@8582
|
124 |
break;
|
slouken@8582
|
125 |
}
|
slouken@8582
|
126 |
|
slouken@8582
|
127 |
case ThreadState_Running:
|
slouken@8582
|
128 |
{
|
slouken@8582
|
129 |
SDL_assert(false);
|
slouken@8582
|
130 |
break;
|
slouken@8582
|
131 |
}
|
slouken@8582
|
132 |
|
slouken@8582
|
133 |
case ThreadState_Yielding:
|
slouken@8582
|
134 |
{
|
slouken@8582
|
135 |
SDL_LockMutex(_mutex);
|
slouken@8582
|
136 |
SDL_assert(_threadState == ThreadState_Yielding);
|
slouken@8582
|
137 |
_threadState = ThreadState_Running;
|
slouken@8582
|
138 |
SDL_UnlockMutex(_mutex);
|
slouken@8582
|
139 |
|
slouken@8582
|
140 |
SDL_CondSignal(_cond);
|
slouken@8582
|
141 |
|
slouken@8582
|
142 |
SDL_LockMutex(_mutex);
|
slouken@8582
|
143 |
while (_threadState != ThreadState_Yielding) {
|
slouken@8582
|
144 |
SDL_CondWait(_cond, _mutex);
|
slouken@8582
|
145 |
}
|
slouken@8582
|
146 |
SDL_UnlockMutex(_mutex);
|
slouken@8582
|
147 |
}
|
slouken@8582
|
148 |
}
|
dludwig@8505
|
149 |
}
|
dludwig@8505
|
150 |
|
dludwig@8327
|
151 |
#endif /* SDL_VIDEO_DRIVER_WINRT */
|
dludwig@8327
|
152 |
|
dludwig@8327
|
153 |
/* vi: set ts=4 sw=4 expandtab: */
|