]> git.cworth.org Git - apitrace/blob - glws_wgl.cpp
Put license in a separate file.
[apitrace] / glws_wgl.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #include "glimports.hpp"
27 #include "glws.hpp"
28
29
30 namespace glws {
31
32
33 static LRESULT CALLBACK
34 WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
35 {
36     MINMAXINFO *pMMI;
37     switch (uMsg) {
38     case WM_GETMINMAXINFO:
39         // Allow to create a window bigger than the desktop
40         pMMI = (MINMAXINFO *)lParam;
41         pMMI->ptMaxSize.x = 60000;
42         pMMI->ptMaxSize.y = 60000;
43         pMMI->ptMaxTrackSize.x = 60000;
44         pMMI->ptMaxTrackSize.y = 60000;
45         break;
46     default:
47         break;
48     }
49
50     return DefWindowProc(hWnd, uMsg, wParam, lParam);
51 }
52
53
54 class WglDrawable : public Drawable
55 {
56 public:
57     DWORD dwExStyle;
58     DWORD dwStyle;
59     HWND hWnd;
60     HDC hDC;
61     PIXELFORMATDESCRIPTOR pfd;
62     int iPixelFormat;
63
64     WglDrawable(const Visual *vis, int width, int height) :
65         Drawable(vis, width, height)
66     {
67         static bool first = TRUE;
68         RECT rect;
69
70         if (first) {
71             WNDCLASS wc;
72             memset(&wc, 0, sizeof wc);
73             wc.hbrBackground = (HBRUSH) (COLOR_BTNFACE + 1);
74             wc.hCursor = LoadCursor(NULL, IDC_ARROW);
75             wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
76             wc.lpfnWndProc = WndProc;
77             wc.lpszClassName = "glretrace";
78             wc.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
79             RegisterClass(&wc);
80             first = FALSE;
81         }
82
83         dwExStyle = 0;
84         dwStyle = WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VISIBLE | WS_OVERLAPPEDWINDOW;
85
86         int x = 0, y = 0;
87
88         rect.left = x;
89         rect.top = y;
90         rect.right = rect.left + width;
91         rect.bottom = rect.top + height;
92
93         AdjustWindowRectEx(&rect, dwStyle, FALSE, dwExStyle);
94
95         hWnd = CreateWindowEx(dwExStyle,
96                               "glretrace", /* wc.lpszClassName */
97                               NULL,
98                               dwStyle,
99                               0, /* x */
100                               0, /* y */
101                               rect.right - rect.left, /* width */
102                               rect.bottom - rect.top, /* height */
103                               NULL,
104                               NULL,
105                               NULL,
106                               NULL);
107         hDC = GetDC(hWnd);
108    
109         memset(&pfd, 0, sizeof pfd);
110         pfd.cColorBits = 3;
111         pfd.cRedBits = 1;
112         pfd.cGreenBits = 1;
113         pfd.cBlueBits = 1;
114         pfd.cDepthBits = 1;
115         pfd.cStencilBits = 1;
116         pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
117         pfd.iLayerType = PFD_MAIN_PLANE;
118         pfd.iPixelType = PFD_TYPE_RGBA;
119         pfd.nSize = sizeof(pfd);
120         pfd.nVersion = 1;
121
122         if (visual->doubleBuffer) {
123            pfd.dwFlags |= PFD_DOUBLEBUFFER;
124         }
125
126         iPixelFormat = ChoosePixelFormat(hDC, &pfd);
127
128         SetPixelFormat(hDC, iPixelFormat, &pfd);
129     }
130
131     ~WglDrawable() {
132         ReleaseDC(hWnd, hDC);
133         DestroyWindow(hWnd);
134     }
135     
136     void
137     resize(int w, int h) {
138         Drawable::resize(w, h);
139         RECT rClient, rWindow;
140         GetClientRect(hWnd, &rClient);
141         GetWindowRect(hWnd, &rWindow);
142         w += (rWindow.right  - rWindow.left) - rClient.right;
143         h += (rWindow.bottom - rWindow.top)  - rClient.bottom;
144         SetWindowPos(hWnd, NULL, rWindow.left, rWindow.top, w, h, SWP_NOMOVE);
145     }
146
147     void swapBuffers(void) {
148         SwapBuffers(hDC);
149     }
150 };
151
152
153 class WglContext : public Context
154 {
155 public:
156     HGLRC hglrc;
157     WglContext *shareContext;
158
159     WglContext(const Visual *vis, WglContext *share) :
160         Context(vis),
161         hglrc(0),
162         shareContext(share)
163     {}
164
165     ~WglContext() {
166         if (hglrc) {
167             wglDeleteContext(hglrc);
168         }
169     }
170 };
171
172
173 class WglWindowSystem : public WindowSystem
174 {
175 public:
176     Visual *
177     createVisual(bool doubleBuffer) {
178         Visual *visual = new Visual();
179
180         visual->doubleBuffer = doubleBuffer;
181
182         return visual;
183     }
184     
185     Drawable *
186     createDrawable(const Visual *visual, int width, int height)
187     {
188         return new WglDrawable(visual, width, height);
189     }
190
191     Context *
192     createContext(const Visual *visual, Context *shareContext)
193     {
194         return new WglContext(visual, dynamic_cast<WglContext *>(shareContext));
195     }
196
197     bool
198     makeCurrent(Drawable *drawable, Context *context)
199     {
200         if (!drawable || !context) {
201             return wglMakeCurrent(NULL, NULL);
202         } else {
203             WglDrawable *wglDrawable = dynamic_cast<WglDrawable *>(drawable);
204             WglContext *wglContext = dynamic_cast<WglContext *>(context);
205
206             if (!wglContext->hglrc) {
207                 wglContext->hglrc = wglCreateContext(wglDrawable->hDC);
208                 if (!wglContext->hglrc) {
209                     return false;
210                 }
211                 if (wglContext->shareContext) {
212                     wglShareLists(wglContext->shareContext->hglrc,
213                                   wglContext->hglrc);
214                 }
215             }
216
217             return wglMakeCurrent(wglDrawable->hDC, wglContext->hglrc);
218         }
219     }
220
221     bool
222     processEvents(void) {
223         // TODO
224         return true;
225     }
226 };
227
228
229 WindowSystem *createNativeWindowSystem(void) {
230     return new WglWindowSystem();
231 }
232
233
234 } /* namespace glretrace */