2019-08-26 13:01:45 -04: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/>. */
|
|
|
|
|
2024-05-03 01:29:57 +03:00
|
|
|
#ifndef SETTINGS_PARSER_INCLUDE_H
|
|
|
|
#define SETTINGS_PARSER_INCLUDE_H
|
2019-08-26 13:01:45 -04:00
|
|
|
|
2024-05-03 01:29:57 +03:00
|
|
|
#include "settings.h"
|
2019-08-26 13:01:45 -04:00
|
|
|
|
2024-04-14 18:41:09 +02:00
|
|
|
//returns game appid
|
2019-08-26 13:01:45 -04:00
|
|
|
uint32 create_localstorage_settings(Settings **settings_client_out, Settings **settings_server_out, Local_Storage **local_storage_out);
|
2024-04-23 02:15:13 +02:00
|
|
|
void save_global_settings(class Local_Storage *local_storage, const char *name, const char *language);
|
2019-08-26 13:01:45 -04:00
|
|
|
|
2024-04-14 18:41:09 +02:00
|
|
|
bool settings_disable_lan_only();
|
|
|
|
|
2024-04-20 01:17:32 +02:00
|
|
|
enum class SettingsItf {
|
|
|
|
CLIENT,
|
|
|
|
GAMESERVER_STATS,
|
|
|
|
GAMESERVER,
|
|
|
|
MATCHMAKING_SERVERS,
|
|
|
|
MATCHMAKING,
|
|
|
|
USER,
|
|
|
|
FRIENDS,
|
|
|
|
UTILS,
|
|
|
|
USER_STATS,
|
|
|
|
APPS,
|
|
|
|
NETWORKING,
|
|
|
|
REMOTE_STORAGE,
|
|
|
|
SCREENSHOTS,
|
|
|
|
HTTP,
|
|
|
|
UNIFIED_MESSAGES,
|
|
|
|
CONTROLLER,
|
|
|
|
UGC,
|
|
|
|
APPLIST,
|
|
|
|
MUSIC,
|
|
|
|
MUSIC_REMOTE,
|
|
|
|
HTML_SURFACE,
|
|
|
|
INVENTORY,
|
|
|
|
VIDEO,
|
|
|
|
MASTERSERVER_UPDATER,
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::map<SettingsItf, std::string>& settings_old_interfaces();
|
|
|
|
|
2024-05-03 01:29:57 +03:00
|
|
|
#endif // SETTINGS_PARSER_INCLUDE_H
|