* properly implement Steam_Apps::GetAvailableGameLanguages()

* ensure current emu language is inside supported_languages list
This commit is contained in:
otavepto 2024-04-06 07:55:08 +02:00
parent 8576d149d3
commit 0b5d38ae7e
5 changed files with 154 additions and 114 deletions

View File

@ -158,7 +158,7 @@ struct Overlay_Appearance {
else if (str == "bot_center") return NotificationPosition::bot_center; else if (str == "bot_center") return NotificationPosition::bot_center;
else if (str == "bot_right") return NotificationPosition::bot_right; else if (str == "bot_right") return NotificationPosition::bot_right;
PRINT_DEBUG("Invalid position '%s'\n", str.c_str()); PRINT_DEBUG("Invalid position '%s'", str.c_str());
return default_pos; return default_pos;
} }
}; };
@ -179,6 +179,10 @@ class Settings {
std::map<std::string, Stat_config> stats{}; std::map<std::string, Stat_config> stats{};
uint16 port{}; // Listen port, default 47584 uint16 port{}; // Listen port, default 47584
//supported languages
std::set<std::string> supported_languages_set{};
std::string supported_languages{};
public: public:
//Depots //Depots
@ -200,9 +204,6 @@ public:
//app build id //app build id
int build_id = 10; int build_id = 10;
//supported languages
std::set<std::string> supported_languages{};
//make lobby creation fail in the matchmaking interface //make lobby creation fail in the matchmaking interface
bool disable_lobby_creation = false; bool disable_lobby_creation = false;
@ -297,6 +298,10 @@ public:
const char *get_language(); const char *get_language();
void set_language(const char *language); void set_language(const char *language);
void set_supported_languages(const std::set<std::string> &langs);
const std::set<std::string>& get_supported_languages_set() const;
const std::string& get_supported_languages() const;
void set_game_id(CGameID game_id); void set_game_id(CGameID game_id);
void set_lobby(CSteamID lobby_id); void set_lobby(CSteamID lobby_id);
CSteamID get_lobby(); CSteamID get_lobby();

View File

@ -25,7 +25,11 @@ public:
bool BIsLowViolence(); bool BIsLowViolence();
bool BIsCybercafe(); bool BIsCybercafe();
bool BIsVACBanned(); bool BIsVACBanned();
// valid list: https://partner.steamgames.com/doc/store/localization/languages
const char *GetCurrentGameLanguage(); const char *GetCurrentGameLanguage();
// valid list: https://partner.steamgames.com/doc/store/localization/languages
const char *GetAvailableGameLanguages(); const char *GetAvailableGameLanguages();
// only use this member if you need to check ownership of another game related to yours, a demo for example // only use this member if you need to check ownership of another game related to yours, a demo for example

View File

@ -111,6 +111,29 @@ void Settings::set_language(const char *language)
this->language = language; this->language = language;
} }
void Settings::set_supported_languages(const std::set<std::string> &langs)
{
this->supported_languages_set = langs;
this->supported_languages.clear();
auto lang_it = langs.cbegin();
while (langs.cend() != lang_it) {
if (langs.cbegin() == lang_it) this->supported_languages = *lang_it;
else this->supported_languages.append(",").append(*lang_it); // this isn't C#, .append() will change the string!
++lang_it;
}
}
const std::set<std::string>& Settings::get_supported_languages_set() const
{
return this->supported_languages_set;
}
const std::string& Settings::get_supported_languages() const
{
return this->supported_languages;
}
void Settings::set_game_id(CGameID game_id) void Settings::set_game_id(CGameID game_id)
{ {
this->game_id = game_id; this->game_id = game_id;

View File

@ -19,7 +19,7 @@
static void load_custom_broadcasts(std::string broadcasts_filepath, std::set<IP_PORT> &custom_broadcasts) static void load_custom_broadcasts(std::string broadcasts_filepath, std::set<IP_PORT> &custom_broadcasts)
{ {
PRINT_DEBUG("Broadcasts file path: %s\n", broadcasts_filepath.c_str()); PRINT_DEBUG("loading broadcasts file '%s'", broadcasts_filepath.c_str());
std::ifstream broadcasts_file(utf8_decode(broadcasts_filepath)); std::ifstream broadcasts_file(utf8_decode(broadcasts_filepath));
common_helpers::consume_bom(broadcasts_file); common_helpers::consume_bom(broadcasts_file);
if (broadcasts_file.is_open()) { if (broadcasts_file.is_open()) {
@ -33,13 +33,13 @@ static void load_custom_broadcasts(std::string broadcasts_filepath, std::set<IP_
static void load_subscribed_groups_clans(std::string clans_filepath, Settings *settings_client, Settings *settings_server) static void load_subscribed_groups_clans(std::string clans_filepath, Settings *settings_client, Settings *settings_server)
{ {
PRINT_DEBUG("Group clans file path: %s\n", clans_filepath.c_str()); PRINT_DEBUG("loading group clans file '%s'", clans_filepath.c_str());
std::ifstream clans_file(utf8_decode(clans_filepath)); std::ifstream clans_file(utf8_decode(clans_filepath));
if (clans_file.is_open()) { if (clans_file.is_open()) {
common_helpers::consume_bom(clans_file); common_helpers::consume_bom(clans_file);
std::string line; std::string line;
while (std::getline(clans_file, line)) { while (std::getline(clans_file, line)) {
if (line.length() < 0) continue; if (line.length() <= 0) continue;
std::size_t seperator1 = line.find("\t\t"); std::size_t seperator1 = line.find("\t\t");
std::size_t seperator2 = line.rfind("\t\t"); std::size_t seperator2 = line.rfind("\t\t");
@ -65,7 +65,7 @@ static void load_subscribed_groups_clans(std::string clans_filepath, Settings *s
try { try {
settings_client->subscribed_groups_clans.push_back(nclan); settings_client->subscribed_groups_clans.push_back(nclan);
settings_server->subscribed_groups_clans.push_back(nclan); settings_server->subscribed_groups_clans.push_back(nclan);
PRINT_DEBUG("Added clan %s\n", clan_name.c_str()); PRINT_DEBUG("Added clan %s", clan_name.c_str());
} catch (...) {} } catch (...) {}
} }
} }
@ -75,7 +75,7 @@ static void load_overlay_appearance(std::string appearance_filepath, Settings *s
{ {
std::ifstream appearance_file(utf8_decode(appearance_filepath)); std::ifstream appearance_file(utf8_decode(appearance_filepath));
if (appearance_file.is_open()) { if (appearance_file.is_open()) {
PRINT_DEBUG("Parsing overlay appearance file: '%s'\n", appearance_filepath.c_str()); PRINT_DEBUG("Parsing overlay appearance file '%s'", appearance_filepath.c_str());
common_helpers::consume_bom(appearance_file); common_helpers::consume_bom(appearance_file);
std::string line{}; std::string line{};
while (std::getline(appearance_file, line)) { while (std::getline(appearance_file, line)) {
@ -99,7 +99,7 @@ static void load_overlay_appearance(std::string appearance_filepath, Settings *s
continue; continue;
} }
PRINT_DEBUG(" Overlay appearance line '%s'='%s'\n", name.c_str(), value.c_str()); PRINT_DEBUG(" Overlay appearance line '%s'='%s'", name.c_str(), value.c_str());
try { try {
if (name.compare("Font_Override") == 0) { if (name.compare("Font_Override") == 0) {
std::string nfont_override(common_helpers::to_absolute(value, Local_Storage::get_game_settings_path() + "fonts")); std::string nfont_override(common_helpers::to_absolute(value, Local_Storage::get_game_settings_path() + "fonts"));
@ -107,7 +107,7 @@ static void load_overlay_appearance(std::string appearance_filepath, Settings *s
settings_client->overlay_appearance.font_override = nfont_override; settings_client->overlay_appearance.font_override = nfont_override;
settings_server->overlay_appearance.font_override = nfont_override; settings_server->overlay_appearance.font_override = nfont_override;
} else { } else {
PRINT_DEBUG(" ERROR font file '%s' doesn't exist and will be ignored\n", nfont_override.c_str()); PRINT_DEBUG(" ERROR font file '%s' doesn't exist and will be ignored", nfont_override.c_str());
} }
} else if (name.compare("Font_Size") == 0) { } else if (name.compare("Font_Size") == 0) {
float nfont_size = std::stof(value, NULL); float nfont_size = std::stof(value, NULL);
@ -246,7 +246,7 @@ static void load_gamecontroller_settings(Settings *settings)
if ( std::toupper(p[length - 3]) != 'T') continue; if ( std::toupper(p[length - 3]) != 'T') continue;
if (p[length - 4] != '.') continue; if (p[length - 4] != '.') continue;
PRINT_DEBUG("controller config %s\n", p.c_str()); PRINT_DEBUG("controller config %s", p.c_str());
std::string action_set_name = p.substr(0, length - 4); std::string action_set_name = p.substr(0, length - 4);
std::transform(action_set_name.begin(), action_set_name.end(), action_set_name.begin(),[](unsigned char c){ return std::toupper(c); }); std::transform(action_set_name.begin(), action_set_name.end(), action_set_name.begin(),[](unsigned char c){ return std::toupper(c); });
@ -288,11 +288,11 @@ static void load_gamecontroller_settings(Settings *settings)
std::pair<std::set<std::string>, std::string> button_config = {{}, source_mode}; std::pair<std::set<std::string>, std::string> button_config = {{}, source_mode};
split_string(button_name, ',', std::inserter(button_config.first, button_config.first.begin())); split_string(button_name, ',', std::inserter(button_config.first, button_config.first.begin()));
button_pairs[action_name] = button_config; button_pairs[action_name] = button_config;
PRINT_DEBUG("Added %s %s %s\n", action_name.c_str(), button_name.c_str(), source_mode.c_str()); PRINT_DEBUG("Added %s %s %s", action_name.c_str(), button_name.c_str(), source_mode.c_str());
} }
settings->controller_settings.action_sets[action_set_name] = button_pairs; settings->controller_settings.action_sets[action_set_name] = button_pairs;
PRINT_DEBUG("Added %zu action names to %s\n", button_pairs.size(), action_set_name.c_str()); PRINT_DEBUG("Added %zu action names to %s", button_pairs.size(), action_set_name.c_str());
} }
} }
@ -331,7 +331,7 @@ uint32 parse_steam_app_id(std::string &program_path)
std::string str_gameid = get_env_variable("SteamGameId"); std::string str_gameid = get_env_variable("SteamGameId");
std::string str_overlay_gameid = get_env_variable("SteamOverlayGameId"); std::string str_overlay_gameid = get_env_variable("SteamOverlayGameId");
PRINT_DEBUG("str_appid %s str_gameid: %s str_overlay_gameid: %s\n", str_appid.c_str(), str_gameid.c_str(), str_overlay_gameid.c_str()); PRINT_DEBUG("str_appid %s str_gameid: %s str_overlay_gameid: %s", str_appid.c_str(), str_gameid.c_str(), str_overlay_gameid.c_str());
uint32 appid_env = 0; uint32 appid_env = 0;
uint32 gameid_env = 0; uint32 gameid_env = 0;
uint32 overlay_gameid = 0; uint32 overlay_gameid = 0;
@ -360,7 +360,7 @@ uint32 parse_steam_app_id(std::string &program_path)
} }
} }
PRINT_DEBUG("appid_env %u gameid_env: %u overlay_gameid: %u\n", appid_env, gameid_env, overlay_gameid); PRINT_DEBUG("appid_env %u gameid_env: %u overlay_gameid: %u", appid_env, gameid_env, overlay_gameid);
if (appid_env) { if (appid_env) {
appid = appid_env; appid = appid_env;
} }
@ -457,6 +457,7 @@ CSteamID parse_user_steam_id(class Local_Storage *local_storage)
} }
// language.txt // language.txt
// valid list: https://partner.steamgames.com/doc/store/localization/languages
std::string parse_current_language(class Local_Storage *local_storage) std::string parse_current_language(class Local_Storage *local_storage)
{ {
char language[64] = {}; char language[64] = {};
@ -465,18 +466,19 @@ std::string parse_current_language(class Local_Storage *local_storage)
local_storage->store_data_settings("language.txt", language, strlen(language)); local_storage->store_data_settings("language.txt", language, strlen(language));
} }
return std::string(language); return common_helpers::to_lower(std::string(language));
} }
// supported_languages.txt // supported_languages.txt
// valid list: https://partner.steamgames.com/doc/store/localization/languages
std::set<std::string> parse_supported_languages(class Local_Storage *local_storage, std::string &language) std::set<std::string> parse_supported_languages(class Local_Storage *local_storage, std::string &language)
{ {
std::set<std::string> supported_languages; std::set<std::string> supported_languages{};
std::string lang_config_path = Local_Storage::get_game_settings_path() + "supported_languages.txt"; std::string lang_config_path = Local_Storage::get_game_settings_path() + "supported_languages.txt";
std::ifstream input( utf8_decode(lang_config_path) ); std::ifstream input( utf8_decode(lang_config_path) );
std::string first_language; std::string first_language{};
if (input.is_open()) { if (input.is_open()) {
common_helpers::consume_bom(input); common_helpers::consume_bom(input);
for( std::string line; getline( input, line ); ) { for( std::string line; getline( input, line ); ) {
@ -489,19 +491,21 @@ std::set<std::string> parse_supported_languages(class Local_Storage *local_stora
} }
try { try {
std::string lang = line; std::string lang = common_helpers::to_lower(line);
if (!first_language.size()) first_language = lang; if (!first_language.size()) first_language = lang;
supported_languages.insert(lang); supported_languages.insert(lang);
PRINT_DEBUG("Added supported_language %s\n", lang.c_str()); PRINT_DEBUG("Added supported_language %s", lang.c_str());
} catch (...) {} } catch (...) {}
} }
} }
// if the current emu language is not in the supported languages list // if the current emu language is not in the supported languages list
if (!supported_languages.count(language)) { if (!supported_languages.count(language)) {
// and the supported languages list wasn't empty if (first_language.size()) { // get the first supported language if the list wasn't empty
if (first_language.size()) {
language = first_language; language = first_language;
} else { // otherwise just lie and add it then!
supported_languages.insert(language);
PRINT_DEBUG("Forced current language '%s' into supported_languages", language.c_str());
} }
} }
@ -517,7 +521,7 @@ static void parse_dlc(class Settings *settings_client, Settings *settings_server
common_helpers::consume_bom(input); common_helpers::consume_bom(input);
settings_client->unlockAllDLC(false); settings_client->unlockAllDLC(false);
settings_server->unlockAllDLC(false); settings_server->unlockAllDLC(false);
PRINT_DEBUG("Locking all DLC\n"); PRINT_DEBUG("Locking all DLC");
for( std::string line; std::getline( input, line ); ) { for( std::string line; std::getline( input, line ); ) {
if (!line.empty() && line.front() == '#') { if (!line.empty() && line.front() == '#') {
@ -538,7 +542,7 @@ static void parse_dlc(class Settings *settings_client, Settings *settings_server
bool available = true; bool available = true;
if (appid) { if (appid) {
PRINT_DEBUG("Adding DLC: %u|%s| %u\n", appid, name.c_str(), available); PRINT_DEBUG("Adding DLC: %u|%s| %u", appid, name.c_str(), available);
settings_client->addDLC(appid, name, available); settings_client->addDLC(appid, name, available);
settings_server->addDLC(appid, name, available); settings_server->addDLC(appid, name, available);
} }
@ -546,7 +550,7 @@ static void parse_dlc(class Settings *settings_client, Settings *settings_server
} }
} else { } else {
//unlock all DLC //unlock all DLC
PRINT_DEBUG("Unlocking all DLC\n"); PRINT_DEBUG("Unlocking all DLC");
settings_client->unlockAllDLC(true); settings_client->unlockAllDLC(true);
settings_server->unlockAllDLC(true); settings_server->unlockAllDLC(true);
} }
@ -577,11 +581,11 @@ static void parse_app_paths(class Settings *settings_client, Settings *settings_
if (appid) { if (appid) {
if (path.size()) { if (path.size()) {
PRINT_DEBUG("Adding app path: %u|%s|\n", appid, path.c_str()); PRINT_DEBUG("Adding app path: %u|%s|", appid, path.c_str());
settings_client->setAppInstallPath(appid, path); settings_client->setAppInstallPath(appid, path);
settings_server->setAppInstallPath(appid, path); settings_server->setAppInstallPath(appid, path);
} else { } else {
PRINT_DEBUG("Error adding app path for: %u does this path exist? |%s|\n", appid, rel_path.c_str()); PRINT_DEBUG("Error adding app path for: %u does this path exist? |%s|", appid, rel_path.c_str());
} }
} }
} }
@ -622,11 +626,11 @@ static void parse_leaderboards(class Settings *settings_client, Settings *settin
} }
if (leaderboard.size() && sort_method <= k_ELeaderboardSortMethodDescending && display_type <= k_ELeaderboardDisplayTypeTimeMilliSeconds) { if (leaderboard.size() && sort_method <= k_ELeaderboardSortMethodDescending && display_type <= k_ELeaderboardDisplayTypeTimeMilliSeconds) {
PRINT_DEBUG("Adding leaderboard: %s|%u|%u\n", leaderboard.c_str(), sort_method, display_type); PRINT_DEBUG("Adding leaderboard: %s|%u|%u", leaderboard.c_str(), sort_method, display_type);
settings_client->setLeaderboard(leaderboard, (ELeaderboardSortMethod)sort_method, (ELeaderboardDisplayType)display_type); settings_client->setLeaderboard(leaderboard, (ELeaderboardSortMethod)sort_method, (ELeaderboardDisplayType)display_type);
settings_server->setLeaderboard(leaderboard, (ELeaderboardSortMethod)sort_method, (ELeaderboardDisplayType)display_type); settings_server->setLeaderboard(leaderboard, (ELeaderboardSortMethod)sort_method, (ELeaderboardDisplayType)display_type);
} else { } else {
PRINT_DEBUG("Error adding leaderboard for: '%s', are sort method %u or display type %u valid?\n", leaderboard.c_str(), sort_method, display_type); PRINT_DEBUG("Error adding leaderboard for: '%s', are sort method %u or display type %u valid?", leaderboard.c_str(), sort_method, display_type);
} }
} }
} }
@ -681,20 +685,20 @@ static void parse_stats(class Settings *settings_client, Settings *settings_serv
config.type = GameServerStats_Messages::StatInfo::STAT_TYPE_AVGRATE; config.type = GameServerStats_Messages::StatInfo::STAT_TYPE_AVGRATE;
config.default_value_float = std::stof(stat_default_value); config.default_value_float = std::stof(stat_default_value);
} else { } else {
PRINT_DEBUG("Error adding stat %s, type %s isn't valid\n", stat_name.c_str(), stat_type.c_str()); PRINT_DEBUG("Error adding stat %s, type %s isn't valid", stat_name.c_str(), stat_type.c_str());
continue; continue;
} }
} catch (...) { } catch (...) {
PRINT_DEBUG("Error adding stat %s, default value %s isn't valid\n", stat_name.c_str(), stat_default_value.c_str()); PRINT_DEBUG("Error adding stat %s, default value %s isn't valid", stat_name.c_str(), stat_default_value.c_str());
continue; continue;
} }
if (stat_name.size()) { if (stat_name.size()) {
PRINT_DEBUG("Adding stat type: %s|%u|%f|%i\n", stat_name.c_str(), config.type, config.default_value_float, config.default_value_int); PRINT_DEBUG("Adding stat type: %s|%u|%f|%i", stat_name.c_str(), config.type, config.default_value_float, config.default_value_int);
settings_client->setStatDefiniton(stat_name, config); settings_client->setStatDefiniton(stat_name, config);
settings_server->setStatDefiniton(stat_name, config); settings_server->setStatDefiniton(stat_name, config);
} else { } else {
PRINT_DEBUG("Error adding stat for: %s, empty name\n", stat_name.c_str()); PRINT_DEBUG("Error adding stat for: %s, empty name", stat_name.c_str());
} }
} }
} }
@ -721,7 +725,7 @@ static void parse_depots(class Settings *settings_client, Settings *settings_ser
DepotId_t depot_id = std::stoul(line); DepotId_t depot_id = std::stoul(line);
settings_client->depots.push_back(depot_id); settings_client->depots.push_back(depot_id);
settings_server->depots.push_back(depot_id); settings_server->depots.push_back(depot_id);
PRINT_DEBUG("Added depot %u\n", depot_id); PRINT_DEBUG("Added depot %u", depot_id);
} catch (...) {} } catch (...) {}
} }
} }
@ -748,7 +752,7 @@ static void parse_subscribed_groups(class Settings *settings_client, Settings *s
uint64 source_id = std::stoull(line); uint64 source_id = std::stoull(line);
settings_client->subscribed_groups.insert(source_id); settings_client->subscribed_groups.insert(source_id);
settings_server->subscribed_groups.insert(source_id); settings_server->subscribed_groups.insert(source_id);
PRINT_DEBUG("Added source %llu\n", source_id); PRINT_DEBUG("Added source %llu", source_id);
} catch (...) {} } catch (...) {}
} }
} }
@ -763,7 +767,7 @@ static void parse_installed_app_Ids(class Settings *settings_client, Settings *s
if (input.is_open()) { if (input.is_open()) {
settings_client->assume_any_app_installed = false; settings_client->assume_any_app_installed = false;
settings_server->assume_any_app_installed = false; settings_server->assume_any_app_installed = false;
PRINT_DEBUG("Limiting/Locking installed apps\n"); PRINT_DEBUG("Limiting/Locking installed apps");
common_helpers::consume_bom(input); common_helpers::consume_bom(input);
for( std::string line; getline( input, line ); ) { for( std::string line; getline( input, line ); ) {
if (!line.empty() && line[line.length()-1] == '\n') { if (!line.empty() && line[line.length()-1] == '\n') {
@ -778,13 +782,13 @@ static void parse_installed_app_Ids(class Settings *settings_client, Settings *s
AppId_t app_id = std::stoul(line); AppId_t app_id = std::stoul(line);
settings_client->installed_app_ids.insert(app_id); settings_client->installed_app_ids.insert(app_id);
settings_server->installed_app_ids.insert(app_id); settings_server->installed_app_ids.insert(app_id);
PRINT_DEBUG("Added installed app with ID %u\n", app_id); PRINT_DEBUG("Added installed app with ID %u", app_id);
} catch (...) {} } catch (...) {}
} }
} else { } else {
settings_client->assume_any_app_installed = true; settings_client->assume_any_app_installed = true;
settings_server->assume_any_app_installed = true; settings_server->assume_any_app_installed = true;
PRINT_DEBUG("Assuming any app is installed\n"); PRINT_DEBUG("Assuming any app is installed");
} }
} }
@ -802,7 +806,7 @@ static void parse_force_branch_name(class Settings *settings_client, Settings *s
if (!line.empty()) { if (!line.empty()) {
settings_client->current_branch_name = line; settings_client->current_branch_name = line;
settings_server->current_branch_name = line; settings_server->current_branch_name = line;
PRINT_DEBUG("Forcing current branch name to '%s'\n", line.c_str()); PRINT_DEBUG("Forcing current branch name to '%s'", line.c_str());
} }
} }
} }
@ -905,19 +909,19 @@ static void try_parse_mods_file(class Settings *settings_client, Settings *setti
settings_client->addModDetails(newMod.id, newMod); settings_client->addModDetails(newMod.id, newMod);
settings_server->addModDetails(newMod.id, newMod); settings_server->addModDetails(newMod.id, newMod);
PRINT_DEBUG(" parsed mod '%s':\n", std::string(mod.key()).c_str()); PRINT_DEBUG(" parsed mod '%s':", std::string(mod.key()).c_str());
PRINT_DEBUG(" path (will be used for primary file): '%s'\n", newMod.path.c_str()); PRINT_DEBUG(" path (will be used for primary file): '%s'", newMod.path.c_str());
PRINT_DEBUG(" images path (will be used for preview file): '%s'\n", mod_images_fullpath.c_str()); PRINT_DEBUG(" images path (will be used for preview file): '%s'", mod_images_fullpath.c_str());
PRINT_DEBUG(" primary_filename: '%s'\n", newMod.primaryFileName.c_str()); PRINT_DEBUG(" primary_filename: '%s'", newMod.primaryFileName.c_str());
PRINT_DEBUG(" primary_filesize: %i bytes\n", newMod.primaryFileSize); PRINT_DEBUG(" primary_filesize: %i bytes", newMod.primaryFileSize);
PRINT_DEBUG(" primary file handle: %llu\n", settings_client->getMod(newMod.id).handleFile); PRINT_DEBUG(" primary file handle: %llu", settings_client->getMod(newMod.id).handleFile);
PRINT_DEBUG(" preview_filename: '%s'\n", newMod.previewFileName.c_str()); PRINT_DEBUG(" preview_filename: '%s'", newMod.previewFileName.c_str());
PRINT_DEBUG(" preview_filesize: %i bytes\n", newMod.previewFileSize); PRINT_DEBUG(" preview_filesize: %i bytes", newMod.previewFileSize);
PRINT_DEBUG(" preview file handle: %llu\n", settings_client->getMod(newMod.id).handlePreviewFile); PRINT_DEBUG(" preview file handle: %llu", settings_client->getMod(newMod.id).handlePreviewFile);
PRINT_DEBUG(" workshop_item_url: '%s'\n", newMod.workshopItemURL.c_str()); PRINT_DEBUG(" workshop_item_url: '%s'", newMod.workshopItemURL.c_str());
PRINT_DEBUG(" preview_url: '%s'\n", newMod.previewURL.c_str()); PRINT_DEBUG(" preview_url: '%s'", newMod.previewURL.c_str());
} catch (std::exception& e) { } catch (std::exception& e) {
PRINT_DEBUG("MODLOADER ERROR: %s\n", e.what()); PRINT_DEBUG("MODLOADER ERROR: %s", e.what());
} }
} }
} }
@ -967,17 +971,17 @@ static void try_detect_mods_folder(class Settings *settings_client, Settings *se
settings_server->addMod(newMod.id, newMod.title, newMod.path); settings_server->addMod(newMod.id, newMod.title, newMod.path);
settings_client->addModDetails(newMod.id, newMod); settings_client->addModDetails(newMod.id, newMod);
settings_server->addModDetails(newMod.id, newMod); settings_server->addModDetails(newMod.id, newMod);
PRINT_DEBUG(" detected mod '%s':\n", mod_folder.c_str()); PRINT_DEBUG(" detected mod '%s':", mod_folder.c_str());
PRINT_DEBUG(" path (will be used for primary file): '%s'\n", newMod.path.c_str()); PRINT_DEBUG(" path (will be used for primary file): '%s'", newMod.path.c_str());
PRINT_DEBUG(" images path (will be used for preview file): '%s'\n", mod_images_fullpath.c_str()); PRINT_DEBUG(" images path (will be used for preview file): '%s'", mod_images_fullpath.c_str());
PRINT_DEBUG(" primary_filename: '%s'\n", newMod.primaryFileName.c_str()); PRINT_DEBUG(" primary_filename: '%s'", newMod.primaryFileName.c_str());
PRINT_DEBUG(" primary_filesize: %i bytes\n", newMod.primaryFileSize); PRINT_DEBUG(" primary_filesize: %i bytes", newMod.primaryFileSize);
PRINT_DEBUG(" primary file handle: %llu\n", settings_client->getMod(newMod.id).handleFile); PRINT_DEBUG(" primary file handle: %llu", settings_client->getMod(newMod.id).handleFile);
PRINT_DEBUG(" preview_filename: '%s'\n", newMod.previewFileName.c_str()); PRINT_DEBUG(" preview_filename: '%s'", newMod.previewFileName.c_str());
PRINT_DEBUG(" preview_filesize: %i bytes\n", newMod.previewFileSize); PRINT_DEBUG(" preview_filesize: %i bytes", newMod.previewFileSize);
PRINT_DEBUG(" preview file handle: %llu\n", settings_client->getMod(newMod.id).handlePreviewFile); PRINT_DEBUG(" preview file handle: %llu", settings_client->getMod(newMod.id).handlePreviewFile);
PRINT_DEBUG(" workshop_item_url: '%s'\n", newMod.workshopItemURL.c_str()); PRINT_DEBUG(" workshop_item_url: '%s'", newMod.workshopItemURL.c_str());
PRINT_DEBUG(" preview_url: '%s'\n", newMod.previewURL.c_str()); PRINT_DEBUG(" preview_url: '%s'", newMod.previewURL.c_str());
} catch (...) {} } catch (...) {}
} }
} }
@ -989,10 +993,10 @@ static void parse_mods_folder(class Settings *settings_client, Settings *setting
static constexpr auto mods_json_file = "mods.json"; static constexpr auto mods_json_file = "mods.json";
std::string mods_json_path = Local_Storage::get_game_settings_path() + mods_json_file; std::string mods_json_path = Local_Storage::get_game_settings_path() + mods_json_file;
if (local_storage->load_json(mods_json_path, mod_items)) { if (local_storage->load_json(mods_json_path, mod_items)) {
PRINT_DEBUG("Attempting to parse mods.json\n"); PRINT_DEBUG("Attempting to parse mods.json");
try_parse_mods_file(settings_client, settings_server, mod_items, mods_folder); try_parse_mods_file(settings_client, settings_server, mod_items, mods_folder);
} else { // invalid mods.json or doesn't exist } else { // invalid mods.json or doesn't exist
PRINT_DEBUG("Failed to load mods.json, attempting to auto detect mods folder\n"); PRINT_DEBUG("Failed to load mods.json, attempting to auto detect mods folder");
try_detect_mods_folder(settings_client, settings_server, mods_folder); try_detect_mods_folder(settings_client, settings_server, mods_folder);
} }
@ -1085,9 +1089,9 @@ static void parse_crash_printer_location()
if (!line.empty()) { if (!line.empty()) {
auto crash_path = utf8_decode(get_full_program_path() + line); auto crash_path = utf8_decode(get_full_program_path() + line);
if (crash_printer::init(crash_path)) { if (crash_printer::init(crash_path)) {
PRINT_DEBUG("Unhandled crashes will be saved to '%s'\n", line.c_str()); PRINT_DEBUG("Unhandled crashes will be saved to '%s'", line.c_str());
} else { } else {
PRINT_DEBUG("Failed to setup unhandled crash printer with path: '%s'\n", line.c_str()); PRINT_DEBUG("Failed to setup unhandled crash printer with path: '%s'", line.c_str());
} }
} }
} }
@ -1109,13 +1113,13 @@ static void parse_auto_accept_invite(class Settings *settings_client, Settings *
auto friend_id = std::stoull(line); auto friend_id = std::stoull(line);
settings_client->addFriendToOverlayAutoAccept((uint64_t)friend_id); settings_client->addFriendToOverlayAutoAccept((uint64_t)friend_id);
settings_server->addFriendToOverlayAutoAccept((uint64_t)friend_id); settings_server->addFriendToOverlayAutoAccept((uint64_t)friend_id);
PRINT_DEBUG("Auto accepting overlay invitations from user with ID (SteamID64) = %llu\n", friend_id); PRINT_DEBUG("Auto accepting overlay invitations from user with ID (SteamID64) = %llu", friend_id);
} catch (...) {} } catch (...) {}
} }
} }
if (accept_any_invite) { if (accept_any_invite) {
PRINT_DEBUG("Auto accepting any overlay invitation\n"); PRINT_DEBUG("Auto accepting any overlay invitation");
settings_client->acceptAnyOverlayInvites(true); settings_client->acceptAnyOverlayInvites(true);
settings_server->acceptAnyOverlayInvites(true); settings_server->acceptAnyOverlayInvites(true);
} else { } else {
@ -1140,7 +1144,7 @@ static void parse_ip_country(class Settings *settings_client, Settings *settings
std::transform(line.begin(), line.end(), line.begin(), [](char c){ return std::toupper(c); } ); std::transform(line.begin(), line.end(), line.begin(), [](char c){ return std::toupper(c); } );
settings_client->ip_country = line; settings_client->ip_country = line;
settings_server->ip_country = line; settings_server->ip_country = line;
PRINT_DEBUG("Setting IP country to: '%s'\n", line.c_str()); PRINT_DEBUG("Setting IP country to: '%s'", line.c_str());
} }
} }
} }
@ -1161,7 +1165,7 @@ static void parse_overlay_hook_delay_sec(class Settings *settings_client, Settin
if (delay_sec >= 0) { if (delay_sec >= 0) {
settings_client->overlay_hook_delay_sec = delay_sec; settings_client->overlay_hook_delay_sec = delay_sec;
settings_server->overlay_hook_delay_sec = delay_sec; settings_server->overlay_hook_delay_sec = delay_sec;
PRINT_DEBUG("Setting overlay hook delay to %i seconds\n", delay_sec); PRINT_DEBUG("Setting overlay hook delay to %i seconds", delay_sec);
} }
} catch (...) {} } catch (...) {}
} }
@ -1184,7 +1188,7 @@ static void parse_overlay_renderer_detector_timeout_sec(class Settings *settings
if (timeout_sec > 0) { if (timeout_sec > 0) {
settings_client->overlay_renderer_detector_timeout_sec = timeout_sec; settings_client->overlay_renderer_detector_timeout_sec = timeout_sec;
settings_server->overlay_renderer_detector_timeout_sec = timeout_sec; settings_server->overlay_renderer_detector_timeout_sec = timeout_sec;
PRINT_DEBUG("Setting overlay renderer detector timeout to %i seconds\n", timeout_sec); PRINT_DEBUG("Setting overlay renderer detector timeout to %i seconds", timeout_sec);
} }
} catch (...) {} } catch (...) {}
} }
@ -1196,7 +1200,7 @@ uint32 create_localstorage_settings(Settings **settings_client_out, Settings **s
std::string program_path = Local_Storage::get_program_path(); std::string program_path = Local_Storage::get_program_path();
std::string save_path = Local_Storage::get_user_appdata_path(); std::string save_path = Local_Storage::get_user_appdata_path();
PRINT_DEBUG("Current Path %s save_path: %s\n", program_path.c_str(), save_path.c_str()); PRINT_DEBUG("Current Path %s save_path: %s", program_path.c_str(), save_path.c_str());
parse_crash_printer_location(); parse_crash_printer_location();
@ -1204,7 +1208,7 @@ uint32 create_localstorage_settings(Settings **settings_client_out, Settings **s
bool local_save = parse_local_save(program_path, save_path); bool local_save = parse_local_save(program_path, save_path);
PRINT_DEBUG("Set save_path: %s\n", save_path.c_str()); PRINT_DEBUG("Set save_path: %s", save_path.c_str());
Local_Storage *local_storage = new Local_Storage(save_path); Local_Storage *local_storage = new Local_Storage(save_path);
local_storage->setAppId(appid); local_storage->setAppId(appid);
@ -1263,7 +1267,7 @@ uint32 create_localstorage_settings(Settings **settings_client_out, Settings **s
std::vector<std::string> paths = Local_Storage::get_filenames_path(steam_settings_path); std::vector<std::string> paths = Local_Storage::get_filenames_path(steam_settings_path);
for (auto & p: paths) { for (auto & p: paths) {
PRINT_DEBUG("steam settings path %s\n", p.c_str()); PRINT_DEBUG("steam settings path %s", p.c_str());
if (p == "offline.txt") { if (p == "offline.txt") {
steam_offline_mode = true; steam_offline_mode = true;
} else if (p == "steam_deck.txt") { } else if (p == "steam_deck.txt") {
@ -1368,8 +1372,8 @@ uint32 create_localstorage_settings(Settings **settings_client_out, Settings **s
settings_server->disable_account_avatar = disable_account_avatar; settings_server->disable_account_avatar = disable_account_avatar;
settings_client->build_id = build_id; settings_client->build_id = build_id;
settings_server->build_id = build_id; settings_server->build_id = build_id;
settings_client->supported_languages = supported_languages; settings_client->set_supported_languages(supported_languages);
settings_server->supported_languages = supported_languages; settings_server->set_supported_languages(supported_languages);
settings_client->steam_deck = steam_deck_mode; settings_client->steam_deck = steam_deck_mode;
settings_server->steam_deck = steam_deck_mode; settings_server->steam_deck = steam_deck_mode;

View File

@ -30,54 +30,56 @@ Steam_Apps::Steam_Apps(Settings *settings, class SteamCallResults *callback_resu
int Steam_Apps::GetAppData( AppId_t nAppID, const char *pchKey, char *pchValue, int cchValueMax ) int Steam_Apps::GetAppData( AppId_t nAppID, const char *pchKey, char *pchValue, int cchValueMax )
{ {
//TODO //TODO
PRINT_DEBUG("TODO Steam_Apps::GetAppData %u %s\n", nAppID, pchKey); PRINT_DEBUG_TODO();
return 0; return 0;
} }
bool Steam_Apps::BIsSubscribed() bool Steam_Apps::BIsSubscribed()
{ {
PRINT_DEBUG("Steam_Apps::BIsSubscribed\n"); PRINT_DEBUG_ENTRY();
return true; return true;
} }
bool Steam_Apps::BIsLowViolence() bool Steam_Apps::BIsLowViolence()
{ {
PRINT_DEBUG("Steam_Apps::BIsLowViolence\n"); PRINT_DEBUG_ENTRY();
return false; return false;
} }
bool Steam_Apps::BIsCybercafe() bool Steam_Apps::BIsCybercafe()
{ {
PRINT_DEBUG("Steam_Apps::BIsCybercafe\n"); PRINT_DEBUG_ENTRY();
return false; return false;
} }
bool Steam_Apps::BIsVACBanned() bool Steam_Apps::BIsVACBanned()
{ {
PRINT_DEBUG("Steam_Apps::BIsVACBanned\n"); PRINT_DEBUG_ENTRY();
return false; return false;
} }
// valid list: https://partner.steamgames.com/doc/store/localization/languages
const char *Steam_Apps::GetCurrentGameLanguage() const char *Steam_Apps::GetCurrentGameLanguage()
{ {
PRINT_DEBUG("Steam_Apps::GetCurrentGameLanguage\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return settings->get_language(); return settings->get_language();
} }
// Gets a comma separated list of the languages the current app supports.
// valid list: https://partner.steamgames.com/doc/store/localization/languages
const char *Steam_Apps::GetAvailableGameLanguages() const char *Steam_Apps::GetAvailableGameLanguages()
{ {
PRINT_DEBUG("Steam_Apps::GetAvailableGameLanguages\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
//TODO? return settings->get_supported_languages().c_str();
return settings->get_language();
} }
// only use this member if you need to check ownership of another game related to yours, a demo for example // only use this member if you need to check ownership of another game related to yours, a demo for example
bool Steam_Apps::BIsSubscribedApp( AppId_t appID ) bool Steam_Apps::BIsSubscribedApp( AppId_t appID )
{ {
PRINT_DEBUG("Steam_Apps::BIsSubscribedApp %u\n", appID); PRINT_DEBUG("%u", appID);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
if (appID == 0) return true; //I think appid 0 is always owned if (appID == 0) return true; //I think appid 0 is always owned
if (appID == UINT32_MAX) return false; // check Steam_Apps::BIsAppInstalled() if (appID == UINT32_MAX) return false; // check Steam_Apps::BIsAppInstalled()
@ -89,7 +91,7 @@ bool Steam_Apps::BIsSubscribedApp( AppId_t appID )
// Takes AppID of DLC and checks if the user owns the DLC & if the DLC is installed // Takes AppID of DLC and checks if the user owns the DLC & if the DLC is installed
bool Steam_Apps::BIsDlcInstalled( AppId_t appID ) bool Steam_Apps::BIsDlcInstalled( AppId_t appID )
{ {
PRINT_DEBUG("Steam_Apps::BIsDlcInstalled %u\n", appID); PRINT_DEBUG("%u", appID);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
if (appID == 0) return true; if (appID == 0) return true;
if (appID == UINT32_MAX) return false; // check Steam_Apps::BIsAppInstalled() if (appID == UINT32_MAX) return false; // check Steam_Apps::BIsAppInstalled()
@ -105,7 +107,7 @@ bool Steam_Apps::BIsDlcInstalled( AppId_t appID )
// returns the Unix time of the purchase of the app // returns the Unix time of the purchase of the app
uint32 Steam_Apps::GetEarliestPurchaseUnixTime( AppId_t nAppID ) uint32 Steam_Apps::GetEarliestPurchaseUnixTime( AppId_t nAppID )
{ {
PRINT_DEBUG("Steam_Apps::GetEarliestPurchaseUnixTime\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
if (nAppID == 0) return 0; //TODO is this correct? if (nAppID == 0) return 0; //TODO is this correct?
if (nAppID == UINT32_MAX) return 0; // check Steam_Apps::BIsAppInstalled() TODO is this correct? if (nAppID == UINT32_MAX) return 0; // check Steam_Apps::BIsAppInstalled() TODO is this correct?
@ -128,7 +130,7 @@ uint32 Steam_Apps::GetEarliestPurchaseUnixTime( AppId_t nAppID )
// Before using, please ask your Valve technical contact how to package and secure your free weekened // Before using, please ask your Valve technical contact how to package and secure your free weekened
bool Steam_Apps::BIsSubscribedFromFreeWeekend() bool Steam_Apps::BIsSubscribedFromFreeWeekend()
{ {
PRINT_DEBUG("Steam_Apps::BIsSubscribedFromFreeWeekend\n"); PRINT_DEBUG_ENTRY();
return false; return false;
} }
@ -136,7 +138,7 @@ bool Steam_Apps::BIsSubscribedFromFreeWeekend()
// Returns the number of DLC pieces for the running app // Returns the number of DLC pieces for the running app
int Steam_Apps::GetDLCCount() int Steam_Apps::GetDLCCount()
{ {
PRINT_DEBUG("Steam_Apps::GetDLCCount\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return settings->DLCCount(); return settings->DLCCount();
} }
@ -145,7 +147,7 @@ int Steam_Apps::GetDLCCount()
// Returns metadata for DLC by index, of range [0, GetDLCCount()] // Returns metadata for DLC by index, of range [0, GetDLCCount()]
bool Steam_Apps::BGetDLCDataByIndex( int iDLC, AppId_t *pAppID, bool *pbAvailable, char *pchName, int cchNameBufferSize ) bool Steam_Apps::BGetDLCDataByIndex( int iDLC, AppId_t *pAppID, bool *pbAvailable, char *pchName, int cchNameBufferSize )
{ {
PRINT_DEBUG("Steam_Apps::BGetDLCDataByIndex\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
AppId_t appid = k_uAppIdInvalid; AppId_t appid = k_uAppIdInvalid;
bool available = false; bool available = false;
@ -166,14 +168,14 @@ bool Steam_Apps::BGetDLCDataByIndex( int iDLC, AppId_t *pAppID, bool *pbAvailabl
// Install/Uninstall control for optional DLC // Install/Uninstall control for optional DLC
void Steam_Apps::InstallDLC( AppId_t nAppID ) void Steam_Apps::InstallDLC( AppId_t nAppID )
{ {
PRINT_DEBUG("Steam_Apps::InstallDLC\n"); PRINT_DEBUG_ENTRY();
// we lock here because the API is supposed to modify the DLC list // we lock here because the API is supposed to modify the DLC list
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
} }
void Steam_Apps::UninstallDLC( AppId_t nAppID ) void Steam_Apps::UninstallDLC( AppId_t nAppID )
{ {
PRINT_DEBUG("Steam_Apps::UninstallDLC\n"); PRINT_DEBUG_ENTRY();
// we lock here because the API is supposed to modify the DLC list // we lock here because the API is supposed to modify the DLC list
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
} }
@ -208,7 +210,7 @@ static void FillProofOfPurchaseKey( AppProofOfPurchaseKeyResponse_t& data, AppId
// the key is available (which may be immediately). // the key is available (which may be immediately).
void Steam_Apps::RequestAppProofOfPurchaseKey( AppId_t nAppID ) void Steam_Apps::RequestAppProofOfPurchaseKey( AppId_t nAppID )
{ {
PRINT_DEBUG("TODO Steam_Apps::RequestAppProofOfPurchaseKey\n"); PRINT_DEBUG_TODO();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
AppProofOfPurchaseKeyResponse_t data{}; AppProofOfPurchaseKeyResponse_t data{};
@ -232,7 +234,7 @@ void Steam_Apps::RequestAppProofOfPurchaseKey( AppId_t nAppID )
// https://partner.steamgames.com/doc/api/ISteamApps // https://partner.steamgames.com/doc/api/ISteamApps
bool Steam_Apps::GetCurrentBetaName( char *pchName, int cchNameBufferSize ) bool Steam_Apps::GetCurrentBetaName( char *pchName, int cchNameBufferSize )
{ {
PRINT_DEBUG("Steam_Apps::GetCurrentBetaName %p [%i]\n", pchName, cchNameBufferSize); PRINT_DEBUG("%p [%i]", pchName, cchNameBufferSize);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
if (pchName && cchNameBufferSize > settings->current_branch_name.size()) { if (pchName && cchNameBufferSize > settings->current_branch_name.size()) {
memset(pchName, 0, cchNameBufferSize); memset(pchName, 0, cchNameBufferSize);
@ -245,7 +247,7 @@ bool Steam_Apps::GetCurrentBetaName( char *pchName, int cchNameBufferSize )
// signal Steam that game files seems corrupt or missing // signal Steam that game files seems corrupt or missing
bool Steam_Apps::MarkContentCorrupt( bool bMissingFilesOnly ) bool Steam_Apps::MarkContentCorrupt( bool bMissingFilesOnly )
{ {
PRINT_DEBUG("TODO Steam_Apps::MarkContentCorrupt\n"); PRINT_DEBUG_TODO();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
//TODO: warn user //TODO: warn user
return true; return true;
@ -254,7 +256,7 @@ bool Steam_Apps::MarkContentCorrupt( bool bMissingFilesOnly )
// return installed depots in mount order // return installed depots in mount order
uint32 Steam_Apps::GetInstalledDepots( AppId_t appID, DepotId_t *pvecDepots, uint32 cMaxDepots ) uint32 Steam_Apps::GetInstalledDepots( AppId_t appID, DepotId_t *pvecDepots, uint32 cMaxDepots )
{ {
PRINT_DEBUG("Steam_Apps::GetInstalledDepots %u, %u\n", appID, cMaxDepots); PRINT_DEBUG("%u, %u", appID, cMaxDepots);
//TODO not sure about the behavior of this function, I didn't actually test this. //TODO not sure about the behavior of this function, I didn't actually test this.
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
unsigned int count = (unsigned int)settings->depots.size(); unsigned int count = (unsigned int)settings->depots.size();
@ -267,14 +269,14 @@ uint32 Steam_Apps::GetInstalledDepots( AppId_t appID, DepotId_t *pvecDepots, uin
uint32 Steam_Apps::GetInstalledDepots( DepotId_t *pvecDepots, uint32 cMaxDepots ) uint32 Steam_Apps::GetInstalledDepots( DepotId_t *pvecDepots, uint32 cMaxDepots )
{ {
PRINT_DEBUG("Steam_Apps::GetInstalledDepots old\n"); PRINT_DEBUG("old");
return GetInstalledDepots( settings->get_local_game_id().AppID(), pvecDepots, cMaxDepots ); return GetInstalledDepots( settings->get_local_game_id().AppID(), pvecDepots, cMaxDepots );
} }
// returns current app install folder for AppID, returns folder name length // returns current app install folder for AppID, returns folder name length
uint32 Steam_Apps::GetAppInstallDir( AppId_t appID, char *pchFolder, uint32 cchFolderBufferSize ) uint32 Steam_Apps::GetAppInstallDir( AppId_t appID, char *pchFolder, uint32 cchFolderBufferSize )
{ {
PRINT_DEBUG("Steam_Apps::GetAppInstallDir %u %p %u\n", appID, pchFolder, cchFolderBufferSize); PRINT_DEBUG("%u %p %u", appID, pchFolder, cchFolderBufferSize);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
//TODO return real path instead of dll path //TODO return real path instead of dll path
std::string installed_path = settings->getAppInstallPath(appID); std::string installed_path = settings->getAppInstallPath(appID);
@ -282,7 +284,7 @@ uint32 Steam_Apps::GetAppInstallDir( AppId_t appID, char *pchFolder, uint32 cchF
if (installed_path.empty()) { if (installed_path.empty()) {
std::string dll_path = get_full_program_path(); std::string dll_path = get_full_program_path();
std::string current_path = get_current_path(); std::string current_path = get_current_path();
PRINT_DEBUG(" Steam_Apps::GetAppInstallDircurrent dll: '%s', current: '%s'\n", dll_path.c_str(), current_path.c_str()); PRINT_DEBUG(" dll: '%s', current: '%s'", dll_path.c_str(), current_path.c_str());
//Just pick the smallest path, it has the most chances of being the good one //Just pick the smallest path, it has the most chances of being the good one
if (dll_path.size() > current_path.size() && current_path.size()) { if (dll_path.size() > current_path.size() && current_path.size()) {
@ -292,7 +294,7 @@ uint32 Steam_Apps::GetAppInstallDir( AppId_t appID, char *pchFolder, uint32 cchF
} }
} }
PRINT_DEBUG(" Steam_Apps::GetAppInstallDir final path '%s'\n", installed_path.c_str()); PRINT_DEBUG(" final path '%s'", installed_path.c_str());
if (pchFolder && cchFolderBufferSize) { if (pchFolder && cchFolderBufferSize) {
memset(pchFolder, 0, cchFolderBufferSize); memset(pchFolder, 0, cchFolderBufferSize);
installed_path.copy(pchFolder, cchFolderBufferSize - 1); installed_path.copy(pchFolder, cchFolderBufferSize - 1);
@ -306,7 +308,7 @@ uint32 Steam_Apps::GetAppInstallDir( AppId_t appID, char *pchFolder, uint32 cchF
// https://partner.steamgames.com/doc/api/ISteamApps // https://partner.steamgames.com/doc/api/ISteamApps
bool Steam_Apps::BIsAppInstalled( AppId_t appID ) bool Steam_Apps::BIsAppInstalled( AppId_t appID )
{ {
PRINT_DEBUG("Steam_Apps::BIsAppInstalled %u\n", appID); PRINT_DEBUG("%u", appID);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
// "0 Base Goldsource Shared Binaries" // "0 Base Goldsource Shared Binaries"
@ -328,7 +330,7 @@ bool Steam_Apps::BIsAppInstalled( AppId_t appID )
// returns the SteamID of the original owner. If different from current user, it's borrowed // returns the SteamID of the original owner. If different from current user, it's borrowed
CSteamID Steam_Apps::GetAppOwner() CSteamID Steam_Apps::GetAppOwner()
{ {
PRINT_DEBUG("Steam_Apps::GetAppOwner\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return settings->get_local_steam_id(); return settings->get_local_steam_id();
} }
@ -339,7 +341,8 @@ CSteamID Steam_Apps::GetAppOwner()
// but it is advised that you not param names beginning with an underscore for your own features. // but it is advised that you not param names beginning with an underscore for your own features.
const char *Steam_Apps::GetLaunchQueryParam( const char *pchKey ) const char *Steam_Apps::GetLaunchQueryParam( const char *pchKey )
{ {
PRINT_DEBUG("TODO Steam_Apps::GetLaunchQueryParam\n"); PRINT_DEBUG_TODO();
std::lock_guard<std::recursive_mutex> lock(global_mutex);
return ""; return "";
} }
@ -347,7 +350,7 @@ const char *Steam_Apps::GetLaunchQueryParam( const char *pchKey )
// get download progress for optional DLC // get download progress for optional DLC
bool Steam_Apps::GetDlcDownloadProgress( AppId_t nAppID, uint64 *punBytesDownloaded, uint64 *punBytesTotal ) bool Steam_Apps::GetDlcDownloadProgress( AppId_t nAppID, uint64 *punBytesDownloaded, uint64 *punBytesTotal )
{ {
PRINT_DEBUG("Steam_Apps::GetDlcDownloadProgress\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return false; return false;
} }
@ -356,7 +359,7 @@ bool Steam_Apps::GetDlcDownloadProgress( AppId_t nAppID, uint64 *punBytesDownloa
// return the buildid of this app, may change at any time based on backend updates to the game // return the buildid of this app, may change at any time based on backend updates to the game
int Steam_Apps::GetAppBuildId() int Steam_Apps::GetAppBuildId()
{ {
PRINT_DEBUG("Steam_Apps::GetAppBuildId\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return this->settings->build_id; return this->settings->build_id;
} }
@ -368,7 +371,7 @@ int Steam_Apps::GetAppBuildId()
// member is k_uAppIdInvalid (zero). // member is k_uAppIdInvalid (zero).
void Steam_Apps::RequestAllProofOfPurchaseKeys() void Steam_Apps::RequestAllProofOfPurchaseKeys()
{ {
PRINT_DEBUG("TODO Steam_Apps::RequestAllProofOfPurchaseKeys\n"); PRINT_DEBUG_TODO();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
// current app // current app
{ {
@ -403,7 +406,8 @@ void Steam_Apps::RequestAllProofOfPurchaseKeys()
STEAM_CALL_RESULT( FileDetailsResult_t ) STEAM_CALL_RESULT( FileDetailsResult_t )
SteamAPICall_t Steam_Apps::GetFileDetails( const char* pszFileName ) SteamAPICall_t Steam_Apps::GetFileDetails( const char* pszFileName )
{ {
PRINT_DEBUG("Steam_Apps::GetFileDetails %s\n", pszFileName); PRINT_DEBUG("%s", pszFileName);
std::lock_guard<std::recursive_mutex> lock(global_mutex);
FileDetailsResult_t data = {}; FileDetailsResult_t data = {};
//TODO? this function should only return found if file is actually part of the steam depots //TODO? this function should only return found if file is actually part of the steam depots
if (file_exists_(pszFileName)) { if (file_exists_(pszFileName)) {
@ -418,7 +422,6 @@ SteamAPICall_t Steam_Apps::GetFileDetails( const char* pszFileName )
data.m_eResult = k_EResultFileNotFound; data.m_eResult = k_EResultFileNotFound;
} }
std::lock_guard<std::recursive_mutex> lock(global_mutex);
return callback_results->addCallResult(data.k_iCallback, &data, sizeof(data)); return callback_results->addCallResult(data.k_iCallback, &data, sizeof(data));
} }
@ -432,14 +435,15 @@ SteamAPICall_t Steam_Apps::GetFileDetails( const char* pszFileName )
// If game was already running and launched again, the NewUrlLaunchParameters_t will be fired. // If game was already running and launched again, the NewUrlLaunchParameters_t will be fired.
int Steam_Apps::GetLaunchCommandLine( char *pszCommandLine, int cubCommandLine ) int Steam_Apps::GetLaunchCommandLine( char *pszCommandLine, int cubCommandLine )
{ {
PRINT_DEBUG("TODO Steam_Apps::GetLaunchCommandLine\n"); PRINT_DEBUG_TODO();
std::lock_guard<std::recursive_mutex> lock(global_mutex);
return 0; return 0;
} }
// Check if user borrowed this game via Family Sharing, If true, call GetAppOwner() to get the lender SteamID // Check if user borrowed this game via Family Sharing, If true, call GetAppOwner() to get the lender SteamID
bool Steam_Apps::BIsSubscribedFromFamilySharing() bool Steam_Apps::BIsSubscribedFromFamilySharing()
{ {
PRINT_DEBUG("Steam_Apps::BIsSubscribedFromFamilySharing\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return false; return false;
} }
@ -447,7 +451,7 @@ bool Steam_Apps::BIsSubscribedFromFamilySharing()
// check if game is a timed trial with limited playtime // check if game is a timed trial with limited playtime
bool Steam_Apps::BIsTimedTrial( uint32* punSecondsAllowed, uint32* punSecondsPlayed ) bool Steam_Apps::BIsTimedTrial( uint32* punSecondsAllowed, uint32* punSecondsPlayed )
{ {
PRINT_DEBUG("Steam_Apps::BIsTimedTrial\n"); PRINT_DEBUG_ENTRY();
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return false; return false;
} }
@ -455,7 +459,7 @@ bool Steam_Apps::BIsTimedTrial( uint32* punSecondsAllowed, uint32* punSecondsPla
// set current DLC AppID being played (or 0 if none). Allows Steam to track usage of major DLC extensions // set current DLC AppID being played (or 0 if none). Allows Steam to track usage of major DLC extensions
bool Steam_Apps::SetDlcContext( AppId_t nAppID ) bool Steam_Apps::SetDlcContext( AppId_t nAppID )
{ {
PRINT_DEBUG("Steam_Apps::SetDlcContext %u\n", nAppID); PRINT_DEBUG("%u", nAppID);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
return true; return true;
} }