123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322 |
- /*************************************************************************/
- /* os_windows.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* http://www.godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* 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. */
- /*************************************************************************/
- #include "drivers/gles2/rasterizer_gles2.h"
- #include "os_windows.h"
- #include "drivers/nedmalloc/memory_pool_static_nedmalloc.h"
- #include "drivers/unix/memory_pool_static_malloc.h"
- #include "os/memory_pool_dynamic_static.h"
- #include "drivers/windows/thread_windows.h"
- #include "drivers/windows/semaphore_windows.h"
- #include "drivers/windows/mutex_windows.h"
- #include "main/main.h"
- #include "drivers/windows/file_access_windows.h"
- #include "drivers/windows/dir_access_windows.h"
- #include "servers/visual/visual_server_raster.h"
- #include "servers/audio/audio_server_sw.h"
- #include "servers/visual/visual_server_wrap_mt.h"
- #include "tcp_server_winsock.h"
- #include "packet_peer_udp_winsock.h"
- #include "stream_peer_winsock.h"
- #include "os/pc_joystick_map.h"
- #include "lang_table.h"
- #include "os/memory_pool_dynamic_prealloc.h"
- #include "globals.h"
- #include "io/marshalls.h"
- #include "shlobj.h"
- #include <regstr.h>
- static const WORD MAX_CONSOLE_LINES = 1500;
- extern "C" {
- #ifdef _MSC_VER
- _declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
- #else
- __attribute__((visibility("default"))) DWORD NvOptimusEnablement = 0x00000001;
- #endif
- }
- //#define STDOUT_FILE
- 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),
- &coninfo);
- coninfo.dwSize.Y = MAX_CONSOLE_LINES;
- SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE),
- coninfo.dwSize);
- // redirect unbuffered STDOUT to the console
- lStdHandle = (intptr_t)GetStdHandle(STD_OUTPUT_HANDLE);
- hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
- fp = _fdopen( hConHandle, "w" );
- *stdout = *fp;
- setvbuf( stdout, NULL, _IONBF, 0 );
- // redirect unbuffered STDIN to the console
- lStdHandle = (intptr_t)GetStdHandle(STD_INPUT_HANDLE);
- hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
- fp = _fdopen( hConHandle, "r" );
- *stdin = *fp;
- setvbuf( stdin, NULL, _IONBF, 0 );
- // redirect unbuffered STDERR to the console
- lStdHandle = (intptr_t)GetStdHandle(STD_ERROR_HANDLE);
- hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
- fp = _fdopen( hConHandle, "w" );
- *stderr = *fp;
- setvbuf( stderr, NULL, _IONBF, 0 );
- // make cout, wcout, cin, wcin, wcerr, cerr, wclog and clog
- // point to console as well
- }
- int OS_Windows::get_video_driver_count() const {
- return 1;
- }
- const char * OS_Windows::get_video_driver_name(int p_driver) const {
- return "GLES2";
- }
- OS::VideoMode OS_Windows::get_default_video_mode() const {
- return VideoMode(800,600,false);
- }
- int OS_Windows::get_audio_driver_count() const {
- return AudioDriverManagerSW::get_driver_count();
- }
- const char * OS_Windows::get_audio_driver_name(int p_driver) const {
- AudioDriverSW* driver = AudioDriverManagerSW::get_driver(p_driver);
- ERR_FAIL_COND_V( !driver, "" );
- return AudioDriverManagerSW::get_driver(p_driver)->get_name();
- }
- static MemoryPoolStatic *mempool_static=NULL;
- static MemoryPoolDynamic *mempool_dynamic=NULL;
- void OS_Windows::initialize_core() {
- last_button_state=0;
- //RedirectIOToConsole();
- maximized=false;
- minimized=false;
- ThreadWindows::make_default();
- SemaphoreWindows::make_default();
- MutexWindows::make_default();
- 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);
- TCPServerWinsock::make_default();
- StreamPeerWinsock::make_default();
- PacketPeerUDPWinsock::make_default();
-
- mempool_static = new MemoryPoolStaticMalloc;
- #if 1
- mempool_dynamic = memnew( MemoryPoolDynamicStatic );
- #else
- #define DYNPOOL_SIZE 4*1024*1024
- void * buffer = malloc( DYNPOOL_SIZE );
- mempool_dynamic = memnew( MemoryPoolDynamicPrealloc(buffer,DYNPOOL_SIZE) );
- #endif
-
- // We need to know how often the clock is updated
- if( !QueryPerformanceFrequency((LARGE_INTEGER *)&ticks_per_second) )
- 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();
- process_map = memnew((Map<ProcessID, ProcessInfo>));
- IP_Unix::make_default();
- cursor_shape=CURSOR_ARROW;
- }
- bool OS_Windows::can_draw() const {
- return !minimized;
- };
- #define MI_WP_SIGNATURE 0xFF515700
- #define SIGNATURE_MASK 0xFFFFFF00
- #define IsPenEvent(dw) (((dw) & SIGNATURE_MASK) == MI_WP_SIGNATURE)
- void OS_Windows::_touch_event(bool p_pressed, int p_x, int p_y, int idx) {
- InputEvent event;
- event.type = InputEvent::SCREEN_TOUCH;
- event.ID=++last_id;
- event.screen_touch.index = idx;
- event.screen_touch.pressed = p_pressed;
- event.screen_touch.x=p_x;
- event.screen_touch.y=p_y;
- if (main_loop) {
- input->parse_input_event(event);
- }
- };
- void OS_Windows::_drag_event(int p_x, int p_y, int idx) {
- InputEvent event;
- event.type = InputEvent::SCREEN_DRAG;
- event.ID=++last_id;
- event.screen_drag.index = idx;
- event.screen_drag.x=p_x;
- event.screen_drag.y=p_y;
- if (main_loop)
- input->parse_input_event(event);
- };
- LRESULT OS_Windows::WndProc(HWND hWnd,UINT uMsg, WPARAM wParam, LPARAM lParam) {
- switch (uMsg) // Check For Windows Messages
- {
- case WM_ACTIVATE: // Watch For Window Activate Message
- {
- 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);
- alt_mem=false;
- control_mem=false;
- shift_mem=false;
- if (mouse_mode==MOUSE_MODE_CAPTURED) {
- RECT clipRect;
- GetClientRect(hWnd, &clipRect);
- ClientToScreen(hWnd, (POINT*) &clipRect.left);
- ClientToScreen(hWnd, (POINT*) &clipRect.right);
- ClipCursor(&clipRect);
- SetCapture(hWnd);
- }
- } else {
- main_loop->notification(MainLoop::NOTIFICATION_WM_FOCUS_OUT);
- alt_mem=false;
- };
- return 0; // Return To The Message Loop
- }
- case WM_PAINT:
- Main::force_redraw();
- break;
- case WM_SYSCOMMAND: // Intercept System Commands
- {
- switch (wParam) // Check System Calls
- {
- case SC_SCREENSAVE: // Screensaver Trying To Start?
- case SC_MONITORPOWER: // Monitor Trying To Enter Powersave?
- return 0; // Prevent From Happening
- case SC_KEYMENU:
- if ((lParam>>16)<=0)
- return 0;
- }
- break; // Exit
- }
- case WM_CLOSE: // Did We Receive A Close Message?
- {
- if (main_loop)
- main_loop->notification(MainLoop::NOTIFICATION_WM_QUIT_REQUEST);
- //force_quit=true;
- return 0; // Jump Back
- }
- case WM_MOUSELEAVE: {
- old_invalid=true;
- outside=true;
- } break;
- case WM_MOUSEMOVE: {
- if (outside) {
- 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);
- }
- /*
- LPARAM extra = GetMessageExtraInfo();
- if (IsPenEvent(extra)) {
- int idx = extra & 0x7f;
- _drag_event(idx, uMsg, wParam, lParam);
- if (idx != 0) {
- return 0;
- };
- // fallthrough for mouse event
- };
- */
- InputEvent event;
- event.type=InputEvent::MOUSE_MOTION;
- event.ID=++last_id;
- InputEventMouseMotion &mm=event.mouse_motion;
- mm.mod.control=(wParam&MK_CONTROL)!=0;
- mm.mod.shift=(wParam&MK_SHIFT)!=0;
- mm.mod.alt=alt_mem;
- mm.button_mask|=(wParam&MK_LBUTTON)?(1<<0):0;
- mm.button_mask|=(wParam&MK_RBUTTON)?(1<<1):0;
- mm.button_mask|=(wParam&MK_MBUTTON)?(1<<2):0;
- last_button_state=mm.button_mask;
- /*mm.button_mask|=(wParam&MK_XBUTTON1)?(1<<5):0;
- mm.button_mask|=(wParam&MK_XBUTTON2)?(1<<6):0;*/
- mm.x=GET_X_LPARAM(lParam);
- mm.y=GET_Y_LPARAM(lParam);
- if (mouse_mode==MOUSE_MODE_CAPTURED) {
- Point2i c(video_mode.width/2,video_mode.height/2);
- if (Point2i(mm.x,mm.y)==c) {
- center=c;
- return 0;
- }
- Point2i ncenter(mm.x,mm.y);
- mm.x = old_x + (mm.x-center.x);
- mm.y = old_y + (mm.y-center.y);
- center=ncenter;
- POINT pos = { (int) c.x, (int) c.y };
- ClientToScreen(hWnd, &pos);
- SetCursorPos(pos.x, pos.y);
- }
- input->set_mouse_pos(Point2(mm.x,mm.y));
- mm.speed_x=input->get_mouse_speed().x;
- mm.speed_y=input->get_mouse_speed().y;
- if (old_invalid) {
- old_x=mm.x;
- old_y=mm.y;
- old_invalid=false;
- }
- mm.relative_x=mm.x-old_x;
- mm.relative_y=mm.y-old_y;
- old_x=mm.x;
- old_y=mm.y;
- if (main_loop)
- input->parse_input_event(event);
-
- } break;
- case WM_LBUTTONDOWN:
- case WM_LBUTTONUP:
- case WM_MBUTTONDOWN:
- case WM_MBUTTONUP:
- case WM_RBUTTONDOWN:
- case WM_RBUTTONUP:
- case WM_MOUSEWHEEL:
- case WM_LBUTTONDBLCLK:
- case WM_RBUTTONDBLCLK:
- /*case WM_XBUTTONDOWN:
- case WM_XBUTTONUP: */{
- /*
- LPARAM extra = GetMessageExtraInfo();
- if (IsPenEvent(extra)) {
- int idx = extra & 0x7f;
- _touch_event(idx, uMsg, wParam, lParam);
- if (idx != 0) {
- return 0;
- };
- // fallthrough for mouse event
- };
- */
- InputEvent event;
- event.type=InputEvent::MOUSE_BUTTON;
- event.ID=++last_id;
- InputEventMouseButton &mb=event.mouse_button;
- switch (uMsg) {
- case WM_LBUTTONDOWN: {
- mb.pressed=true;
- mb.button_index=1;
- } break;
- case WM_LBUTTONUP: {
- mb.pressed=false;
- mb.button_index=1;
- } break;
- case WM_MBUTTONDOWN: {
- mb.pressed=true;
- mb.button_index=3;
- } break;
- case WM_MBUTTONUP: {
- mb.pressed=false;
- mb.button_index=3;
- } break;
- case WM_RBUTTONDOWN: {
- mb.pressed=true;
- mb.button_index=2;
- } break;
- case WM_RBUTTONUP: {
- mb.pressed=false;
- mb.button_index=2;
- } break;
- case WM_LBUTTONDBLCLK: {
- mb.pressed=true;
- mb.button_index=1;
- mb.doubleclick = true;
- } break;
- case WM_RBUTTONDBLCLK: {
- mb.pressed=true;
- mb.button_index=2;
- mb.doubleclick = true;
- } break;
- case WM_MOUSEWHEEL: {
- mb.pressed=true;
- int motion = (short)HIWORD(wParam);
- if (!motion)
- return 0;
- if (motion>0)
- mb.button_index=4;
- else
- mb.button_index=5;
- } break;
- /*
- case WM_XBUTTONDOWN: {
- mb.pressed=true;
- mb.button_index=(HIWORD(wParam)==XBUTTON1)?6:7;
- } break;
- case WM_XBUTTONUP:
- mb.pressed=true;
- mb.button_index=(HIWORD(wParam)==XBUTTON1)?6:7;
- } break;*/
- default: { return 0; }
- }
- mb.mod.control=(wParam&MK_CONTROL)!=0;
- mb.mod.shift=(wParam&MK_SHIFT)!=0;
- mb.mod.alt=alt_mem;
- //mb.mod.alt=(wParam&MK_MENU)!=0;
- mb.button_mask|=(wParam&MK_LBUTTON)?(1<<0):0;
- mb.button_mask|=(wParam&MK_RBUTTON)?(1<<1):0;
- mb.button_mask|=(wParam&MK_MBUTTON)?(1<<2):0;
- last_button_state=mb.button_mask;
- /*
- mb.button_mask|=(wParam&MK_XBUTTON1)?(1<<5):0;
- mb.button_mask|=(wParam&MK_XBUTTON2)?(1<<6):0;*/
- mb.x=GET_X_LPARAM(lParam);
- mb.y=GET_Y_LPARAM(lParam);
- if (mouse_mode==MOUSE_MODE_CAPTURED) {
- mb.x=old_x;
- mb.y=old_y;
- }
- mb.global_x=mb.x;
- mb.global_y=mb.y;
- if (uMsg != WM_MOUSEWHEEL) {
- if (mb.pressed) {
- if (++pressrc>0)
- SetCapture(hWnd);
- } else {
- if (--pressrc<=0) {
- ReleaseCapture();
- pressrc=0;
- }
- }
- } else if (mouse_mode!=MOUSE_MODE_CAPTURED) {
- // for reasons unknown to mankind, wheel comes in screen cordinates
- RECT rect;
- GetWindowRect(hWnd,&rect);
- mb.x-=rect.left;
- mb.y-=rect.top;
- }
- if (main_loop) {
- input->parse_input_event(event);
- if (mb.pressed && mb.button_index>3) {
- //send release for mouse wheel
- mb.pressed=false;
- event.ID=++last_id;
- input->parse_input_event(event);
- }
- }
- } break;
- case WM_SIZE: {
- video_mode.width=LOWORD(lParam);
- video_mode.height=HIWORD(lParam);
- //return 0; // Jump Back
- } break;
- case WM_SYSKEYDOWN:
- case WM_SYSKEYUP:
- case WM_KEYUP:
- case WM_KEYDOWN: {
- 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;
- }
- //if (wParam==VK_WIN) TODO wtf is this?
- // meta_mem=uMsg==WM_KEYDOWN;
- } //fallthrough
- case WM_CHAR: {
- ERR_BREAK(key_event_pos >= KEY_EVENT_BUFFER_SIZE);
- // Make sure we don't include modifiers for the modifier key itself.
- KeyEvent ke;
- ke.mod_state.shift= (wParam != VK_SHIFT) ? shift_mem : false;
- ke.mod_state.alt= (! (wParam == VK_MENU && (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN))) ? alt_mem : false;
- ke.mod_state.control= (wParam != VK_CONTROL) ? control_mem : false;
- ke.mod_state.meta=meta_mem;
- ke.uMsg=uMsg;
- if (ke.uMsg==WM_SYSKEYDOWN)
- ke.uMsg=WM_KEYDOWN;
- if (ke.uMsg==WM_SYSKEYUP)
- ke.uMsg=WM_KEYUP;
- /*if (ke.uMsg==WM_KEYDOWN && alt_mem && uMsg!=WM_SYSKEYDOWN) {
- //altgr hack for intl keyboards, not sure how good it is
- //windows is weeeeird
- ke.mod_state.alt=false;
- ke.mod_state.control=false;
- print_line("")
- }*/
- ke.wParam=wParam;
- ke.lParam=lParam;
- key_event_buffer[key_event_pos++]=ke;
- } break;
- case WM_INPUTLANGCHANGEREQUEST: {
- print_line("input lang change");
- } break;
- #if WINVER >= 0x0700 // for windows 7
- case WM_TOUCH: {
- BOOL bHandled = FALSE;
- UINT cInputs = LOWORD(wParam);
- PTOUCHINPUT pInputs = memnew_arr(TOUCHINPUT, cInputs);
- if (pInputs){
- if (GetTouchInputInfo((HTOUCHINPUT)lParam, cInputs, pInputs, sizeof(TOUCHINPUT))){
- for (UINT i=0; i < cInputs; i++){
- TOUCHINPUT ti = pInputs[i];
- //do something with each touch input entry
- if (ti.dwFlags & TOUCHEVENTF_MOVE) {
- _drag_event(ti.x / 100, ti.y / 100, ti.dwID);
- } else if (ti.dwFlags & (TOUCHEVENTF_UP | TOUCHEVENTF_DOWN)) {
- _touch_event(ti.dwFlags & TOUCHEVENTF_DOWN != 0, ti.x / 100, ti.y / 100, ti.dwID);
- };
- }
- bHandled = TRUE;
- }else{
- /* handle the error here */
- }
- memdelete_arr(pInputs);
- }else{
- /* handle the error here, probably out of memory */
- }
- if (bHandled) {
- CloseTouchInputHandle((HTOUCHINPUT)lParam);
- return 0;
- };
- } break;
- #endif
- default: {
- if (user_proc) {
- return CallWindowProcW(user_proc, hWnd, uMsg, wParam, lParam);
- };
- };
- }
- return DefWindowProcW(hWnd,uMsg,wParam,lParam);
- }
- LRESULT CALLBACK WndProc(HWND hWnd,UINT uMsg, WPARAM wParam, LPARAM lParam) {
- OS_Windows *os_win = static_cast<OS_Windows*>(OS::get_singleton());
- if (os_win)
- return os_win->WndProc(hWnd,uMsg,wParam,lParam);
- else
- return DefWindowProcW(hWnd,uMsg,wParam,lParam);
- }
- String OS_Windows::get_joystick_name(int id, JOYCAPS jcaps)
- {
- char buffer [256];
- char OEM [256];
- HKEY hKey;
- DWORD sz;
- int res;
- _snprintf(buffer, sizeof(buffer), "%s\\%s\\%s",
- REGSTR_PATH_JOYCONFIG, jcaps.szRegKey,
- REGSTR_KEY_JOYCURR );
- res = RegOpenKeyEx(HKEY_LOCAL_MACHINE, buffer, 0, KEY_QUERY_VALUE, &hKey);
- if (res != ERROR_SUCCESS)
- {
- res = RegOpenKeyEx(HKEY_CURRENT_USER, buffer, 0, KEY_QUERY_VALUE, &hKey);
- if (res != ERROR_SUCCESS)
- return "";
- }
- sz = sizeof(OEM);
- _snprintf( buffer, sizeof(buffer), "Joystick%d%s", id + 1, REGSTR_VAL_JOYOEMNAME);
- res = RegQueryValueEx ( hKey, buffer, 0, 0, (LPBYTE) OEM, &sz);
- RegCloseKey ( hKey );
- if (res != ERROR_SUCCESS)
- return "";
- _snprintf( buffer, sizeof(buffer), "%s\\%s", REGSTR_PATH_JOYOEM, OEM);
- res = RegOpenKeyEx(HKEY_LOCAL_MACHINE, buffer, 0, KEY_QUERY_VALUE, &hKey);
- if (res != ERROR_SUCCESS)
- {
- res = RegOpenKeyEx(HKEY_CURRENT_USER, buffer, 0, KEY_QUERY_VALUE, &hKey);
- if (res != ERROR_SUCCESS)
- return "";
- }
-
- sz = sizeof(buffer);
- res = RegQueryValueEx(hKey, REGSTR_VAL_JOYOEMNAME, 0, 0, (LPBYTE) buffer,
- &sz);
- RegCloseKey(hKey);
- if (res != ERROR_SUCCESS)
- return "";
- return String(buffer);
- }
- void OS_Windows::probe_joysticks() {
- static uint32_t last_attached = 0;
- int device_count = joyGetNumDevs();
- JOYINFOEX jinfo;
- jinfo.dwSize = sizeof(JOYINFOEX);
- jinfo.dwFlags = JOY_RETURNALL;
- for (int i=0; i<JOYSTICKS_MAX; i++) {
- Joystick joy;
- joy.id = i;
- joy.attached = (device_count > 0) && (joyGetPosEx(JOYSTICKID1 + i, &jinfo) == JOYERR_NOERROR);
- if (joy.attached == (last_attached & (1 << i) != 0)) {
- continue;
- };
- // there's been a change since last call
- if (joy.attached)
- last_attached = last_attached | (1 << i);
- else
- last_attached &= ~(1 << i);
- if (joy.attached) {
- joy.last_buttons = jinfo.dwButtons;
- joy.last_axis[0] = jinfo.dwXpos;
- joy.last_axis[1] = jinfo.dwYpos;
- joy.last_axis[2] = jinfo.dwZpos;
- joy.last_axis[3] = jinfo.dwRpos;
- joy.last_axis[4] = jinfo.dwUpos;
- joy.last_axis[5] = jinfo.dwVpos;
- JOYCAPS jcaps;
- MMRESULT res = joyGetDevCaps(JOYSTICKID1 + i, &jcaps, sizeof(jcaps));
- if (res == JOYERR_NOERROR) {
- String name = get_joystick_name(JOYSTICKID1 + i, jcaps);
- if ( name == "")
- joy.name = jcaps.szPname;
- else
- joy.name = name;
-
-
- };
- };
- joystick_change_queue.push_back(joy);
- };
- };
- void OS_Windows::process_key_events() {
- for(int i=0;i<key_event_pos;i++) {
- KeyEvent &ke = key_event_buffer[i];
- switch(ke.uMsg) {
- case WM_CHAR: {
- if ((i==0 && ke.uMsg==WM_CHAR) || (i>0 && key_event_buffer[i-1].uMsg==WM_CHAR))
- {
- InputEvent event;
- event.type=InputEvent::KEY;
- event.ID=++last_id;
- InputEventKey &k=event.key;
- k.mod=ke.mod_state;
- k.pressed=true;
- k.scancode=KeyMappingWindows::get_keysym(ke.wParam);
- k.unicode=ke.wParam;
- if (k.unicode && gr_mem) {
- k.mod.alt=false;
- k.mod.control=false;
- }
- if (k.unicode<32)
- k.unicode=0;
- input->parse_input_event(event);
- }
- //do nothing
- } break;
- case WM_KEYUP:
- case WM_KEYDOWN: {
- InputEvent event;
- event.type=InputEvent::KEY;
- event.ID=++last_id;
- InputEventKey &k=event.key;
- k.mod=ke.mod_state;
- k.pressed=(ke.uMsg==WM_KEYDOWN);
- k.scancode=KeyMappingWindows::get_keysym(ke.wParam);
- if (i+1 < key_event_pos && key_event_buffer[i+1].uMsg==WM_CHAR)
- k.unicode=key_event_buffer[i+1].wParam;
- if (k.unicode && gr_mem) {
- k.mod.alt=false;
- k.mod.control=false;
- }
- if (k.unicode<32)
- k.unicode=0;
- k.echo=(ke.uMsg==WM_KEYDOWN && (ke.lParam&(1<<30)));
- input->parse_input_event(event);
- } break;
- }
- }
- key_event_pos=0;
- }
- void OS_Windows::_post_dpad(DWORD p_dpad, int p_device, bool p_pressed) {
- InputEvent ievent;
- ievent.device = p_device;
- ievent.type = InputEvent::JOYSTICK_BUTTON;
- ievent.joy_button.pressed = p_pressed;
- ievent.joy_button.pressure = p_pressed ? 1.0 : 0.0;
- if (p_dpad == 0) {
- ievent.joy_button.button_index = JOY_DPAD_UP;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 4500) {
- ievent.joy_button.button_index = JOY_DPAD_UP;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- ievent.joy_button.button_index = JOY_DPAD_RIGHT;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 9000) {
- ievent.joy_button.button_index = JOY_DPAD_RIGHT;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 13500) {
- ievent.joy_button.button_index = JOY_DPAD_RIGHT;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- ievent.joy_button.button_index = JOY_DPAD_DOWN;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 18000) {
- ievent.joy_button.button_index = JOY_DPAD_DOWN;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 22500) {
- ievent.joy_button.button_index = JOY_DPAD_DOWN;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- ievent.joy_button.button_index = JOY_DPAD_LEFT;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 27000) {
- ievent.joy_button.button_index = JOY_DPAD_LEFT;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- } else if (p_dpad == 31500) {
- ievent.joy_button.button_index = JOY_DPAD_LEFT;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- ievent.joy_button.button_index = JOY_DPAD_UP;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- };
- };
- void OS_Windows::process_joysticks() {
- if (!main_loop) {
- return;
- };
- InputEvent ievent;
- JOYINFOEX jinfo;
- jinfo.dwSize = sizeof(JOYINFOEX);
- jinfo.dwFlags = JOY_RETURNALL;
- for (int i=0; i<JOYSTICKS_MAX; i++) {
- if (!joysticks[i].attached) {
- continue;
- };
- if (joyGetPosEx(JOYSTICKID1 + i, &jinfo) != JOYERR_NOERROR) {
- continue;
- };
- ievent.device = i;
- #define CHECK_AXIS(n, var) \
- if (joysticks[i].last_axis[n] != var) {\
- ievent.type = InputEvent::JOYSTICK_MOTION;\
- ievent.ID = ++last_id;\
- ievent.joy_motion.axis = n;\
- ievent.joy_motion.axis_value = (float)((int)var - MAX_JOY_AXIS) / (float)MAX_JOY_AXIS;\
- joysticks[i].last_axis[n] = var;\
- input->parse_input_event(ievent);\
- };
- CHECK_AXIS(0, jinfo.dwXpos);
- CHECK_AXIS(1, jinfo.dwYpos);
- CHECK_AXIS(2, jinfo.dwZpos);
- CHECK_AXIS(3, jinfo.dwRpos);
- CHECK_AXIS(4, jinfo.dwUpos);
- CHECK_AXIS(5, jinfo.dwVpos);
- if (joysticks[i].last_pov != jinfo.dwPOV) {
- if (joysticks[i].last_pov != JOY_POVCENTERED)
- _post_dpad(joysticks[i].last_pov, i, false);
- if (jinfo.dwPOV != JOY_POVCENTERED)
- _post_dpad(jinfo.dwPOV, i, true);
- joysticks[i].last_pov = jinfo.dwPOV;
- };
- if (joysticks[i].last_buttons == jinfo.dwButtons) {
- continue;
- };
- ievent.type = InputEvent::JOYSTICK_BUTTON;
- for (int j=0; j<32; j++) {
- if ( (joysticks[i].last_buttons & (1<<j)) != (jinfo.dwButtons & (1<<j)) ) {
- ievent.joy_button.button_index = j; //_pc_joystick_get_native_button(j);
- ievent.joy_button.pressed = jinfo.dwButtons & 1<<j;
- ievent.ID = ++last_id;
- input->parse_input_event(ievent);
- };
- };
- joysticks[i].last_buttons = jinfo.dwButtons;
- };
- };
- BOOL CALLBACK OS_Windows::MonitorEnumProc(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData) {
- OS_Windows *self=(OS_Windows*)OS::get_singleton();
- MonitorInfo minfo;
- minfo.hMonitor=hMonitor;
- minfo.hdcMonitor=hdcMonitor;
- minfo.rect.pos.x=lprcMonitor->left;
- minfo.rect.pos.y=lprcMonitor->top;
- minfo.rect.size.x=lprcMonitor->right - lprcMonitor->left;
- minfo.rect.size.y=lprcMonitor->bottom - lprcMonitor->top;
- self->monitor_info.push_back(minfo);
- return TRUE;
- }
- void OS_Windows::initialize(const VideoMode& p_desired,int p_video_driver,int p_audio_driver) {
- main_loop=NULL;
- outside=true;
- WNDCLASSEXW wc;
-
- video_mode=p_desired;
- //printf("**************** desired %s, mode %s\n", p_desired.fullscreen?"true":"false", video_mode.fullscreen?"true":"false");
- RECT WindowRect;
-
- WindowRect.left=0;
- WindowRect.right=video_mode.width;
- WindowRect.top=0;
- WindowRect.bottom=video_mode.height;
- memset(&wc,0,sizeof(WNDCLASSEXW));
- wc.cbSize=sizeof(WNDCLASSEXW);
- wc.style= CS_HREDRAW | CS_VREDRAW | CS_OWNDC | CS_DBLCLKS;
- wc.lpfnWndProc = (WNDPROC)::WndProc;
- wc.cbClsExtra = 0;
- wc.cbWndExtra= 0;
- //wc.hInstance = hInstance;
- wc.hInstance = godot_hinstance ? godot_hinstance : GetModuleHandle(NULL);
- wc.hIcon = LoadIcon(NULL, IDI_WINLOGO);
- wc.hCursor = NULL;//LoadCursor(NULL, IDC_ARROW);
- wc.hbrBackground = NULL;
- wc.lpszMenuName = NULL;
- wc.lpszClassName = L"Engine";
- if (!RegisterClassExW(&wc)) {
- MessageBox(NULL,"Failed To Register The Window Class.","ERROR",MB_OK|MB_ICONEXCLAMATION);
- return; // Return
- }
-
-
- EnumDisplayMonitors(NULL,NULL,MonitorEnumProc,0);
- print_line("DETECTED MONITORS: "+itos(monitor_info.size()));
- pre_fs_valid=true;
- if (video_mode.fullscreen) {
- DEVMODE current;
- memset(¤t,0,sizeof(current));
- EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, ¤t);
-
- WindowRect.right = current.dmPelsWidth;
- WindowRect.bottom = current.dmPelsHeight;
- /* DEVMODE dmScreenSettings;
- 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;
- }*/
- pre_fs_valid=false;
- }
- DWORD dwExStyle;
- DWORD dwStyle;
- if (video_mode.fullscreen) {
- dwExStyle=WS_EX_APPWINDOW;
- dwStyle=WS_POPUP;
-
- } else {
- dwExStyle=WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
- dwStyle=WS_OVERLAPPEDWINDOW;
- if (!video_mode.resizable) {
- dwStyle &= ~WS_THICKFRAME;
- dwStyle &= ~WS_MAXIMIZEBOX;
- }
- }
- AdjustWindowRectEx(&WindowRect, dwStyle, FALSE, dwExStyle);
- char* windowid = getenv("GODOT_WINDOWID");
- if (windowid) {
- // strtoull on mingw
- #ifdef MINGW_ENABLED
- hWnd = (HWND)strtoull(windowid, NULL, 0);
- #else
- hWnd = (HWND)_strtoui64(windowid, NULL, 0);
- #endif
- 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);
- };
- LONG_PTR proc = GetWindowLongPtr(hWnd, GWLP_WNDPROC);
- RECT rect;
- if (!GetClientRect(hWnd, &rect)) {
- MessageBoxW(NULL,L"Window Creation Error.",L"ERROR",MB_OK|MB_ICONEXCLAMATION);
- return; // Return FALSE
- };
- video_mode.width = rect.right;
- video_mode.height = rect.bottom;
- video_mode.fullscreen = false;
- } else {
- if (!(hWnd=CreateWindowExW(dwExStyle,L"Engine",L"", dwStyle|WS_CLIPSIBLINGS|WS_CLIPCHILDREN, 0, 0,WindowRect.right-WindowRect.left,WindowRect.bottom-WindowRect.top, NULL,NULL, hInstance,NULL))) {
- MessageBoxW(NULL,L"Window Creation Error.",L"ERROR",MB_OK|MB_ICONEXCLAMATION);
- return; // Return FALSE
- }
- };
-
- #if defined(OPENGL_ENABLED) || defined(GLES2_ENABLED) || defined(LEGACYGL_ENABLED)
- gl_context = memnew( ContextGL_Win(hWnd,false) );
- gl_context->initialize();
- rasterizer = memnew( RasterizerGLES2 );
- #else
- #ifdef DX9_ENABLED
- rasterizer = memnew( RasterizerDX9(hWnd) );
- #endif
- #endif
- visual_server = memnew( VisualServerRaster(rasterizer) );
- if (get_render_thread_mode()!=RENDER_THREAD_UNSAFE) {
- visual_server =memnew(VisualServerWrapMT(visual_server,get_render_thread_mode()==RENDER_SEPARATE_THREAD));
- }
- //
- physics_server = memnew( PhysicsServerSW );
- physics_server->init();
- physics_2d_server = memnew( Physics2DServerSW );
- physics_2d_server->init();
- if (!is_no_window_mode_enabled()) {
- ShowWindow(hWnd,SW_SHOW); // Show The Window
- SetForegroundWindow(hWnd); // Slightly Higher Priority
- SetFocus(hWnd); // Sets Keyboard Focus To
- }
- /*
- DEVMODE dmScreenSettings; // Device Mode
- memset(&dmScreenSettings,0,sizeof(dmScreenSettings)); // Makes Sure Memory's Cleared
- dmScreenSettings.dmSize=sizeof(dmScreenSettings); // Size Of The Devmode Structure
- dmScreenSettings.dmPelsWidth = width; // Selected Screen Width
- dmScreenSettings.dmPelsHeight = height; // Selected Screen Height
- dmScreenSettings.dmBitsPerPel = bits; // Selected Bits Per Pixel
- dmScreenSettings.dmFields=DM_BITSPERPEL|DM_PELSWIDTH|DM_PELSHEIGHT;
- if (ChangeDisplaySettings(&dmScreenSettings,CDS_FULLSCREEN)!=DISP_CHANGE_SUCCESSFUL)
- */
- visual_server->init();
- input = memnew( InputDefault );
- AudioDriverManagerSW::get_driver(p_audio_driver)->set_singleton();
- if (AudioDriverManagerSW::get_driver(p_audio_driver)->init()!=OK) {
- ERR_PRINT("Initializing audio failed.");
- }
- sample_manager = memnew( SampleManagerMallocSW );
- audio_server = memnew( AudioServerSW(sample_manager) );
- audio_server->init();
- spatial_sound_server = memnew( SpatialSoundServerSW );
- spatial_sound_server->init();
- spatial_sound_2d_server = memnew( SpatialSound2DServerSW );
- spatial_sound_2d_server->init();
- probe_joysticks(); // todo: move this to a thread
- while (joystick_change_queue.size() > 0) {
- Joystick joy = joystick_change_queue.front()->get();
- joystick_change_queue.pop_front();
- joysticks[joy.id] = joy;
- input->joy_connection_changed(joy.id, joy.attached, joy.name);
- };
- TRACKMOUSEEVENT tme;
- tme.cbSize=sizeof(TRACKMOUSEEVENT);
- tme.dwFlags=TME_LEAVE;
- tme.hwndTrack=hWnd;
- tme.dwHoverTime=HOVER_DEFAULT;
- TrackMouseEvent(&tme);
- //RegisterTouchWindow(hWnd, 0); // Windows 7
- _ensure_data_dir();
- }
- void OS_Windows::set_clipboard(const String& p_text) {
- if (!OpenClipboard(hWnd)) {
- ERR_EXPLAIN("Unable to open clipboard.");
- ERR_FAIL();
- };
- EmptyClipboard();
- HGLOBAL mem = GlobalAlloc(GMEM_MOVEABLE, (p_text.length() + 1) * sizeof(CharType));
- if (mem == NULL) {
- ERR_EXPLAIN("Unable to allocate memory for clipboard contents.");
- ERR_FAIL();
- };
- LPWSTR lptstrCopy = (LPWSTR)GlobalLock(mem);
- memcpy(lptstrCopy, p_text.c_str(), (p_text.length() + 1) * sizeof(CharType));
- //memset((lptstrCopy + p_text.length()), 0, sizeof(CharType));
- GlobalUnlock(mem);
- SetClipboardData(CF_UNICODETEXT, mem);
- // set the CF_TEXT version (not needed?)
- CharString utf8 = p_text.utf8();
- mem = GlobalAlloc(GMEM_MOVEABLE, utf8.length() + 1);
- if (mem == NULL) {
- ERR_EXPLAIN("Unable to allocate memory for clipboard contents.");
- ERR_FAIL();
- };
- 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)) {
- ERR_EXPLAIN("Unable to open clipboard.");
- ERR_FAIL_V("");
- };
- if (IsClipboardFormatAvailable(CF_UNICODETEXT)) {
- HGLOBAL mem = GetClipboardData(CF_UNICODETEXT);
- if (mem != NULL) {
- LPWSTR ptr = (LPWSTR)GlobalLock(mem);
- if (ptr != NULL) {
- ret = String((CharType*)ptr);
- GlobalUnlock(mem);
- };
- };
- } else if (IsClipboardFormatAvailable(CF_TEXT)) {
- HGLOBAL mem = GetClipboardData(CF_UNICODETEXT);
- if (mem != NULL) {
- LPTSTR ptr = (LPTSTR)GlobalLock(mem);
- if (ptr != NULL) {
- ret.parse_utf8((const char*)ptr);
- GlobalUnlock(mem);
- };
- };
- };
- CloseClipboard();
- return ret;
- };
- void OS_Windows::delete_main_loop() {
- if (main_loop)
- memdelete(main_loop);
- main_loop=NULL;
- }
- void OS_Windows::set_main_loop( MainLoop * p_main_loop ) {
- input->set_main_loop(p_main_loop);
- main_loop=p_main_loop;
- }
- void OS_Windows::finalize() {
- if(main_loop)
- memdelete(main_loop);
- main_loop=NULL;
-
- visual_server->finish();
- memdelete(visual_server);
- #ifdef OPENGL_ENABLED
- if (gl_context)
- memdelete(gl_context);
- #endif
- if (rasterizer)
- memdelete(rasterizer);
- if (user_proc) {
- SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)user_proc);
- };
- spatial_sound_server->finish();
- memdelete(spatial_sound_server);
- spatial_sound_2d_server->finish();
- memdelete(spatial_sound_2d_server);
- //if (debugger_connection_console) {
- // memdelete(debugger_connection_console);
- //}
- audio_server->finish();
- memdelete(audio_server);
- memdelete(sample_manager);
- memdelete(input);
- physics_server->finish();
- memdelete(physics_server);
- physics_2d_server->finish();
- memdelete(physics_2d_server);
- }
- void OS_Windows::finalize_core() {
- memdelete(process_map);
- if (mempool_dynamic)
- memdelete( mempool_dynamic );
- if (mempool_static)
- delete mempool_static;
- TCPServerWinsock::cleanup();
- StreamPeerWinsock::cleanup();
- }
- void OS_Windows::vprint(const char* p_format, va_list p_list, bool p_stderr) {
- char buf[16384+1];
- int len = vsnprintf(buf,16384,p_format,p_list);
- if (len<=0)
- return;
- buf[len]=0;
- int wlen = MultiByteToWideChar(CP_UTF8,0,buf,len,NULL,0);
- if (wlen<0)
- return;
- wchar_t *wbuf = (wchar_t*)malloc((len+1)*sizeof(wchar_t));
- MultiByteToWideChar(CP_UTF8,0,buf,len,wbuf,wlen);
- wbuf[wlen]=0;
- if (p_stderr)
- fwprintf(stderr,L"%s",wbuf);
- else
- wprintf(L"%s",wbuf);
- #ifdef STDOUT_FILE
- //vwfprintf(stdo,p_format,p_list);
- #endif
- free(wbuf);
- fflush(stdout);
- };
- void OS_Windows::alert(const String& p_alert,const String& p_title) {
- if (!is_no_window_mode_enabled())
- MessageBoxW(NULL,p_alert.c_str(),p_title.c_str(),MB_OK|MB_ICONEXCLAMATION);
- else
- print_line("ALERT: "+p_alert);
- }
- void OS_Windows::set_mouse_mode(MouseMode p_mode) {
- if (mouse_mode==p_mode)
- return;
- ShowCursor(p_mode==MOUSE_MODE_VISIBLE);
- mouse_mode=p_mode;
- if (p_mode==MOUSE_MODE_CAPTURED) {
- RECT clipRect;
- GetClientRect(hWnd, &clipRect);
- ClientToScreen(hWnd, (POINT*) &clipRect.left);
- ClientToScreen(hWnd, (POINT*) &clipRect.right);
- ClipCursor(&clipRect);
- SetCapture(hWnd);
- center=Point2i(video_mode.width/2,video_mode.height/2);
- POINT pos = { (int) center.x, (int) center.y };
- ClientToScreen(hWnd, &pos);
- SetCursorPos(pos.x, pos.y);
- } else {
- ReleaseCapture();
- ClipCursor(NULL);
- }
- }
- OS_Windows::MouseMode OS_Windows::get_mouse_mode() const{
- return mouse_mode;
- }
- void OS_Windows::warp_mouse_pos(const Point2& p_to) {
- if (mouse_mode==MOUSE_MODE_CAPTURED) {
- old_x=p_to.x;
- old_y=p_to.y;
- } else {
- POINT p;
- p.x=p_to.x;
- p.y=p_to.y;
- ClientToScreen(hWnd,&p);
- SetCursorPos(p.x,p.y);
- }
- }
- Point2 OS_Windows::get_mouse_pos() const {
- return Point2(old_x, old_y);
- }
- int OS_Windows::get_mouse_button_state() const {
- return last_button_state;
- }
- void OS_Windows::set_window_title(const String& p_title) {
- SetWindowTextW(hWnd,p_title.c_str());
- }
- void OS_Windows::set_video_mode(const VideoMode& p_video_mode,int p_screen) {
- }
- OS::VideoMode OS_Windows::get_video_mode(int p_screen) const {
- return video_mode;
- }
- void OS_Windows::get_fullscreen_mode_list(List<VideoMode> *p_list,int p_screen) const {
-
- }
- int OS_Windows::get_screen_count() const {
- return monitor_info.size();
- }
- int OS_Windows::get_current_screen() const{
- HMONITOR monitor = MonitorFromWindow(hWnd,MONITOR_DEFAULTTONEAREST);
- for(int i=0;i<monitor_info.size();i++) {
- if (monitor_info[i].hMonitor==monitor)
- return i;
- }
- return 0;
- }
- void OS_Windows::set_current_screen(int p_screen){
- ERR_FAIL_INDEX(p_screen,monitor_info.size());
- Vector2 ofs = get_window_position() - get_screen_position(get_current_screen());
- set_window_position(ofs+get_screen_position(p_screen));
- }
- Point2 OS_Windows::get_screen_position(int p_screen) const{
- ERR_FAIL_INDEX_V(p_screen,monitor_info.size(),Point2());
- return Vector2( monitor_info[p_screen].rect.pos );
- }
- Size2 OS_Windows::get_screen_size(int p_screen) const{
- ERR_FAIL_INDEX_V(p_screen,monitor_info.size(),Point2());
- return Vector2( monitor_info[p_screen].rect.size );
- }
- Point2 OS_Windows::get_window_position() const{
- RECT r;
- GetWindowRect(hWnd,&r);
- return Point2(r.left,r.top);
- }
- void OS_Windows::set_window_position(const Point2& p_position){
- RECT r;
- GetWindowRect(hWnd,&r);
- MoveWindow(hWnd,p_position.x,p_position.y,r.right-r.left,r.bottom-r.top,TRUE);
- }
- Size2 OS_Windows::get_window_size() const{
- RECT r;
- GetClientRect(hWnd,&r);
- return Vector2(r.right-r.left,r.bottom-r.top);
- }
- void OS_Windows::set_window_size(const Size2 p_size){
- video_mode.width=p_size.width;
- video_mode.height=p_size.height;
- if (video_mode.fullscreen) {
- return;
- }
- RECT crect;
- GetClientRect(hWnd,&crect);
- RECT rect;
- GetWindowRect(hWnd,&rect);
- int dx = (rect.right-rect.left)-(crect.right-crect.left);
- int dy = (rect.bottom-rect.top)-(crect.bottom-crect.top);
- rect.right=rect.left+p_size.width+dx;
- rect.bottom=rect.top+p_size.height+dy;
- //print_line("PRE: "+itos(rect.left)+","+itos(rect.top)+","+itos(rect.right-rect.left)+","+itos(rect.bottom-rect.top));
- /*if (video_mode.resizable) {
- AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, FALSE);
- } else {
- AdjustWindowRect(&rect, WS_CAPTION | WS_POPUPWINDOW, FALSE);
- }*/
- //print_line("POST: "+itos(rect.left)+","+itos(rect.top)+","+itos(rect.right-rect.left)+","+itos(rect.bottom-rect.top));
- MoveWindow(hWnd,rect.left,rect.top,rect.right-rect.left,rect.bottom-rect.top,TRUE);
- }
- void OS_Windows::set_window_fullscreen(bool p_enabled){
- if (video_mode.fullscreen==p_enabled)
- return;
- if (p_enabled) {
- if (pre_fs_valid) {
- GetWindowRect(hWnd,&pre_fs_rect);
- //print_line("A: "+itos(pre_fs_rect.left)+","+itos(pre_fs_rect.top)+","+itos(pre_fs_rect.right-pre_fs_rect.left)+","+itos(pre_fs_rect.bottom-pre_fs_rect.top));
- //MapWindowPoints(hWnd, GetParent(hWnd), (LPPOINT) &pre_fs_rect, 2);
- //print_line("B: "+itos(pre_fs_rect.left)+","+itos(pre_fs_rect.top)+","+itos(pre_fs_rect.right-pre_fs_rect.left)+","+itos(pre_fs_rect.bottom-pre_fs_rect.top));
- }
- int cs = get_current_screen();
- Point2 pos = get_screen_position(cs);
- Size2 size = get_screen_size(cs);
- /* r.left = pos.x;
- r.top = pos.y;
- r.bottom = pos.y+size.y;
- r.right = pos.x+size.x;
- */
- SetWindowLongPtr(hWnd, GWL_STYLE,
- WS_SYSMENU | WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_VISIBLE);
- MoveWindow(hWnd, pos.x, pos.y, size.width, size.height, TRUE);
- video_mode.fullscreen=true;
- } else {
- RECT rect;
- if (pre_fs_valid) {
- rect=pre_fs_rect;
- } else {
- rect.left=0;
- rect.right=video_mode.width;
- rect.top=0;
- rect.bottom=video_mode.height;
- }
- if (video_mode.resizable) {
- SetWindowLongPtr(hWnd, GWL_STYLE, WS_OVERLAPPEDWINDOW | WS_VISIBLE);
- //AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, FALSE);
- MoveWindow(hWnd, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top, TRUE);
- } else {
- SetWindowLongPtr(hWnd, GWL_STYLE, WS_CAPTION | WS_POPUPWINDOW | WS_VISIBLE);
- //AdjustWindowRect(&rect, WS_CAPTION | WS_POPUPWINDOW, FALSE);
- MoveWindow(hWnd, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top, TRUE);
- }
- video_mode.fullscreen=false;
- pre_fs_valid=true;
- /*
- DWORD dwExStyle=WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
- DWORD dwStyle=WS_OVERLAPPEDWINDOW;
- if (!video_mode.resizable) {
- dwStyle &= ~WS_THICKFRAME;
- dwStyle &= ~WS_MAXIMIZEBOX;
- }
- AdjustWindowRectEx(&pre_fs_rect, dwStyle, FALSE, dwExStyle);
- video_mode.fullscreen=false;
- video_mode.width=pre_fs_rect.right-pre_fs_rect.left;
- video_mode.height=pre_fs_rect.bottom-pre_fs_rect.top;
- */
- }
- // MoveWindow(hWnd,r.left,r.top,p_size.x,p_size.y,TRUE);
- }
- bool OS_Windows::is_window_fullscreen() const{
- return video_mode.fullscreen;
- }
- void OS_Windows::set_window_resizable(bool p_enabled){
- if (video_mode.resizable==p_enabled)
- return;
- /*
- GetWindowRect(hWnd,&pre_fs_rect);
- DWORD dwExStyle=WS_EX_APPWINDOW | WS_EX_WINDOWEDGE;
- DWORD dwStyle=WS_OVERLAPPEDWINDOW;
- if (!p_enabled) {
- dwStyle &= ~WS_THICKFRAME;
- dwStyle &= ~WS_MAXIMIZEBOX;
- }
- AdjustWindowRectEx(&pre_fs_rect, dwStyle, FALSE, dwExStyle);
- */
- if (!video_mode.fullscreen) {
- if (p_enabled) {
- SetWindowLongPtr(hWnd, GWL_STYLE, WS_OVERLAPPEDWINDOW | WS_VISIBLE);
- } else {
- SetWindowLongPtr(hWnd, GWL_STYLE, WS_CAPTION | WS_POPUPWINDOW | WS_VISIBLE);
- }
- RECT rect;
- GetWindowRect(hWnd,&rect);
- MoveWindow(hWnd, rect.left, rect.top, rect.right-rect.left, rect.bottom-rect.top, TRUE);
- }
- video_mode.resizable=p_enabled;
- }
- bool OS_Windows::is_window_resizable() const{
- return video_mode.resizable;
- }
- void OS_Windows::set_window_minimized(bool p_enabled){
- if (p_enabled) {
- maximized=false;
- minimized=true;
- ShowWindow(hWnd,SW_MINIMIZE);
- } else {
- ShowWindow(hWnd,SW_RESTORE);
- maximized=false;
- minimized=false;
- }
- }
- bool OS_Windows::is_window_minimized() const{
- return minimized;
- }
- void OS_Windows::set_window_maximized(bool p_enabled){
- if (p_enabled) {
- maximized=true;
- minimized=false;
- ShowWindow(hWnd,SW_MAXIMIZE);
- } else {
- ShowWindow(hWnd,SW_RESTORE);
- maximized=false;
- minimized=false;
- }
- }
- bool OS_Windows::is_window_maximized() const{
- return maximized;
- }
- void OS_Windows::print_error(const char* p_function,const char* p_file,int p_line,const char *p_code,const char*p_rationale,ErrorType p_type) {
- HANDLE hCon=GetStdHandle(STD_OUTPUT_HANDLE);
- if (!hCon || hCon==INVALID_HANDLE_VALUE) {
- if (p_rationale && p_rationale[0]) {
- print("\E[1;31;40mERROR: %s: \E[1;37;40m%s\n",p_function,p_rationale);
- print("\E[0;31;40m At: %s:%i.\E[0;0;37m\n",p_file,p_line);
- } else {
- print("\E[1;31;40mERROR: %s: \E[1;37;40m%s\n",p_function,p_code);
- print("\E[0;31;40m At: %s:%i.\E[0;0;37m\n",p_file,p_line);
- }
- } else {
- CONSOLE_SCREEN_BUFFER_INFO sbi; //original
- GetConsoleScreenBufferInfo(hCon,&sbi);
- SetConsoleTextAttribute(hCon,sbi.wAttributes);
- uint32_t basecol=0;
- switch(p_type) {
- case ERR_ERROR: basecol = FOREGROUND_RED; break;
- case ERR_WARNING: basecol = FOREGROUND_RED|FOREGROUND_GREEN; break;
- case ERR_SCRIPT: basecol = FOREGROUND_GREEN; break;
- }
- if (p_rationale && p_rationale[0]) {
- SetConsoleTextAttribute(hCon,basecol|FOREGROUND_INTENSITY);
- switch(p_type) {
- case ERR_ERROR: print("ERROR: "); break;
- case ERR_WARNING: print("WARNING: "); break;
- case ERR_SCRIPT: print("SCRIPT ERROR: "); break;
- }
- SetConsoleTextAttribute(hCon,FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN|FOREGROUND_INTENSITY);
- print(" %s\n",p_rationale);
- SetConsoleTextAttribute(hCon,basecol);
- print("At: ");
- SetConsoleTextAttribute(hCon,FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN);
- print(" %s:%i\n",p_file,p_line);
- } else {
- SetConsoleTextAttribute(hCon,basecol|FOREGROUND_INTENSITY);
- switch(p_type) {
- case ERR_ERROR: print("ERROR: %s: ",p_function); break;
- case ERR_WARNING: print("WARNING: %s: ",p_function); break;
- case ERR_SCRIPT: print("SCRIPT ERROR: %s: ",p_function); break;
- }
- SetConsoleTextAttribute(hCon,FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN|FOREGROUND_INTENSITY);
- print(" %s\n",p_code);
- SetConsoleTextAttribute(hCon,basecol);
- print("At: ");
- SetConsoleTextAttribute(hCon,FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN);
- print(" %s:%i\n",p_file,p_line);
- }
- SetConsoleTextAttribute(hCon,sbi.wAttributes);
- }
- }
- String OS_Windows::get_name() {
- return "Windows";
- }
- OS::Date OS_Windows::get_date() const {
- SYSTEMTIME systemtime;
- GetSystemTime(&systemtime);
- Date date;
- date.day=systemtime.wDay;
- date.month=Month(systemtime.wMonth);
- date.weekday=Weekday(systemtime.wDayOfWeek);
- date.year=systemtime.wYear;
- date.dst=false;
- return date;
- }
- OS::Time OS_Windows::get_time() const {
- SYSTEMTIME systemtime;
- GetLocalTime(&systemtime);
- Time time;
- time.hour=systemtime.wHour;
- time.min=systemtime.wMinute;
- time.sec=systemtime.wSecond;
- return time;
- }
- uint64_t OS_Windows::get_unix_time() const {
- 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);
- return (*(uint64_t*)&ft - *(uint64_t*)&fep) / 10000000;
- };
- void OS_Windows::delay_usec(uint32_t p_usec) const {
- if (p_usec < 1000)
- Sleep(1);
- else
- Sleep(p_usec / 1000);
-
- }
- uint64_t OS_Windows::get_ticks_usec() const {
- 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;
- }
- void OS_Windows::process_events() {
- MSG msg;
- process_joysticks();
-
- while(PeekMessageW(&msg,NULL,0,0,PM_REMOVE)) {
- TranslateMessage(&msg);
- DispatchMessageW(&msg);
-
- }
- process_key_events();
- }
- void OS_Windows::set_cursor_shape(CursorShape p_shape) {
- ERR_FAIL_INDEX(p_shape,CURSOR_MAX);
- if (cursor_shape==p_shape)
- return;
- static const LPCTSTR win_cursors[CURSOR_MAX]={
- IDC_ARROW,
- IDC_IBEAM,
- IDC_HAND,//finger
- 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
- };
- SetCursor(LoadCursor(hInstance,win_cursors[p_shape]));
- cursor_shape=p_shape;
- }
- 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) {
- if (p_blocking && r_pipe) {
- String argss;
- argss="\"\""+p_path+"\"";
- for(int i=0;i<p_arguments.size();i++) {
- argss+=String(" \"")+p_arguments[i]+"\"";
- }
- // print_line("ARGS: "+argss);
- //argss+"\"";
- //argss+=" 2>nul";
- FILE* f=_wpopen(argss.c_str(),L"r");
- ERR_FAIL_COND_V(!f,ERR_CANT_OPEN);
- char buf[65535];
- while(fgets(buf,65535,f)) {
- (*r_pipe)+=buf;
- }
- int rv = _pclose(f);
- if (r_exitcode)
- *r_exitcode=rv;
- return OK;
- }
- String cmdline = "\""+p_path+"\"";
- const List<String>::Element* I = p_arguments.front();
- while (I) {
- cmdline += " \""+I->get() + "\"";
- I = I->next();
- };
- //cmdline+="\"";
- ProcessInfo pi;
- ZeroMemory( &pi.si, sizeof(pi.si) );
- pi.si.cb = sizeof(pi.si);
- ZeroMemory( &pi.pi, sizeof(pi.pi) );
- LPSTARTUPINFOW si_w = (LPSTARTUPINFOW) &pi.si;
- print_line("running cmdline: "+cmdline);
- Vector<CharType> modstr; //windows wants to change this no idea why
- modstr.resize(cmdline.size());
- for(int i=0;i<cmdline.size();i++)
- modstr[i]=cmdline[i];
- int ret = CreateProcessW(NULL, modstr.ptr(), NULL, NULL, 0, NORMAL_PRIORITY_CLASS, NULL, NULL, si_w, &pi.pi);
- ERR_FAIL_COND_V(ret == 0, ERR_CANT_FORK);
- if (p_blocking) {
- DWORD ret = WaitForSingleObject(pi.pi.hProcess, INFINITE);
- if (r_exitcode)
- *r_exitcode=ret;
- } else {
- ProcessID pid = pi.pi.dwProcessId;
- if (r_child_id) {
- *r_child_id = pid;
- };
- process_map->insert(pid, pi);
- };
- return OK;
- };
- Error OS_Windows::kill(const ProcessID& p_pid) {
- HANDLE h;
- if (process_map->has(p_pid)) {
- h = (*process_map)[p_pid].pi.hProcess;
- process_map->erase(p_pid);
- } else {
- ERR_FAIL_COND_V(!process_map->has(p_pid), FAILED);
- };
- int ret = TerminateProcess(h, 0);
- return ret != 0?OK:FAILED;
- };
- Error OS_Windows::set_cwd(const String& p_cwd) {
- if (_wchdir(p_cwd.c_str())!=0)
- return ERR_CANT_OPEN;
- return OK;
- }
- String OS_Windows::get_executable_path() const {
- wchar_t bufname[4096];
- GetModuleFileNameW(NULL,bufname,4096);
- String s= bufname;
- print_line("EXEC PATHP¨®: "+s);
- return s;
- }
- void OS_Windows::set_icon(const Image& p_icon) {
- Image icon=p_icon;
- if (icon.get_format()!=Image::FORMAT_RGBA)
- icon.convert(Image::FORMAT_RGBA);
- int w = icon.get_width();
- int h = icon.get_height();
- /* Create temporary bitmap buffer */
- int icon_len = 40 + h * w * 4;
- Vector<BYTE> v;
- v.resize(icon_len);
- BYTE *icon_bmp = &v[0];
- 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];
- DVector<uint8_t>::Read r= icon.get_data().read();
- 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];
- }
- }
- HICON hicon = CreateIconFromResource(icon_bmp, icon_len, TRUE, 0x00030000);
- /* Set the icon for the window */
- SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM) hicon);
- /* Set the icon in the task manager (should we do this?) */
- SendMessage(hWnd, WM_SETICON, ICON_BIG, (LPARAM) hicon);
- }
- bool OS_Windows::has_environment(const String& p_var) const {
- return getenv(p_var.utf8().get_data()) != NULL;
- };
- String OS_Windows::get_environment(const String& p_var) const {
- char* val = getenv(p_var.utf8().get_data());
- if (val)
- return val;
- return "";
- };
- String OS_Windows::get_stdin_string(bool p_block) {
- if (p_block) {
- char buff[1024];
- return fgets(buff,1024,stdin);
- };
- return String();
- }
- void OS_Windows::move_window_to_foreground() {
- SetForegroundWindow(hWnd);
- BringWindowToTop(hWnd);
- }
- Error OS_Windows::shell_open(String p_uri) {
- ShellExecuteW(NULL, L"open", p_uri.c_str(), NULL, NULL, SW_SHOWNORMAL);
- return OK;
- }
- String OS_Windows::get_locale() const {
- const _WinLocale *wl = &_win_locales[0];
- LANGID langid = GetUserDefaultUILanguage();
- String neutral;
- int lang = langid&((1<<9)-1);
- int sublang = langid&~((1<<9)-1);
- while(wl->locale) {
- if (wl->main_lang==lang && wl->sublang==SUBLANG_NEUTRAL)
- neutral=wl->locale;
- if (lang==wl->main_lang && sublang==wl->sublang)
- return wl->locale;
- wl++;
- }
- if (neutral!="")
- return neutral;
- return "en";
- }
- 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();
- }
- void OS_Windows::run() {
- if (!main_loop)
- return;
-
- main_loop->init();
-
- uint64_t last_ticks=get_ticks_usec();
-
- int frames=0;
- uint64_t frame=0;
-
- while (!force_quit) {
-
- process_events(); // get rid of pending events
- if (Main::iteration()==true)
- break;
- };
-
- main_loop->finish();
- }
- MainLoop *OS_Windows::get_main_loop() const {
- return main_loop;
- }
- String OS_Windows::get_system_dir(SystemDir p_dir) const {
- int id;
- switch(p_dir) {
- case SYSTEM_DIR_DESKTOP: {
- id=CSIDL_DESKTOPDIRECTORY;
- } break;
- case SYSTEM_DIR_DCIM: {
- id=CSIDL_MYPICTURES;
- } break;
- case SYSTEM_DIR_DOCUMENTS: {
- id=0x000C;
- } break;
- case SYSTEM_DIR_DOWNLOADS: {
- id=0x000C ;
- } break;
- case SYSTEM_DIR_MOVIES: {
- id=CSIDL_MYVIDEO;
- } break;
- case SYSTEM_DIR_MUSIC: {
- id=CSIDL_MYMUSIC;
- } break;
- case SYSTEM_DIR_PICTURES: {
- id=CSIDL_MYPICTURES;
- } break;
- case SYSTEM_DIR_RINGTONES: {
- id=CSIDL_MYMUSIC;
- } break;
- }
- WCHAR szPath[MAX_PATH];
- HRESULT res = SHGetFolderPathW(NULL,id,NULL,0,szPath);
- ERR_FAIL_COND_V(res!=S_OK,String());
- return String(szPath);
- }
- String OS_Windows::get_data_dir() const {
- String an = Globals::get_singleton()->get("application/name");
- if (an!="") {
- if (has_environment("APPDATA")) {
- bool use_godot = Globals::get_singleton()->get("application/use_shared_user_dir");
- if (!use_godot)
- return (OS::get_singleton()->get_environment("APPDATA")+"/"+an).replace("\\","/");
- else
- return (OS::get_singleton()->get_environment("APPDATA")+"/Godot/app_userdata/"+an).replace("\\","/");
- }
- }
- return Globals::get_singleton()->get_resource_path();
- }
- OS_Windows::OS_Windows(HINSTANCE _hInstance) {
- key_event_pos=0;
- force_quit=false;
- alt_mem=false;
- gr_mem=false;
- shift_mem=false;
- control_mem=false;
- meta_mem=false;
- minimized = false;
- hInstance=_hInstance;
- pressrc=0;
- old_invalid=true;
- last_id=0;
- mouse_mode=MOUSE_MODE_VISIBLE;
- #ifdef STDOUT_FILE
- stdo=fopen("stdout.txt","wb");
- #endif
- user_proc = NULL;
- #ifdef RTAUDIO_ENABLED
- AudioDriverManagerSW::add_driver(&driver_rtaudio);
- #endif
- }
- OS_Windows::~OS_Windows()
- {
- #ifdef STDOUT_FILE
- fclose(stdo);
- #endif
- }
|