| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- #include <stdlib.h>
- #include <util/dstr.h>
- #include "dc-capture.h"
- #include "window-helpers.h"
- /* clang-format off */
- #define TEXT_WINDOW_CAPTURE obs_module_text("WindowCapture")
- #define TEXT_WINDOW obs_module_text("WindowCapture.Window")
- #define TEXT_MATCH_PRIORITY obs_module_text("WindowCapture.Priority")
- #define TEXT_MATCH_TITLE obs_module_text("WindowCapture.Priority.Title")
- #define TEXT_MATCH_CLASS obs_module_text("WindowCapture.Priority.Class")
- #define TEXT_MATCH_EXE obs_module_text("WindowCapture.Priority.Exe")
- #define TEXT_CAPTURE_CURSOR obs_module_text("CaptureCursor")
- #define TEXT_COMPATIBILITY obs_module_text("Compatibility")
- /* clang-format on */
- struct window_capture {
- obs_source_t *source;
- char *title;
- char *class;
- char *executable;
- enum window_priority priority;
- bool cursor;
- bool compatibility;
- bool use_wildcards; /* TODO */
- struct dc_capture capture;
- float resize_timer;
- float check_window_timer;
- float cursor_check_time;
- HWND window;
- RECT last_rect;
- };
- static void update_settings(struct window_capture *wc, obs_data_t *s)
- {
- const char *window = obs_data_get_string(s, "window");
- int priority = (int)obs_data_get_int(s, "priority");
- bfree(wc->title);
- bfree(wc->class);
- bfree(wc->executable);
- build_window_strings(window, &wc->class, &wc->title, &wc->executable);
- if (wc->title != NULL) {
- blog(LOG_INFO,
- "[window-capture: '%s'] update settings:\n"
- "\texecutable: %s",
- obs_source_get_name(wc->source), wc->executable);
- blog(LOG_DEBUG, "\tclass: %s", wc->class);
- }
- wc->priority = (enum window_priority)priority;
- wc->cursor = obs_data_get_bool(s, "cursor");
- wc->use_wildcards = obs_data_get_bool(s, "use_wildcards");
- wc->compatibility = obs_data_get_bool(s, "compatibility");
- }
- /* ------------------------------------------------------------------------- */
- static const char *wc_getname(void *unused)
- {
- UNUSED_PARAMETER(unused);
- return TEXT_WINDOW_CAPTURE;
- }
- static void *wc_create(obs_data_t *settings, obs_source_t *source)
- {
- struct window_capture *wc = bzalloc(sizeof(struct window_capture));
- wc->source = source;
- update_settings(wc, settings);
- return wc;
- }
- static void wc_destroy(void *data)
- {
- struct window_capture *wc = data;
- if (wc) {
- obs_enter_graphics();
- dc_capture_free(&wc->capture);
- obs_leave_graphics();
- bfree(wc->title);
- bfree(wc->class);
- bfree(wc->executable);
- bfree(wc);
- }
- }
- static void wc_update(void *data, obs_data_t *settings)
- {
- struct window_capture *wc = data;
- update_settings(wc, settings);
- /* forces a reset */
- wc->window = NULL;
- }
- static uint32_t wc_width(void *data)
- {
- struct window_capture *wc = data;
- return wc->capture.width;
- }
- static uint32_t wc_height(void *data)
- {
- struct window_capture *wc = data;
- return wc->capture.height;
- }
- static void wc_defaults(obs_data_t *defaults)
- {
- obs_data_set_default_bool(defaults, "cursor", true);
- obs_data_set_default_bool(defaults, "compatibility", false);
- }
- static obs_properties_t *wc_properties(void *unused)
- {
- UNUSED_PARAMETER(unused);
- obs_properties_t *ppts = obs_properties_create();
- obs_property_t *p;
- p = obs_properties_add_list(ppts, "window", TEXT_WINDOW,
- OBS_COMBO_TYPE_LIST,
- OBS_COMBO_FORMAT_STRING);
- fill_window_list(p, EXCLUDE_MINIMIZED, NULL);
- p = obs_properties_add_list(ppts, "priority", TEXT_MATCH_PRIORITY,
- OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT);
- obs_property_list_add_int(p, TEXT_MATCH_TITLE, WINDOW_PRIORITY_TITLE);
- obs_property_list_add_int(p, TEXT_MATCH_CLASS, WINDOW_PRIORITY_CLASS);
- obs_property_list_add_int(p, TEXT_MATCH_EXE, WINDOW_PRIORITY_EXE);
- obs_properties_add_bool(ppts, "cursor", TEXT_CAPTURE_CURSOR);
- obs_properties_add_bool(ppts, "compatibility", TEXT_COMPATIBILITY);
- return ppts;
- }
- #define RESIZE_CHECK_TIME 0.2f
- #define CURSOR_CHECK_TIME 0.2f
- static void wc_tick(void *data, float seconds)
- {
- struct window_capture *wc = data;
- RECT rect;
- bool reset_capture = false;
- if (!obs_source_showing(wc->source))
- return;
- if (!wc->window || !IsWindow(wc->window)) {
- if (!wc->title && !wc->class)
- return;
- wc->check_window_timer += seconds;
- if (wc->check_window_timer < 1.0f) {
- if (wc->capture.valid)
- dc_capture_free(&wc->capture);
- return;
- }
- wc->check_window_timer = 0.0f;
- wc->window = find_window(EXCLUDE_MINIMIZED, wc->priority,
- wc->class, wc->title, wc->executable);
- if (!wc->window) {
- if (wc->capture.valid)
- dc_capture_free(&wc->capture);
- return;
- }
- reset_capture = true;
- } else if (IsIconic(wc->window)) {
- return;
- }
- wc->cursor_check_time += seconds;
- if (wc->cursor_check_time > CURSOR_CHECK_TIME) {
- DWORD foreground_pid, target_pid;
- // Can't just compare the window handle in case of app with child windows
- if (!GetWindowThreadProcessId(GetForegroundWindow(),
- &foreground_pid))
- foreground_pid = 0;
- if (!GetWindowThreadProcessId(wc->window, &target_pid))
- target_pid = 0;
- if (foreground_pid && target_pid &&
- foreground_pid != target_pid)
- wc->capture.cursor_hidden = true;
- else
- wc->capture.cursor_hidden = false;
- wc->cursor_check_time = 0.0f;
- }
- obs_enter_graphics();
- GetClientRect(wc->window, &rect);
- if (!reset_capture) {
- wc->resize_timer += seconds;
- if (wc->resize_timer >= RESIZE_CHECK_TIME) {
- if (rect.bottom != wc->last_rect.bottom ||
- rect.right != wc->last_rect.right)
- reset_capture = true;
- wc->resize_timer = 0.0f;
- }
- }
- if (reset_capture) {
- wc->resize_timer = 0.0f;
- wc->last_rect = rect;
- dc_capture_free(&wc->capture);
- dc_capture_init(&wc->capture, 0, 0, rect.right, rect.bottom,
- wc->cursor, wc->compatibility);
- }
- dc_capture_capture(&wc->capture, wc->window);
- obs_leave_graphics();
- }
- static void wc_render(void *data, gs_effect_t *effect)
- {
- struct window_capture *wc = data;
- dc_capture_render(&wc->capture, obs_get_base_effect(OBS_EFFECT_OPAQUE));
- UNUSED_PARAMETER(effect);
- }
- struct obs_source_info window_capture_info = {
- .id = "window_capture",
- .type = OBS_SOURCE_TYPE_INPUT,
- .output_flags = OBS_SOURCE_VIDEO | OBS_SOURCE_CUSTOM_DRAW,
- .get_name = wc_getname,
- .create = wc_create,
- .destroy = wc_destroy,
- .update = wc_update,
- .video_render = wc_render,
- .video_tick = wc_tick,
- .get_width = wc_width,
- .get_height = wc_height,
- .get_defaults = wc_defaults,
- .get_properties = wc_properties,
- .icon_type = OBS_ICON_TYPE_WINDOW_CAPTURE,
- };
|