2020-06-09 16:00:35 +00:00
|
|
|
#include <vector>
|
2020-04-18 16:02:30 +00:00
|
|
|
#include <string>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "blacklist.h"
|
|
|
|
#include "string_utils.h"
|
|
|
|
#include "file_utils.h"
|
|
|
|
|
|
|
|
static std::string get_proc_name() {
|
2020-12-13 11:30:42 +00:00
|
|
|
// Note: It is possible to use GNU program_invocation_short_name.
|
|
|
|
const std::string proc_name = get_wine_exe_name(/*keep_ext=*/true);
|
|
|
|
if (!proc_name.empty()) {
|
|
|
|
return proc_name;
|
2020-04-18 16:02:30 +00:00
|
|
|
}
|
2021-08-12 10:53:28 +00:00
|
|
|
return get_basename(get_exe_path());
|
2020-04-18 16:02:30 +00:00
|
|
|
}
|
|
|
|
|
2020-11-15 05:58:01 +00:00
|
|
|
static std::vector<std::string> blacklist {
|
|
|
|
"Battle.net.exe",
|
|
|
|
"BethesdaNetLauncher.exe",
|
|
|
|
"EpicGamesLauncher.exe",
|
|
|
|
"IGOProxy.exe",
|
|
|
|
"IGOProxy64.exe",
|
|
|
|
"Origin.exe",
|
|
|
|
"OriginThinSetupInternal.exe",
|
|
|
|
"steam",
|
|
|
|
"steamwebhelper",
|
|
|
|
"gldriverquery",
|
|
|
|
"vulkandriverquery",
|
|
|
|
"Steam.exe",
|
|
|
|
"ffxivlauncher.exe",
|
|
|
|
"ffxivlauncher64.exe",
|
|
|
|
"LeagueClient.exe",
|
|
|
|
"LeagueClientUxRender.exe",
|
|
|
|
"SocialClubHelper.exe",
|
|
|
|
};
|
|
|
|
|
2020-04-18 16:02:30 +00:00
|
|
|
|
2020-11-15 05:58:01 +00:00
|
|
|
static bool check_blacklisted() {
|
2020-04-18 16:02:30 +00:00
|
|
|
std::string proc_name = get_proc_name();
|
|
|
|
bool blacklisted = std::find(blacklist.begin(), blacklist.end(), proc_name) != blacklist.end();
|
2020-05-05 19:37:47 +00:00
|
|
|
|
|
|
|
if(blacklisted) {
|
|
|
|
fprintf(stderr, "INFO: process %s is blacklisted in MangoHud\n", proc_name.c_str());
|
|
|
|
}
|
|
|
|
|
2020-04-18 16:02:30 +00:00
|
|
|
return blacklisted;
|
|
|
|
}
|
|
|
|
|
2020-06-21 11:14:42 +00:00
|
|
|
bool is_blacklisted(bool force_recheck) {
|
2020-04-29 09:18:17 +00:00
|
|
|
static bool blacklisted = check_blacklisted();
|
2020-06-21 11:14:42 +00:00
|
|
|
if (force_recheck)
|
|
|
|
blacklisted = check_blacklisted();
|
2020-04-18 16:02:30 +00:00
|
|
|
return blacklisted;
|
|
|
|
}
|
2020-11-15 05:58:01 +00:00
|
|
|
|
2020-12-26 20:54:59 +00:00
|
|
|
void add_blacklist(const std::string& new_item) {
|
2020-11-19 01:05:14 +00:00
|
|
|
// check if item exits in blacklist before adding new item
|
|
|
|
if(std::find(blacklist.begin(), blacklist.end(), new_item) != blacklist.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-15 05:58:01 +00:00
|
|
|
blacklist.push_back (new_item);
|
|
|
|
is_blacklisted(true);
|
|
|
|
}
|
|
|
|
|
2020-11-19 01:05:14 +00:00
|
|
|
|