obs-windows.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. /******************************************************************************
  2. Copyright (C) 2013 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #include "util/windows/win-version.h"
  15. #include "util/platform.h"
  16. #include "util/dstr.h"
  17. #include "obs.h"
  18. #include "obs-internal.h"
  19. #include <windows.h>
  20. static uint32_t win_ver = 0;
  21. const char *get_module_extension(void)
  22. {
  23. return ".dll";
  24. }
  25. #ifdef _WIN64
  26. #define BIT_STRING "64bit"
  27. #else
  28. #define BIT_STRING "32bit"
  29. #endif
  30. static const char *module_bin[] = {
  31. "obs-plugins/" BIT_STRING,
  32. "../../obs-plugins/" BIT_STRING,
  33. };
  34. static const char *module_data[] = {
  35. "data/%module%",
  36. "../../data/obs-plugins/%module%"
  37. };
  38. static const int module_patterns_size =
  39. sizeof(module_bin)/sizeof(module_bin[0]);
  40. void add_default_module_paths(void)
  41. {
  42. for (int i = 0; i < module_patterns_size; i++)
  43. obs_add_module_path(module_bin[i], module_data[i]);
  44. }
  45. /* on windows, points to [base directory]/data/libobs */
  46. char *find_libobs_data_file(const char *file)
  47. {
  48. struct dstr path;
  49. dstr_init(&path);
  50. if (check_path(file, "data/libobs/", &path))
  51. return path.array;
  52. if (check_path(file, "../../data/libobs/", &path))
  53. return path.array;
  54. dstr_free(&path);
  55. return NULL;
  56. }
  57. static void log_processor_info(void)
  58. {
  59. HKEY key;
  60. wchar_t data[1024];
  61. char *str = NULL;
  62. DWORD size, speed;
  63. LSTATUS status;
  64. memset(data, 0, 1024);
  65. status = RegOpenKeyW(HKEY_LOCAL_MACHINE,
  66. L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0",
  67. &key);
  68. if (status != ERROR_SUCCESS)
  69. return;
  70. size = 1024;
  71. status = RegQueryValueExW(key, L"ProcessorNameString", NULL, NULL,
  72. (LPBYTE)data, &size);
  73. if (status == ERROR_SUCCESS) {
  74. os_wcs_to_utf8_ptr(data, 0, &str);
  75. blog(LOG_INFO, "CPU Name: %s", str);
  76. bfree(str);
  77. }
  78. size = sizeof(speed);
  79. status = RegQueryValueExW(key, L"~MHz", NULL, NULL, (LPBYTE)&speed,
  80. &size);
  81. if (status == ERROR_SUCCESS)
  82. blog(LOG_INFO, "CPU Speed: %ldMHz", speed);
  83. RegCloseKey(key);
  84. }
  85. static DWORD num_logical_cores(ULONG_PTR mask)
  86. {
  87. DWORD left_shift = sizeof(ULONG_PTR) * 8 - 1;
  88. DWORD bit_set_count = 0;
  89. ULONG_PTR bit_test = (ULONG_PTR)1 << left_shift;
  90. for (DWORD i = 0; i <= left_shift; ++i) {
  91. bit_set_count += ((mask & bit_test) ? 1 : 0);
  92. bit_test /= 2;
  93. }
  94. return bit_set_count;
  95. }
  96. static void log_processor_cores(void)
  97. {
  98. PSYSTEM_LOGICAL_PROCESSOR_INFORMATION info = NULL, temp = NULL;
  99. DWORD len = 0;
  100. GetLogicalProcessorInformation(info, &len);
  101. if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
  102. return;
  103. info = malloc(len);
  104. if (GetLogicalProcessorInformation(info, &len)) {
  105. DWORD num = len / sizeof(*info);
  106. int physical_cores = 0;
  107. int logical_cores = 0;
  108. temp = info;
  109. for (DWORD i = 0; i < num; i++) {
  110. if (temp->Relationship == RelationProcessorCore) {
  111. ULONG_PTR mask = temp->ProcessorMask;
  112. physical_cores++;
  113. logical_cores += num_logical_cores(mask);
  114. }
  115. temp++;
  116. }
  117. blog(LOG_INFO, "Physical Cores: %d, Logical Cores: %d",
  118. physical_cores, logical_cores);
  119. }
  120. free(info);
  121. }
  122. static void log_available_memory(void)
  123. {
  124. MEMORYSTATUS ms;
  125. GlobalMemoryStatus(&ms);
  126. #ifdef _WIN64
  127. const char *note = "";
  128. #else
  129. const char *note = " (NOTE: 2 or 4 gigs max is normal for 32bit programs)";
  130. #endif
  131. blog(LOG_INFO, "Physical Memory: %luMB Total, %luMB Free%s",
  132. (DWORD)(ms.dwTotalPhys / 1048576),
  133. (DWORD)(ms.dwAvailPhys / 1048576),
  134. note);
  135. }
  136. static void log_windows_version(void)
  137. {
  138. struct win_version_info ver;
  139. get_win_ver(&ver);
  140. blog(LOG_INFO, "Windows Version: %d.%d Build %d (revision: %d)",
  141. ver.major, ver.minor, ver.build, ver.revis);
  142. }
  143. typedef HRESULT (WINAPI *dwm_is_composition_enabled_t)(BOOL*);
  144. static void log_aero(void)
  145. {
  146. dwm_is_composition_enabled_t composition_enabled = NULL;
  147. const char *aeroMessage = win_ver >= 0x602 ?
  148. " (Aero is always on for windows 8 and above)" : "";
  149. HMODULE dwm = LoadLibraryW(L"dwmapi");
  150. BOOL bComposition = true;
  151. if (!dwm) {
  152. return;
  153. }
  154. composition_enabled = (dwm_is_composition_enabled_t)GetProcAddress(dwm,
  155. "DwmIsCompositionEnabled");
  156. if (!composition_enabled) {
  157. return;
  158. }
  159. composition_enabled(&bComposition);
  160. blog(LOG_INFO, "Aero is %s%s", bComposition ? "Enabled" : "Disabled",
  161. aeroMessage);
  162. }
  163. void log_system_info(void)
  164. {
  165. struct win_version_info ver;
  166. get_win_ver(&ver);
  167. win_ver = (ver.major << 8) | ver.minor;
  168. log_processor_info();
  169. log_processor_cores();
  170. log_available_memory();
  171. log_windows_version();
  172. log_aero();
  173. }
  174. struct obs_hotkeys_platform {
  175. int vk_codes[OBS_KEY_LAST_VALUE];
  176. };
  177. static int get_virtual_key(obs_key_t key)
  178. {
  179. switch (key) {
  180. case OBS_KEY_RETURN: return VK_RETURN;
  181. case OBS_KEY_ESCAPE: return VK_ESCAPE;
  182. case OBS_KEY_TAB: return VK_TAB;
  183. case OBS_KEY_BACKTAB: return VK_OEM_BACKTAB;
  184. case OBS_KEY_BACKSPACE: return VK_BACK;
  185. case OBS_KEY_INSERT: return VK_INSERT;
  186. case OBS_KEY_DELETE: return VK_DELETE;
  187. case OBS_KEY_PAUSE: return VK_PAUSE;
  188. case OBS_KEY_PRINT: return VK_SNAPSHOT;
  189. case OBS_KEY_CLEAR: return VK_CLEAR;
  190. case OBS_KEY_HOME: return VK_HOME;
  191. case OBS_KEY_END: return VK_END;
  192. case OBS_KEY_LEFT: return VK_LEFT;
  193. case OBS_KEY_UP: return VK_UP;
  194. case OBS_KEY_RIGHT: return VK_RIGHT;
  195. case OBS_KEY_DOWN: return VK_DOWN;
  196. case OBS_KEY_PAGEUP: return VK_PRIOR;
  197. case OBS_KEY_PAGEDOWN: return VK_NEXT;
  198. case OBS_KEY_SHIFT: return VK_SHIFT;
  199. case OBS_KEY_CONTROL: return VK_CONTROL;
  200. case OBS_KEY_ALT: return VK_MENU;
  201. case OBS_KEY_CAPSLOCK: return VK_CAPITAL;
  202. case OBS_KEY_NUMLOCK: return VK_NUMLOCK;
  203. case OBS_KEY_SCROLLLOCK: return VK_SCROLL;
  204. case OBS_KEY_F1: return VK_F1;
  205. case OBS_KEY_F2: return VK_F2;
  206. case OBS_KEY_F3: return VK_F3;
  207. case OBS_KEY_F4: return VK_F4;
  208. case OBS_KEY_F5: return VK_F5;
  209. case OBS_KEY_F6: return VK_F6;
  210. case OBS_KEY_F7: return VK_F7;
  211. case OBS_KEY_F8: return VK_F8;
  212. case OBS_KEY_F9: return VK_F9;
  213. case OBS_KEY_F10: return VK_F10;
  214. case OBS_KEY_F11: return VK_F11;
  215. case OBS_KEY_F12: return VK_F12;
  216. case OBS_KEY_F13: return VK_F13;
  217. case OBS_KEY_F14: return VK_F14;
  218. case OBS_KEY_F15: return VK_F15;
  219. case OBS_KEY_F16: return VK_F16;
  220. case OBS_KEY_F17: return VK_F17;
  221. case OBS_KEY_F18: return VK_F18;
  222. case OBS_KEY_F19: return VK_F19;
  223. case OBS_KEY_F20: return VK_F20;
  224. case OBS_KEY_F21: return VK_F21;
  225. case OBS_KEY_F22: return VK_F22;
  226. case OBS_KEY_F23: return VK_F23;
  227. case OBS_KEY_F24: return VK_F24;
  228. case OBS_KEY_SPACE: return VK_SPACE;
  229. case OBS_KEY_APOSTROPHE: return VK_OEM_7;
  230. case OBS_KEY_PLUS: return VK_OEM_PLUS;
  231. case OBS_KEY_COMMA: return VK_OEM_COMMA;
  232. case OBS_KEY_MINUS: return VK_OEM_MINUS;
  233. case OBS_KEY_PERIOD: return VK_OEM_PERIOD;
  234. case OBS_KEY_SLASH: return VK_OEM_2;
  235. case OBS_KEY_0: return '0';
  236. case OBS_KEY_1: return '1';
  237. case OBS_KEY_2: return '2';
  238. case OBS_KEY_3: return '3';
  239. case OBS_KEY_4: return '4';
  240. case OBS_KEY_5: return '5';
  241. case OBS_KEY_6: return '6';
  242. case OBS_KEY_7: return '7';
  243. case OBS_KEY_8: return '8';
  244. case OBS_KEY_9: return '9';
  245. case OBS_KEY_NUMASTERISK: return VK_MULTIPLY;
  246. case OBS_KEY_NUMPLUS: return VK_ADD;
  247. case OBS_KEY_NUMMINUS: return VK_SUBTRACT;
  248. case OBS_KEY_NUMPERIOD: return VK_DECIMAL;
  249. case OBS_KEY_NUMSLASH: return VK_DIVIDE;
  250. case OBS_KEY_NUM0: return VK_NUMPAD0;
  251. case OBS_KEY_NUM1: return VK_NUMPAD1;
  252. case OBS_KEY_NUM2: return VK_NUMPAD2;
  253. case OBS_KEY_NUM3: return VK_NUMPAD3;
  254. case OBS_KEY_NUM4: return VK_NUMPAD4;
  255. case OBS_KEY_NUM5: return VK_NUMPAD5;
  256. case OBS_KEY_NUM6: return VK_NUMPAD6;
  257. case OBS_KEY_NUM7: return VK_NUMPAD7;
  258. case OBS_KEY_NUM8: return VK_NUMPAD8;
  259. case OBS_KEY_NUM9: return VK_NUMPAD9;
  260. case OBS_KEY_SEMICOLON: return VK_OEM_1;
  261. case OBS_KEY_A: return 'A';
  262. case OBS_KEY_B: return 'B';
  263. case OBS_KEY_C: return 'C';
  264. case OBS_KEY_D: return 'D';
  265. case OBS_KEY_E: return 'E';
  266. case OBS_KEY_F: return 'F';
  267. case OBS_KEY_G: return 'G';
  268. case OBS_KEY_H: return 'H';
  269. case OBS_KEY_I: return 'I';
  270. case OBS_KEY_J: return 'J';
  271. case OBS_KEY_K: return 'K';
  272. case OBS_KEY_L: return 'L';
  273. case OBS_KEY_M: return 'M';
  274. case OBS_KEY_N: return 'N';
  275. case OBS_KEY_O: return 'O';
  276. case OBS_KEY_P: return 'P';
  277. case OBS_KEY_Q: return 'Q';
  278. case OBS_KEY_R: return 'R';
  279. case OBS_KEY_S: return 'S';
  280. case OBS_KEY_T: return 'T';
  281. case OBS_KEY_U: return 'U';
  282. case OBS_KEY_V: return 'V';
  283. case OBS_KEY_W: return 'W';
  284. case OBS_KEY_X: return 'X';
  285. case OBS_KEY_Y: return 'Y';
  286. case OBS_KEY_Z: return 'Z';
  287. case OBS_KEY_BRACKETLEFT: return VK_OEM_4;
  288. case OBS_KEY_BACKSLASH: return VK_OEM_5;
  289. case OBS_KEY_BRACKETRIGHT: return VK_OEM_6;
  290. case OBS_KEY_ASCIITILDE: return VK_OEM_3;
  291. case OBS_KEY_KANJI: return VK_KANJI;
  292. case OBS_KEY_TOUROKU: return VK_OEM_FJ_TOUROKU;
  293. case OBS_KEY_MASSYO: return VK_OEM_FJ_MASSHOU;
  294. case OBS_KEY_HANGUL: return VK_HANGUL;
  295. case OBS_KEY_MOUSE1: return VK_LBUTTON;
  296. case OBS_KEY_MOUSE2: return VK_RBUTTON;
  297. case OBS_KEY_MOUSE3: return VK_MBUTTON;
  298. case OBS_KEY_MOUSE4: return VK_XBUTTON1;
  299. case OBS_KEY_MOUSE5: return VK_XBUTTON2;
  300. /* TODO: Implement keys for non-US keyboards */
  301. default:;
  302. }
  303. return 0;
  304. }
  305. bool obs_hotkeys_platform_init(struct obs_core_hotkeys *hotkeys)
  306. {
  307. hotkeys->platform_context = bzalloc(sizeof(obs_hotkeys_platform_t));
  308. for (size_t i = 0; i < OBS_KEY_LAST_VALUE; i++)
  309. hotkeys->platform_context->vk_codes[i] = get_virtual_key(i);
  310. return true;
  311. }
  312. void obs_hotkeys_platform_free(struct obs_core_hotkeys *hotkeys)
  313. {
  314. bfree(hotkeys->platform_context);
  315. hotkeys->platform_context = NULL;
  316. }
  317. static bool vk_down(DWORD vk)
  318. {
  319. short state = GetAsyncKeyState(vk);
  320. bool down = (state & 0x8000) != 0;
  321. return down;
  322. }
  323. bool obs_hotkeys_platform_is_pressed(obs_hotkeys_platform_t *context,
  324. obs_key_t key)
  325. {
  326. if (key == OBS_KEY_META) {
  327. return vk_down(VK_LWIN) || vk_down(VK_RWIN);
  328. }
  329. UNUSED_PARAMETER(context);
  330. return vk_down(obs_key_to_virtual_key(key));
  331. }
  332. void obs_key_to_str(obs_key_t key, struct dstr *str)
  333. {
  334. wchar_t name[128] = L"";
  335. UINT scan_code;
  336. int vk;
  337. if (key == OBS_KEY_NONE) {
  338. return;
  339. } else if (key >= OBS_KEY_MOUSE1 && key <= OBS_KEY_MOUSE29) {
  340. if (obs->hotkeys.translations[key]) {
  341. dstr_copy(str, obs->hotkeys.translations[key]);
  342. } else {
  343. dstr_printf(str, "Mouse %d",
  344. (int)(key - OBS_KEY_MOUSE1 + 1));
  345. }
  346. return;
  347. } if (key == OBS_KEY_PAUSE) {
  348. dstr_copy(str, obs_get_hotkey_translation(key, "Pause"));
  349. return;
  350. } else if (key == OBS_KEY_META) {
  351. dstr_copy(str, obs_get_hotkey_translation(key, "Windows"));
  352. return;
  353. }
  354. vk = obs_key_to_virtual_key(key);
  355. scan_code = MapVirtualKey(vk, 0) << 16;
  356. switch (vk) {
  357. case VK_HOME:
  358. case VK_END:
  359. case VK_LEFT:
  360. case VK_UP:
  361. case VK_RIGHT:
  362. case VK_DOWN:
  363. case VK_PRIOR:
  364. case VK_NEXT:
  365. case VK_INSERT:
  366. case VK_DELETE:
  367. case VK_NUMLOCK:
  368. scan_code |= 0x01000000;
  369. }
  370. if (scan_code != 0 && GetKeyNameTextW(scan_code, name, 128) != 0) {
  371. dstr_from_wcs(str, name);
  372. } else if (key != OBS_KEY_NONE) {
  373. dstr_copy(str, obs_key_to_name(key));
  374. }
  375. }
  376. obs_key_t obs_key_from_virtual_key(int code)
  377. {
  378. obs_hotkeys_platform_t *platform = obs->hotkeys.platform_context;
  379. for (size_t i = 0; i < OBS_KEY_LAST_VALUE; i++) {
  380. if (platform->vk_codes[i] == code) {
  381. return (obs_key_t)i;
  382. }
  383. }
  384. return OBS_KEY_NONE;
  385. }
  386. int obs_key_to_virtual_key(obs_key_t key)
  387. {
  388. if (key == OBS_KEY_META)
  389. return VK_LWIN;
  390. return obs->hotkeys.platform_context->vk_codes[(int)key];
  391. }
  392. static inline void add_combo_key(obs_key_t key, struct dstr *str)
  393. {
  394. struct dstr key_str = {0};
  395. obs_key_to_str(key, &key_str);
  396. if (!dstr_is_empty(&key_str)) {
  397. if (!dstr_is_empty(str)) {
  398. dstr_cat(str, " + ");
  399. }
  400. dstr_cat_dstr(str, &key_str);
  401. }
  402. dstr_free(&key_str);
  403. }
  404. void obs_key_combination_to_str(obs_key_combination_t combination,
  405. struct dstr *str)
  406. {
  407. if ((combination.modifiers & INTERACT_CONTROL_KEY) != 0) {
  408. add_combo_key(OBS_KEY_CONTROL, str);
  409. }
  410. if ((combination.modifiers & INTERACT_COMMAND_KEY) != 0) {
  411. add_combo_key(OBS_KEY_META, str);
  412. }
  413. if ((combination.modifiers & INTERACT_ALT_KEY) != 0) {
  414. add_combo_key(OBS_KEY_ALT, str);
  415. }
  416. if ((combination.modifiers & INTERACT_SHIFT_KEY) != 0) {
  417. add_combo_key(OBS_KEY_SHIFT, str);
  418. }
  419. if (combination.key != OBS_KEY_NONE) {
  420. add_combo_key(combination.key, str);
  421. }
  422. }
  423. bool sym_initialize_called = false;
  424. void reset_win32_symbol_paths(void)
  425. {
  426. static BOOL (WINAPI *sym_initialize_w)(HANDLE, const wchar_t*, BOOL);
  427. static BOOL (WINAPI *sym_set_search_path_w)(HANDLE, const wchar_t*);
  428. static bool funcs_initialized = false;
  429. static bool initialize_success = false;
  430. struct obs_module *module = obs->first_module;
  431. struct dstr path_str = {0};
  432. DARRAY(char*) paths;
  433. wchar_t *path_str_w = NULL;
  434. char *abspath;
  435. da_init(paths);
  436. if (!funcs_initialized) {
  437. HMODULE mod;
  438. funcs_initialized = true;
  439. mod = LoadLibraryW(L"DbgHelp");
  440. if (!mod)
  441. return;
  442. sym_initialize_w = (void*)GetProcAddress(mod, "SymInitializeW");
  443. sym_set_search_path_w = (void*)GetProcAddress(mod,
  444. "SymSetSearchPathW");
  445. if (!sym_initialize_w || !sym_set_search_path_w)
  446. return;
  447. initialize_success = true;
  448. }
  449. if (!initialize_success)
  450. return;
  451. abspath = os_get_abs_path_ptr(".");
  452. if (abspath)
  453. da_push_back(paths, &abspath);
  454. while (module) {
  455. bool found = false;
  456. struct dstr path = {0};
  457. char *path_end;
  458. dstr_copy(&path, module->bin_path);
  459. dstr_replace(&path, "/", "\\");
  460. path_end = strrchr(path.array, '\\');
  461. if (!path_end) {
  462. module = module->next;
  463. dstr_free(&path);
  464. continue;
  465. }
  466. *path_end = 0;
  467. for (size_t i = 0; i < paths.num; i++) {
  468. const char *existing_path = paths.array[i];
  469. if (astrcmpi(path.array, existing_path) == 0) {
  470. found = true;
  471. break;
  472. }
  473. }
  474. if (!found) {
  475. abspath = os_get_abs_path_ptr(path.array);
  476. if (abspath)
  477. da_push_back(paths, &abspath);
  478. }
  479. dstr_free(&path);
  480. module = module->next;
  481. }
  482. for (size_t i = 0; i < paths.num; i++) {
  483. const char *path = paths.array[i];
  484. if (path && *path) {
  485. if (i != 0)
  486. dstr_cat(&path_str, ";");
  487. dstr_cat(&path_str, paths.array[i]);
  488. }
  489. }
  490. if (path_str.array) {
  491. os_utf8_to_wcs_ptr(path_str.array, path_str.len, &path_str_w);
  492. if (path_str_w) {
  493. if (!sym_initialize_called) {
  494. sym_initialize_w(GetCurrentProcess(),
  495. path_str_w, false);
  496. sym_initialize_called = true;
  497. } else {
  498. sym_set_search_path_w(GetCurrentProcess(),
  499. path_str_w);
  500. }
  501. bfree(path_str_w);
  502. }
  503. }
  504. for (size_t i = 0; i < paths.num; i++)
  505. bfree(paths.array[i]);
  506. dstr_free(&path_str);
  507. da_free(paths);
  508. }
  509. void initialize_com(void)
  510. {
  511. CoInitializeEx(0, COINIT_MULTITHREADED);
  512. }
  513. void uninitialize_com(void)
  514. {
  515. CoUninitialize();
  516. }