Mercurial > hg > orthanc-stone
annotate Applications/Sdl/SdlEngine.h @ 53:c2dc924f1a63 wasm
removing threading out of the framework
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Apr 2017 16:57:49 +0200 |
parents | b340879da9bd |
children | 9e3c2e75b870 |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
40
7207a407bcd8
shared copyright with osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
5 * Copyright (C) 2017 Osimis, Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
47 | 8 * modify it under the terms of the GNU Affero General Public License |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
0 | 11 * |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
47 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
0 | 18 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #if ORTHANC_ENABLE_SDL == 1 | |
25 | |
26 #include "SdlBuffering.h" | |
51 | 27 #include "../BinarySemaphore.h" |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
28 #include "../BasicApplicationContext.h" |
0 | 29 |
30 #include <boost/thread.hpp> | |
31 | |
32 namespace OrthancStone | |
33 { | |
34 class SdlEngine : public IViewport::IChangeObserver | |
35 { | |
36 private: | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
37 SdlWindow& window_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
38 BasicApplicationContext& context_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
39 SdlBuffering buffering_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
40 boost::thread renderThread_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
41 bool continue_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
42 BinarySemaphore renderFrame_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
43 uint32_t refreshEvent_; |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
44 bool viewportChanged_; |
0 | 45 |
46 void RenderFrame(); | |
47 | |
48 static void RenderThread(SdlEngine* that); | |
49 | |
50 static KeyboardModifiers GetKeyboardModifiers(const uint8_t* keyboardState, | |
51 const int scancodeCount); | |
52 | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
53 void SetSize(BasicApplicationContext::ViewportLocker& locker, |
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
54 unsigned int width, |
0 | 55 unsigned int height); |
56 | |
57 void Stop(); | |
58 | |
59 void Refresh(); | |
60 | |
61 public: | |
62 SdlEngine(SdlWindow& window, | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
63 BasicApplicationContext& context); |
0 | 64 |
65 virtual ~SdlEngine(); | |
66 | |
67 virtual void NotifyChange(const IViewport& viewport) | |
68 { | |
69 viewportChanged_ = true; | |
70 } | |
71 | |
72 void Run(); | |
73 | |
74 static void GlobalInitialize(); | |
75 | |
76 static void GlobalFinalize(); | |
77 }; | |
78 } | |
79 | |
80 #endif |