mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2026-05-07 22:29:19 -05:00
This adds a setting to the global configuration to allow only input when the game is focused. This prevents issues, such as triggering game buttons or service buttons while being tabbed out. Turned off by default. The implementation is not the best, but in the context how these games are structured, the most acceptable. It will keep scanning if the foreground window title fully matches (some games partially match, like FGO because due to the revision number in the title), and if found, will grab the HWND of that window and compare that from then on, to not tank performance due to constant string operations. Tested with FGO, chusan and ongeki. Reviewed-on: https://gitea.tendokyu.moe/TeamTofuShop/segatools/pulls/83 Reviewed-by: Dniel97 <dniel97@noreply.gitea.tendokyu.moe> Co-authored-by: kyoubate-haruka <46010460+kyoubate-haruka@users.noreply.github.com> Co-committed-by: kyoubate-haruka <46010460+kyoubate-haruka@users.noreply.github.com>
8 lines
156 B
C
8 lines
156 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
void fgdet_init(const wchar_t* wnd_title, const bool wnd_partial_match);
|
|
|
|
bool fgdet_in_foreground();
|
|
|
|
void fgdet_poll(); |