| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  os_windows.cpp                                                       */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-01-01 12:53:14 +01:00
										 |  |  | /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2015-01-10 17:35:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-02 05:32:12 +02:00
										 |  |  | // Must include Winsock before windows.h (included by os_windows.h)
 | 
					
						
							|  |  |  | #include "drivers/unix/net_socket_posix.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "os_windows.h"
 | 
					
						
							| 
									
										
										
										
											2016-12-21 02:29:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/io/marshalls.h"
 | 
					
						
							|  |  |  | #include "core/version_generated.gen.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-06 15:53:30 +02:00
										 |  |  | #include "drivers/gles2/rasterizer_gles2.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-02 21:38:20 +01:00
										 |  |  | #include "drivers/gles3/rasterizer_gles3.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "drivers/windows/dir_access_windows.h"
 | 
					
						
							|  |  |  | #include "drivers/windows/file_access_windows.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "drivers/windows/mutex_windows.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-08 11:13:12 -03:00
										 |  |  | #include "drivers/windows/rw_lock_windows.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "drivers/windows/semaphore_windows.h"
 | 
					
						
							|  |  |  | #include "drivers/windows/thread_windows.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-12 15:43:54 +01:00
										 |  |  | #include "joypad_windows.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "lang_table.h"
 | 
					
						
							|  |  |  | #include "main/main.h"
 | 
					
						
							| 
									
										
										
										
											2017-06-10 10:15:33 -03:00
										 |  |  | #include "servers/audio_server.h"
 | 
					
						
							|  |  |  | #include "servers/visual/visual_server_raster.h"
 | 
					
						
							|  |  |  | #include "servers/visual/visual_server_wrap_mt.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-22 12:56:02 +07:00
										 |  |  | #include "windows_terminal_logger.h"
 | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 15:43:54 +01:00
										 |  |  | #include <avrt.h>
 | 
					
						
							| 
									
										
										
										
											2019-02-20 13:00:19 +01:00
										 |  |  | #include <direct.h>
 | 
					
						
							| 
									
										
										
										
											2019-04-22 09:42:11 -07:00
										 |  |  | #include <knownfolders.h>
 | 
					
						
							| 
									
										
										
										
											2016-04-29 13:57:57 -03:00
										 |  |  | #include <process.h>
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include <regstr.h>
 | 
					
						
							|  |  |  | #include <shlobj.h>
 | 
					
						
							| 
									
										
										
										
											2015-02-12 04:17:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | static const WORD MAX_CONSOLE_LINES = 1500; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-17 02:48:35 +01:00
										 |  |  | extern "C" { | 
					
						
							| 
									
										
										
										
											2018-11-02 23:10:44 +01:00
										 |  |  | __declspec(dllexport) DWORD NvOptimusEnablement = 1; | 
					
						
							|  |  |  | __declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1; | 
					
						
							| 
									
										
										
										
											2015-01-17 02:48:35 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 20:46:13 +02:00
										 |  |  | // Workaround mingw-w64 < 4.0 bug
 | 
					
						
							|  |  |  | #ifndef WM_TOUCH
 | 
					
						
							|  |  |  | #define WM_TOUCH 576
 | 
					
						
							| 
									
										
										
										
											2016-02-04 17:16:22 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 22:32:11 +02:00
										 |  |  | #ifndef WM_POINTERUPDATE
 | 
					
						
							|  |  |  | #define WM_POINTERUPDATE 0x0245
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-03 18:52:23 -03:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  | 	int count; | 
					
						
							|  |  |  | 	int screen; | 
					
						
							|  |  |  | 	Size2 size; | 
					
						
							|  |  |  | } EnumSizeData; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	int count; | 
					
						
							|  |  |  | 	int screen; | 
					
						
							|  |  |  | 	Point2 pos; | 
					
						
							|  |  |  | } EnumPosData; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static BOOL CALLBACK _MonitorEnumProcSize(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EnumSizeData *data = (EnumSizeData *)dwData; | 
					
						
							|  |  |  | 	if (data->count == data->screen) { | 
					
						
							|  |  |  | 		data->size.x = lprcMonitor->right - lprcMonitor->left; | 
					
						
							|  |  |  | 		data->size.y = lprcMonitor->bottom - lprcMonitor->top; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	data->count++; | 
					
						
							|  |  |  | 	return TRUE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-12-01 08:42:57 -03:00
										 |  |  | static String format_error_message(DWORD id) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	LPWSTR messageBuffer = NULL; | 
					
						
							|  |  |  | 	size_t size = FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, | 
					
						
							| 
									
										
										
										
											2017-11-30 19:55:38 +01:00
										 |  |  | 			NULL, id, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPWSTR)&messageBuffer, 0, NULL); | 
					
						
							| 
									
										
										
										
											2017-12-01 08:42:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-30 19:55:38 +01:00
										 |  |  | 	String msg = "Error " + itos(id) + ": " + String(messageBuffer, size); | 
					
						
							| 
									
										
										
										
											2017-12-01 08:42:57 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	LocalFree(messageBuffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return msg; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-12-01 08:42:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | extern HINSTANCE godot_hinstance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void RedirectIOToConsole() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int hConHandle; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	intptr_t lStdHandle; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CONSOLE_SCREEN_BUFFER_INFO coninfo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	FILE *fp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// allocate a console for this app
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AllocConsole(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// set the screen buffer to be big enough to let us scroll text
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			&coninfo); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	coninfo.dwSize.Y = MAX_CONSOLE_LINES; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			coninfo.dwSize); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// redirect unbuffered STDOUT to the console
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lStdHandle = (intptr_t)GetStdHandle(STD_OUTPUT_HANDLE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hConHandle = _open_osfhandle(lStdHandle, _O_TEXT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	fp = _fdopen(hConHandle, "w"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*stdout = *fp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	setvbuf(stdout, NULL, _IONBF, 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// redirect unbuffered STDIN to the console
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lStdHandle = (intptr_t)GetStdHandle(STD_INPUT_HANDLE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hConHandle = _open_osfhandle(lStdHandle, _O_TEXT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	fp = _fdopen(hConHandle, "r"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*stdin = *fp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	setvbuf(stdin, NULL, _IONBF, 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// redirect unbuffered STDERR to the console
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lStdHandle = (intptr_t)GetStdHandle(STD_ERROR_HANDLE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hConHandle = _open_osfhandle(lStdHandle, _O_TEXT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	fp = _fdopen(hConHandle, "w"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*stderr = *fp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	setvbuf(stderr, NULL, _IONBF, 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// make cout, wcout, cin, wcin, wcerr, cerr, wclog and clog
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// point to console as well
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 06:08:37 -05:00
										 |  |  | BOOL WINAPI HandlerRoutine(_In_ DWORD dwCtrlType) { | 
					
						
							|  |  |  | 	if (ScriptDebugger::get_singleton() == NULL) | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (dwCtrlType) { | 
					
						
							|  |  |  | 		case CTRL_C_EVENT: | 
					
						
							|  |  |  | 			ScriptDebugger::get_singleton()->set_depth(-1); | 
					
						
							|  |  |  | 			ScriptDebugger::get_singleton()->set_lines_left(1); | 
					
						
							|  |  |  | 			return TRUE; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 22:32:11 +02:00
										 |  |  | GetPointerTypePtr OS_Windows::win8p_GetPointerType = NULL; | 
					
						
							|  |  |  | GetPointerPenInfoPtr OS_Windows::win8p_GetPointerPenInfo = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 06:08:37 -05:00
										 |  |  | void OS_Windows::initialize_debugging() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SetConsoleCtrlHandler(HandlerRoutine, TRUE); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void OS_Windows::initialize_core() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-07 22:01:49 -03:00
										 |  |  | 	crash_handler.initialize(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	last_button_state = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	//RedirectIOToConsole();
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	maximized = false; | 
					
						
							|  |  |  | 	minimized = false; | 
					
						
							|  |  |  | 	borderless = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	ThreadWindows::make_default(); | 
					
						
							|  |  |  | 	SemaphoreWindows::make_default(); | 
					
						
							|  |  |  | 	MutexWindows::make_default(); | 
					
						
							| 
									
										
										
										
											2017-01-08 11:13:12 -03:00
										 |  |  | 	RWLockWindows::make_default(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	FileAccess::make_default<FileAccessWindows>(FileAccess::ACCESS_RESOURCES); | 
					
						
							|  |  |  | 	FileAccess::make_default<FileAccessWindows>(FileAccess::ACCESS_USERDATA); | 
					
						
							|  |  |  | 	FileAccess::make_default<FileAccessWindows>(FileAccess::ACCESS_FILESYSTEM); | 
					
						
							|  |  |  | 	//FileAccessBufferedFA<FileAccessWindows>::make_default();
 | 
					
						
							|  |  |  | 	DirAccess::make_default<DirAccessWindows>(DirAccess::ACCESS_RESOURCES); | 
					
						
							|  |  |  | 	DirAccess::make_default<DirAccessWindows>(DirAccess::ACCESS_USERDATA); | 
					
						
							|  |  |  | 	DirAccess::make_default<DirAccessWindows>(DirAccess::ACCESS_FILESYSTEM); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-02 05:32:12 +02:00
										 |  |  | 	NetSocketPosix::make_default(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	// We need to know how often the clock is updated
 | 
					
						
							|  |  |  | 	if (!QueryPerformanceFrequency((LARGE_INTEGER *)&ticks_per_second)) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		ticks_per_second = 1000; | 
					
						
							|  |  |  | 	// If timeAtGameStart is 0 then we get the time since
 | 
					
						
							|  |  |  | 	// the start of the computer when we call GetGameTime()
 | 
					
						
							|  |  |  | 	ticks_start = 0; | 
					
						
							|  |  |  | 	ticks_start = get_ticks_usec(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-01 09:47:34 +02:00
										 |  |  | 	// set minimum resolution for periodic timers, otherwise Sleep(n) may wait at least as
 | 
					
						
							|  |  |  | 	//  long as the windows scheduler resolution (~16-30ms) even for calls like Sleep(1)
 | 
					
						
							|  |  |  | 	timeBeginPeriod(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	process_map = memnew((Map<ProcessID, ProcessInfo>)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	IP_Unix::make_default(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	cursor_shape = CURSOR_ARROW; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool OS_Windows::can_draw() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return !minimized; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | #define MI_WP_SIGNATURE 0xFF515700
 | 
					
						
							|  |  |  | #define SIGNATURE_MASK 0xFFFFFF00
 | 
					
						
							| 
									
										
										
										
											2018-08-30 20:05:59 +02:00
										 |  |  | // Keeping the name suggested by Microsoft, but this macro really answers:
 | 
					
						
							|  |  |  | // Is this mouse event emulated from touch or pen input?
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define IsPenEvent(dw) (((dw)&SIGNATURE_MASK) == MI_WP_SIGNATURE)
 | 
					
						
							| 
									
										
										
										
											2018-08-30 20:05:59 +02:00
										 |  |  | // This one tells whether the event comes from touchscreen (and not from pen)
 | 
					
						
							|  |  |  | #define IsTouchEvent(dw) (IsPenEvent(dw) && ((dw)&0x80))
 | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-30 19:55:38 +01:00
										 |  |  | void OS_Windows::_touch_event(bool p_pressed, float p_x, float p_y, int idx) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Defensive
 | 
					
						
							|  |  |  | 	if (touch_state.has(idx) == p_pressed) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_pressed) { | 
					
						
							|  |  |  | 		touch_state.insert(idx, Vector2(p_x, p_y)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		touch_state.erase(idx); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	Ref<InputEventScreenTouch> event; | 
					
						
							|  |  |  | 	event.instance(); | 
					
						
							|  |  |  | 	event->set_index(idx); | 
					
						
							|  |  |  | 	event->set_pressed(p_pressed); | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 	event->set_position(Vector2(p_x, p_y)); | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (main_loop) { | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 		input->accumulate_input_event(event); | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-30 19:55:38 +01:00
										 |  |  | void OS_Windows::_drag_event(float p_x, float p_y, int idx) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Map<int, Vector2>::Element *curr = touch_state.find(idx); | 
					
						
							|  |  |  | 	// Defensive
 | 
					
						
							|  |  |  | 	if (!curr) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (curr->get() == Vector2(p_x, p_y)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	Ref<InputEventScreenDrag> event; | 
					
						
							|  |  |  | 	event.instance(); | 
					
						
							|  |  |  | 	event->set_index(idx); | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 	event->set_position(Vector2(p_x, p_y)); | 
					
						
							| 
									
										
										
										
											2019-10-26 15:55:46 -06:00
										 |  |  | 	event->set_relative(Vector2(p_x, p_y) - curr->get()); | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (main_loop) | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 		input->accumulate_input_event(event); | 
					
						
							| 
									
										
										
										
											2019-10-26 15:55:46 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	curr->get() = Vector2(p_x, p_y); | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | 	if (drop_events) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (user_proc) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return CallWindowProcW(user_proc, hWnd, uMsg, wParam, lParam); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			return DefWindowProcW(hWnd, uMsg, wParam, lParam); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	switch (uMsg) // Check For Windows Messages
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		case WM_SETFOCUS: { | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			window_has_focus = true; | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// Restore mouse mode
 | 
					
						
							|  |  |  | 			_set_mouse_mode_impl(mouse_mode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		case WM_KILLFOCUS: { | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			window_has_focus = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 			// Release capture unconditionally because it can be set due to dragging, in addition to captured mode
 | 
					
						
							|  |  |  | 			ReleaseCapture(); | 
					
						
							| 
									
										
										
										
											2017-12-01 21:06:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-30 19:55:38 +01:00
										 |  |  | 			// Release every touch to avoid sticky points
 | 
					
						
							|  |  |  | 			for (Map<int, Vector2>::Element *E = touch_state.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 				_touch_event(false, E->get().x, E->get().y, E->key()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			touch_state.clear(); | 
					
						
							| 
									
										
										
										
											2017-12-01 21:06:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		case WM_ACTIVATE: // Watch For Window Activate Message
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			minimized = HIWORD(wParam) != 0; | 
					
						
							|  |  |  | 			if (!main_loop) { | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			if (LOWORD(wParam) == WA_ACTIVE || LOWORD(wParam) == WA_CLICKACTIVE) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				main_loop->notification(MainLoop::NOTIFICATION_WM_FOCUS_IN); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				alt_mem = false; | 
					
						
							|  |  |  | 				control_mem = false; | 
					
						
							|  |  |  | 				shift_mem = false; | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 			} else { // WM_INACTIVE
 | 
					
						
							| 
									
										
										
										
											2019-04-15 14:41:44 -03:00
										 |  |  | 				input->release_pressed_events(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				main_loop->notification(MainLoop::NOTIFICATION_WM_FOCUS_OUT); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				alt_mem = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			return 0; // Return To The Message Loop
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-06-13 15:31:08 +03:00
										 |  |  | 		case WM_GETMINMAXINFO: { | 
					
						
							|  |  |  | 			if (video_mode.resizable && !video_mode.fullscreen) { | 
					
						
							|  |  |  | 				Size2 decor = get_real_window_size() - get_window_size(); // Size of window decorations
 | 
					
						
							|  |  |  | 				MINMAXINFO *min_max_info = (MINMAXINFO *)lParam; | 
					
						
							|  |  |  | 				if (min_size != Size2()) { | 
					
						
							|  |  |  | 					min_max_info->ptMinTrackSize.x = min_size.x + decor.x; | 
					
						
							|  |  |  | 					min_max_info->ptMinTrackSize.y = min_size.y + decor.y; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (max_size != Size2()) { | 
					
						
							|  |  |  | 					min_max_info->ptMaxTrackSize.x = max_size.x + decor.x; | 
					
						
							|  |  |  | 					min_max_info->ptMaxTrackSize.y = max_size.y + decor.y; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_PAINT: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Main::force_redraw(); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		case WM_SYSCOMMAND: // Intercept System Commands
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			switch (wParam) // Check System Calls
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				case SC_SCREENSAVE: // Screensaver Trying To Start?
 | 
					
						
							|  |  |  | 				case SC_MONITORPOWER: // Monitor Trying To Enter Powersave?
 | 
					
						
							|  |  |  | 					return 0; // Prevent From Happening
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				case SC_KEYMENU: | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					if ((lParam >> 16) <= 0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 						return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			break; // Exit
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		case WM_CLOSE: // Did We Receive A Close Message?
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			if (main_loop) | 
					
						
							|  |  |  | 				main_loop->notification(MainLoop::NOTIFICATION_WM_QUIT_REQUEST); | 
					
						
							|  |  |  | 			//force_quit=true;
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			return 0; // Jump Back
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		case WM_MOUSELEAVE: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			old_invalid = true; | 
					
						
							|  |  |  | 			outside = true; | 
					
						
							|  |  |  | 			if (main_loop && mouse_mode != MOUSE_MODE_CAPTURED) | 
					
						
							| 
									
										
										
										
											2015-09-24 18:06:15 -03:00
										 |  |  | 				main_loop->notification(MainLoop::NOTIFICATION_WM_MOUSE_EXIT); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2018-07-27 19:32:27 +03:00
										 |  |  | 		case WM_INPUT: { | 
					
						
							|  |  |  | 			if (mouse_mode != MOUSE_MODE_CAPTURED || !use_raw_input) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			UINT dwSize; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			GetRawInputData((HRAWINPUT)lParam, RID_INPUT, NULL, &dwSize, sizeof(RAWINPUTHEADER)); | 
					
						
							|  |  |  | 			LPBYTE lpb = new BYTE[dwSize]; | 
					
						
							|  |  |  | 			if (lpb == NULL) { | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (GetRawInputData((HRAWINPUT)lParam, RID_INPUT, lpb, &dwSize, sizeof(RAWINPUTHEADER)) != dwSize) | 
					
						
							|  |  |  | 				OutputDebugString(TEXT("GetRawInputData does not return correct size !\n")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RAWINPUT *raw = (RAWINPUT *)lpb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (raw->header.dwType == RIM_TYPEMOUSE) { | 
					
						
							|  |  |  | 				Ref<InputEventMouseMotion> mm; | 
					
						
							|  |  |  | 				mm.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				mm->set_control(control_mem); | 
					
						
							|  |  |  | 				mm->set_shift(shift_mem); | 
					
						
							|  |  |  | 				mm->set_alt(alt_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				mm->set_button_mask(last_button_state); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				Point2i c(video_mode.width / 2, video_mode.height / 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// centering just so it works as before
 | 
					
						
							|  |  |  | 				POINT pos = { (int)c.x, (int)c.y }; | 
					
						
							|  |  |  | 				ClientToScreen(hWnd, &pos); | 
					
						
							|  |  |  | 				SetCursorPos(pos.x, pos.y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				mm->set_position(c); | 
					
						
							|  |  |  | 				mm->set_global_position(c); | 
					
						
							|  |  |  | 				input->set_mouse_position(c); | 
					
						
							|  |  |  | 				mm->set_speed(Vector2(0, 0)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-24 09:35:07 +02:00
										 |  |  | 				if (raw->data.mouse.usFlags == MOUSE_MOVE_RELATIVE) { | 
					
						
							| 
									
										
										
										
											2018-07-27 19:32:27 +03:00
										 |  |  | 					mm->set_relative(Vector2(raw->data.mouse.lLastX, raw->data.mouse.lLastY)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-22 21:27:15 -03:00
										 |  |  | 				} else if (raw->data.mouse.usFlags == MOUSE_MOVE_ABSOLUTE) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					int nScreenWidth = GetSystemMetrics(SM_CXVIRTUALSCREEN); | 
					
						
							|  |  |  | 					int nScreenHeight = GetSystemMetrics(SM_CYVIRTUALSCREEN); | 
					
						
							|  |  |  | 					int nScreenLeft = GetSystemMetrics(SM_XVIRTUALSCREEN); | 
					
						
							|  |  |  | 					int nScreenTop = GetSystemMetrics(SM_YVIRTUALSCREEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					Vector2 abs_pos( | 
					
						
							| 
									
										
										
										
											2018-08-24 09:35:07 +02:00
										 |  |  | 							(double(raw->data.mouse.lLastX) - 65536.0 / (nScreenWidth)) * nScreenWidth / 65536.0 + nScreenLeft, | 
					
						
							|  |  |  | 							(double(raw->data.mouse.lLastY) - 65536.0 / (nScreenHeight)) * nScreenHeight / 65536.0 + nScreenTop); | 
					
						
							| 
									
										
										
										
											2018-08-22 21:27:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					POINT coords; //client coords
 | 
					
						
							|  |  |  | 					coords.x = abs_pos.x; | 
					
						
							|  |  |  | 					coords.y = abs_pos.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					ScreenToClient(hWnd, &coords); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-24 09:35:07 +02:00
										 |  |  | 					mm->set_relative(Vector2(coords.x - old_x, coords.y - old_y)); | 
					
						
							| 
									
										
										
										
											2018-08-22 21:27:15 -03:00
										 |  |  | 					old_x = coords.x; | 
					
						
							|  |  |  | 					old_y = coords.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					/*Input.mi.dx = (int)((((double)(pos.x)-nScreenLeft) * 65536) / nScreenWidth + 65536 / (nScreenWidth));
 | 
					
						
							|  |  |  | 					Input.mi.dy = (int)((((double)(pos.y)-nScreenTop) * 65536) / nScreenHeight + 65536 / (nScreenHeight)); | 
					
						
							|  |  |  | 					*/ | 
					
						
							| 
									
										
										
										
											2018-07-27 19:32:27 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-23 12:06:55 +03:00
										 |  |  | 				if (window_has_focus && main_loop && mm->get_relative() != Vector2()) | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 					input->accumulate_input_event(mm); | 
					
						
							| 
									
										
										
										
											2018-07-27 19:32:27 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			delete[] lpb; | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2018-12-13 22:32:11 +02:00
										 |  |  | 		case WM_POINTERUPDATE: { | 
					
						
							|  |  |  | 			if (mouse_mode == MOUSE_MODE_CAPTURED && use_raw_input) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!win8p_GetPointerType || !win8p_GetPointerPenInfo) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			uint32_t pointer_id = LOWORD(wParam); | 
					
						
							|  |  |  | 			POINTER_INPUT_TYPE pointer_type = PT_POINTER; | 
					
						
							|  |  |  | 			if (!win8p_GetPointerType(pointer_id, &pointer_type)) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (pointer_type != PT_PEN) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			POINTER_PEN_INFO pen_info; | 
					
						
							|  |  |  | 			if (!win8p_GetPointerPenInfo(pointer_id, &pen_info)) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (input->is_emulating_mouse_from_touch()) { | 
					
						
							|  |  |  | 				// Universal translation enabled; ignore OS translation
 | 
					
						
							|  |  |  | 				LPARAM extra = GetMessageExtraInfo(); | 
					
						
							|  |  |  | 				if (IsTouchEvent(extra)) { | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (outside) { | 
					
						
							|  |  |  | 				//mouse enter
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (main_loop && mouse_mode != MOUSE_MODE_CAPTURED) | 
					
						
							|  |  |  | 					main_loop->notification(MainLoop::NOTIFICATION_WM_MOUSE_ENTER); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				CursorShape c = cursor_shape; | 
					
						
							|  |  |  | 				cursor_shape = CURSOR_MAX; | 
					
						
							|  |  |  | 				set_cursor_shape(c); | 
					
						
							|  |  |  | 				outside = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				//Once-Off notification, must call again....
 | 
					
						
							|  |  |  | 				TRACKMOUSEEVENT tme; | 
					
						
							|  |  |  | 				tme.cbSize = sizeof(TRACKMOUSEEVENT); | 
					
						
							|  |  |  | 				tme.dwFlags = TME_LEAVE; | 
					
						
							|  |  |  | 				tme.hwndTrack = hWnd; | 
					
						
							|  |  |  | 				tme.dwHoverTime = HOVER_DEFAULT; | 
					
						
							|  |  |  | 				TrackMouseEvent(&tme); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Don't calculate relative mouse movement if we don't have focus in CAPTURED mode.
 | 
					
						
							|  |  |  | 			if (!window_has_focus && mouse_mode == MOUSE_MODE_CAPTURED) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Ref<InputEventMouseMotion> mm; | 
					
						
							|  |  |  | 			mm.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mm->set_pressure(pen_info.pressure ? (float)pen_info.pressure / 1024 : 0); | 
					
						
							|  |  |  | 			mm->set_tilt(Vector2(pen_info.tiltX ? (float)pen_info.tiltX / 90 : 0, pen_info.tiltY ? (float)pen_info.tiltY / 90 : 0)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mm->set_control((wParam & MK_CONTROL) != 0); | 
					
						
							|  |  |  | 			mm->set_shift((wParam & MK_SHIFT) != 0); | 
					
						
							|  |  |  | 			mm->set_alt(alt_mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mm->set_button_mask(last_button_state); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mm->set_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | 
					
						
							|  |  |  | 			mm->set_global_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (mouse_mode == MOUSE_MODE_CAPTURED) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				Point2i c(video_mode.width / 2, video_mode.height / 2); | 
					
						
							|  |  |  | 				old_x = c.x; | 
					
						
							|  |  |  | 				old_y = c.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (mm->get_position() == c) { | 
					
						
							|  |  |  | 					center = c; | 
					
						
							|  |  |  | 					return 0; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				Point2i ncenter = mm->get_position(); | 
					
						
							|  |  |  | 				center = ncenter; | 
					
						
							|  |  |  | 				POINT pos = { (int)c.x, (int)c.y }; | 
					
						
							|  |  |  | 				ClientToScreen(hWnd, &pos); | 
					
						
							|  |  |  | 				SetCursorPos(pos.x, pos.y); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			input->set_mouse_position(mm->get_position()); | 
					
						
							|  |  |  | 			mm->set_speed(input->get_last_mouse_speed()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (old_invalid) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				old_x = mm->get_position().x; | 
					
						
							|  |  |  | 				old_y = mm->get_position().y; | 
					
						
							|  |  |  | 				old_invalid = false; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mm->set_relative(Vector2(mm->get_position() - Vector2(old_x, old_y))); | 
					
						
							|  |  |  | 			old_x = mm->get_position().x; | 
					
						
							|  |  |  | 			old_y = mm->get_position().y; | 
					
						
							|  |  |  | 			if (window_has_focus && main_loop) | 
					
						
							|  |  |  | 				input->parse_input_event(mm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return 0; //Pointer event handled return 0 to avoid duplicate WM_MOUSEMOVE event
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_MOUSEMOVE: { | 
					
						
							| 
									
										
										
										
											2018-07-27 19:32:27 +03:00
										 |  |  | 			if (mouse_mode == MOUSE_MODE_CAPTURED && use_raw_input) { | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-24 03:04:30 +01:00
										 |  |  | 			if (input->is_emulating_mouse_from_touch()) { | 
					
						
							|  |  |  | 				// Universal translation enabled; ignore OS translation
 | 
					
						
							|  |  |  | 				LPARAM extra = GetMessageExtraInfo(); | 
					
						
							| 
									
										
										
										
											2018-08-30 20:05:59 +02:00
										 |  |  | 				if (IsTouchEvent(extra)) { | 
					
						
							| 
									
										
										
										
											2018-02-24 03:04:30 +01:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 			if (outside) { | 
					
						
							| 
									
										
										
										
											2015-09-24 18:06:15 -03:00
										 |  |  | 				//mouse enter
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if (main_loop && mouse_mode != MOUSE_MODE_CAPTURED) | 
					
						
							| 
									
										
										
										
											2015-09-24 18:06:15 -03:00
										 |  |  | 					main_loop->notification(MainLoop::NOTIFICATION_WM_MOUSE_ENTER); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				CursorShape c = cursor_shape; | 
					
						
							|  |  |  | 				cursor_shape = CURSOR_MAX; | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 				set_cursor_shape(c); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				outside = false; | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				//Once-Off notification, must call again....
 | 
					
						
							|  |  |  | 				TRACKMOUSEEVENT tme; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				tme.cbSize = sizeof(TRACKMOUSEEVENT); | 
					
						
							|  |  |  | 				tme.dwFlags = TME_LEAVE; | 
					
						
							|  |  |  | 				tme.hwndTrack = hWnd; | 
					
						
							|  |  |  | 				tme.dwHoverTime = HOVER_DEFAULT; | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 				TrackMouseEvent(&tme); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			// Don't calculate relative mouse movement if we don't have focus in CAPTURED mode.
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (!window_has_focus && mouse_mode == MOUSE_MODE_CAPTURED) | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			Ref<InputEventMouseMotion> mm; | 
					
						
							|  |  |  | 			mm.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mm->set_control((wParam & MK_CONTROL) != 0); | 
					
						
							|  |  |  | 			mm->set_shift((wParam & MK_SHIFT) != 0); | 
					
						
							|  |  |  | 			mm->set_alt(alt_mem); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-08 16:12:13 +03:00
										 |  |  | 			mm->set_button_mask(last_button_state); | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 			mm->set_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | 
					
						
							| 
									
										
										
										
											2018-01-05 14:33:13 -03:00
										 |  |  | 			mm->set_global_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (mouse_mode == MOUSE_MODE_CAPTURED) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				Point2i c(video_mode.width / 2, video_mode.height / 2); | 
					
						
							| 
									
										
										
										
											2017-02-11 03:54:36 +00:00
										 |  |  | 				old_x = c.x; | 
					
						
							|  |  |  | 				old_y = c.y; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 				if (mm->get_position() == c) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					center = c; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 					return 0; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 				Point2i ncenter = mm->get_position(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				center = ncenter; | 
					
						
							|  |  |  | 				POINT pos = { (int)c.x, (int)c.y }; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				ClientToScreen(hWnd, &pos); | 
					
						
							|  |  |  | 				SetCursorPos(pos.x, pos.y); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 			input->set_mouse_position(mm->get_position()); | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			mm->set_speed(input->get_last_mouse_speed()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (old_invalid) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 				old_x = mm->get_position().x; | 
					
						
							|  |  |  | 				old_y = mm->get_position().y; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				old_invalid = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 			mm->set_relative(Vector2(mm->get_position() - Vector2(old_x, old_y))); | 
					
						
							|  |  |  | 			old_x = mm->get_position().x; | 
					
						
							|  |  |  | 			old_y = mm->get_position().y; | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			if (window_has_focus && main_loop) | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 				input->accumulate_input_event(mm); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case WM_LBUTTONDOWN: | 
					
						
							|  |  |  | 		case WM_LBUTTONUP: | 
					
						
							| 
									
										
										
										
											2018-06-21 21:01:51 +02:00
										 |  |  | 			if (input->is_emulating_mouse_from_touch()) { | 
					
						
							|  |  |  | 				// Universal translation enabled; ignore OS translations for left button
 | 
					
						
							|  |  |  | 				LPARAM extra = GetMessageExtraInfo(); | 
					
						
							| 
									
										
										
										
											2018-08-30 20:05:59 +02:00
										 |  |  | 				if (IsTouchEvent(extra)) { | 
					
						
							| 
									
										
										
										
											2018-06-21 21:01:51 +02:00
										 |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | 			FALLTHROUGH; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_MBUTTONDOWN: | 
					
						
							|  |  |  | 		case WM_MBUTTONUP: | 
					
						
							|  |  |  | 		case WM_RBUTTONDOWN: | 
					
						
							|  |  |  | 		case WM_RBUTTONUP: | 
					
						
							|  |  |  | 		case WM_MOUSEWHEEL: | 
					
						
							| 
									
										
										
										
											2016-02-04 17:16:22 +01:00
										 |  |  | 		case WM_MOUSEHWHEEL: | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_LBUTTONDBLCLK: | 
					
						
							| 
									
										
										
										
											2018-01-10 17:55:00 -03:00
										 |  |  | 		case WM_MBUTTONDBLCLK: | 
					
						
							|  |  |  | 		case WM_RBUTTONDBLCLK: | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 		case WM_XBUTTONDBLCLK: | 
					
						
							|  |  |  | 		case WM_XBUTTONDOWN: | 
					
						
							|  |  |  | 		case WM_XBUTTONUP: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Ref<InputEventMouseButton> mb; | 
					
						
							|  |  |  | 			mb.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			switch (uMsg) { | 
					
						
							|  |  |  | 				case WM_LBUTTONDOWN: { | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					mb->set_button_index(1); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} break; | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				case WM_LBUTTONUP: { | 
					
						
							|  |  |  | 					mb->set_pressed(false); | 
					
						
							|  |  |  | 					mb->set_button_index(1); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_MBUTTONDOWN: { | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					mb->set_button_index(3); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_MBUTTONUP: { | 
					
						
							|  |  |  | 					mb->set_pressed(false); | 
					
						
							|  |  |  | 					mb->set_button_index(3); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_RBUTTONDOWN: { | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					mb->set_button_index(2); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_RBUTTONUP: { | 
					
						
							|  |  |  | 					mb->set_pressed(false); | 
					
						
							|  |  |  | 					mb->set_button_index(2); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_LBUTTONDBLCLK: { | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					mb->set_button_index(1); | 
					
						
							|  |  |  | 					mb->set_doubleclick(true); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_RBUTTONDBLCLK: { | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					mb->set_button_index(2); | 
					
						
							|  |  |  | 					mb->set_doubleclick(true); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_MBUTTONDBLCLK: { | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					mb->set_button_index(3); | 
					
						
							|  |  |  | 					mb->set_doubleclick(true); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_MOUSEWHEEL: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					int motion = (short)HIWORD(wParam); | 
					
						
							|  |  |  | 					if (!motion) | 
					
						
							|  |  |  | 						return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (motion > 0) | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_WHEEL_UP); | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_WHEEL_DOWN); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_MOUSEHWHEEL: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					int motion = (short)HIWORD(wParam); | 
					
						
							|  |  |  | 					if (!motion) | 
					
						
							|  |  |  | 						return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (motion < 0) { | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_WHEEL_LEFT); | 
					
						
							|  |  |  | 						mb->set_factor(fabs((double)motion / (double)WHEEL_DELTA)); | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_WHEEL_RIGHT); | 
					
						
							|  |  |  | 						mb->set_factor(fabs((double)motion / (double)WHEEL_DELTA)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_XBUTTONDOWN: { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					if (HIWORD(wParam) == XBUTTON1) | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_XBUTTON1); | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_XBUTTON2); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_XBUTTONUP: { | 
					
						
							| 
									
										
										
										
											2016-07-21 12:13:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 					mb->set_pressed(false); | 
					
						
							|  |  |  | 					if (HIWORD(wParam) == XBUTTON1) | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_XBUTTON1); | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_XBUTTON2); | 
					
						
							|  |  |  | 				} break; | 
					
						
							|  |  |  | 				case WM_XBUTTONDBLCLK: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					mb->set_pressed(true); | 
					
						
							|  |  |  | 					if (HIWORD(wParam) == XBUTTON1) | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_XBUTTON1); | 
					
						
							|  |  |  | 					else | 
					
						
							|  |  |  | 						mb->set_button_index(BUTTON_XBUTTON2); | 
					
						
							|  |  |  | 					mb->set_doubleclick(true); | 
					
						
							|  |  |  | 				} break; | 
					
						
							| 
									
										
										
										
											2019-04-09 17:08:36 +02:00
										 |  |  | 				default: { | 
					
						
							|  |  |  | 					return 0; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 			mb->set_control((wParam & MK_CONTROL) != 0); | 
					
						
							|  |  |  | 			mb->set_shift((wParam & MK_SHIFT) != 0); | 
					
						
							|  |  |  | 			mb->set_alt(alt_mem); | 
					
						
							|  |  |  | 			//mb->get_alt()=(wParam&MK_MENU)!=0;
 | 
					
						
							| 
									
										
										
										
											2018-07-08 16:12:13 +03:00
										 |  |  | 			if (mb->is_pressed()) | 
					
						
							|  |  |  | 				last_button_state |= (1 << (mb->get_button_index() - 1)); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				last_button_state &= ~(1 << (mb->get_button_index() - 1)); | 
					
						
							|  |  |  | 			mb->set_button_mask(last_button_state); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 			mb->set_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-23 12:29:15 +03:00
										 |  |  | 			if (mouse_mode == MOUSE_MODE_CAPTURED && !use_raw_input) { | 
					
						
							| 
									
										
										
										
											2017-06-15 13:34:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				mb->set_position(Vector2(old_x, old_y)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (uMsg != WM_MOUSEWHEEL && uMsg != WM_MOUSEHWHEEL) { | 
					
						
							|  |  |  | 				if (mb->is_pressed()) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 					if (++pressrc > 0 && mouse_mode != MOUSE_MODE_CAPTURED) | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 						SetCapture(hWnd); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (--pressrc <= 0) { | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 						if (mouse_mode != MOUSE_MODE_CAPTURED) { | 
					
						
							|  |  |  | 							ReleaseCapture(); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 						pressrc = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-08-05 22:03:33 +08:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-05-19 12:34:40 +02:00
										 |  |  | 				// for reasons unknown to mankind, wheel comes in screen coordinates
 | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				POINT coords; | 
					
						
							|  |  |  | 				coords.x = mb->get_position().x; | 
					
						
							|  |  |  | 				coords.y = mb->get_position().y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				ScreenToClient(hWnd, &coords); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				mb->set_position(Vector2(coords.x, coords.y)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			mb->set_global_position(mb->get_position()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (main_loop) { | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 				input->accumulate_input_event(mb); | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				if (mb->is_pressed() && mb->get_button_index() > 3 && mb->get_button_index() < 8) { | 
					
						
							|  |  |  | 					//send release for mouse wheel
 | 
					
						
							|  |  |  | 					Ref<InputEventMouseButton> mbd = mb->duplicate(); | 
					
						
							| 
									
										
										
										
											2018-07-08 16:12:13 +03:00
										 |  |  | 					last_button_state &= ~(1 << (mbd->get_button_index() - 1)); | 
					
						
							|  |  |  | 					mbd->set_button_mask(last_button_state); | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 					mbd->set_pressed(false); | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 					input->accumulate_input_event(mbd); | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-05 17:50:30 +03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:48 -03:00
										 |  |  | 		case WM_MOVE: { | 
					
						
							|  |  |  | 			if (!IsIconic(hWnd)) { | 
					
						
							|  |  |  | 				int x = LOWORD(lParam); | 
					
						
							|  |  |  | 				int y = HIWORD(lParam); | 
					
						
							|  |  |  | 				last_pos = Point2(x, y); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_SIZE: { | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:48 -03:00
										 |  |  | 			// Ignore size when a SIZE_MINIMIZED event is triggered
 | 
					
						
							|  |  |  | 			if (wParam != SIZE_MINIMIZED) { | 
					
						
							|  |  |  | 				int window_w = LOWORD(lParam); | 
					
						
							|  |  |  | 				int window_h = HIWORD(lParam); | 
					
						
							|  |  |  | 				if (window_w > 0 && window_h > 0 && !preserve_window_size) { | 
					
						
							|  |  |  | 					video_mode.width = window_w; | 
					
						
							|  |  |  | 					video_mode.height = window_h; | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					preserve_window_size = false; | 
					
						
							|  |  |  | 					set_window_size(Size2(video_mode.width, video_mode.height)); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-06-26 18:31:31 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:48 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-26 17:38:00 -03:00
										 |  |  | 			if (wParam == SIZE_MAXIMIZED) { | 
					
						
							|  |  |  | 				maximized = true; | 
					
						
							|  |  |  | 				minimized = false; | 
					
						
							|  |  |  | 			} else if (wParam == SIZE_MINIMIZED) { | 
					
						
							|  |  |  | 				maximized = false; | 
					
						
							|  |  |  | 				minimized = true; | 
					
						
							|  |  |  | 			} else if (wParam == SIZE_RESTORED) { | 
					
						
							|  |  |  | 				maximized = false; | 
					
						
							|  |  |  | 				minimized = false; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 			if (is_layered_allowed() && layered_window) { | 
					
						
							|  |  |  | 				DeleteObject(hBitmap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				RECT r; | 
					
						
							|  |  |  | 				GetWindowRect(hWnd, &r); | 
					
						
							| 
									
										
										
										
											2018-10-17 02:46:50 -04:00
										 |  |  | 				dib_size = Size2i(r.right - r.left, r.bottom - r.top); | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				BITMAPINFO bmi; | 
					
						
							|  |  |  | 				ZeroMemory(&bmi, sizeof(BITMAPINFO)); | 
					
						
							|  |  |  | 				bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); | 
					
						
							|  |  |  | 				bmi.bmiHeader.biWidth = dib_size.x; | 
					
						
							|  |  |  | 				bmi.bmiHeader.biHeight = dib_size.y; | 
					
						
							|  |  |  | 				bmi.bmiHeader.biPlanes = 1; | 
					
						
							|  |  |  | 				bmi.bmiHeader.biBitCount = 32; | 
					
						
							|  |  |  | 				bmi.bmiHeader.biCompression = BI_RGB; | 
					
						
							| 
									
										
										
										
											2018-10-17 02:46:50 -04:00
										 |  |  | 				bmi.bmiHeader.biSizeImage = dib_size.x * dib_size.y * 4; | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 				hBitmap = CreateDIBSection(hDC_dib, &bmi, DIB_RGB_COLORS, (void **)&dib_data, NULL, 0x0); | 
					
						
							|  |  |  | 				SelectObject(hDC_dib, hBitmap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				ZeroMemory(dib_data, dib_size.x * dib_size.y * 4); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			//return 0;								// Jump Back
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2016-07-01 15:31:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case WM_ENTERSIZEMOVE: { | 
					
						
							| 
									
										
										
										
											2019-04-15 14:41:44 -03:00
										 |  |  | 			input->release_pressed_events(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			move_timer_id = SetTimer(hWnd, 1, USER_TIMER_MINIMUM, (TIMERPROC)NULL); | 
					
						
							| 
									
										
										
										
											2016-07-01 15:31:37 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case WM_EXITSIZEMOVE: { | 
					
						
							|  |  |  | 			KillTimer(hWnd, move_timer_id); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case WM_TIMER: { | 
					
						
							|  |  |  | 			if (wParam == move_timer_id) { | 
					
						
							|  |  |  | 				process_key_events(); | 
					
						
							| 
									
										
										
										
											2019-01-22 13:17:39 -03:00
										 |  |  | 				if (!Main::is_iterating()) { | 
					
						
							|  |  |  | 					Main::iteration(); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-07-01 15:31:37 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_SYSKEYDOWN: | 
					
						
							|  |  |  | 		case WM_SYSKEYUP: | 
					
						
							|  |  |  | 		case WM_KEYUP: | 
					
						
							|  |  |  | 		case WM_KEYDOWN: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (wParam == VK_SHIFT) | 
					
						
							|  |  |  | 				shift_mem = uMsg == WM_KEYDOWN; | 
					
						
							|  |  |  | 			if (wParam == VK_CONTROL) | 
					
						
							|  |  |  | 				control_mem = uMsg == WM_KEYDOWN; | 
					
						
							|  |  |  | 			if (wParam == VK_MENU) { | 
					
						
							|  |  |  | 				alt_mem = (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN); | 
					
						
							|  |  |  | 				if (lParam & (1 << 24)) | 
					
						
							|  |  |  | 					gr_mem = alt_mem; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 10:59:54 -03:00
										 |  |  | 			if (mouse_mode == MOUSE_MODE_CAPTURED) { | 
					
						
							|  |  |  | 				// When SetCapture is used, ALT+F4 hotkey is ignored by Windows, so handle it ourselves
 | 
					
						
							|  |  |  | 				if (wParam == VK_F4 && alt_mem && (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN)) { | 
					
						
							|  |  |  | 					if (main_loop) | 
					
						
							|  |  |  | 						main_loop->notification(MainLoop::NOTIFICATION_WM_QUIT_REQUEST); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 			/*
 | 
					
						
							|  |  |  | 			if (wParam==VK_WIN) TODO wtf is this? | 
					
						
							|  |  |  | 				meta_mem=uMsg==WM_KEYDOWN; | 
					
						
							|  |  |  | 			*/ | 
					
						
							| 
									
										
										
										
											2019-06-28 23:09:59 -04:00
										 |  |  | 			FALLTHROUGH; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case WM_CHAR: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ERR_BREAK(key_event_pos >= KEY_EVENT_BUFFER_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-17 23:06:20 -08:00
										 |  |  | 			// Make sure we don't include modifiers for the modifier key itself.
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			KeyEvent ke; | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			ke.shift = (wParam != VK_SHIFT) ? shift_mem : false; | 
					
						
							|  |  |  | 			ke.alt = (!(wParam == VK_MENU && (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN))) ? alt_mem : false; | 
					
						
							|  |  |  | 			ke.control = (wParam != VK_CONTROL) ? control_mem : false; | 
					
						
							|  |  |  | 			ke.meta = meta_mem; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			ke.uMsg = uMsg; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (ke.uMsg == WM_SYSKEYDOWN) | 
					
						
							|  |  |  | 				ke.uMsg = WM_KEYDOWN; | 
					
						
							|  |  |  | 			if (ke.uMsg == WM_SYSKEYUP) | 
					
						
							|  |  |  | 				ke.uMsg = WM_KEYUP; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			ke.wParam = wParam; | 
					
						
							|  |  |  | 			ke.lParam = lParam; | 
					
						
							|  |  |  | 			key_event_buffer[key_event_pos++] = ke; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case WM_INPUTLANGCHANGEREQUEST: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-24 09:35:07 +02:00
										 |  |  | 			// FIXME: Do something?
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case WM_TOUCH: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BOOL bHandled = FALSE; | 
					
						
							|  |  |  | 			UINT cInputs = LOWORD(wParam); | 
					
						
							|  |  |  | 			PTOUCHINPUT pInputs = memnew_arr(TOUCHINPUT, cInputs); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (pInputs) { | 
					
						
							|  |  |  | 				if (GetTouchInputInfo((HTOUCHINPUT)lParam, cInputs, pInputs, sizeof(TOUCHINPUT))) { | 
					
						
							|  |  |  | 					for (UINT i = 0; i < cInputs; i++) { | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 						TOUCHINPUT ti = pInputs[i]; | 
					
						
							| 
									
										
										
										
											2018-06-21 21:01:51 +02:00
										 |  |  | 						POINT touch_pos = { | 
					
						
							|  |  |  | 							TOUCH_COORD_TO_PIXEL(ti.x), | 
					
						
							|  |  |  | 							TOUCH_COORD_TO_PIXEL(ti.y), | 
					
						
							|  |  |  | 						}; | 
					
						
							|  |  |  | 						ScreenToClient(hWnd, &touch_pos); | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 						//do something with each touch input entry
 | 
					
						
							|  |  |  | 						if (ti.dwFlags & TOUCHEVENTF_MOVE) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 21:01:51 +02:00
										 |  |  | 							_drag_event(touch_pos.x, touch_pos.y, ti.dwID); | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 						} else if (ti.dwFlags & (TOUCHEVENTF_UP | TOUCHEVENTF_DOWN)) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-21 21:01:51 +02:00
										 |  |  | 							_touch_event(ti.dwFlags & TOUCHEVENTF_DOWN, touch_pos.x, touch_pos.y, ti.dwID); | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 						}; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					bHandled = TRUE; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					/* handle the error here */ | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				memdelete_arr(pInputs); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2014-09-22 00:50:48 -03:00
										 |  |  | 				/* handle the error here, probably out of memory */ | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (bHandled) { | 
					
						
							|  |  |  | 				CloseTouchInputHandle((HTOUCHINPUT)lParam); | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 		case WM_DEVICECHANGE: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 17:05:51 -03:00
										 |  |  | 			joypad->probe_joypads(); | 
					
						
							| 
									
										
										
										
											2015-12-18 06:12:53 +01:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2016-05-09 15:18:08 +02:00
										 |  |  | 		case WM_SETCURSOR: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (LOWORD(lParam) == HTCLIENT) { | 
					
						
							|  |  |  | 				if (window_has_focus && (mouse_mode == MOUSE_MODE_HIDDEN || mouse_mode == MOUSE_MODE_CAPTURED)) { | 
					
						
							| 
									
										
										
										
											2016-05-09 15:18:08 +02:00
										 |  |  | 					//Hide the cursor
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					if (hCursor == NULL) | 
					
						
							| 
									
										
										
										
											2016-05-09 15:18:08 +02:00
										 |  |  | 						hCursor = SetCursor(NULL); | 
					
						
							| 
									
										
										
										
											2016-05-09 15:46:05 +02:00
										 |  |  | 					else | 
					
						
							|  |  |  | 						SetCursor(NULL); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					if (hCursor != NULL) { | 
					
						
							| 
									
										
										
										
											2018-05-21 14:37:30 -03:00
										 |  |  | 						CursorShape c = cursor_shape; | 
					
						
							|  |  |  | 						cursor_shape = CURSOR_MAX; | 
					
						
							|  |  |  | 						set_cursor_shape(c); | 
					
						
							| 
									
										
										
										
											2016-05-09 15:18:08 +02:00
										 |  |  | 						hCursor = NULL; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 		case WM_DROPFILES: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 15:15:36 -04:00
										 |  |  | 			HDROP hDropInfo = (HDROP)wParam; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			const int buffsize = 4096; | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 			wchar_t buf[buffsize]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			int fcount = DragQueryFileW(hDropInfo, 0xFFFFFFFF, NULL, 0); | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Vector<String> files; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			for (int i = 0; i < fcount; i++) { | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				DragQueryFileW(hDropInfo, i, buf, buffsize); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				String file = buf; | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 				files.push_back(file); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (files.size() && main_loop) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				main_loop->drop_files(files, 0); | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (user_proc) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return CallWindowProcW(user_proc, hWnd, uMsg, wParam, lParam); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return DefWindowProcW(hWnd, uMsg, wParam, lParam); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	OS_Windows *os_win = static_cast<OS_Windows *>(OS::get_singleton()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (os_win) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		return os_win->WndProc(hWnd, uMsg, wParam, lParam); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		return DefWindowProcW(hWnd, uMsg, wParam, lParam); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::process_key_events() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < key_event_pos; i++) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		KeyEvent &ke = key_event_buffer[i]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		switch (ke.uMsg) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			case WM_CHAR: { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				if ((i == 0 && ke.uMsg == WM_CHAR) || (i > 0 && key_event_buffer[i - 1].uMsg == WM_CHAR)) { | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					Ref<InputEventKey> k; | 
					
						
							|  |  |  | 					k.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					k->set_shift(ke.shift); | 
					
						
							|  |  |  | 					k->set_alt(ke.alt); | 
					
						
							|  |  |  | 					k->set_control(ke.control); | 
					
						
							|  |  |  | 					k->set_metakey(ke.meta); | 
					
						
							|  |  |  | 					k->set_pressed(true); | 
					
						
							|  |  |  | 					k->set_scancode(KeyMappingWindows::get_keysym(ke.wParam)); | 
					
						
							|  |  |  | 					k->set_unicode(ke.wParam); | 
					
						
							|  |  |  | 					if (k->get_unicode() && gr_mem) { | 
					
						
							|  |  |  | 						k->set_alt(false); | 
					
						
							|  |  |  | 						k->set_control(false); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-03-11 13:21:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					if (k->get_unicode() < 32) | 
					
						
							|  |  |  | 						k->set_unicode(0); | 
					
						
							| 
									
										
										
										
											2014-03-11 13:21:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 					input->accumulate_input_event(k); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				//do nothing
 | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 			case WM_KEYUP: | 
					
						
							|  |  |  | 			case WM_KEYDOWN: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				Ref<InputEventKey> k; | 
					
						
							|  |  |  | 				k.instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				k->set_shift(ke.shift); | 
					
						
							|  |  |  | 				k->set_alt(ke.alt); | 
					
						
							|  |  |  | 				k->set_control(ke.control); | 
					
						
							|  |  |  | 				k->set_metakey(ke.meta); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				k->set_pressed(ke.uMsg == WM_KEYDOWN); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 21:35:54 +03:00
										 |  |  | 				if ((ke.lParam & (1 << 24)) && (ke.wParam == VK_RETURN)) { | 
					
						
							|  |  |  | 					// Special case for Numpad Enter key
 | 
					
						
							| 
									
										
										
										
											2017-08-06 16:26:07 +03:00
										 |  |  | 					k->set_scancode(KEY_KP_ENTER); | 
					
						
							| 
									
										
										
										
											2017-07-26 21:35:54 +03:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					k->set_scancode(KeyMappingWindows::get_keysym(ke.wParam)); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if (i + 1 < key_event_pos && key_event_buffer[i + 1].uMsg == WM_CHAR) { | 
					
						
							|  |  |  | 					k->set_unicode(key_event_buffer[i + 1].wParam); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (k->get_unicode() && gr_mem) { | 
					
						
							|  |  |  | 					k->set_alt(false); | 
					
						
							|  |  |  | 					k->set_control(false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				if (k->get_unicode() < 32) | 
					
						
							|  |  |  | 					k->set_unicode(0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				k->set_echo((ke.uMsg == WM_KEYDOWN && (ke.lParam & (1 << 30)))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 				input->accumulate_input_event(k); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			} break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	key_event_pos = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | enum _MonitorDpiType { | 
					
						
							|  |  |  | 	MDT_Effective_DPI = 0, | 
					
						
							|  |  |  | 	MDT_Angular_DPI = 1, | 
					
						
							|  |  |  | 	MDT_Raw_DPI = 2, | 
					
						
							|  |  |  | 	MDT_Default = MDT_Effective_DPI | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | static int QueryDpiForMonitor(HMONITOR hmon, _MonitorDpiType dpiType = MDT_Default) { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int dpiX = 96, dpiY = 96; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static HMODULE Shcore = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	typedef HRESULT(WINAPI * GetDPIForMonitor_t)(HMONITOR hmonitor, _MonitorDpiType dpiType, UINT * dpiX, UINT * dpiY); | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 	static GetDPIForMonitor_t getDPIForMonitor = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (Shcore == NULL) { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 		Shcore = LoadLibraryW(L"Shcore.dll"); | 
					
						
							|  |  |  | 		getDPIForMonitor = Shcore ? (GetDPIForMonitor_t)GetProcAddress(Shcore, "GetDpiForMonitor") : NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if ((Shcore == NULL) || (getDPIForMonitor == NULL)) { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 			if (Shcore) | 
					
						
							|  |  |  | 				FreeLibrary(Shcore); | 
					
						
							|  |  |  | 			Shcore = (HMODULE)INVALID_HANDLE_VALUE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	UINT x = 0, y = 0; | 
					
						
							|  |  |  | 	HRESULT hr = E_FAIL; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (hmon && (Shcore != (HMODULE)INVALID_HANDLE_VALUE)) { | 
					
						
							|  |  |  | 		hr = getDPIForMonitor(hmon, dpiType /*MDT_Effective_DPI*/, &x, &y); | 
					
						
							|  |  |  | 		if (SUCCEEDED(hr) && (x > 0) && (y > 0)) { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			dpiX = (int)x; | 
					
						
							|  |  |  | 			dpiY = (int)y; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 		static int overallX = 0, overallY = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (overallX <= 0 || overallY <= 0) { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 			HDC hdc = GetDC(NULL); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (hdc) { | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 				overallX = GetDeviceCaps(hdc, LOGPIXELSX); | 
					
						
							|  |  |  | 				overallY = GetDeviceCaps(hdc, LOGPIXELSY); | 
					
						
							|  |  |  | 				ReleaseDC(NULL, hdc); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (overallX > 0 && overallY > 0) { | 
					
						
							|  |  |  | 			dpiX = overallX; | 
					
						
							|  |  |  | 			dpiY = overallY; | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return (dpiX + dpiY) / 2; | 
					
						
							| 
									
										
										
										
											2016-06-01 12:43:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-12 11:18:16 -03:00
										 |  |  | typedef enum _SHC_PROCESS_DPI_AWARENESS { | 
					
						
							| 
									
										
										
										
											2017-09-13 09:13:23 +02:00
										 |  |  | 	SHC_PROCESS_DPI_UNAWARE = 0, | 
					
						
							|  |  |  | 	SHC_PROCESS_SYSTEM_DPI_AWARE = 1, | 
					
						
							|  |  |  | 	SHC_PROCESS_PER_MONITOR_DPI_AWARE = 2 | 
					
						
							| 
									
										
										
										
											2017-09-12 11:18:16 -03:00
										 |  |  | } SHC_PROCESS_DPI_AWARENESS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | int OS_Windows::get_current_video_driver() const { | 
					
						
							|  |  |  | 	return video_driver_index; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-03 18:26:44 +01:00
										 |  |  | Error OS_Windows::initialize(const VideoMode &p_desired, int p_video_driver, int p_audio_driver) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	main_loop = NULL; | 
					
						
							|  |  |  | 	outside = true; | 
					
						
							|  |  |  | 	window_has_focus = true; | 
					
						
							|  |  |  | 	WNDCLASSEXW wc; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-12 11:18:16 -03:00
										 |  |  | 	if (is_hidpi_allowed()) { | 
					
						
							| 
									
										
										
										
											2017-09-13 09:13:23 +02:00
										 |  |  | 		HMODULE Shcore = LoadLibraryW(L"Shcore.dll"); | 
					
						
							| 
									
										
										
										
											2017-09-12 11:18:16 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (Shcore != NULL) { | 
					
						
							| 
									
										
										
										
											2017-09-13 09:13:23 +02:00
										 |  |  | 			typedef HRESULT(WINAPI * SetProcessDpiAwareness_t)(SHC_PROCESS_DPI_AWARENESS); | 
					
						
							| 
									
										
										
										
											2017-09-12 11:18:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-13 09:13:23 +02:00
										 |  |  | 			SetProcessDpiAwareness_t SetProcessDpiAwareness = (SetProcessDpiAwareness_t)GetProcAddress(Shcore, "SetProcessDpiAwareness"); | 
					
						
							| 
									
										
										
										
											2017-09-12 11:18:16 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (SetProcessDpiAwareness) { | 
					
						
							|  |  |  | 				SetProcessDpiAwareness(SHC_PROCESS_SYSTEM_DPI_AWARE); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	video_mode = p_desired; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//printf("**************** desired %s, mode %s\n", p_desired.fullscreen?"true":"false", video_mode.fullscreen?"true":"false");
 | 
					
						
							|  |  |  | 	RECT WindowRect; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	WindowRect.left = 0; | 
					
						
							|  |  |  | 	WindowRect.right = video_mode.width; | 
					
						
							|  |  |  | 	WindowRect.top = 0; | 
					
						
							|  |  |  | 	WindowRect.bottom = video_mode.height; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	memset(&wc, 0, sizeof(WNDCLASSEXW)); | 
					
						
							|  |  |  | 	wc.cbSize = sizeof(WNDCLASSEXW); | 
					
						
							|  |  |  | 	wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	wc.lpfnWndProc = (WNDPROC)::WndProc; | 
					
						
							|  |  |  | 	wc.cbClsExtra = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	wc.cbWndExtra = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//wc.hInstance = hInstance;
 | 
					
						
							|  |  |  | 	wc.hInstance = godot_hinstance ? godot_hinstance : GetModuleHandle(NULL); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	wc.hIcon = LoadIcon(NULL, IDI_WINLOGO); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	wc.hCursor = NULL; //LoadCursor(NULL, IDC_ARROW);
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	wc.hbrBackground = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	wc.lpszMenuName = NULL; | 
					
						
							|  |  |  | 	wc.lpszClassName = L"Engine"; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!RegisterClassExW(&wc)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		MessageBox(NULL, "Failed To Register The Window Class.", "ERROR", MB_OK | MB_ICONEXCLAMATION); | 
					
						
							| 
									
										
										
										
											2018-01-03 18:26:44 +01:00
										 |  |  | 		return ERR_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-27 19:32:27 +03:00
										 |  |  | 	use_raw_input = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RAWINPUTDEVICE Rid[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Rid[0].usUsagePage = 0x01; | 
					
						
							|  |  |  | 	Rid[0].usUsage = 0x02; | 
					
						
							|  |  |  | 	Rid[0].dwFlags = 0; | 
					
						
							|  |  |  | 	Rid[0].hwndTarget = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (RegisterRawInputDevices(Rid, 1, sizeof(Rid[0])) == FALSE) { | 
					
						
							|  |  |  | 		//registration failed.
 | 
					
						
							|  |  |  | 		use_raw_input = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	pre_fs_valid = true; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (video_mode.fullscreen) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-03 18:52:23 -03:00
										 |  |  | 		/* this returns DPI unaware size, commenting
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		DEVMODE current; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		memset(¤t, 0, sizeof(current)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, ¤t); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		WindowRect.right = current.dmPelsWidth; | 
					
						
							| 
									
										
										
										
											2014-10-28 19:55:12 +01:00
										 |  |  | 		WindowRect.bottom = current.dmPelsHeight; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-03 18:52:23 -03:00
										 |  |  | 		*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		EnumSizeData data = { 0, 0, Size2() }; | 
					
						
							|  |  |  | 		EnumDisplayMonitors(NULL, NULL, _MonitorEnumProcSize, (LPARAM)&data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		WindowRect.right = data.size.width; | 
					
						
							|  |  |  | 		WindowRect.bottom = data.size.height; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		/*  DEVMODE dmScreenSettings;
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		memset(&dmScreenSettings,0,sizeof(dmScreenSettings)); | 
					
						
							|  |  |  | 		dmScreenSettings.dmSize=sizeof(dmScreenSettings); | 
					
						
							|  |  |  | 		dmScreenSettings.dmPelsWidth	= video_mode.width; | 
					
						
							|  |  |  | 		dmScreenSettings.dmPelsHeight	= video_mode.height; | 
					
						
							|  |  |  | 		dmScreenSettings.dmBitsPerPel	= current.dmBitsPerPel; | 
					
						
							|  |  |  | 		dmScreenSettings.dmFields=DM_BITSPERPEL|DM_PELSWIDTH|DM_PELSHEIGHT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		LONG err = ChangeDisplaySettings(&dmScreenSettings,CDS_FULLSCREEN); | 
					
						
							|  |  |  | 		if (err!=DISP_CHANGE_SUCCESSFUL) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			video_mode.fullscreen=false; | 
					
						
							| 
									
										
										
										
											2014-10-28 19:55:12 +01:00
										 |  |  | 		}*/ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		pre_fs_valid = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	DWORD dwExStyle; | 
					
						
							|  |  |  | 	DWORD dwStyle; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (video_mode.fullscreen || video_mode.borderless_window) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		dwExStyle = WS_EX_APPWINDOW; | 
					
						
							|  |  |  | 		dwStyle = WS_POPUP; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		dwExStyle = WS_EX_APPWINDOW | WS_EX_WINDOWEDGE; | 
					
						
							|  |  |  | 		dwStyle = WS_OVERLAPPEDWINDOW; | 
					
						
							| 
									
										
										
										
											2014-03-27 20:09:18 +08:00
										 |  |  | 		if (!video_mode.resizable) { | 
					
						
							|  |  |  | 			dwStyle &= ~WS_THICKFRAME; | 
					
						
							|  |  |  | 			dwStyle &= ~WS_MAXIMIZEBOX; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AdjustWindowRectEx(&WindowRect, dwStyle, FALSE, dwExStyle); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-04 14:38:52 +01:00
										 |  |  | 	char *windowid; | 
					
						
							|  |  |  | #ifdef MINGW_ENABLED
 | 
					
						
							|  |  |  | 	windowid = getenv("GODOT_WINDOWID"); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	size_t len; | 
					
						
							|  |  |  | 	_dupenv_s(&windowid, &len, "GODOT_WINDOWID"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (windowid) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | // strtoull on mingw
 | 
					
						
							|  |  |  | #ifdef MINGW_ENABLED
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		hWnd = (HWND)strtoull(windowid, NULL, 0); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		hWnd = (HWND)_strtoui64(windowid, NULL, 0); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-10-04 14:38:52 +01:00
										 |  |  | 		free(windowid); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		SetLastError(0); | 
					
						
							|  |  |  | 		user_proc = (WNDPROC)GetWindowLongPtr(hWnd, GWLP_WNDPROC); | 
					
						
							|  |  |  | 		SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)(WNDPROC)::WndProc); | 
					
						
							|  |  |  | 		DWORD le = GetLastError(); | 
					
						
							|  |  |  | 		if (user_proc == 0 && le != 0) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			printf("Error setting WNDPROC: %li\n", le); | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2018-10-17 02:46:50 -04:00
										 |  |  | 		GetWindowLongPtr(hWnd, GWLP_WNDPROC); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		RECT rect; | 
					
						
							|  |  |  | 		if (!GetClientRect(hWnd, &rect)) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			MessageBoxW(NULL, L"Window Creation Error.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); | 
					
						
							| 
									
										
										
										
											2018-01-03 18:26:44 +01:00
										 |  |  | 			return ERR_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		}; | 
					
						
							|  |  |  | 		video_mode.width = rect.right; | 
					
						
							|  |  |  | 		video_mode.height = rect.bottom; | 
					
						
							|  |  |  | 		video_mode.fullscreen = false; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-06 23:50:18 +02:00
										 |  |  | 		hWnd = CreateWindowExW( | 
					
						
							|  |  |  | 				dwExStyle, | 
					
						
							|  |  |  | 				L"Engine", L"", | 
					
						
							|  |  |  | 				dwStyle | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, | 
					
						
							|  |  |  | 				(GetSystemMetrics(SM_CXSCREEN) - WindowRect.right) / 2, | 
					
						
							|  |  |  | 				(GetSystemMetrics(SM_CYSCREEN) - WindowRect.bottom) / 2, | 
					
						
							|  |  |  | 				WindowRect.right - WindowRect.left, | 
					
						
							|  |  |  | 				WindowRect.bottom - WindowRect.top, | 
					
						
							|  |  |  | 				NULL, NULL, hInstance, NULL); | 
					
						
							|  |  |  | 		if (!hWnd) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			MessageBoxW(NULL, L"Window Creation Error.", L"ERROR", MB_OK | MB_ICONEXCLAMATION); | 
					
						
							| 
									
										
										
										
											2018-01-03 18:26:44 +01:00
										 |  |  | 			return ERR_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-27 20:51:19 +01:00
										 |  |  | 	if (video_mode.always_on_top) { | 
					
						
							|  |  |  | 		SetWindowPos(hWnd, video_mode.always_on_top ? HWND_TOPMOST : HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-21 02:29:58 -03:00
										 |  |  | #if defined(OPENGL_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool gles3_context = true; | 
					
						
							| 
									
										
										
										
											2018-03-06 15:53:30 +02:00
										 |  |  | 	if (p_video_driver == VIDEO_DRIVER_GLES2) { | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 		gles3_context = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-21 02:29:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 	bool editor = Engine::get_singleton()->is_editor_hint(); | 
					
						
							|  |  |  | 	bool gl_initialization_error = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	gl_context = NULL; | 
					
						
							|  |  |  | 	while (!gl_context) { | 
					
						
							| 
									
										
										
										
											2019-02-12 15:43:54 +01:00
										 |  |  | 		gl_context = memnew(ContextGL_Windows(hWnd, gles3_context)); | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (gl_context->initialize() != OK) { | 
					
						
							|  |  |  | 			memdelete(gl_context); | 
					
						
							|  |  |  | 			gl_context = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-05 13:46:51 +01:00
										 |  |  | 			if (GLOBAL_GET("rendering/quality/driver/fallback_to_gles2") || editor) { | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 				if (p_video_driver == VIDEO_DRIVER_GLES2) { | 
					
						
							|  |  |  | 					gl_initialization_error = true; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				p_video_driver = VIDEO_DRIVER_GLES2; | 
					
						
							|  |  |  | 				gles3_context = false; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				gl_initialization_error = true; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-21 02:29:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 	while (true) { | 
					
						
							|  |  |  | 		if (gles3_context) { | 
					
						
							|  |  |  | 			if (RasterizerGLES3::is_viable() == OK) { | 
					
						
							|  |  |  | 				RasterizerGLES3::register_config(); | 
					
						
							|  |  |  | 				RasterizerGLES3::make_current(); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-03-05 13:46:51 +01:00
										 |  |  | 				if (GLOBAL_GET("rendering/quality/driver/fallback_to_gles2") || editor) { | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 					p_video_driver = VIDEO_DRIVER_GLES2; | 
					
						
							|  |  |  | 					gles3_context = false; | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					gl_initialization_error = true; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			if (RasterizerGLES2::is_viable() == OK) { | 
					
						
							|  |  |  | 				RasterizerGLES2::register_config(); | 
					
						
							|  |  |  | 				RasterizerGLES2::make_current(); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				gl_initialization_error = true; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (gl_initialization_error) { | 
					
						
							|  |  |  | 		OS::get_singleton()->alert("Your video card driver does not support any of the supported OpenGL versions.\n" | 
					
						
							|  |  |  | 								   "Please update your drivers or if you have a very old or integrated GPU upgrade it.", | 
					
						
							|  |  |  | 				"Unable to initialize Video driver"); | 
					
						
							|  |  |  | 		return ERR_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2018-03-06 15:53:30 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-08 17:58:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-25 00:04:25 +02:00
										 |  |  | 	video_driver_index = p_video_driver; | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 17:58:28 +01:00
										 |  |  | 	gl_context->set_use_vsync(video_mode.use_vsync); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-01 19:22:15 +01:00
										 |  |  | 	visual_server = memnew(VisualServerRaster); | 
					
						
							| 
									
										
										
										
											2017-06-10 10:15:33 -03:00
										 |  |  | 	if (get_render_thread_mode() != RENDER_THREAD_UNSAFE) { | 
					
						
							|  |  |  | 		visual_server = memnew(VisualServerWrapMT(visual_server, get_render_thread_mode() == RENDER_SEPARATE_THREAD)); | 
					
						
							| 
									
										
										
										
											2017-01-14 12:26:56 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	visual_server->init(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	input = memnew(InputDefault); | 
					
						
							|  |  |  | 	joypad = memnew(JoypadWindows(input, &hWnd)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	power_manager = memnew(PowerWindows); | 
					
						
							| 
									
										
										
										
											2016-07-23 13:15:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	camera_server = memnew(CameraWindows); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-13 13:34:22 -03:00
										 |  |  | 	AudioDriverManager::initialize(p_audio_driver); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	TRACKMOUSEEVENT tme; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tme.cbSize = sizeof(TRACKMOUSEEVENT); | 
					
						
							|  |  |  | 	tme.dwFlags = TME_LEAVE; | 
					
						
							|  |  |  | 	tme.hwndTrack = hWnd; | 
					
						
							|  |  |  | 	tme.dwHoverTime = HOVER_DEFAULT; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	TrackMouseEvent(&tme); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-01 21:06:42 +01:00
										 |  |  | 	RegisterTouchWindow(hWnd, 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 15:25:22 +01:00
										 |  |  | 	_ensure_user_data_dir(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	DragAcceptFiles(hWnd, true); | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-01 15:31:37 +02:00
										 |  |  | 	move_timer_id = 1; | 
					
						
							| 
									
										
										
										
											2017-11-29 03:49:36 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_no_window_mode_enabled()) { | 
					
						
							|  |  |  | 		ShowWindow(hWnd, SW_SHOW); // Show The Window
 | 
					
						
							|  |  |  | 		SetForegroundWindow(hWnd); // Slightly Higher Priority
 | 
					
						
							|  |  |  | 		SetFocus(hWnd); // Sets Keyboard Focus To
 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-03 18:26:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-04 11:21:29 +03:00
										 |  |  | 	if (p_desired.layered) { | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 		set_window_per_pixel_transparency_enabled(true); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-06-07 21:16:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// IME
 | 
					
						
							|  |  |  | 	im_himc = ImmGetContext(hWnd); | 
					
						
							|  |  |  | 	ImmReleaseContext(hWnd, im_himc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	im_position = Vector2(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_ime_active(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 16:03:49 -03:00
										 |  |  | 	if (!OS::get_singleton()->is_in_low_processor_usage_mode()) { | 
					
						
							|  |  |  | 		//SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);
 | 
					
						
							|  |  |  | 		SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS); | 
					
						
							|  |  |  | 		DWORD index = 0; | 
					
						
							|  |  |  | 		HANDLE handle = AvSetMmThreadCharacteristics("Games", &index); | 
					
						
							|  |  |  | 		if (handle) | 
					
						
							|  |  |  | 			AvSetMmThreadPriority(handle, AVRT_PRIORITY_CRITICAL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// This is needed to make sure that background work does not starve the main thread.
 | 
					
						
							|  |  |  | 		// This is only setting priority of this thread, not the whole process.
 | 
					
						
							|  |  |  | 		SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 00:54:03 +09:00
										 |  |  | 	update_real_mouse_position(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-03 18:26:44 +01:00
										 |  |  | 	return OK; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_clipboard(const String &p_text) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-27 14:00:28 +02:00
										 |  |  | 	// Convert LF line endings to CRLF in clipboard content
 | 
					
						
							|  |  |  | 	// Otherwise, line endings won't be visible when pasted in other software
 | 
					
						
							|  |  |  | 	String text = p_text.replace("\n", "\r\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!OpenClipboard(hWnd)) { | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 		ERR_FAIL_MSG("Unable to open clipboard."); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	EmptyClipboard(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-27 14:00:28 +02:00
										 |  |  | 	HGLOBAL mem = GlobalAlloc(GMEM_MOVEABLE, (text.length() + 1) * sizeof(CharType)); | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(mem == NULL, "Unable to allocate memory for clipboard contents."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	LPWSTR lptstrCopy = (LPWSTR)GlobalLock(mem); | 
					
						
							| 
									
										
										
										
											2019-04-27 14:00:28 +02:00
										 |  |  | 	memcpy(lptstrCopy, text.c_str(), (text.length() + 1) * sizeof(CharType)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	GlobalUnlock(mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SetClipboardData(CF_UNICODETEXT, mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// set the CF_TEXT version (not needed?)
 | 
					
						
							| 
									
										
										
										
											2019-04-27 14:00:28 +02:00
										 |  |  | 	CharString utf8 = text.utf8(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	mem = GlobalAlloc(GMEM_MOVEABLE, utf8.length() + 1); | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(mem == NULL, "Unable to allocate memory for clipboard contents."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	LPTSTR ptr = (LPTSTR)GlobalLock(mem); | 
					
						
							|  |  |  | 	memcpy(ptr, utf8.get_data(), utf8.length()); | 
					
						
							|  |  |  | 	ptr[utf8.length()] = 0; | 
					
						
							|  |  |  | 	GlobalUnlock(mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SetClipboardData(CF_TEXT, mem); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CloseClipboard(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String OS_Windows::get_clipboard() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String ret; | 
					
						
							|  |  |  | 	if (!OpenClipboard(hWnd)) { | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 		ERR_FAIL_V_MSG("", "Unable to open clipboard."); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (IsClipboardFormatAvailable(CF_UNICODETEXT)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		HGLOBAL mem = GetClipboardData(CF_UNICODETEXT); | 
					
						
							|  |  |  | 		if (mem != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			LPWSTR ptr = (LPWSTR)GlobalLock(mem); | 
					
						
							|  |  |  | 			if (ptr != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				ret = String((CharType *)ptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				GlobalUnlock(mem); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (IsClipboardFormatAvailable(CF_TEXT)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		HGLOBAL mem = GetClipboardData(CF_UNICODETEXT); | 
					
						
							|  |  |  | 		if (mem != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			LPTSTR ptr = (LPTSTR)GlobalLock(mem); | 
					
						
							|  |  |  | 			if (ptr != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				ret.parse_utf8((const char *)ptr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				GlobalUnlock(mem); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CloseClipboard(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::delete_main_loop() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (main_loop) | 
					
						
							|  |  |  | 		memdelete(main_loop); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	main_loop = NULL; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_main_loop(MainLoop *p_main_loop) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	input->set_main_loop(p_main_loop); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	main_loop = p_main_loop; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::finalize() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-14 09:11:28 -03:00
										 |  |  | #ifdef WINMIDI_ENABLED
 | 
					
						
							|  |  |  | 	driver_midi.close(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (main_loop) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		memdelete(main_loop); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	main_loop = NULL; | 
					
						
							| 
									
										
										
										
											2015-11-14 11:14:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-08 17:05:51 -03:00
										 |  |  | 	memdelete(joypad); | 
					
						
							| 
									
										
										
										
											2015-11-14 11:14:17 -03:00
										 |  |  | 	memdelete(input); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	memdelete(camera_server); | 
					
						
							| 
									
										
										
										
											2017-11-30 19:55:38 +01:00
										 |  |  | 	touch_state.clear(); | 
					
						
							| 
									
										
										
										
											2015-11-14 11:14:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-24 14:57:59 -03:00
										 |  |  | 	cursors_cache.clear(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	visual_server->finish(); | 
					
						
							|  |  |  | 	memdelete(visual_server); | 
					
						
							|  |  |  | #ifdef OPENGL_ENABLED
 | 
					
						
							|  |  |  | 	if (gl_context) | 
					
						
							|  |  |  | 		memdelete(gl_context); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (user_proc) { | 
					
						
							|  |  |  | 		SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)user_proc); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-02-19 20:42:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void OS_Windows::finalize_core() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-01 09:47:34 +02:00
										 |  |  | 	timeEndPeriod(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	memdelete(process_map); | 
					
						
							| 
									
										
										
										
											2018-09-13 15:47:00 +02:00
										 |  |  | 	NetSocketPosix::cleanup(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::alert(const String &p_alert, const String &p_title) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_no_window_mode_enabled()) | 
					
						
							| 
									
										
										
										
											2016-07-26 15:16:45 +02:00
										 |  |  | 		MessageBoxW(NULL, p_alert.c_str(), p_title.c_str(), MB_OK | MB_ICONEXCLAMATION | MB_TASKMODAL); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		print_line("ALERT: " + p_alert); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::set_mouse_mode(MouseMode p_mode) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (mouse_mode == p_mode) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_set_mouse_mode_impl(p_mode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	mouse_mode = p_mode; | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::_set_mouse_mode_impl(MouseMode p_mode) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_mode == MOUSE_MODE_CAPTURED || p_mode == MOUSE_MODE_CONFINED) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RECT clipRect; | 
					
						
							|  |  |  | 		GetClientRect(hWnd, &clipRect); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ClientToScreen(hWnd, (POINT *)&clipRect.left); | 
					
						
							|  |  |  | 		ClientToScreen(hWnd, (POINT *)&clipRect.right); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		ClipCursor(&clipRect); | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 		if (p_mode == MOUSE_MODE_CAPTURED) { | 
					
						
							|  |  |  | 			center = Point2i(video_mode.width / 2, video_mode.height / 2); | 
					
						
							|  |  |  | 			POINT pos = { (int)center.x, (int)center.y }; | 
					
						
							|  |  |  | 			ClientToScreen(hWnd, &pos); | 
					
						
							| 
									
										
										
										
											2017-01-25 19:21:41 +01:00
										 |  |  | 			SetCursorPos(pos.x, pos.y); | 
					
						
							| 
									
										
										
										
											2018-11-09 20:30:08 +01:00
										 |  |  | 			SetCapture(hWnd); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		ReleaseCapture(); | 
					
						
							|  |  |  | 		ClipCursor(NULL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-20 20:01:28 -02:00
										 |  |  | 	if (p_mode == MOUSE_MODE_CAPTURED || p_mode == MOUSE_MODE_HIDDEN) { | 
					
						
							|  |  |  | 		hCursor = SetCursor(NULL); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-04-08 21:59:51 -03:00
										 |  |  | 		CursorShape c = cursor_shape; | 
					
						
							|  |  |  | 		cursor_shape = CURSOR_MAX; | 
					
						
							|  |  |  | 		set_cursor_shape(c); | 
					
						
							| 
									
										
										
										
											2016-10-20 20:01:28 -02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | OS_Windows::MouseMode OS_Windows::get_mouse_mode() const { | 
					
						
							| 
									
										
										
										
											2014-09-19 21:01:41 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return mouse_mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | void OS_Windows::warp_mouse_position(const Point2 &p_to) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (mouse_mode == MOUSE_MODE_CAPTURED) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		old_x = p_to.x; | 
					
						
							|  |  |  | 		old_y = p_to.y; | 
					
						
							| 
									
										
										
										
											2014-09-19 21:01:41 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-14 19:22:06 -03:00
										 |  |  | 		POINT p; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		p.x = p_to.x; | 
					
						
							|  |  |  | 		p.y = p_to.y; | 
					
						
							|  |  |  | 		ClientToScreen(hWnd, &p); | 
					
						
							| 
									
										
										
										
											2015-02-14 19:22:06 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		SetCursorPos(p.x, p.y); | 
					
						
							| 
									
										
										
										
											2014-09-19 21:01:41 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-29 11:29:38 -04:00
										 |  |  | Point2 OS_Windows::get_mouse_position() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return Point2(old_x, old_y); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 00:54:03 +09:00
										 |  |  | void OS_Windows::update_real_mouse_position() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	POINT mouse_pos; | 
					
						
							|  |  |  | 	if (GetCursorPos(&mouse_pos) && ScreenToClient(hWnd, &mouse_pos)) { | 
					
						
							|  |  |  | 		if (mouse_pos.x > 0 && mouse_pos.y > 0 && mouse_pos.x <= video_mode.width && mouse_pos.y <= video_mode.height) { | 
					
						
							|  |  |  | 			old_x = mouse_pos.x; | 
					
						
							|  |  |  | 			old_y = mouse_pos.y; | 
					
						
							|  |  |  | 			old_invalid = false; | 
					
						
							|  |  |  | 			input->set_mouse_position(Point2i(mouse_pos.x, mouse_pos.y)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | int OS_Windows::get_mouse_button_state() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return last_button_state; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_title(const String &p_title) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	SetWindowTextW(hWnd, p_title.c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_video_mode(const VideoMode &p_video_mode, int p_screen) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-16 22:31:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | OS::VideoMode OS_Windows::get_video_mode(int p_screen) const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return video_mode; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | static BOOL CALLBACK _MonitorEnumProcCount(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int *data = (int *)dwData; | 
					
						
							|  |  |  | 	(*data)++; | 
					
						
							|  |  |  | 	return TRUE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | int OS_Windows::get_screen_count() const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 	int data = 0; | 
					
						
							|  |  |  | 	EnumDisplayMonitors(NULL, NULL, _MonitorEnumProcCount, (LPARAM)&data); | 
					
						
							|  |  |  | 	return data; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  | 	int count; | 
					
						
							|  |  |  | 	int screen; | 
					
						
							|  |  |  | 	HMONITOR monitor; | 
					
						
							|  |  |  | } EnumScreenData; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static BOOL CALLBACK _MonitorEnumProcScreen(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EnumScreenData *data = (EnumScreenData *)dwData; | 
					
						
							|  |  |  | 	if (data->monitor == hMonitor) { | 
					
						
							|  |  |  | 		data->screen = data->count; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 	data->count++; | 
					
						
							|  |  |  | 	return TRUE; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | int OS_Windows::get_current_screen() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EnumScreenData data = { 0, 0, MonitorFromWindow(hWnd, MONITOR_DEFAULTTONEAREST) }; | 
					
						
							|  |  |  | 	EnumDisplayMonitors(NULL, NULL, _MonitorEnumProcScreen, (LPARAM)&data); | 
					
						
							|  |  |  | 	return data.screen; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::set_current_screen(int p_screen) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector2 ofs = get_window_position() - get_screen_position(get_current_screen()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	set_window_position(ofs + get_screen_position(p_screen)); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | static BOOL CALLBACK _MonitorEnumProcPos(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EnumPosData *data = (EnumPosData *)dwData; | 
					
						
							|  |  |  | 	if (data->count == data->screen) { | 
					
						
							|  |  |  | 		data->pos.x = lprcMonitor->left; | 
					
						
							|  |  |  | 		data->pos.y = lprcMonitor->top; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	data->count++; | 
					
						
							|  |  |  | 	return TRUE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Point2 OS_Windows::get_screen_position(int p_screen) const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 16:12:29 -03:00
										 |  |  | 	EnumPosData data = { 0, p_screen == -1 ? get_current_screen() : p_screen, Point2() }; | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 	EnumDisplayMonitors(NULL, NULL, _MonitorEnumProcPos, (LPARAM)&data); | 
					
						
							|  |  |  | 	return data.pos; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Size2 OS_Windows::get_screen_size(int p_screen) const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 16:12:29 -03:00
										 |  |  | 	EnumSizeData data = { 0, p_screen == -1 ? get_current_screen() : p_screen, Size2() }; | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 	EnumDisplayMonitors(NULL, NULL, _MonitorEnumProcSize, (LPARAM)&data); | 
					
						
							|  |  |  | 	return data.size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	int count; | 
					
						
							|  |  |  | 	int screen; | 
					
						
							|  |  |  | 	int dpi; | 
					
						
							|  |  |  | } EnumDpiData; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static BOOL CALLBACK _MonitorEnumProcDpi(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	EnumDpiData *data = (EnumDpiData *)dwData; | 
					
						
							|  |  |  | 	if (data->count == data->screen) { | 
					
						
							|  |  |  | 		data->dpi = QueryDpiForMonitor(hMonitor); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	data->count++; | 
					
						
							|  |  |  | 	return TRUE; | 
					
						
							| 
									
										
										
										
											2016-05-29 13:40:00 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OS_Windows::get_screen_dpi(int p_screen) const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 16:12:29 -03:00
										 |  |  | 	EnumDpiData data = { 0, p_screen == -1 ? get_current_screen() : p_screen, 72 }; | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 	EnumDisplayMonitors(NULL, NULL, _MonitorEnumProcDpi, (LPARAM)&data); | 
					
						
							|  |  |  | 	return data.dpi; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Point2 OS_Windows::get_window_position() const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:48 -03:00
										 |  |  | 	if (minimized) { | 
					
						
							|  |  |  | 		return last_pos; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	RECT r; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GetWindowRect(hWnd, &r); | 
					
						
							|  |  |  | 	return Point2(r.left, r.top); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-08-14 13:53:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_position(const Point2 &p_position) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-24 12:07:59 -03:00
										 |  |  | 	if (video_mode.fullscreen) return; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	RECT r; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GetWindowRect(hWnd, &r); | 
					
						
							|  |  |  | 	MoveWindow(hWnd, p_position.x, p_position.y, r.right - r.left, r.bottom - r.top, TRUE); | 
					
						
							| 
									
										
										
										
											2018-09-05 18:45:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Don't let the mouse leave the window when moved
 | 
					
						
							|  |  |  | 	if (mouse_mode == MOUSE_MODE_CONFINED) { | 
					
						
							|  |  |  | 		RECT rect; | 
					
						
							|  |  |  | 		GetClientRect(hWnd, &rect); | 
					
						
							|  |  |  | 		ClientToScreen(hWnd, (POINT *)&rect.left); | 
					
						
							|  |  |  | 		ClientToScreen(hWnd, (POINT *)&rect.right); | 
					
						
							|  |  |  | 		ClipCursor(&rect); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:48 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	last_pos = p_position; | 
					
						
							| 
									
										
										
										
											2019-02-25 00:54:03 +09:00
										 |  |  | 	update_real_mouse_position(); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-06-13 15:31:08 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Size2 OS_Windows::get_window_size() const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-30 00:36:48 -03:00
										 |  |  | 	if (minimized) { | 
					
						
							|  |  |  | 		return Size2(video_mode.width, video_mode.height); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	RECT r; | 
					
						
							| 
									
										
										
										
											2018-10-17 02:46:50 -04:00
										 |  |  | 	if (GetClientRect(hWnd, &r)) { // Only area inside of window border
 | 
					
						
							|  |  |  | 		return Size2(r.right - r.left, r.bottom - r.top); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return Size2(); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-06-13 15:31:08 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | Size2 OS_Windows::get_max_window_size() const { | 
					
						
							|  |  |  | 	return max_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Size2 OS_Windows::get_min_window_size() const { | 
					
						
							|  |  |  | 	return min_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::set_min_window_size(const Size2 p_size) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((p_size != Size2()) && (max_size != Size2()) && ((p_size.x > max_size.x) || (p_size.y > max_size.y))) { | 
					
						
							| 
									
										
										
										
											2019-07-30 14:50:52 +02:00
										 |  |  | 		ERR_PRINT("Minimum window size can't be larger than maximum window size!"); | 
					
						
							| 
									
										
										
										
											2019-06-13 15:31:08 +03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	min_size = p_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::set_max_window_size(const Size2 p_size) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((p_size != Size2()) && ((p_size.x < min_size.x) || (p_size.y < min_size.y))) { | 
					
						
							| 
									
										
										
										
											2019-07-30 14:50:52 +02:00
										 |  |  | 		ERR_PRINT("Maximum window size can't be smaller than minimum window size!"); | 
					
						
							| 
									
										
										
										
											2019-06-13 15:31:08 +03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	max_size = p_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-12 14:17:29 -03:00
										 |  |  | Size2 OS_Windows::get_real_window_size() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RECT r; | 
					
						
							| 
									
										
										
										
											2018-10-17 02:46:50 -04:00
										 |  |  | 	if (GetWindowRect(hWnd, &r)) { // Includes area of the window border
 | 
					
						
							|  |  |  | 		return Size2(r.right - r.left, r.bottom - r.top); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return Size2(); | 
					
						
							| 
									
										
										
										
											2018-02-12 14:17:29 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-06-13 15:31:08 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_size(const Size2 p_size) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-03 18:52:23 -03:00
										 |  |  | 	int w = p_size.width; | 
					
						
							|  |  |  | 	int h = p_size.height; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	video_mode.width = w; | 
					
						
							|  |  |  | 	video_mode.height = h; | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (video_mode.fullscreen) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RECT rect; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GetWindowRect(hWnd, &rect); | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-06 16:20:41 -04:00
										 |  |  | 	if (!video_mode.borderless_window) { | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		RECT crect; | 
					
						
							|  |  |  | 		GetClientRect(hWnd, &crect); | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		w += (rect.right - rect.left) - (crect.right - crect.left); | 
					
						
							|  |  |  | 		h += (rect.bottom - rect.top) - (crect.bottom - crect.top); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 	MoveWindow(hWnd, rect.left, rect.top, w, h, TRUE); | 
					
						
							| 
									
										
										
										
											2018-05-20 19:07:25 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Don't let the mouse leave the window when resizing to a smaller resolution
 | 
					
						
							|  |  |  | 	if (mouse_mode == MOUSE_MODE_CONFINED) { | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | 		RECT crect; | 
					
						
							|  |  |  | 		GetClientRect(hWnd, &crect); | 
					
						
							|  |  |  | 		ClientToScreen(hWnd, (POINT *)&crect.left); | 
					
						
							|  |  |  | 		ClientToScreen(hWnd, (POINT *)&crect.right); | 
					
						
							|  |  |  | 		ClipCursor(&crect); | 
					
						
							| 
									
										
										
										
											2018-05-20 19:07:25 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_fullscreen(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (video_mode.fullscreen == p_enabled) | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 	if (layered_window) | 
					
						
							|  |  |  | 		set_window_per_pixel_transparency_enabled(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	if (p_enabled) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 18:44:47 +03:00
										 |  |  | 		was_maximized = maximized; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 		if (pre_fs_valid) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			GetWindowRect(hWnd, &pre_fs_rect); | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 		int cs = get_current_screen(); | 
					
						
							|  |  |  | 		Point2 pos = get_screen_position(cs); | 
					
						
							|  |  |  | 		Size2 size = get_screen_size(cs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		video_mode.fullscreen = true; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		_update_window_style(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		MoveWindow(hWnd, pos.x, pos.y, size.width, size.height, TRUE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 		RECT rect; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		video_mode.fullscreen = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 		if (pre_fs_valid) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			rect = pre_fs_rect; | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			rect.left = 0; | 
					
						
							|  |  |  | 			rect.right = video_mode.width; | 
					
						
							|  |  |  | 			rect.top = 0; | 
					
						
							|  |  |  | 			rect.bottom = video_mode.height; | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 18:44:47 +03:00
										 |  |  | 		_update_window_style(false, was_maximized); | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		MoveWindow(hWnd, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, TRUE); | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		pre_fs_valid = true; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool OS_Windows::is_window_fullscreen() const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return video_mode.fullscreen; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_resizable(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (video_mode.resizable == p_enabled) | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2015-03-23 20:47:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	video_mode.resizable = p_enabled; | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_update_window_style(); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool OS_Windows::is_window_resizable() const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return video_mode.resizable; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_minimized(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_enabled) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		maximized = false; | 
					
						
							|  |  |  | 		minimized = true; | 
					
						
							|  |  |  | 		ShowWindow(hWnd, SW_MINIMIZE); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ShowWindow(hWnd, SW_RESTORE); | 
					
						
							|  |  |  | 		maximized = false; | 
					
						
							|  |  |  | 		minimized = false; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool OS_Windows::is_window_minimized() const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return minimized; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void OS_Windows::set_window_maximized(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_enabled) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		maximized = true; | 
					
						
							|  |  |  | 		minimized = false; | 
					
						
							|  |  |  | 		ShowWindow(hWnd, SW_MAXIMIZE); | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ShowWindow(hWnd, SW_RESTORE); | 
					
						
							|  |  |  | 		maximized = false; | 
					
						
							|  |  |  | 		minimized = false; | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool OS_Windows::is_window_maximized() const { | 
					
						
							| 
									
										
										
										
											2015-03-22 19:00:50 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return maximized; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-27 20:51:19 +01:00
										 |  |  | void OS_Windows::set_window_always_on_top(bool p_enabled) { | 
					
						
							|  |  |  | 	if (video_mode.always_on_top == p_enabled) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	video_mode.always_on_top = p_enabled; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_update_window_style(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool OS_Windows::is_window_always_on_top() const { | 
					
						
							|  |  |  | 	return video_mode.always_on_top; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-18 14:17:43 +01:00
										 |  |  | void OS_Windows::set_console_visible(bool p_enabled) { | 
					
						
							|  |  |  | 	if (console_visible == p_enabled) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	ShowWindow(GetConsoleWindow(), p_enabled ? SW_SHOW : SW_HIDE); | 
					
						
							|  |  |  | 	console_visible = p_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool OS_Windows::is_console_visible() const { | 
					
						
							|  |  |  | 	return console_visible; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | bool OS_Windows::get_window_per_pixel_transparency_enabled() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_layered_allowed()) return false; | 
					
						
							|  |  |  | 	return layered_window; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::set_window_per_pixel_transparency_enabled(bool p_enabled) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_layered_allowed()) return; | 
					
						
							|  |  |  | 	if (layered_window != p_enabled) { | 
					
						
							|  |  |  | 		if (p_enabled) { | 
					
						
							|  |  |  | 			set_borderless_window(true); | 
					
						
							|  |  |  | 			//enable per-pixel alpha
 | 
					
						
							|  |  |  | 			hDC_dib = CreateCompatibleDC(GetDC(hWnd)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			SetWindowLong(hWnd, GWL_EXSTYLE, GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_LAYERED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RECT r; | 
					
						
							|  |  |  | 			GetWindowRect(hWnd, &r); | 
					
						
							|  |  |  | 			dib_size = Size2(r.right - r.left, r.bottom - r.top); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BITMAPINFO bmi; | 
					
						
							|  |  |  | 			ZeroMemory(&bmi, sizeof(BITMAPINFO)); | 
					
						
							|  |  |  | 			bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); | 
					
						
							|  |  |  | 			bmi.bmiHeader.biWidth = dib_size.x; | 
					
						
							|  |  |  | 			bmi.bmiHeader.biHeight = dib_size.y; | 
					
						
							|  |  |  | 			bmi.bmiHeader.biPlanes = 1; | 
					
						
							|  |  |  | 			bmi.bmiHeader.biBitCount = 32; | 
					
						
							|  |  |  | 			bmi.bmiHeader.biCompression = BI_RGB; | 
					
						
							|  |  |  | 			bmi.bmiHeader.biSizeImage = dib_size.x * dib_size.y * 4; | 
					
						
							|  |  |  | 			hBitmap = CreateDIBSection(hDC_dib, &bmi, DIB_RGB_COLORS, (void **)&dib_data, NULL, 0x0); | 
					
						
							|  |  |  | 			SelectObject(hDC_dib, hBitmap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ZeroMemory(dib_data, dib_size.x * dib_size.y * 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			layered_window = true; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			//disable per-pixel alpha
 | 
					
						
							|  |  |  | 			layered_window = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			SetWindowLong(hWnd, GWL_EXSTYLE, GetWindowLong(hWnd, GWL_EXSTYLE) & ~WS_EX_LAYERED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			//cleanup
 | 
					
						
							|  |  |  | 			DeleteObject(hBitmap); | 
					
						
							|  |  |  | 			DeleteDC(hDC_dib); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint8_t *OS_Windows::get_layered_buffer_data() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (is_layered_allowed() && layered_window) ? dib_data : NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Size2 OS_Windows::get_layered_buffer_size() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (is_layered_allowed() && layered_window) ? dib_size : Size2(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::swap_layered_buffer() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (is_layered_allowed() && layered_window) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		//premultiply alpha
 | 
					
						
							|  |  |  | 		for (int y = 0; y < dib_size.y; y++) { | 
					
						
							|  |  |  | 			for (int x = 0; x < dib_size.x; x++) { | 
					
						
							|  |  |  | 				float alpha = (float)dib_data[y * (int)dib_size.x * 4 + x * 4 + 3] / (float)0xFF; | 
					
						
							|  |  |  | 				dib_data[y * (int)dib_size.x * 4 + x * 4 + 0] *= alpha; | 
					
						
							|  |  |  | 				dib_data[y * (int)dib_size.x * 4 + x * 4 + 1] *= alpha; | 
					
						
							|  |  |  | 				dib_data[y * (int)dib_size.x * 4 + x * 4 + 2] *= alpha; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		//swap layered window buffer
 | 
					
						
							|  |  |  | 		POINT ptSrc = { 0, 0 }; | 
					
						
							|  |  |  | 		SIZE sizeWnd = { (long)dib_size.x, (long)dib_size.y }; | 
					
						
							|  |  |  | 		BLENDFUNCTION bf; | 
					
						
							|  |  |  | 		bf.BlendOp = AC_SRC_OVER; | 
					
						
							|  |  |  | 		bf.BlendFlags = 0; | 
					
						
							|  |  |  | 		bf.AlphaFormat = AC_SRC_ALPHA; | 
					
						
							|  |  |  | 		bf.SourceConstantAlpha = 0xFF; | 
					
						
							|  |  |  | 		UpdateLayeredWindow(hWnd, NULL, NULL, &sizeWnd, hDC_dib, &ptSrc, 0, &bf, ULW_ALPHA); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 19:15:46 +01:00
										 |  |  | void OS_Windows::set_borderless_window(bool p_borderless) { | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 	if (video_mode.borderless_window == p_borderless) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 	if (!p_borderless && layered_window) | 
					
						
							|  |  |  | 		set_window_per_pixel_transparency_enabled(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-03 04:18:28 +00:00
										 |  |  | 	video_mode.borderless_window = p_borderless; | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-20 19:07:25 -03:00
										 |  |  | 	preserve_window_size = true; | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 	_update_window_style(); | 
					
						
							| 
									
										
										
										
											2016-01-03 04:18:28 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool OS_Windows::get_borderless_window() { | 
					
						
							|  |  |  | 	return video_mode.borderless_window; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 18:44:47 +03:00
										 |  |  | void OS_Windows::_update_window_style(bool p_repaint, bool p_maximized) { | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 	if (video_mode.fullscreen || video_mode.borderless_window) { | 
					
						
							|  |  |  | 		SetWindowLongPtr(hWnd, GWL_STYLE, WS_SYSMENU | WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_VISIBLE); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (video_mode.resizable) { | 
					
						
							| 
									
										
										
										
											2019-10-27 18:44:47 +03:00
										 |  |  | 			if (p_maximized) { | 
					
						
							|  |  |  | 				SetWindowLongPtr(hWnd, GWL_STYLE, WS_OVERLAPPEDWINDOW | WS_VISIBLE | WS_MAXIMIZE); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				SetWindowLongPtr(hWnd, GWL_STYLE, WS_OVERLAPPEDWINDOW | WS_VISIBLE); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			SetWindowLongPtr(hWnd, GWL_STYLE, WS_CAPTION | WS_MINIMIZEBOX | WS_POPUPWINDOW | WS_VISIBLE); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-20 19:07:25 -03:00
										 |  |  | 	SetWindowPos(hWnd, video_mode.always_on_top ? HWND_TOPMOST : HWND_NOTOPMOST, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE); | 
					
						
							| 
									
										
										
										
											2017-12-27 20:51:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 18:44:47 +03:00
										 |  |  | 	if (p_repaint) { | 
					
						
							| 
									
										
										
										
											2017-07-09 21:48:22 -03:00
										 |  |  | 		RECT rect; | 
					
						
							|  |  |  | 		GetWindowRect(hWnd, &rect); | 
					
						
							|  |  |  | 		MoveWindow(hWnd, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, TRUE); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-30 10:00:10 -03:00
										 |  |  | Error OS_Windows::open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 15:42:29 -03:00
										 |  |  | 	String path = p_path; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!FileAccess::exists(path)) { | 
					
						
							|  |  |  | 		//this code exists so gdnative can load .dll files from within the executable path
 | 
					
						
							|  |  |  | 		path = get_executable_path().get_base_dir().plus_file(p_path.get_file()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 14:29:01 +02:00
										 |  |  | 	typedef DLL_DIRECTORY_COOKIE(WINAPI * PAddDllDirectory)(PCWSTR); | 
					
						
							|  |  |  | 	typedef BOOL(WINAPI * PRemoveDllDirectory)(DLL_DIRECTORY_COOKIE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PAddDllDirectory add_dll_directory = (PAddDllDirectory)GetProcAddress(GetModuleHandle("kernel32.dll"), "AddDllDirectory"); | 
					
						
							|  |  |  | 	PRemoveDllDirectory remove_dll_directory = (PRemoveDllDirectory)GetProcAddress(GetModuleHandle("kernel32.dll"), "RemoveDllDirectory"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool has_dll_directory_api = ((add_dll_directory != NULL) && (remove_dll_directory != NULL)); | 
					
						
							| 
									
										
										
										
											2018-01-26 11:48:20 +01:00
										 |  |  | 	DLL_DIRECTORY_COOKIE cookie = NULL; | 
					
						
							| 
									
										
										
										
											2017-11-30 10:00:10 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 14:29:01 +02:00
										 |  |  | 	if (p_also_set_library_path && has_dll_directory_api) { | 
					
						
							| 
									
										
										
										
											2018-01-04 15:42:29 -03:00
										 |  |  | 		cookie = add_dll_directory(path.get_base_dir().c_str()); | 
					
						
							| 
									
										
										
										
											2017-11-30 10:00:10 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-04 15:42:29 -03:00
										 |  |  | 	p_library_handle = (void *)LoadLibraryExW(path.c_str(), NULL, (p_also_set_library_path && has_dll_directory_api) ? LOAD_LIBRARY_SEARCH_DEFAULT_DIRS : 0); | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(!p_library_handle, ERR_CANT_OPEN, "Can't open dynamic library: " + p_path + ", error: " + format_error_message(GetLastError()) + "."); | 
					
						
							| 
									
										
										
										
											2017-11-30 10:00:10 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-26 11:48:20 +01:00
										 |  |  | 	if (cookie) { | 
					
						
							| 
									
										
										
										
											2017-12-06 14:29:01 +02:00
										 |  |  | 		remove_dll_directory(cookie); | 
					
						
							| 
									
										
										
										
											2017-11-30 10:00:10 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-08 02:50:13 +01:00
										 |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | Error OS_Windows::close_dynamic_library(void *p_library_handle) { | 
					
						
							|  |  |  | 	if (!FreeLibrary((HMODULE)p_library_handle)) { | 
					
						
							| 
									
										
										
										
											2017-03-08 02:50:13 +01:00
										 |  |  | 		return FAILED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 09:23:21 +02:00
										 |  |  | Error OS_Windows::get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional) { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	p_symbol_handle = (void *)GetProcAddress((HMODULE)p_library_handle, p_name.utf8().get_data()); | 
					
						
							| 
									
										
										
										
											2017-03-08 02:50:13 +01:00
										 |  |  | 	if (!p_symbol_handle) { | 
					
						
							| 
									
										
										
										
											2017-07-27 09:23:21 +02:00
										 |  |  | 		if (!p_optional) { | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 			ERR_FAIL_V_MSG(ERR_CANT_RESOLVE, "Can't resolve symbol " + p_name + ", error: " + String::num(GetLastError()) + "."); | 
					
						
							| 
									
										
										
										
											2017-07-27 09:23:21 +02:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			return ERR_CANT_RESOLVE; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-08 02:50:13 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-05 12:29:08 -03:00
										 |  |  | void OS_Windows::request_attention() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	FLASHWINFO info; | 
					
						
							|  |  |  | 	info.cbSize = sizeof(FLASHWINFO); | 
					
						
							|  |  |  | 	info.hwnd = hWnd; | 
					
						
							|  |  |  | 	info.dwFlags = FLASHW_TRAY; | 
					
						
							|  |  |  | 	info.dwTimeout = 0; | 
					
						
							|  |  |  | 	info.uCount = 2; | 
					
						
							|  |  |  | 	FlashWindowEx(&info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-20 13:36:24 -04:00
										 |  |  | String OS_Windows::get_name() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return "Windows"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-07 15:06:13 +02:00
										 |  |  | OS::Date OS_Windows::get_date(bool utc) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	SYSTEMTIME systemtime; | 
					
						
							| 
									
										
										
										
											2015-06-07 15:06:13 +02:00
										 |  |  | 	if (utc) | 
					
						
							| 
									
										
										
										
											2015-06-06 03:40:56 +02:00
										 |  |  | 		GetSystemTime(&systemtime); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		GetLocalTime(&systemtime); | 
					
						
							| 
									
										
										
										
											2015-06-07 15:06:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Date date; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	date.day = systemtime.wDay; | 
					
						
							|  |  |  | 	date.month = Month(systemtime.wMonth); | 
					
						
							|  |  |  | 	date.weekday = Weekday(systemtime.wDayOfWeek); | 
					
						
							|  |  |  | 	date.year = systemtime.wYear; | 
					
						
							|  |  |  | 	date.dst = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return date; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-06 03:40:56 +02:00
										 |  |  | OS::Time OS_Windows::get_time(bool utc) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	SYSTEMTIME systemtime; | 
					
						
							| 
									
										
										
										
											2015-06-06 03:40:56 +02:00
										 |  |  | 	if (utc) | 
					
						
							|  |  |  | 		GetSystemTime(&systemtime); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		GetLocalTime(&systemtime); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Time time; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	time.hour = systemtime.wHour; | 
					
						
							|  |  |  | 	time.min = systemtime.wMinute; | 
					
						
							|  |  |  | 	time.sec = systemtime.wSecond; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return time; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-06 05:35:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | OS::TimeZoneInfo OS_Windows::get_time_zone_info() const { | 
					
						
							|  |  |  | 	TIME_ZONE_INFORMATION info; | 
					
						
							|  |  |  | 	bool daylight = false; | 
					
						
							| 
									
										
										
										
											2015-06-07 16:10:33 +02:00
										 |  |  | 	if (GetTimeZoneInformation(&info) == TIME_ZONE_ID_DAYLIGHT) | 
					
						
							| 
									
										
										
										
											2015-06-06 05:35:38 +02:00
										 |  |  | 		daylight = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-07 16:10:33 +02:00
										 |  |  | 	TimeZoneInfo ret; | 
					
						
							| 
									
										
										
										
											2015-06-06 05:35:38 +02:00
										 |  |  | 	if (daylight) { | 
					
						
							|  |  |  | 		ret.name = info.DaylightName; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		ret.name = info.StandardName; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 21:41:19 -03:00
										 |  |  | 	// Bias value returned by GetTimeZoneInformation is inverted of what we expect
 | 
					
						
							|  |  |  | 	// For example on GMT-3 GetTimeZoneInformation return a Bias of 180, so invert the value to get -180
 | 
					
						
							|  |  |  | 	ret.bias = -info.Bias; | 
					
						
							| 
									
										
										
										
											2015-06-06 05:35:38 +02:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-07 15:06:13 +02:00
										 |  |  | uint64_t OS_Windows::get_unix_time() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	FILETIME ft; | 
					
						
							|  |  |  | 	SYSTEMTIME st; | 
					
						
							|  |  |  | 	GetSystemTime(&st); | 
					
						
							|  |  |  | 	SystemTimeToFileTime(&st, &ft); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SYSTEMTIME ep; | 
					
						
							|  |  |  | 	ep.wYear = 1970; | 
					
						
							|  |  |  | 	ep.wMonth = 1; | 
					
						
							|  |  |  | 	ep.wDayOfWeek = 4; | 
					
						
							|  |  |  | 	ep.wDay = 1; | 
					
						
							|  |  |  | 	ep.wHour = 0; | 
					
						
							|  |  |  | 	ep.wMinute = 0; | 
					
						
							|  |  |  | 	ep.wSecond = 0; | 
					
						
							|  |  |  | 	ep.wMilliseconds = 0; | 
					
						
							|  |  |  | 	FILETIME fep; | 
					
						
							|  |  |  | 	SystemTimeToFileTime(&ep, &fep); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-29 23:52:59 +01:00
										 |  |  | 	// Type punning through unions (rather than pointer cast) as per:
 | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | 	// https://docs.microsoft.com/en-us/windows/desktop/api/minwinbase/ns-minwinbase-filetime#remarks
 | 
					
						
							| 
									
										
										
										
											2019-07-29 23:52:59 +01:00
										 |  |  | 	ULARGE_INTEGER ft_punning; | 
					
						
							|  |  |  | 	ft_punning.LowPart = ft.dwLowDateTime; | 
					
						
							|  |  |  | 	ft_punning.HighPart = ft.dwHighDateTime; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ULARGE_INTEGER fep_punning; | 
					
						
							|  |  |  | 	fep_punning.LowPart = fep.dwLowDateTime; | 
					
						
							|  |  |  | 	fep_punning.HighPart = fep.dwHighDateTime; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (ft_punning.QuadPart - fep_punning.QuadPart) / 10000000; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-10 18:24:55 -03:00
										 |  |  | uint64_t OS_Windows::get_system_time_secs() const { | 
					
						
							| 
									
										
										
										
											2016-06-11 14:09:21 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-20 06:18:52 +09:00
										 |  |  | 	return get_system_time_msecs() / 1000; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint64_t OS_Windows::get_system_time_msecs() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const uint64_t WINDOWS_TICK = 10000; | 
					
						
							|  |  |  | 	const uint64_t MSEC_TO_UNIX_EPOCH = 11644473600000LL; | 
					
						
							| 
									
										
										
										
											2016-06-11 14:09:21 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-06 10:29:33 -07:00
										 |  |  | 	SYSTEMTIME st; | 
					
						
							|  |  |  | 	GetSystemTime(&st); | 
					
						
							| 
									
										
										
										
											2016-01-10 18:24:55 -03:00
										 |  |  | 	FILETIME ft; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	SystemTimeToFileTime(&st, &ft); | 
					
						
							| 
									
										
										
										
											2016-01-10 18:24:55 -03:00
										 |  |  | 	uint64_t ret; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ret = ft.dwHighDateTime; | 
					
						
							|  |  |  | 	ret <<= 32; | 
					
						
							|  |  |  | 	ret |= ft.dwLowDateTime; | 
					
						
							| 
									
										
										
										
											2016-06-11 14:09:21 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-20 06:18:52 +09:00
										 |  |  | 	return (uint64_t)(ret / WINDOWS_TICK - MSEC_TO_UNIX_EPOCH); | 
					
						
							| 
									
										
										
										
											2015-08-06 10:29:33 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void OS_Windows::delay_usec(uint32_t p_usec) const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_usec < 1000) | 
					
						
							|  |  |  | 		Sleep(1); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		Sleep(p_usec / 1000); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | uint64_t OS_Windows::get_ticks_usec() const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	uint64_t ticks; | 
					
						
							|  |  |  | 	uint64_t time; | 
					
						
							|  |  |  | 	// This is the number of clock ticks since start
 | 
					
						
							|  |  |  | 	if (!QueryPerformanceCounter((LARGE_INTEGER *)&ticks)) | 
					
						
							|  |  |  | 		ticks = (UINT64)timeGetTime(); | 
					
						
							|  |  |  | 	// Divide by frequency to get the time in seconds
 | 
					
						
							|  |  |  | 	time = ticks * 1000000L / ticks_per_second; | 
					
						
							|  |  |  | 	// Subtract the time at game start to get
 | 
					
						
							|  |  |  | 	// the time since the game started
 | 
					
						
							|  |  |  | 	time -= ticks_start; | 
					
						
							|  |  |  | 	return time; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::process_events() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	MSG msg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | 	if (!drop_events) { | 
					
						
							|  |  |  | 		joypad->process_joypads(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		TranslateMessage(&msg); | 
					
						
							|  |  |  | 		DispatchMessageW(&msg); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | 	if (!drop_events) { | 
					
						
							|  |  |  | 		process_key_events(); | 
					
						
							| 
									
										
										
										
											2019-03-03 19:52:18 -03:00
										 |  |  | 		input->flush_accumulated_events(); | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::set_cursor_shape(CursorShape p_shape) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_FAIL_INDEX(p_shape, CURSOR_MAX); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (cursor_shape == p_shape) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-20 19:07:25 -03:00
										 |  |  | 	if (mouse_mode != MOUSE_MODE_VISIBLE && mouse_mode != MOUSE_MODE_CONFINED) { | 
					
						
							| 
									
										
										
										
											2018-04-08 21:59:51 -03:00
										 |  |  | 		cursor_shape = p_shape; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	static const LPCTSTR win_cursors[CURSOR_MAX] = { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		IDC_ARROW, | 
					
						
							|  |  |  | 		IDC_IBEAM, | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		IDC_HAND, //finger
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		IDC_CROSS, | 
					
						
							|  |  |  | 		IDC_WAIT, | 
					
						
							|  |  |  | 		IDC_APPSTARTING, | 
					
						
							|  |  |  | 		IDC_ARROW, | 
					
						
							|  |  |  | 		IDC_ARROW, | 
					
						
							|  |  |  | 		IDC_NO, | 
					
						
							|  |  |  | 		IDC_SIZENS, | 
					
						
							|  |  |  | 		IDC_SIZEWE, | 
					
						
							|  |  |  | 		IDC_SIZENESW, | 
					
						
							|  |  |  | 		IDC_SIZENWSE, | 
					
						
							|  |  |  | 		IDC_SIZEALL, | 
					
						
							|  |  |  | 		IDC_SIZENS, | 
					
						
							|  |  |  | 		IDC_SIZEWE, | 
					
						
							|  |  |  | 		IDC_HELP | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 	if (cursors[p_shape] != NULL) { | 
					
						
							|  |  |  | 		SetCursor(cursors[p_shape]); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		SetCursor(LoadCursor(hInstance, win_cursors[p_shape])); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-08 21:59:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	cursor_shape = p_shape; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-15 12:30:20 -03:00
										 |  |  | OS::CursorShape OS_Windows::get_cursor_shape() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cursor_shape; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | void OS_Windows::set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot) { | 
					
						
							| 
									
										
										
										
											2019-07-08 17:37:18 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 	if (p_cursor.is_valid()) { | 
					
						
							| 
									
										
										
										
											2019-07-08 17:37:18 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Map<CursorShape, Vector<Variant> >::Element *cursor_c = cursors_cache.find(p_shape); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (cursor_c) { | 
					
						
							|  |  |  | 			if (cursor_c->get()[0] == p_cursor && cursor_c->get()[1] == p_hotspot) { | 
					
						
							|  |  |  | 				set_cursor_shape(p_shape); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			cursors_cache.erase(p_shape); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 		Ref<Texture> texture = p_cursor; | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 		Ref<AtlasTexture> atlas_texture = p_cursor; | 
					
						
							|  |  |  | 		Ref<Image> image; | 
					
						
							|  |  |  | 		Size2 texture_size; | 
					
						
							|  |  |  | 		Rect2 atlas_rect; | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 		if (texture.is_valid()) { | 
					
						
							|  |  |  | 			image = texture->get_data(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!image.is_valid() && atlas_texture.is_valid()) { | 
					
						
							|  |  |  | 			texture = atlas_texture->get_atlas(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			atlas_rect.size.width = texture->get_width(); | 
					
						
							|  |  |  | 			atlas_rect.size.height = texture->get_height(); | 
					
						
							|  |  |  | 			atlas_rect.position.x = atlas_texture->get_region().position.x; | 
					
						
							|  |  |  | 			atlas_rect.position.y = atlas_texture->get_region().position.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			texture_size.width = atlas_texture->get_region().size.x; | 
					
						
							|  |  |  | 			texture_size.height = atlas_texture->get_region().size.y; | 
					
						
							|  |  |  | 		} else if (image.is_valid()) { | 
					
						
							|  |  |  | 			texture_size.width = texture->get_width(); | 
					
						
							|  |  |  | 			texture_size.height = texture->get_height(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 		ERR_FAIL_COND(!texture.is_valid()); | 
					
						
							| 
									
										
										
										
											2018-09-04 04:42:23 +02:00
										 |  |  | 		ERR_FAIL_COND(p_hotspot.x < 0 || p_hotspot.y < 0); | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 		ERR_FAIL_COND(texture_size.width > 256 || texture_size.height > 256); | 
					
						
							| 
									
										
										
										
											2018-09-03 09:21:13 -03:00
										 |  |  | 		ERR_FAIL_COND(p_hotspot.x > texture_size.width || p_hotspot.y > texture_size.height); | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		image = texture->get_data(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 09:36:30 -03:00
										 |  |  | 		ERR_FAIL_COND(!image.is_valid()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 		UINT image_size = texture_size.width * texture_size.height; | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Create the BITMAP with alpha channel
 | 
					
						
							| 
									
										
										
										
											2018-05-26 15:58:12 -03:00
										 |  |  | 		COLORREF *buffer = (COLORREF *)memalloc(sizeof(COLORREF) * image_size); | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		image->lock(); | 
					
						
							|  |  |  | 		for (UINT index = 0; index < image_size; index++) { | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 			int row_index = floor(index / texture_size.width) + atlas_rect.position.y; | 
					
						
							|  |  |  | 			int column_index = (index % int(texture_size.width)) + atlas_rect.position.x; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (atlas_texture.is_valid()) { | 
					
						
							|  |  |  | 				column_index = MIN(column_index, atlas_rect.size.width - 1); | 
					
						
							|  |  |  | 				row_index = MIN(row_index, atlas_rect.size.height - 1); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-05 13:07:44 -03:00
										 |  |  | 			*(buffer + index) = image->get_pixel(column_index, row_index).to_argb32(); | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		image->unlock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Using 4 channels, so 4 * 8 bits
 | 
					
						
							| 
									
										
										
										
											2018-05-08 14:07:43 +00:00
										 |  |  | 		HBITMAP bitmap = CreateBitmap(texture_size.width, texture_size.height, 1, 4 * 8, buffer); | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 		COLORREF clrTransparent = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Create the AND and XOR masks for the bitmap
 | 
					
						
							|  |  |  | 		HBITMAP hAndMask = NULL; | 
					
						
							|  |  |  | 		HBITMAP hXorMask = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		GetMaskBitmaps(bitmap, clrTransparent, hAndMask, hXorMask); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (NULL == hAndMask || NULL == hXorMask) { | 
					
						
							| 
									
										
										
										
											2018-05-26 15:58:12 -03:00
										 |  |  | 			memfree(buffer); | 
					
						
							|  |  |  | 			DeleteObject(bitmap); | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Finally, create the icon
 | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | 		ICONINFO iconinfo; | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 		iconinfo.fIcon = FALSE; | 
					
						
							|  |  |  | 		iconinfo.xHotspot = p_hotspot.x; | 
					
						
							|  |  |  | 		iconinfo.yHotspot = p_hotspot.y; | 
					
						
							|  |  |  | 		iconinfo.hbmMask = hAndMask; | 
					
						
							|  |  |  | 		iconinfo.hbmColor = hXorMask; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-23 00:58:18 +01:00
										 |  |  | 		if (cursors[p_shape]) | 
					
						
							|  |  |  | 			DestroyIcon(cursors[p_shape]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 		cursors[p_shape] = CreateIconIndirect(&iconinfo); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-08 17:37:18 -03:00
										 |  |  | 		Vector<Variant> params; | 
					
						
							|  |  |  | 		params.push_back(p_cursor); | 
					
						
							|  |  |  | 		params.push_back(p_hotspot); | 
					
						
							|  |  |  | 		cursors_cache.insert(p_shape, params); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-13 14:53:20 -03:00
										 |  |  | 		if (p_shape == cursor_shape) { | 
					
						
							| 
									
										
										
										
											2018-09-17 11:37:54 -03:00
										 |  |  | 			if (mouse_mode == MOUSE_MODE_VISIBLE || mouse_mode == MOUSE_MODE_CONFINED) { | 
					
						
							|  |  |  | 				SetCursor(cursors[p_shape]); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (hAndMask != NULL) { | 
					
						
							|  |  |  | 			DeleteObject(hAndMask); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (hXorMask != NULL) { | 
					
						
							|  |  |  | 			DeleteObject(hXorMask); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-05-26 15:58:12 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		memfree(buffer); | 
					
						
							|  |  |  | 		DeleteObject(bitmap); | 
					
						
							| 
									
										
										
										
											2018-05-10 19:17:00 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		// Reset to default system cursor
 | 
					
						
							| 
									
										
										
										
											2019-10-03 13:02:11 +02:00
										 |  |  | 		if (cursors[p_shape]) { | 
					
						
							|  |  |  | 			DestroyIcon(cursors[p_shape]); | 
					
						
							|  |  |  | 			cursors[p_shape] = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-09-13 14:53:20 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		CursorShape c = cursor_shape; | 
					
						
							| 
									
										
										
										
											2018-05-10 19:17:00 -03:00
										 |  |  | 		cursor_shape = CURSOR_MAX; | 
					
						
							| 
									
										
										
										
											2018-09-13 14:53:20 -03:00
										 |  |  | 		set_cursor_shape(c); | 
					
						
							| 
									
										
										
										
											2019-10-03 13:02:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		cursors_cache.erase(p_shape); | 
					
						
							| 
									
										
										
										
											2017-11-10 08:50:11 -02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::GetMaskBitmaps(HBITMAP hSourceBitmap, COLORREF clrTransparent, OUT HBITMAP &hAndMaskBitmap, OUT HBITMAP &hXorMaskBitmap) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Get the system display DC
 | 
					
						
							|  |  |  | 	HDC hDC = GetDC(NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Create helper DC
 | 
					
						
							|  |  |  | 	HDC hMainDC = CreateCompatibleDC(hDC); | 
					
						
							|  |  |  | 	HDC hAndMaskDC = CreateCompatibleDC(hDC); | 
					
						
							|  |  |  | 	HDC hXorMaskDC = CreateCompatibleDC(hDC); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Get the dimensions of the source bitmap
 | 
					
						
							|  |  |  | 	BITMAP bm; | 
					
						
							|  |  |  | 	GetObject(hSourceBitmap, sizeof(BITMAP), &bm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Create the mask bitmaps
 | 
					
						
							|  |  |  | 	hAndMaskBitmap = CreateCompatibleBitmap(hDC, bm.bmWidth, bm.bmHeight); // color
 | 
					
						
							|  |  |  | 	hXorMaskBitmap = CreateCompatibleBitmap(hDC, bm.bmWidth, bm.bmHeight); // color
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Release the system display DC
 | 
					
						
							|  |  |  | 	ReleaseDC(NULL, hDC); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Select the bitmaps to helper DC
 | 
					
						
							|  |  |  | 	HBITMAP hOldMainBitmap = (HBITMAP)SelectObject(hMainDC, hSourceBitmap); | 
					
						
							|  |  |  | 	HBITMAP hOldAndMaskBitmap = (HBITMAP)SelectObject(hAndMaskDC, hAndMaskBitmap); | 
					
						
							|  |  |  | 	HBITMAP hOldXorMaskBitmap = (HBITMAP)SelectObject(hXorMaskDC, hXorMaskBitmap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Assign the monochrome AND mask bitmap pixels so that a pixels of the source bitmap
 | 
					
						
							|  |  |  | 	// with 'clrTransparent' will be white pixels of the monochrome bitmap
 | 
					
						
							|  |  |  | 	SetBkColor(hMainDC, clrTransparent); | 
					
						
							|  |  |  | 	BitBlt(hAndMaskDC, 0, 0, bm.bmWidth, bm.bmHeight, hMainDC, 0, 0, SRCCOPY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Assign the color XOR mask bitmap pixels so that a pixels of the source bitmap
 | 
					
						
							|  |  |  | 	// with 'clrTransparent' will be black and rest the pixels same as corresponding
 | 
					
						
							|  |  |  | 	// pixels of the source bitmap
 | 
					
						
							|  |  |  | 	SetBkColor(hXorMaskDC, RGB(0, 0, 0)); | 
					
						
							|  |  |  | 	SetTextColor(hXorMaskDC, RGB(255, 255, 255)); | 
					
						
							|  |  |  | 	BitBlt(hXorMaskDC, 0, 0, bm.bmWidth, bm.bmHeight, hAndMaskDC, 0, 0, SRCCOPY); | 
					
						
							|  |  |  | 	BitBlt(hXorMaskDC, 0, 0, bm.bmWidth, bm.bmHeight, hMainDC, 0, 0, SRCAND); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Deselect bitmaps from the helper DC
 | 
					
						
							|  |  |  | 	SelectObject(hMainDC, hOldMainBitmap); | 
					
						
							|  |  |  | 	SelectObject(hAndMaskDC, hOldAndMaskBitmap); | 
					
						
							|  |  |  | 	SelectObject(hXorMaskDC, hOldXorMaskBitmap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Delete the helper DC
 | 
					
						
							|  |  |  | 	DeleteDC(hXorMaskDC); | 
					
						
							|  |  |  | 	DeleteDC(hAndMaskDC); | 
					
						
							|  |  |  | 	DeleteDC(hMainDC); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 15:46:52 -03:00
										 |  |  | Error OS_Windows::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode, bool read_stderr, Mutex *p_pipe_mutex) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_blocking && r_pipe) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		String argss; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		argss = "\"\"" + p_path + "\""; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (const List<String>::Element *E = p_arguments.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-01 16:51:53 -06:00
										 |  |  | 			argss += " \"" + E->get() + "\""; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		argss += "\""; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (read_stderr) { | 
					
						
							|  |  |  | 			argss += " 2>&1"; // Read stderr too
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		FILE *f = _wpopen(argss.c_str(), L"r"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ERR_FAIL_COND_V(!f, ERR_CANT_OPEN); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		char buf[65535]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		while (fgets(buf, 65535, f)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 15:46:52 -03:00
										 |  |  | 			if (p_pipe_mutex) { | 
					
						
							|  |  |  | 				p_pipe_mutex->lock(); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			(*r_pipe) += buf; | 
					
						
							| 
									
										
										
										
											2019-04-07 15:46:52 -03:00
										 |  |  | 			if (p_pipe_mutex) { | 
					
						
							| 
									
										
										
										
											2019-04-24 15:52:15 -03:00
										 |  |  | 				p_pipe_mutex->unlock(); | 
					
						
							| 
									
										
										
										
											2019-04-07 15:46:52 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int rv = _pclose(f); | 
					
						
							|  |  |  | 		if (r_exitcode) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			*r_exitcode = rv; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return OK; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	String cmdline = "\"" + p_path + "\""; | 
					
						
							|  |  |  | 	const List<String>::Element *I = p_arguments.front(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	while (I) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		cmdline += " \"" + I->get() + "\""; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		I = I->next(); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ProcessInfo pi; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ZeroMemory(&pi.si, sizeof(pi.si)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	pi.si.cb = sizeof(pi.si); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ZeroMemory(&pi.pi, sizeof(pi.pi)); | 
					
						
							|  |  |  | 	LPSTARTUPINFOW si_w = (LPSTARTUPINFOW)&pi.si; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-15 02:01:39 -03:00
										 |  |  | 	Vector<CharType> modstr; //windows wants to change this no idea why
 | 
					
						
							|  |  |  | 	modstr.resize(cmdline.size()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < cmdline.size(); i++) | 
					
						
							| 
									
										
										
										
											2018-07-25 03:11:03 +02:00
										 |  |  | 		modstr.write[i] = cmdline[i]; | 
					
						
							| 
									
										
										
										
											2019-03-05 16:11:08 -06:00
										 |  |  | 	int ret = CreateProcessW(NULL, modstr.ptrw(), NULL, NULL, 0, NORMAL_PRIORITY_CLASS & CREATE_NO_WINDOW, NULL, NULL, si_w, &pi.pi); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ERR_FAIL_COND_V(ret == 0, ERR_CANT_FORK); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_blocking) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | 		DWORD ret2 = WaitForSingleObject(pi.pi.hProcess, INFINITE); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		if (r_exitcode) | 
					
						
							| 
									
										
										
										
											2019-06-15 12:11:30 +02:00
										 |  |  | 			*r_exitcode = ret2; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 09:55:33 +02:00
										 |  |  | 		CloseHandle(pi.pi.hProcess); | 
					
						
							|  |  |  | 		CloseHandle(pi.pi.hThread); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ProcessID pid = pi.pi.dwProcessId; | 
					
						
							|  |  |  | 		if (r_child_id) { | 
					
						
							|  |  |  | 			*r_child_id = pid; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		process_map->insert(pid, pi); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-27 17:32:43 +02:00
										 |  |  | Error OS_Windows::kill(const ProcessID &p_pid) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 09:55:33 +02:00
										 |  |  | 	ERR_FAIL_COND_V(!process_map->has(p_pid), FAILED); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 09:55:33 +02:00
										 |  |  | 	const PROCESS_INFORMATION pi = (*process_map)[p_pid].pi; | 
					
						
							|  |  |  | 	process_map->erase(p_pid); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-27 17:32:43 +02:00
										 |  |  | 	const int ret = TerminateProcess(pi.hProcess, 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 09:55:33 +02:00
										 |  |  | 	CloseHandle(pi.hProcess); | 
					
						
							|  |  |  | 	CloseHandle(pi.hThread); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-27 17:32:43 +02:00
										 |  |  | 	return ret != 0 ? OK : FAILED; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | int OS_Windows::get_process_id() const { | 
					
						
							| 
									
										
										
										
											2016-04-29 13:57:57 -03:00
										 |  |  | 	return _getpid(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Error OS_Windows::set_cwd(const String &p_cwd) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (_wchdir(p_cwd.c_str()) != 0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return ERR_CANT_OPEN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-15 02:01:39 -03:00
										 |  |  | String OS_Windows::get_executable_path() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wchar_t bufname[4096]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GetModuleFileNameW(NULL, bufname, 4096); | 
					
						
							|  |  |  | 	String s = bufname; | 
					
						
							| 
									
										
										
										
											2014-02-15 02:01:39 -03:00
										 |  |  | 	return s; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | void OS_Windows::set_native_icon(const String &p_filename) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	FileAccess *f = FileAccess::open(p_filename, FileAccess::READ); | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(!f, "Cannot open file with icon '" + p_filename + "'."); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ICONDIR *icon_dir = (ICONDIR *)memalloc(sizeof(ICONDIR)); | 
					
						
							|  |  |  | 	int pos = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	icon_dir->idReserved = f->get_32(); | 
					
						
							|  |  |  | 	pos += sizeof(WORD); | 
					
						
							|  |  |  | 	f->seek(pos); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	icon_dir->idType = f->get_32(); | 
					
						
							|  |  |  | 	pos += sizeof(WORD); | 
					
						
							|  |  |  | 	f->seek(pos); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(icon_dir->idType != 1, "Invalid icon file format!"); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	icon_dir->idCount = f->get_32(); | 
					
						
							|  |  |  | 	pos += sizeof(WORD); | 
					
						
							|  |  |  | 	f->seek(pos); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	icon_dir = (ICONDIR *)memrealloc(icon_dir, 3 * sizeof(WORD) + icon_dir->idCount * sizeof(ICONDIRENTRY)); | 
					
						
							|  |  |  | 	f->get_buffer((uint8_t *)&icon_dir->idEntries[0], icon_dir->idCount * sizeof(ICONDIRENTRY)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int small_icon_index = -1; // Select 16x16 with largest color count
 | 
					
						
							|  |  |  | 	int small_icon_cc = 0; | 
					
						
							|  |  |  | 	int big_icon_index = -1; // Select largest
 | 
					
						
							|  |  |  | 	int big_icon_width = 16; | 
					
						
							|  |  |  | 	int big_icon_cc = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < icon_dir->idCount; i++) { | 
					
						
							|  |  |  | 		int colors = (icon_dir->idEntries[i].bColorCount == 0) ? 32768 : icon_dir->idEntries[i].bColorCount; | 
					
						
							|  |  |  | 		int width = (icon_dir->idEntries[i].bWidth == 0) ? 256 : icon_dir->idEntries[i].bWidth; | 
					
						
							|  |  |  | 		if (width == 16) { | 
					
						
							|  |  |  | 			if (colors >= small_icon_cc) { | 
					
						
							|  |  |  | 				small_icon_index = i; | 
					
						
							|  |  |  | 				small_icon_cc = colors; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (width >= big_icon_width) { | 
					
						
							|  |  |  | 			if (colors >= big_icon_cc) { | 
					
						
							|  |  |  | 				big_icon_index = i; | 
					
						
							|  |  |  | 				big_icon_width = width; | 
					
						
							|  |  |  | 				big_icon_cc = colors; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(big_icon_index == -1, "No valid icons found!"); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (small_icon_index == -1) { | 
					
						
							|  |  |  | 		WARN_PRINTS("No small icon found, reusing " + itos(big_icon_width) + "x" + itos(big_icon_width) + " @" + itos(big_icon_cc) + " icon!"); | 
					
						
							|  |  |  | 		small_icon_index = big_icon_index; | 
					
						
							|  |  |  | 		small_icon_cc = big_icon_cc; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Read the big icon
 | 
					
						
							|  |  |  | 	DWORD bytecount_big = icon_dir->idEntries[big_icon_index].dwBytesInRes; | 
					
						
							|  |  |  | 	Vector<uint8_t> data_big; | 
					
						
							|  |  |  | 	data_big.resize(bytecount_big); | 
					
						
							|  |  |  | 	pos = icon_dir->idEntries[big_icon_index].dwImageOffset; | 
					
						
							|  |  |  | 	f->seek(pos); | 
					
						
							|  |  |  | 	f->get_buffer((uint8_t *)&data_big.write[0], bytecount_big); | 
					
						
							|  |  |  | 	HICON icon_big = CreateIconFromResource((PBYTE)&data_big.write[0], bytecount_big, TRUE, 0x00030000); | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(!icon_big, "Could not create " + itos(big_icon_width) + "x" + itos(big_icon_width) + " @" + itos(big_icon_cc) + " icon, error: " + format_error_message(GetLastError()) + "."); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Read the small icon
 | 
					
						
							|  |  |  | 	DWORD bytecount_small = icon_dir->idEntries[small_icon_index].dwBytesInRes; | 
					
						
							|  |  |  | 	Vector<uint8_t> data_small; | 
					
						
							|  |  |  | 	data_small.resize(bytecount_small); | 
					
						
							|  |  |  | 	pos = icon_dir->idEntries[small_icon_index].dwImageOffset; | 
					
						
							|  |  |  | 	f->seek(pos); | 
					
						
							|  |  |  | 	f->get_buffer((uint8_t *)&data_small.write[0], bytecount_small); | 
					
						
							|  |  |  | 	HICON icon_small = CreateIconFromResource((PBYTE)&data_small.write[0], bytecount_small, TRUE, 0x00030000); | 
					
						
							| 
									
										
										
										
											2019-08-09 06:49:33 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(!icon_small, "Could not create 16x16 @" + itos(small_icon_cc) + " icon, error: " + format_error_message(GetLastError()) + "."); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Online tradition says to be sure last error is cleared and set the small icon first
 | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	SetLastError(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM)icon_small); | 
					
						
							|  |  |  | 	err = GetLastError(); | 
					
						
							| 
									
										
										
										
											2019-08-09 13:10:06 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(err, "Error setting ICON_SMALL: " + format_error_message(err) + "."); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	SendMessage(hWnd, WM_SETICON, ICON_BIG, (LPARAM)icon_big); | 
					
						
							|  |  |  | 	err = GetLastError(); | 
					
						
							| 
									
										
										
										
											2019-08-09 13:10:06 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(err, "Error setting ICON_BIG: " + format_error_message(err) + "."); | 
					
						
							| 
									
										
										
										
											2019-05-17 16:43:56 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memdelete(f); | 
					
						
							|  |  |  | 	memdelete(icon_dir); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 07:36:47 -03:00
										 |  |  | void OS_Windows::set_icon(const Ref<Image> &p_icon) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 07:36:47 -03:00
										 |  |  | 	ERR_FAIL_COND(!p_icon.is_valid()); | 
					
						
							|  |  |  | 	Ref<Image> icon = p_icon->duplicate(); | 
					
						
							|  |  |  | 	if (icon->get_format() != Image::FORMAT_RGBA8) | 
					
						
							|  |  |  | 		icon->convert(Image::FORMAT_RGBA8); | 
					
						
							|  |  |  | 	int w = icon->get_width(); | 
					
						
							|  |  |  | 	int h = icon->get_height(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Create temporary bitmap buffer */ | 
					
						
							|  |  |  | 	int icon_len = 40 + h * w * 4; | 
					
						
							| 
									
										
										
										
											2014-02-13 18:03:28 -03:00
										 |  |  | 	Vector<BYTE> v; | 
					
						
							|  |  |  | 	v.resize(icon_len); | 
					
						
							| 
									
										
										
										
											2018-07-25 03:11:03 +02:00
										 |  |  | 	BYTE *icon_bmp = v.ptrw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	encode_uint32(40, &icon_bmp[0]); | 
					
						
							|  |  |  | 	encode_uint32(w, &icon_bmp[4]); | 
					
						
							|  |  |  | 	encode_uint32(h * 2, &icon_bmp[8]); | 
					
						
							|  |  |  | 	encode_uint16(1, &icon_bmp[12]); | 
					
						
							|  |  |  | 	encode_uint16(32, &icon_bmp[14]); | 
					
						
							|  |  |  | 	encode_uint32(BI_RGB, &icon_bmp[16]); | 
					
						
							|  |  |  | 	encode_uint32(w * h * 4, &icon_bmp[20]); | 
					
						
							|  |  |  | 	encode_uint32(0, &icon_bmp[24]); | 
					
						
							|  |  |  | 	encode_uint32(0, &icon_bmp[28]); | 
					
						
							|  |  |  | 	encode_uint32(0, &icon_bmp[32]); | 
					
						
							|  |  |  | 	encode_uint32(0, &icon_bmp[36]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint8_t *wr = &icon_bmp[40]; | 
					
						
							| 
									
										
										
										
											2017-05-17 07:36:47 -03:00
										 |  |  | 	PoolVector<uint8_t>::Read r = icon->get_data().read(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < h; i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int j = 0; j < w; j++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			const uint8_t *rpx = &r[((h - i - 1) * w + j) * 4]; | 
					
						
							|  |  |  | 			uint8_t *wpx = &wr[(i * w + j) * 4]; | 
					
						
							|  |  |  | 			wpx[0] = rpx[2]; | 
					
						
							|  |  |  | 			wpx[1] = rpx[1]; | 
					
						
							|  |  |  | 			wpx[2] = rpx[0]; | 
					
						
							|  |  |  | 			wpx[3] = rpx[3]; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HICON hicon = CreateIconFromResource(icon_bmp, icon_len, TRUE, 0x00030000); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Set the icon for the window */ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM)hicon); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Set the icon in the task manager (should we do this?) */ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	SendMessage(hWnd, WM_SETICON, ICON_BIG, (LPARAM)hicon); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool OS_Windows::has_environment(const String &p_var) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-04 14:38:52 +01:00
										 |  |  | #ifdef MINGW_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-11-30 10:00:10 -03:00
										 |  |  | 	return _wgetenv(p_var.c_str()) != NULL; | 
					
						
							| 
									
										
										
										
											2018-10-04 14:38:52 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	wchar_t *env; | 
					
						
							|  |  |  | 	size_t len; | 
					
						
							|  |  |  | 	_wdupenv_s(&env, &len, p_var.c_str()); | 
					
						
							|  |  |  | 	const bool has_env = env != NULL; | 
					
						
							|  |  |  | 	free(env); | 
					
						
							|  |  |  | 	return has_env; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String OS_Windows::get_environment(const String &p_var) const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-04 13:12:05 -03:00
										 |  |  | 	wchar_t wval[0x7Fff]; // MSDN says 32767 char is the maximum
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int wlen = GetEnvironmentVariableW(p_var.c_str(), wval, 0x7Fff); | 
					
						
							|  |  |  | 	if (wlen > 0) { | 
					
						
							| 
									
										
										
										
											2015-05-04 13:12:05 -03:00
										 |  |  | 		return wval; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-13 18:03:28 -03:00
										 |  |  | 	return ""; | 
					
						
							| 
									
										
										
										
											2015-05-04 13:12:05 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-29 22:59:38 +01:00
										 |  |  | bool OS_Windows::set_environment(const String &p_var, const String &p_value) const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (bool)SetEnvironmentVariableW(p_var.c_str(), p_value.c_str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | String OS_Windows::get_stdin_string(bool p_block) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_block) { | 
					
						
							|  |  |  | 		char buff[1024]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		return fgets(buff, 1024, stdin); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return String(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 04:02:18 +02:00
										 |  |  | void OS_Windows::enable_for_stealing_focus(ProcessID pid) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AllowSetForegroundWindow(pid); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void OS_Windows::move_window_to_foreground() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SetForegroundWindow(hWnd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-18 11:43:54 -03:00
										 |  |  | Error OS_Windows::shell_open(String p_uri) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ShellExecuteW(NULL, L"open", p_uri.c_str(), NULL, NULL, SW_SHOWNORMAL); | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | String OS_Windows::get_locale() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const _WinLocale *wl = &_win_locales[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	LANGID langid = GetUserDefaultUILanguage(); | 
					
						
							|  |  |  | 	String neutral; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int lang = langid & ((1 << 9) - 1); | 
					
						
							|  |  |  | 	int sublang = langid & ~((1 << 9) - 1); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (wl->locale) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (wl->main_lang == lang && wl->sublang == SUBLANG_NEUTRAL) | 
					
						
							|  |  |  | 			neutral = wl->locale; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (lang == wl->main_lang && sublang == wl->sublang) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			return wl->locale; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wl++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (neutral != "") | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return neutral; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return "en"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 16:46:30 +01:00
										 |  |  | // We need this because GetSystemInfo() is unreliable on WOW64
 | 
					
						
							|  |  |  | // see https://msdn.microsoft.com/en-us/library/windows/desktop/ms724381(v=vs.85).aspx
 | 
					
						
							|  |  |  | // Taken from MSDN
 | 
					
						
							|  |  |  | typedef BOOL(WINAPI *LPFN_ISWOW64PROCESS)(HANDLE, PBOOL); | 
					
						
							|  |  |  | LPFN_ISWOW64PROCESS fnIsWow64Process; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL is_wow64() { | 
					
						
							|  |  |  | 	BOOL wow64 = FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(GetModuleHandle(TEXT("kernel32")), "IsWow64Process"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (fnIsWow64Process) { | 
					
						
							|  |  |  | 		if (!fnIsWow64Process(GetCurrentProcess(), &wow64)) { | 
					
						
							|  |  |  | 			wow64 = FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return wow64; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OS_Windows::get_processor_count() const { | 
					
						
							|  |  |  | 	SYSTEM_INFO sysinfo; | 
					
						
							|  |  |  | 	if (is_wow64()) | 
					
						
							|  |  |  | 		GetNativeSystemInfo(&sysinfo); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		GetSystemInfo(&sysinfo); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sysinfo.dwNumberOfProcessors; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | OS::LatinKeyboardVariant OS_Windows::get_latin_keyboard_variant() const { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned long azerty[] = { | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 		0x00020401, // Arabic (102) AZERTY
 | 
					
						
							|  |  |  | 		0x0001080c, // Belgian (Comma)
 | 
					
						
							|  |  |  | 		0x0000080c, // Belgian French
 | 
					
						
							|  |  |  | 		0x0000040c, // French
 | 
					
						
							|  |  |  | 		0 // <--- STOP MARK
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	unsigned long qwertz[] = { | 
					
						
							|  |  |  | 		0x0000041a, // Croation
 | 
					
						
							|  |  |  | 		0x00000405, // Czech
 | 
					
						
							|  |  |  | 		0x00000407, // German
 | 
					
						
							|  |  |  | 		0x00010407, // German (IBM)
 | 
					
						
							|  |  |  | 		0x0000040e, // Hungarian
 | 
					
						
							|  |  |  | 		0x0000046e, // Luxembourgish
 | 
					
						
							|  |  |  | 		0x00010415, // Polish (214)
 | 
					
						
							|  |  |  | 		0x00000418, // Romanian (Legacy)
 | 
					
						
							|  |  |  | 		0x0000081a, // Serbian (Latin)
 | 
					
						
							|  |  |  | 		0x0000041b, // Slovak
 | 
					
						
							|  |  |  | 		0x00000424, // Slovenian
 | 
					
						
							|  |  |  | 		0x0001042e, // Sorbian Extended
 | 
					
						
							|  |  |  | 		0x0002042e, // Sorbian Standard
 | 
					
						
							|  |  |  | 		0x0000042e, // Sorbian Standard (Legacy)
 | 
					
						
							|  |  |  | 		0x0000100c, // Swiss French
 | 
					
						
							|  |  |  | 		0x00000807, // Swiss German
 | 
					
						
							|  |  |  | 		0 // <--- STOP MARK
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	unsigned long dvorak[] = { | 
					
						
							|  |  |  | 		0x00010409, // US-Dvorak
 | 
					
						
							|  |  |  | 		0x00030409, // US-Dvorak for left hand
 | 
					
						
							|  |  |  | 		0x00040409, // US-Dvorak for right hand
 | 
					
						
							|  |  |  | 		0 // <--- STOP MARK
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	char name[KL_NAMELENGTH + 1]; | 
					
						
							|  |  |  | 	name[0] = 0; | 
					
						
							|  |  |  | 	GetKeyboardLayoutNameA(name); | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned long hex = strtoul(name, NULL, 16); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int i = 0; | 
					
						
							|  |  |  | 	while (azerty[i] != 0) { | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 		if (azerty[i] == hex) return LATIN_KEYBOARD_AZERTY; | 
					
						
							|  |  |  | 		i++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (qwertz[i] != 0) { | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 		if (qwertz[i] == hex) return LATIN_KEYBOARD_QWERTZ; | 
					
						
							|  |  |  | 		i++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 	i = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	while (dvorak[i] != 0) { | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 		if (dvorak[i] == hex) return LATIN_KEYBOARD_DVORAK; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		i++; | 
					
						
							| 
									
										
										
										
											2016-07-02 20:52:36 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return LATIN_KEYBOARD_QWERTY; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void OS_Windows::release_rendering_thread() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	gl_context->release_current(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::make_rendering_thread() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	gl_context->make_current(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OS_Windows::swap_buffers() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	gl_context->swap_buffers(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 08:59:46 -03:00
										 |  |  | void OS_Windows::force_process_input() { | 
					
						
							|  |  |  | 	process_events(); // get rid of pending events
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void OS_Windows::run() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!main_loop) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	main_loop->init(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	while (!force_quit) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		process_events(); // get rid of pending events
 | 
					
						
							| 
									
										
										
										
											2018-10-03 13:40:37 -04:00
										 |  |  | 		if (Main::iteration()) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	main_loop->finish(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MainLoop *OS_Windows::get_main_loop() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return main_loop; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | String OS_Windows::get_config_path() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (has_environment("XDG_CONFIG_HOME")) { // unlikely, but after all why not?
 | 
					
						
							|  |  |  | 		return get_environment("XDG_CONFIG_HOME"); | 
					
						
							|  |  |  | 	} else if (has_environment("APPDATA")) { | 
					
						
							|  |  |  | 		return get_environment("APPDATA"); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return "."; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String OS_Windows::get_data_path() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (has_environment("XDG_DATA_HOME")) { | 
					
						
							|  |  |  | 		return get_environment("XDG_DATA_HOME"); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return get_config_path(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String OS_Windows::get_cache_path() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (has_environment("XDG_CACHE_HOME")) { | 
					
						
							|  |  |  | 		return get_environment("XDG_CACHE_HOME"); | 
					
						
							|  |  |  | 	} else if (has_environment("TEMP")) { | 
					
						
							|  |  |  | 		return get_environment("TEMP"); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return get_config_path(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Get properly capitalized engine name for system paths
 | 
					
						
							|  |  |  | String OS_Windows::get_godot_dir_name() const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-19 21:18:01 +01:00
										 |  |  | 	return String(VERSION_SHORT_NAME).capitalize(); | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | String OS_Windows::get_system_dir(SystemDir p_dir) const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 	KNOWNFOLDERID id; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	switch (p_dir) { | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		case SYSTEM_DIR_DESKTOP: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Desktop; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_DCIM: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Pictures; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_DOCUMENTS: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Documents; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_DOWNLOADS: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Downloads; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_MOVIES: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Videos; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_MUSIC: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Music; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_PICTURES: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Pictures; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case SYSTEM_DIR_RINGTONES: { | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 			id = FOLDERID_Music; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 	PWSTR szPath; | 
					
						
							|  |  |  | 	HRESULT res = SHGetKnownFolderPath(id, 0, NULL, &szPath); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_FAIL_COND_V(res != S_OK, String()); | 
					
						
							| 
									
										
										
										
											2019-04-18 02:43:33 +00:00
										 |  |  | 	String path = String(szPath); | 
					
						
							|  |  |  | 	CoTaskMemFree(szPath); | 
					
						
							|  |  |  | 	return path; | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | String OS_Windows::get_user_data_dir() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-26 19:00:53 +01:00
										 |  |  | 	String appname = get_safe_dir_name(ProjectSettings::get_singleton()->get("application/config/name")); | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | 	if (appname != "") { | 
					
						
							| 
									
										
										
										
											2017-11-26 19:00:53 +01:00
										 |  |  | 		bool use_custom_dir = ProjectSettings::get_singleton()->get("application/config/use_custom_user_dir"); | 
					
						
							|  |  |  | 		if (use_custom_dir) { | 
					
						
							|  |  |  | 			String custom_dir = get_safe_dir_name(ProjectSettings::get_singleton()->get("application/config/custom_user_dir_name"), true); | 
					
						
							|  |  |  | 			if (custom_dir == "") { | 
					
						
							|  |  |  | 				custom_dir = appname; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return get_data_path().plus_file(custom_dir).replace("\\", "/"); | 
					
						
							| 
									
										
											  
											
												Add initial support for the XDG Base Directory spec
Spec version 0.7 from https://standards.freedesktop.org/basedir-spec/basedir-spec-0.7.html
(latest as of this commit).
Three virtual methods are added to OS for the various XDG paths we will use:
- OS::get_data_path gives XDG_DATA_HOME, or if missing:
  ~/.local/share on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_config_path gives XDG_CONFIG_HOME, or if missing:
  ~/.config on X11, ~/Library/Application Support/ on macOS and %APPDATA% on Windows
- OS::get_cache_path gives XDG_CACHE_HOME, or if missing:
  ~/.cache on X11, ~/Library/Caches on macOS and %APPDATA% on Windows
So for Windows there are no changes, for Linux we follow the full split spec
and for macOS stuff will move from ~/.godot to ~/Library/Application Support/Godot.
Support for system-wide installation of templates on Unix was removed for now,
as it's a bit hackish and I don't think anyone uses it.
user:// will still be OS::get_data_path() + "/godot/app_userdata/$name" by
default, but when using the application/config/use_shared_user_dir option
it will now use XDG_DATA_HOME/$name, e.g. ~/.local/share/MyGame.
For now everything still goes in EditorSettings::get_settings_dir(), but
this will be changed in a later commit to make use of the new splitting
where relevant.
Part of #3513.
											
										 
											2017-11-17 17:11:41 +01:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-11-26 19:00:53 +01:00
										 |  |  | 			return get_data_path().plus_file(get_godot_dir_name()).plus_file("app_userdata").plus_file(appname).replace("\\", "/"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	return ProjectSettings::get_singleton()->get_resource_path(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 21:40:52 +08:00
										 |  |  | String OS_Windows::get_unique_id() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HW_PROFILE_INFO HwProfInfo; | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(!GetCurrentHwProfile(&HwProfInfo), ""); | 
					
						
							|  |  |  | 	return String(HwProfInfo.szHwProfileGuid); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 21:16:57 +01:00
										 |  |  | void OS_Windows::set_ime_active(const bool p_active) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_active) { | 
					
						
							|  |  |  | 		ImmAssociateContext(hWnd, im_himc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		set_ime_position(im_position); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		ImmAssociateContext(hWnd, (HIMC)0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 21:40:52 +08:00
										 |  |  | void OS_Windows::set_ime_position(const Point2 &p_pos) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 21:16:57 +01:00
										 |  |  | 	im_position = p_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 21:40:52 +08:00
										 |  |  | 	HIMC himc = ImmGetContext(hWnd); | 
					
						
							| 
									
										
										
										
											2018-06-07 21:16:57 +01:00
										 |  |  | 	if (himc == (HIMC)0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 21:40:52 +08:00
										 |  |  | 	COMPOSITIONFORM cps; | 
					
						
							|  |  |  | 	cps.dwStyle = CFS_FORCE_POSITION; | 
					
						
							| 
									
										
										
										
											2018-06-07 21:16:57 +01:00
										 |  |  | 	cps.ptCurrentPos.x = im_position.x; | 
					
						
							|  |  |  | 	cps.ptCurrentPos.y = im_position.y; | 
					
						
							| 
									
										
										
										
											2018-01-20 21:40:52 +08:00
										 |  |  | 	ImmSetCompositionWindow(himc, &cps); | 
					
						
							|  |  |  | 	ImmReleaseContext(hWnd, himc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 00:40:41 +01:00
										 |  |  | bool OS_Windows::is_joy_known(int p_device) { | 
					
						
							|  |  |  | 	return input->is_joy_mapped(p_device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String OS_Windows::get_joy_guid(int p_device) const { | 
					
						
							|  |  |  | 	return input->get_joy_guid_remapped(p_device); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-16 17:09:25 -03:00
										 |  |  | void OS_Windows::_set_use_vsync(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2016-06-05 19:14:33 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (gl_context) | 
					
						
							|  |  |  | 		gl_context->set_use_vsync(p_enable); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-16 17:09:25 -03:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool OS_Windows::is_vsync_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-06-05 19:14:33 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (gl_context) | 
					
						
							|  |  |  | 		return gl_context->is_using_vsync(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2017-12-16 17:09:25 -03:00
										 |  |  | }*/ | 
					
						
							| 
									
										
										
										
											2016-06-05 19:14:33 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-12 22:09:06 +03:00
										 |  |  | OS::PowerState OS_Windows::get_power_state() { | 
					
						
							| 
									
										
										
										
											2016-07-23 13:15:55 +02:00
										 |  |  | 	return power_manager->get_power_state(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OS_Windows::get_power_seconds_left() { | 
					
						
							|  |  |  | 	return power_manager->get_power_seconds_left(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OS_Windows::get_power_percent_left() { | 
					
						
							|  |  |  | 	return power_manager->get_power_percent_left(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | bool OS_Windows::_check_internal_feature_support(const String &p_feature) { | 
					
						
							| 
									
										
										
										
											2017-02-08 18:07:35 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-26 11:58:47 -03:00
										 |  |  | 	return p_feature == "pc"; | 
					
						
							| 
									
										
										
										
											2017-02-08 18:07:35 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-05 19:14:33 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-07 22:01:49 -03:00
										 |  |  | void OS_Windows::disable_crash_handler() { | 
					
						
							|  |  |  | 	crash_handler.disable(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool OS_Windows::is_disable_crash_handler() const { | 
					
						
							|  |  |  | 	return crash_handler.is_disabled(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | void OS_Windows::process_and_drop_events() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 17:53:59 -03:00
										 |  |  | 	drop_events = true; | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | 	process_events(); | 
					
						
							| 
									
										
										
										
											2019-03-03 17:53:59 -03:00
										 |  |  | 	drop_events = false; | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 10:15:11 -03:00
										 |  |  | Error OS_Windows::move_to_trash(const String &p_path) { | 
					
						
							| 
									
										
										
										
											2018-08-14 11:49:16 +03:00
										 |  |  | 	SHFILEOPSTRUCTW sf; | 
					
						
							| 
									
										
										
										
											2018-08-18 01:30:22 +03:00
										 |  |  | 	WCHAR *from = new WCHAR[p_path.length() + 2]; | 
					
						
							| 
									
										
										
										
											2018-10-04 14:38:52 +01:00
										 |  |  | 	wcscpy_s(from, p_path.length() + 1, p_path.c_str()); | 
					
						
							| 
									
										
										
										
											2018-08-18 01:30:22 +03:00
										 |  |  | 	from[p_path.length() + 1] = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 10:15:11 -03:00
										 |  |  | 	sf.hwnd = hWnd; | 
					
						
							|  |  |  | 	sf.wFunc = FO_DELETE; | 
					
						
							| 
									
										
										
										
											2018-08-18 01:30:22 +03:00
										 |  |  | 	sf.pFrom = from; | 
					
						
							| 
									
										
										
										
											2017-09-25 10:15:11 -03:00
										 |  |  | 	sf.pTo = NULL; | 
					
						
							|  |  |  | 	sf.fFlags = FOF_ALLOWUNDO | FOF_NOCONFIRMATION; | 
					
						
							|  |  |  | 	sf.fAnyOperationsAborted = FALSE; | 
					
						
							|  |  |  | 	sf.hNameMappings = NULL; | 
					
						
							|  |  |  | 	sf.lpszProgressTitle = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-14 11:49:16 +03:00
										 |  |  | 	int ret = SHFileOperationW(&sf); | 
					
						
							| 
									
										
										
										
											2018-08-18 01:30:22 +03:00
										 |  |  | 	delete[] from; | 
					
						
							| 
									
										
										
										
											2017-09-25 10:15:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		ERR_PRINTS("SHFileOperation error: " + itos(ret)); | 
					
						
							|  |  |  | 		return FAILED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | OS_Windows::OS_Windows(HINSTANCE _hInstance) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-03 17:12:19 -03:00
										 |  |  | 	drop_events = false; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	key_event_pos = 0; | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 	layered_window = false; | 
					
						
							|  |  |  | 	hBitmap = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	force_quit = false; | 
					
						
							|  |  |  | 	alt_mem = false; | 
					
						
							|  |  |  | 	gr_mem = false; | 
					
						
							|  |  |  | 	shift_mem = false; | 
					
						
							|  |  |  | 	control_mem = false; | 
					
						
							|  |  |  | 	meta_mem = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	minimized = false; | 
					
						
							| 
									
										
										
										
											2019-10-27 18:44:47 +03:00
										 |  |  | 	was_maximized = false; | 
					
						
							| 
									
										
										
										
											2018-12-18 14:17:43 +01:00
										 |  |  | 	console_visible = IsWindowVisible(GetConsoleWindow()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 22:32:11 +02:00
										 |  |  | 	//Note: Functions for pen input, available on Windows 8+
 | 
					
						
							|  |  |  | 	HMODULE user32_lib = LoadLibraryW(L"user32.dll"); | 
					
						
							|  |  |  | 	if (user32_lib) { | 
					
						
							|  |  |  | 		win8p_GetPointerType = (GetPointerTypePtr)GetProcAddress(user32_lib, "GetPointerType"); | 
					
						
							|  |  |  | 		win8p_GetPointerPenInfo = (GetPointerPenInfoPtr)GetProcAddress(user32_lib, "GetPointerPenInfo"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	hInstance = _hInstance; | 
					
						
							|  |  |  | 	pressrc = 0; | 
					
						
							|  |  |  | 	old_invalid = true; | 
					
						
							|  |  |  | 	mouse_mode = MOUSE_MODE_VISIBLE; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifdef STDOUT_FILE
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	stdo = fopen("stdout.txt", "wb"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	user_proc = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-27 14:01:34 -03:00
										 |  |  | #ifdef WASAPI_ENABLED
 | 
					
						
							|  |  |  | 	AudioDriverManager::add_driver(&driver_wasapi); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-10-17 13:40:45 -02:00
										 |  |  | #ifdef XAUDIO2_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-01-16 19:19:45 +01:00
										 |  |  | 	AudioDriverManager::add_driver(&driver_xaudio2); | 
					
						
							| 
									
										
										
										
											2016-10-17 13:40:45 -02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-09-22 12:56:02 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-21 16:35:01 +07:00
										 |  |  | 	Vector<Logger *> loggers; | 
					
						
							|  |  |  | 	loggers.push_back(memnew(WindowsTerminalLogger)); | 
					
						
							|  |  |  | 	_set_logger(memnew(CompositeLogger(loggers))); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | OS_Windows::~OS_Windows() { | 
					
						
							| 
									
										
										
										
											2017-12-10 20:38:26 +02:00
										 |  |  | 	if (is_layered_allowed() && layered_window) { | 
					
						
							|  |  |  | 		DeleteObject(hBitmap); | 
					
						
							|  |  |  | 		DeleteDC(hDC_dib); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifdef STDOUT_FILE
 | 
					
						
							|  |  |  | 	fclose(stdo); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } |