obs-windows.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  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 void log_processor_cores(void)
  86. {
  87. blog(LOG_INFO, "Physical Cores: %d, Logical Cores: %d",
  88. os_get_physical_cores(), os_get_logical_cores());
  89. }
  90. static void log_available_memory(void)
  91. {
  92. MEMORYSTATUSEX ms;
  93. ms.dwLength = sizeof(ms);
  94. GlobalMemoryStatusEx(&ms);
  95. #ifdef _WIN64
  96. const char *note = "";
  97. #else
  98. const char *note = " (NOTE: 32bit programs cannot use more than 3gb)";
  99. #endif
  100. blog(LOG_INFO, "Physical Memory: %luMB Total, %luMB Free%s",
  101. (DWORD)(ms.ullTotalPhys / 1048576),
  102. (DWORD)(ms.ullAvailPhys / 1048576),
  103. note);
  104. }
  105. static void log_windows_version(void)
  106. {
  107. struct win_version_info ver;
  108. get_win_ver(&ver);
  109. bool b64 = is_64_bit_windows();
  110. const char *windows_bitness = b64 ? "64" : "32";
  111. blog(LOG_INFO, "Windows Version: %d.%d Build %d (revision: %d; %s-bit)",
  112. ver.major, ver.minor, ver.build, ver.revis,
  113. windows_bitness);
  114. }
  115. static void log_admin_status(void)
  116. {
  117. SID_IDENTIFIER_AUTHORITY auth = SECURITY_NT_AUTHORITY;
  118. PSID admin_group;
  119. BOOL success;
  120. success = AllocateAndInitializeSid(&auth, 2,
  121. SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS,
  122. 0, 0, 0, 0, 0, 0, &admin_group);
  123. if (success) {
  124. if (!CheckTokenMembership(NULL, admin_group, &success))
  125. success = false;
  126. FreeSid(admin_group);
  127. }
  128. blog(LOG_INFO, "Running as administrator: %s",
  129. success ? "true" : "false");
  130. }
  131. typedef HRESULT (WINAPI *dwm_is_composition_enabled_t)(BOOL*);
  132. static void log_aero(void)
  133. {
  134. dwm_is_composition_enabled_t composition_enabled = NULL;
  135. const char *aeroMessage = win_ver >= 0x602 ?
  136. " (Aero is always on for windows 8 and above)" : "";
  137. HMODULE dwm = LoadLibraryW(L"dwmapi");
  138. BOOL bComposition = true;
  139. if (!dwm) {
  140. return;
  141. }
  142. composition_enabled = (dwm_is_composition_enabled_t)GetProcAddress(dwm,
  143. "DwmIsCompositionEnabled");
  144. if (!composition_enabled) {
  145. return;
  146. }
  147. composition_enabled(&bComposition);
  148. blog(LOG_INFO, "Aero is %s%s", bComposition ? "Enabled" : "Disabled",
  149. aeroMessage);
  150. }
  151. void log_system_info(void)
  152. {
  153. struct win_version_info ver;
  154. get_win_ver(&ver);
  155. win_ver = (ver.major << 8) | ver.minor;
  156. log_processor_info();
  157. log_processor_cores();
  158. log_available_memory();
  159. log_windows_version();
  160. log_admin_status();
  161. log_aero();
  162. }
  163. struct obs_hotkeys_platform {
  164. int vk_codes[OBS_KEY_LAST_VALUE];
  165. };
  166. static int get_virtual_key(obs_key_t key)
  167. {
  168. switch (key) {
  169. case OBS_KEY_RETURN: return VK_RETURN;
  170. case OBS_KEY_ESCAPE: return VK_ESCAPE;
  171. case OBS_KEY_TAB: return VK_TAB;
  172. case OBS_KEY_BACKTAB: return VK_OEM_BACKTAB;
  173. case OBS_KEY_BACKSPACE: return VK_BACK;
  174. case OBS_KEY_INSERT: return VK_INSERT;
  175. case OBS_KEY_DELETE: return VK_DELETE;
  176. case OBS_KEY_PAUSE: return VK_PAUSE;
  177. case OBS_KEY_PRINT: return VK_SNAPSHOT;
  178. case OBS_KEY_CLEAR: return VK_CLEAR;
  179. case OBS_KEY_HOME: return VK_HOME;
  180. case OBS_KEY_END: return VK_END;
  181. case OBS_KEY_LEFT: return VK_LEFT;
  182. case OBS_KEY_UP: return VK_UP;
  183. case OBS_KEY_RIGHT: return VK_RIGHT;
  184. case OBS_KEY_DOWN: return VK_DOWN;
  185. case OBS_KEY_PAGEUP: return VK_PRIOR;
  186. case OBS_KEY_PAGEDOWN: return VK_NEXT;
  187. case OBS_KEY_SHIFT: return VK_SHIFT;
  188. case OBS_KEY_CONTROL: return VK_CONTROL;
  189. case OBS_KEY_ALT: return VK_MENU;
  190. case OBS_KEY_CAPSLOCK: return VK_CAPITAL;
  191. case OBS_KEY_NUMLOCK: return VK_NUMLOCK;
  192. case OBS_KEY_SCROLLLOCK: return VK_SCROLL;
  193. case OBS_KEY_F1: return VK_F1;
  194. case OBS_KEY_F2: return VK_F2;
  195. case OBS_KEY_F3: return VK_F3;
  196. case OBS_KEY_F4: return VK_F4;
  197. case OBS_KEY_F5: return VK_F5;
  198. case OBS_KEY_F6: return VK_F6;
  199. case OBS_KEY_F7: return VK_F7;
  200. case OBS_KEY_F8: return VK_F8;
  201. case OBS_KEY_F9: return VK_F9;
  202. case OBS_KEY_F10: return VK_F10;
  203. case OBS_KEY_F11: return VK_F11;
  204. case OBS_KEY_F12: return VK_F12;
  205. case OBS_KEY_F13: return VK_F13;
  206. case OBS_KEY_F14: return VK_F14;
  207. case OBS_KEY_F15: return VK_F15;
  208. case OBS_KEY_F16: return VK_F16;
  209. case OBS_KEY_F17: return VK_F17;
  210. case OBS_KEY_F18: return VK_F18;
  211. case OBS_KEY_F19: return VK_F19;
  212. case OBS_KEY_F20: return VK_F20;
  213. case OBS_KEY_F21: return VK_F21;
  214. case OBS_KEY_F22: return VK_F22;
  215. case OBS_KEY_F23: return VK_F23;
  216. case OBS_KEY_F24: return VK_F24;
  217. case OBS_KEY_SPACE: return VK_SPACE;
  218. case OBS_KEY_APOSTROPHE: return VK_OEM_7;
  219. case OBS_KEY_PLUS: return VK_OEM_PLUS;
  220. case OBS_KEY_COMMA: return VK_OEM_COMMA;
  221. case OBS_KEY_MINUS: return VK_OEM_MINUS;
  222. case OBS_KEY_PERIOD: return VK_OEM_PERIOD;
  223. case OBS_KEY_SLASH: return VK_OEM_2;
  224. case OBS_KEY_0: return '0';
  225. case OBS_KEY_1: return '1';
  226. case OBS_KEY_2: return '2';
  227. case OBS_KEY_3: return '3';
  228. case OBS_KEY_4: return '4';
  229. case OBS_KEY_5: return '5';
  230. case OBS_KEY_6: return '6';
  231. case OBS_KEY_7: return '7';
  232. case OBS_KEY_8: return '8';
  233. case OBS_KEY_9: return '9';
  234. case OBS_KEY_NUMASTERISK: return VK_MULTIPLY;
  235. case OBS_KEY_NUMPLUS: return VK_ADD;
  236. case OBS_KEY_NUMMINUS: return VK_SUBTRACT;
  237. case OBS_KEY_NUMPERIOD: return VK_DECIMAL;
  238. case OBS_KEY_NUMSLASH: return VK_DIVIDE;
  239. case OBS_KEY_NUM0: return VK_NUMPAD0;
  240. case OBS_KEY_NUM1: return VK_NUMPAD1;
  241. case OBS_KEY_NUM2: return VK_NUMPAD2;
  242. case OBS_KEY_NUM3: return VK_NUMPAD3;
  243. case OBS_KEY_NUM4: return VK_NUMPAD4;
  244. case OBS_KEY_NUM5: return VK_NUMPAD5;
  245. case OBS_KEY_NUM6: return VK_NUMPAD6;
  246. case OBS_KEY_NUM7: return VK_NUMPAD7;
  247. case OBS_KEY_NUM8: return VK_NUMPAD8;
  248. case OBS_KEY_NUM9: return VK_NUMPAD9;
  249. case OBS_KEY_SEMICOLON: return VK_OEM_1;
  250. case OBS_KEY_A: return 'A';
  251. case OBS_KEY_B: return 'B';
  252. case OBS_KEY_C: return 'C';
  253. case OBS_KEY_D: return 'D';
  254. case OBS_KEY_E: return 'E';
  255. case OBS_KEY_F: return 'F';
  256. case OBS_KEY_G: return 'G';
  257. case OBS_KEY_H: return 'H';
  258. case OBS_KEY_I: return 'I';
  259. case OBS_KEY_J: return 'J';
  260. case OBS_KEY_K: return 'K';
  261. case OBS_KEY_L: return 'L';
  262. case OBS_KEY_M: return 'M';
  263. case OBS_KEY_N: return 'N';
  264. case OBS_KEY_O: return 'O';
  265. case OBS_KEY_P: return 'P';
  266. case OBS_KEY_Q: return 'Q';
  267. case OBS_KEY_R: return 'R';
  268. case OBS_KEY_S: return 'S';
  269. case OBS_KEY_T: return 'T';
  270. case OBS_KEY_U: return 'U';
  271. case OBS_KEY_V: return 'V';
  272. case OBS_KEY_W: return 'W';
  273. case OBS_KEY_X: return 'X';
  274. case OBS_KEY_Y: return 'Y';
  275. case OBS_KEY_Z: return 'Z';
  276. case OBS_KEY_BRACKETLEFT: return VK_OEM_4;
  277. case OBS_KEY_BACKSLASH: return VK_OEM_5;
  278. case OBS_KEY_BRACKETRIGHT: return VK_OEM_6;
  279. case OBS_KEY_ASCIITILDE: return VK_OEM_3;
  280. case OBS_KEY_HENKAN: return VK_CONVERT;
  281. case OBS_KEY_MUHENKAN: return VK_NONCONVERT;
  282. case OBS_KEY_KANJI: return VK_KANJI;
  283. case OBS_KEY_TOUROKU: return VK_OEM_FJ_TOUROKU;
  284. case OBS_KEY_MASSYO: return VK_OEM_FJ_MASSHOU;
  285. case OBS_KEY_HANGUL: return VK_HANGUL;
  286. case OBS_KEY_BACKSLASH_RT102: return VK_OEM_102;
  287. case OBS_KEY_MOUSE1: return VK_LBUTTON;
  288. case OBS_KEY_MOUSE2: return VK_RBUTTON;
  289. case OBS_KEY_MOUSE3: return VK_MBUTTON;
  290. case OBS_KEY_MOUSE4: return VK_XBUTTON1;
  291. case OBS_KEY_MOUSE5: return VK_XBUTTON2;
  292. /* TODO: Implement keys for non-US keyboards */
  293. default:;
  294. }
  295. return 0;
  296. }
  297. bool obs_hotkeys_platform_init(struct obs_core_hotkeys *hotkeys)
  298. {
  299. hotkeys->platform_context = bzalloc(sizeof(obs_hotkeys_platform_t));
  300. for (size_t i = 0; i < OBS_KEY_LAST_VALUE; i++)
  301. hotkeys->platform_context->vk_codes[i] = get_virtual_key(i);
  302. return true;
  303. }
  304. void obs_hotkeys_platform_free(struct obs_core_hotkeys *hotkeys)
  305. {
  306. bfree(hotkeys->platform_context);
  307. hotkeys->platform_context = NULL;
  308. }
  309. static bool vk_down(DWORD vk)
  310. {
  311. short state = GetAsyncKeyState(vk);
  312. bool down = (state & 0x8000) != 0;
  313. return down;
  314. }
  315. bool obs_hotkeys_platform_is_pressed(obs_hotkeys_platform_t *context,
  316. obs_key_t key)
  317. {
  318. if (key == OBS_KEY_META) {
  319. return vk_down(VK_LWIN) || vk_down(VK_RWIN);
  320. }
  321. UNUSED_PARAMETER(context);
  322. return vk_down(obs_key_to_virtual_key(key));
  323. }
  324. void obs_key_to_str(obs_key_t key, struct dstr *str)
  325. {
  326. wchar_t name[128] = L"";
  327. UINT scan_code;
  328. int vk;
  329. if (key == OBS_KEY_NONE) {
  330. return;
  331. } else if (key >= OBS_KEY_MOUSE1 && key <= OBS_KEY_MOUSE29) {
  332. if (obs->hotkeys.translations[key]) {
  333. dstr_copy(str, obs->hotkeys.translations[key]);
  334. } else {
  335. dstr_printf(str, "Mouse %d",
  336. (int)(key - OBS_KEY_MOUSE1 + 1));
  337. }
  338. return;
  339. } if (key == OBS_KEY_PAUSE) {
  340. dstr_copy(str, obs_get_hotkey_translation(key, "Pause"));
  341. return;
  342. } else if (key == OBS_KEY_META) {
  343. dstr_copy(str, obs_get_hotkey_translation(key, "Windows"));
  344. return;
  345. }
  346. vk = obs_key_to_virtual_key(key);
  347. scan_code = MapVirtualKey(vk, 0) << 16;
  348. switch (vk) {
  349. case VK_HOME:
  350. case VK_END:
  351. case VK_LEFT:
  352. case VK_UP:
  353. case VK_RIGHT:
  354. case VK_DOWN:
  355. case VK_PRIOR:
  356. case VK_NEXT:
  357. case VK_INSERT:
  358. case VK_DELETE:
  359. case VK_NUMLOCK:
  360. scan_code |= 0x01000000;
  361. }
  362. if (scan_code != 0 && GetKeyNameTextW(scan_code, name, 128) != 0) {
  363. dstr_from_wcs(str, name);
  364. } else if (key != OBS_KEY_NONE) {
  365. dstr_copy(str, obs_key_to_name(key));
  366. }
  367. }
  368. obs_key_t obs_key_from_virtual_key(int code)
  369. {
  370. obs_hotkeys_platform_t *platform = obs->hotkeys.platform_context;
  371. for (size_t i = 0; i < OBS_KEY_LAST_VALUE; i++) {
  372. if (platform->vk_codes[i] == code) {
  373. return (obs_key_t)i;
  374. }
  375. }
  376. return OBS_KEY_NONE;
  377. }
  378. int obs_key_to_virtual_key(obs_key_t key)
  379. {
  380. if (key == OBS_KEY_META)
  381. return VK_LWIN;
  382. return obs->hotkeys.platform_context->vk_codes[(int)key];
  383. }
  384. static inline void add_combo_key(obs_key_t key, struct dstr *str)
  385. {
  386. struct dstr key_str = {0};
  387. obs_key_to_str(key, &key_str);
  388. if (!dstr_is_empty(&key_str)) {
  389. if (!dstr_is_empty(str)) {
  390. dstr_cat(str, " + ");
  391. }
  392. dstr_cat_dstr(str, &key_str);
  393. }
  394. dstr_free(&key_str);
  395. }
  396. void obs_key_combination_to_str(obs_key_combination_t combination,
  397. struct dstr *str)
  398. {
  399. if ((combination.modifiers & INTERACT_CONTROL_KEY) != 0) {
  400. add_combo_key(OBS_KEY_CONTROL, str);
  401. }
  402. if ((combination.modifiers & INTERACT_COMMAND_KEY) != 0) {
  403. add_combo_key(OBS_KEY_META, str);
  404. }
  405. if ((combination.modifiers & INTERACT_ALT_KEY) != 0) {
  406. add_combo_key(OBS_KEY_ALT, str);
  407. }
  408. if ((combination.modifiers & INTERACT_SHIFT_KEY) != 0) {
  409. add_combo_key(OBS_KEY_SHIFT, str);
  410. }
  411. if (combination.key != OBS_KEY_NONE) {
  412. add_combo_key(combination.key, str);
  413. }
  414. }
  415. bool sym_initialize_called = false;
  416. void reset_win32_symbol_paths(void)
  417. {
  418. static BOOL (WINAPI *sym_initialize_w)(HANDLE, const wchar_t*, BOOL);
  419. static BOOL (WINAPI *sym_set_search_path_w)(HANDLE, const wchar_t*);
  420. static bool funcs_initialized = false;
  421. static bool initialize_success = false;
  422. struct obs_module *module = obs->first_module;
  423. struct dstr path_str = {0};
  424. DARRAY(char*) paths;
  425. wchar_t *path_str_w = NULL;
  426. char *abspath;
  427. da_init(paths);
  428. if (!funcs_initialized) {
  429. HMODULE mod;
  430. funcs_initialized = true;
  431. mod = LoadLibraryW(L"DbgHelp");
  432. if (!mod)
  433. return;
  434. sym_initialize_w = (void*)GetProcAddress(mod, "SymInitializeW");
  435. sym_set_search_path_w = (void*)GetProcAddress(mod,
  436. "SymSetSearchPathW");
  437. if (!sym_initialize_w || !sym_set_search_path_w)
  438. return;
  439. initialize_success = true;
  440. }
  441. if (!initialize_success)
  442. return;
  443. abspath = os_get_abs_path_ptr(".");
  444. if (abspath)
  445. da_push_back(paths, &abspath);
  446. while (module) {
  447. bool found = false;
  448. struct dstr path = {0};
  449. char *path_end;
  450. dstr_copy(&path, module->bin_path);
  451. dstr_replace(&path, "/", "\\");
  452. path_end = strrchr(path.array, '\\');
  453. if (!path_end) {
  454. module = module->next;
  455. dstr_free(&path);
  456. continue;
  457. }
  458. *path_end = 0;
  459. for (size_t i = 0; i < paths.num; i++) {
  460. const char *existing_path = paths.array[i];
  461. if (astrcmpi(path.array, existing_path) == 0) {
  462. found = true;
  463. break;
  464. }
  465. }
  466. if (!found) {
  467. abspath = os_get_abs_path_ptr(path.array);
  468. if (abspath)
  469. da_push_back(paths, &abspath);
  470. }
  471. dstr_free(&path);
  472. module = module->next;
  473. }
  474. for (size_t i = 0; i < paths.num; i++) {
  475. const char *path = paths.array[i];
  476. if (path && *path) {
  477. if (i != 0)
  478. dstr_cat(&path_str, ";");
  479. dstr_cat(&path_str, paths.array[i]);
  480. }
  481. }
  482. if (path_str.array) {
  483. os_utf8_to_wcs_ptr(path_str.array, path_str.len, &path_str_w);
  484. if (path_str_w) {
  485. if (!sym_initialize_called) {
  486. sym_initialize_w(GetCurrentProcess(),
  487. path_str_w, false);
  488. sym_initialize_called = true;
  489. } else {
  490. sym_set_search_path_w(GetCurrentProcess(),
  491. path_str_w);
  492. }
  493. bfree(path_str_w);
  494. }
  495. }
  496. for (size_t i = 0; i < paths.num; i++)
  497. bfree(paths.array[i]);
  498. dstr_free(&path_str);
  499. da_free(paths);
  500. }
  501. void initialize_com(void)
  502. {
  503. CoInitializeEx(0, COINIT_MULTITHREADED);
  504. }
  505. void uninitialize_com(void)
  506. {
  507. CoUninitialize();
  508. }