2019-04-13 18:21:56 +02:00
|
|
|
/* Copyright (C) 2019 Mr Goldberg
|
|
|
|
This file is part of the Goldberg Emulator
|
|
|
|
|
|
|
|
The Goldberg Emulator is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 3 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The Goldberg Emulator is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the Goldberg Emulator; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#ifndef SETTINGS_INCLUDE
|
|
|
|
#define SETTINGS_INCLUDE
|
|
|
|
|
2020-07-16 11:56:24 +02:00
|
|
|
#include "base.h"
|
|
|
|
|
2021-05-31 00:18:19 +02:00
|
|
|
struct IP_PORT;
|
|
|
|
|
2019-04-13 18:21:56 +02:00
|
|
|
struct DLC_entry {
|
|
|
|
AppId_t appID;
|
|
|
|
std::string name;
|
|
|
|
bool available;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Mod_entry {
|
|
|
|
PublishedFileId_t id;
|
|
|
|
std::string title;
|
|
|
|
std::string path;
|
|
|
|
};
|
|
|
|
|
2019-08-04 00:55:08 +02:00
|
|
|
struct Leaderboard_config {
|
|
|
|
enum ELeaderboardSortMethod sort_method;
|
|
|
|
enum ELeaderboardDisplayType display_type;
|
|
|
|
};
|
|
|
|
|
2019-08-26 19:01:45 +02:00
|
|
|
enum Stat_Type {
|
|
|
|
STAT_TYPE_INT,
|
|
|
|
STAT_TYPE_FLOAT,
|
|
|
|
STAT_TYPE_AVGRATE
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Stat_config {
|
|
|
|
enum Stat_Type type;
|
|
|
|
union {
|
|
|
|
float default_value_float;
|
|
|
|
uint32 default_value_int;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-09-07 15:39:41 +02:00
|
|
|
struct Image_Data {
|
|
|
|
uint32 width;
|
|
|
|
uint32 height;
|
|
|
|
std::string data;
|
|
|
|
};
|
|
|
|
|
2019-09-10 20:54:54 +02:00
|
|
|
struct Controller_Settings {
|
2019-09-11 05:58:27 +02:00
|
|
|
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_sets;
|
2019-09-10 20:54:54 +02:00
|
|
|
std::map<std::string, std::string> action_set_layer_parents;
|
|
|
|
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_set_layers;
|
|
|
|
};
|
|
|
|
|
2019-04-13 18:21:56 +02:00
|
|
|
class Settings {
|
|
|
|
CSteamID steam_id;
|
|
|
|
CGameID game_id;
|
|
|
|
std::string name, language;
|
|
|
|
CSteamID lobby_id;
|
|
|
|
|
|
|
|
bool unlockAllDLCs;
|
2019-04-21 22:47:45 +02:00
|
|
|
bool offline;
|
2019-04-13 18:21:56 +02:00
|
|
|
std::vector<struct DLC_entry> DLCs;
|
|
|
|
std::vector<struct Mod_entry> mods;
|
2019-05-09 14:10:03 +02:00
|
|
|
std::map<AppId_t, std::string> app_paths;
|
2019-08-04 00:55:08 +02:00
|
|
|
std::map<std::string, Leaderboard_config> leaderboards;
|
2019-08-26 19:01:45 +02:00
|
|
|
std::map<std::string, Stat_config> stats;
|
2019-08-04 00:55:08 +02:00
|
|
|
bool create_unknown_leaderboards;
|
2019-08-26 19:01:45 +02:00
|
|
|
uint16 port;
|
2019-05-09 14:10:03 +02:00
|
|
|
|
2019-04-13 18:21:56 +02:00
|
|
|
public:
|
2019-04-16 23:58:08 +02:00
|
|
|
#ifdef LOBBY_CONNECT
|
|
|
|
static const bool is_lobby_connect = true;
|
|
|
|
#else
|
|
|
|
static const bool is_lobby_connect = false;
|
|
|
|
#endif
|
2019-04-13 18:21:56 +02:00
|
|
|
static std::string sanitize(std::string name);
|
2019-04-21 22:47:45 +02:00
|
|
|
Settings(CSteamID steam_id, CGameID game_id, std::string name, std::string language, bool offline);
|
2019-04-13 18:21:56 +02:00
|
|
|
CSteamID get_local_steam_id();
|
|
|
|
CGameID get_local_game_id();
|
|
|
|
const char *get_local_name();
|
2022-08-05 08:09:43 +02:00
|
|
|
void set_local_name(char *name);
|
2019-04-13 18:21:56 +02:00
|
|
|
const char *get_language();
|
2022-08-05 08:09:43 +02:00
|
|
|
void set_language(char *language);
|
|
|
|
|
2019-04-13 18:21:56 +02:00
|
|
|
void set_game_id(CGameID game_id);
|
|
|
|
void set_lobby(CSteamID lobby_id);
|
|
|
|
CSteamID get_lobby();
|
2019-04-21 22:47:45 +02:00
|
|
|
bool is_offline() {return offline; }
|
2019-08-26 19:01:45 +02:00
|
|
|
uint16 get_port() {return port;}
|
|
|
|
void set_port(uint16 port) { this->port = port;}
|
2019-04-13 18:21:56 +02:00
|
|
|
|
|
|
|
//DLC stuff
|
|
|
|
void unlockAllDLC(bool value);
|
|
|
|
void addDLC(AppId_t appID, std::string name, bool available);
|
|
|
|
unsigned int DLCCount();
|
|
|
|
bool hasDLC(AppId_t appID);
|
|
|
|
bool getDLC(unsigned int index, AppId_t &appID, bool &available, std::string &name);
|
|
|
|
|
2020-01-31 20:31:29 +01:00
|
|
|
//Depots
|
|
|
|
std::vector<DepotId_t> depots;
|
|
|
|
|
2019-05-09 14:10:03 +02:00
|
|
|
//App Install paths
|
|
|
|
void setAppInstallPath(AppId_t appID, std::string path);
|
|
|
|
std::string getAppInstallPath(AppId_t appID);
|
|
|
|
|
2019-04-13 18:21:56 +02:00
|
|
|
//mod stuff
|
|
|
|
void addMod(PublishedFileId_t id, std::string title, std::string path);
|
|
|
|
Mod_entry getMod(PublishedFileId_t id);
|
|
|
|
bool isModInstalled(PublishedFileId_t id);
|
|
|
|
std::set<PublishedFileId_t> modSet();
|
2019-08-04 00:55:08 +02:00
|
|
|
|
|
|
|
//leaderboards
|
|
|
|
void setLeaderboard(std::string leaderboard, enum ELeaderboardSortMethod sort_method, enum ELeaderboardDisplayType display_type);
|
|
|
|
std::map<std::string, Leaderboard_config> getLeaderboards() { return leaderboards; }
|
|
|
|
void setCreateUnknownLeaderboards(bool enable) {create_unknown_leaderboards = enable;}
|
|
|
|
bool createUnknownLeaderboards() { return create_unknown_leaderboards; }
|
2019-08-26 19:01:45 +02:00
|
|
|
|
|
|
|
//custom broadcasts
|
2021-05-31 00:18:19 +02:00
|
|
|
std::set<IP_PORT> custom_broadcasts;
|
2019-08-26 19:01:45 +02:00
|
|
|
|
|
|
|
//stats
|
|
|
|
std::map<std::string, Stat_config> getStats() { return stats; }
|
2022-07-12 07:09:27 +02:00
|
|
|
void setStatDefiniton(std::string name, struct Stat_config stat_config) {stats[ascii_to_lowercase(name)] = stat_config; }
|
2019-09-07 15:39:41 +02:00
|
|
|
|
2020-06-21 03:15:26 +02:00
|
|
|
//subscribed lobby/group ids
|
|
|
|
std::set<uint64> subscribed_groups;
|
|
|
|
|
2019-09-07 15:39:41 +02:00
|
|
|
//images
|
|
|
|
std::map<int, struct Image_Data> images;
|
|
|
|
int add_image(std::string data, uint32 width, uint32 height);
|
2019-09-10 20:54:54 +02:00
|
|
|
|
|
|
|
//controller
|
|
|
|
struct Controller_Settings controller_settings;
|
2019-12-11 18:06:19 +01:00
|
|
|
std::string glyphs_directory;
|
2019-10-05 21:39:50 +02:00
|
|
|
|
|
|
|
//networking
|
|
|
|
bool disable_networking = false;
|
2020-01-19 18:55:14 +01:00
|
|
|
|
|
|
|
//overlay
|
|
|
|
bool disable_overlay = false;
|
2021-08-07 07:46:10 +02:00
|
|
|
|
|
|
|
//app build id
|
|
|
|
int build_id = 10;
|
|
|
|
|
2022-08-13 20:40:55 +02:00
|
|
|
//supported languages
|
|
|
|
std::set<std::string> supported_languages;
|
|
|
|
|
2021-08-07 07:46:10 +02:00
|
|
|
//make lobby creation fail in the matchmaking interface
|
|
|
|
bool disable_lobby_creation = false;
|
2022-08-05 08:09:43 +02:00
|
|
|
|
|
|
|
//warn people who use force_ settings
|
|
|
|
bool warn_forced = false;
|
|
|
|
|
|
|
|
//warn people who use local save
|
|
|
|
bool warn_local_save = false;
|
2019-04-13 18:21:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|