b1c51da15b63efe6700bc3c67f3da184372ddebc
[freeglut] / src / mswin / fg_init_mswin.c
1 /*
2  * fg_init_mswin.c
3  *
4  * The Windows-specific mouse cursor related stuff.
5  *
6  * Copyright (c) 2012 Stephen J. Baker. All Rights Reserved.
7  * Written by John F. Fay, <fayjf@sourceforge.net>
8  * Creation date: Thu Jan 19, 2012
9  *
10  * Permission is hereby granted, free of charge, to any person obtaining a
11  * copy of this software and associated documentation files (the "Software"),
12  * to deal in the Software without restriction, including without limitation
13  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14  * and/or sell copies of the Software, and to permit persons to whom the
15  * Software is furnished to do so, subject to the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be included
18  * in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
23  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26  */
27
28 #define FREEGLUT_BUILDING_LIB
29 #include <GL/freeglut.h>
30 #include "../fg_internal.h"
31
32
33
34 extern LRESULT CALLBACK fgPlatformWindowProc( HWND hWnd, UINT uMsg,
35                                WPARAM wParam, LPARAM lParam );
36 extern void fgPlatformInitSystemTime();
37 extern void fghCloseInputDevices(void);
38
39
40 /*
41  * A call to this function should initialize all the display stuff...
42  */
43 void fgPlatformInitialize( const char* displayName )
44 {
45     WNDCLASS wc;
46     BOOL atom;
47
48     /* What we need to do is to initialize the fgDisplay global structure here. */
49     fgDisplay.pDisplay.Instance = GetModuleHandle( NULL );
50     fgDisplay.pDisplay.DisplayName= displayName ? strdup(displayName) : 0 ;
51     atom = GetClassInfo( fgDisplay.pDisplay.Instance, _T("FREEGLUT"), &wc );
52
53     if( atom == 0 )
54     {
55         ZeroMemory( &wc, sizeof(WNDCLASS) );
56
57         /*
58          * Each of the windows should have its own device context, and we
59          * want redraw events during Vertical and Horizontal Resizes by
60          * the user.
61          */
62         wc.lpfnWndProc    = fgPlatformWindowProc;
63         wc.cbClsExtra     = 0;
64         wc.cbWndExtra     = 0;
65         wc.hInstance      = fgDisplay.pDisplay.Instance;
66         wc.hIcon          = LoadIcon( fgDisplay.pDisplay.Instance, _T("GLUT_ICON") );
67
68 #if defined(_WIN32_WCE)
69         wc.style          = CS_HREDRAW | CS_VREDRAW;
70 #else
71         wc.style          = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
72         if (!wc.hIcon)
73           wc.hIcon        = LoadIcon( NULL, IDI_WINLOGO );
74 #endif
75
76         wc.hCursor        = LoadCursor( NULL, IDC_ARROW );
77         wc.hbrBackground  = NULL;
78         wc.lpszMenuName   = NULL;
79         wc.lpszClassName  = _T("FREEGLUT");
80
81         /* Register the window class */
82         atom = RegisterClass( &wc );
83         FREEGLUT_INTERNAL_ERROR_EXIT ( atom, "Window Class Not Registered", "fgPlatformInitialize" );
84     }
85
86     /* The screen dimensions can be obtained via GetSystemMetrics() calls */
87     fgDisplay.ScreenWidth  = GetSystemMetrics( SM_CXSCREEN );
88     fgDisplay.ScreenHeight = GetSystemMetrics( SM_CYSCREEN );
89
90     {
91         HWND desktop = GetDesktopWindow( );
92         HDC  context = GetDC( desktop );
93
94         fgDisplay.ScreenWidthMM  = GetDeviceCaps( context, HORZSIZE );
95         fgDisplay.ScreenHeightMM = GetDeviceCaps( context, VERTSIZE );
96
97         ReleaseDC( desktop, context );
98     }
99     /* If we have a DisplayName try to use it for metrics */
100     if( fgDisplay.pDisplay.DisplayName )
101     {
102         HDC context = CreateDC(fgDisplay.pDisplay.DisplayName,0,0,0);
103         if( context )
104         {
105             fgDisplay.ScreenWidth  = GetDeviceCaps( context, HORZRES );
106             fgDisplay.ScreenHeight = GetDeviceCaps( context, VERTRES );
107             fgDisplay.ScreenWidthMM  = GetDeviceCaps( context, HORZSIZE );
108             fgDisplay.ScreenHeightMM = GetDeviceCaps( context, VERTSIZE );
109             DeleteDC(context);
110         }
111         else
112             fgWarning("fgPlatformInitialize: "
113                       "CreateDC failed, Screen size info may be incorrect\n"
114           "This is quite likely caused by a bad '-display' parameter");
115       
116     }
117     /* Set the timer granularity to 1 ms */
118     timeBeginPeriod ( 1 );
119     /* Init setup to deal with timer wrap, can't query system time before this is done */
120     fgPlatformInitSystemTime();
121     /* Get start time */
122     fgState.Time = fgSystemTime();
123
124
125     fgState.Initialised = GL_TRUE;
126
127     /* Avoid registering atexit callback on Win32 as it can result in an
128      * access violation due to calling into a module which has been
129      * unloaded.
130      * Any cleanup isn't needed on Windows anyway, the OS takes care of it.
131      * see: http://blogs.msdn.com/b/oldnewthing/archive/2012/01/05/10253268.aspx
132      */
133 /*    atexit(fgDeinitialize); */
134
135     /* InputDevice uses GlutTimerFunc(), so fgState.Initialised must be TRUE */
136     fgInitialiseInputDevices();
137 }
138
139
140
141 /* Platform-Specific Deinitialization Functions: */
142 void fgPlatformDeinitialiseInputDevices ( void )
143 {
144 #if !defined(_WIN32_WCE)
145         fghCloseInputDevices ();
146 #endif /* !defined(_WIN32_WCE) */
147     fgState.JoysticksInitialised = GL_FALSE;
148     fgState.InputDevsInitialised = GL_FALSE;
149 }
150
151 void fgPlatformCloseDisplay ( void )
152 {
153     if( fgDisplay.pDisplay.DisplayName )
154     {
155         free( fgDisplay.pDisplay.DisplayName );
156         fgDisplay.pDisplay.DisplayName = NULL;
157     }
158
159     /* Reset the timer granularity */
160     timeEndPeriod ( 1 );
161 }
162
163 void fgPlatformDestroyContext ( SFG_PlatformDisplay pDisplay, SFG_WindowContextType MContext )
164 {
165         /* Do nothing -- this is required for X11 */
166 }
167
168 /* -- PLATFORM-SPECIFIC INTERFACE FUNCTION -------------------------------------------------- */
169
170 void (__cdecl *__glutExitFunc)( int return_value ) = NULL;
171
172 void FGAPIENTRY __glutInitWithExit( int *pargc, char **argv, void (__cdecl *exit_function)(int) )
173 {
174   __glutExitFunc = exit_function;
175   glutInit(pargc, argv);
176 }
177