2020-09-21 16:13:27 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
2020-09-21 16:13:27 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-21 12:25:28 +00:00
|
|
|
// SystemData.h
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
2020-06-21 12:25:28 +00:00
|
|
|
// Provides data structures for the game systems and populates and indexes them based
|
2021-06-16 16:54:04 +00:00
|
|
|
// on the configuration in es_systems.xml as well as the presence of game ROM files.
|
2020-06-21 12:25:28 +00:00
|
|
|
// Also provides functions to read and write to the gamelist files and to handle theme
|
|
|
|
// loading.
|
2020-05-24 08:29:29 +00:00
|
|
|
//
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#ifndef ES_APP_SYSTEM_DATA_H
|
|
|
|
#define ES_APP_SYSTEM_DATA_H
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
#include "PlatformId.h"
|
2020-09-21 17:17:34 +00:00
|
|
|
|
2017-11-01 22:21:10 +00:00
|
|
|
#include <algorithm>
|
2021-06-19 12:09:14 +00:00
|
|
|
#include <map>
|
2017-11-01 22:21:10 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class FileData;
|
|
|
|
class FileFilterIndex;
|
|
|
|
class ThemeData;
|
2017-06-12 16:38:59 +00:00
|
|
|
|
2020-07-10 16:32:23 +00:00
|
|
|
struct SystemEnvironmentData {
|
2020-06-21 12:25:28 +00:00
|
|
|
std::string mStartPath;
|
|
|
|
std::vector<std::string> mSearchExtensions;
|
|
|
|
std::string mLaunchCommand;
|
|
|
|
std::vector<PlatformIds::PlatformId> mPlatformIds;
|
2017-06-12 16:38:59 +00:00
|
|
|
};
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2021-06-19 12:09:14 +00:00
|
|
|
class FindRules
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FindRules();
|
|
|
|
~FindRules();
|
|
|
|
|
|
|
|
void loadFindRules();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct EmulatorRules {
|
2021-06-26 10:00:09 +00:00
|
|
|
#if defined(_WIN64)
|
|
|
|
std::vector<std::string> winRegistryPaths;
|
|
|
|
#endif
|
2021-06-19 12:09:14 +00:00
|
|
|
std::vector<std::string> systemPaths;
|
|
|
|
std::vector<std::string> staticPaths;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CoreRules {
|
|
|
|
std::vector<std::string> corePaths;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::map<std::string, struct EmulatorRules> mEmulators;
|
|
|
|
std::map<std::string, struct CoreRules> mCores;
|
|
|
|
|
|
|
|
friend FileData;
|
|
|
|
};
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
class SystemData
|
|
|
|
{
|
|
|
|
public:
|
2020-07-10 16:32:23 +00:00
|
|
|
SystemData(
|
|
|
|
const std::string& name,
|
2020-06-21 12:25:28 +00:00
|
|
|
const std::string& fullName,
|
|
|
|
SystemEnvironmentData* envData,
|
|
|
|
const std::string& themeFolder,
|
2020-09-21 16:13:27 +00:00
|
|
|
bool CollectionSystem = false,
|
|
|
|
bool CustomCollectionSystem = false);
|
2020-06-21 12:25:28 +00:00
|
|
|
|
|
|
|
~SystemData();
|
|
|
|
|
|
|
|
inline FileData* getRootFolder() const { return mRootFolder; };
|
|
|
|
inline const std::string& getName() const { return mName; }
|
|
|
|
inline const std::string& getFullName() const { return mFullName; }
|
|
|
|
inline const std::string& getStartPath() const { return mEnvData->mStartPath; }
|
|
|
|
inline const std::vector<std::string>& getExtensions() const
|
|
|
|
{ return mEnvData->mSearchExtensions; }
|
|
|
|
inline const std::string& getThemeFolder() const { return mThemeFolder; }
|
|
|
|
inline SystemEnvironmentData* getSystemEnvData() const { return mEnvData; }
|
|
|
|
inline const std::vector<PlatformIds::PlatformId>& getPlatformIds() const
|
|
|
|
{ return mEnvData->mPlatformIds; }
|
|
|
|
inline bool hasPlatformId(PlatformIds::PlatformId id) { if (!mEnvData) return false;
|
|
|
|
return std::find(mEnvData->mPlatformIds.cbegin(), mEnvData->mPlatformIds.cend(), id)
|
|
|
|
!= mEnvData->mPlatformIds.cend(); }
|
|
|
|
|
|
|
|
inline const std::shared_ptr<ThemeData>& getTheme() const { return mTheme; }
|
|
|
|
|
|
|
|
std::string getGamelistPath(bool forWrite) const;
|
|
|
|
bool hasGamelist() const;
|
|
|
|
std::string getThemePath() const;
|
|
|
|
|
2020-09-21 16:13:27 +00:00
|
|
|
std::pair<unsigned int, unsigned int> getDisplayedGameCount() const;
|
2020-06-21 12:25:28 +00:00
|
|
|
bool getScrapeFlag() { return mScrapeFlag; };
|
|
|
|
void setScrapeFlag(bool scrapeflag) { mScrapeFlag = scrapeflag; }
|
|
|
|
|
|
|
|
static void deleteSystems();
|
2021-03-10 17:21:49 +00:00
|
|
|
// Loads the systems configuration file at getConfigPath() and creates the systems.
|
2020-06-21 12:25:28 +00:00
|
|
|
static bool loadConfig();
|
2021-06-16 16:54:04 +00:00
|
|
|
static std::string getConfigPath(bool legacyWarning);
|
2021-03-10 17:21:49 +00:00
|
|
|
|
2021-06-16 16:54:04 +00:00
|
|
|
// Generates the game system directories and information files based on es_systems.xml.
|
2021-03-10 17:21:49 +00:00
|
|
|
static bool createSystemDirectories();
|
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
static std::vector<SystemData*> sSystemVector;
|
2021-06-19 12:09:14 +00:00
|
|
|
static std::unique_ptr<FindRules> sFindRules;
|
2020-06-21 12:25:28 +00:00
|
|
|
|
|
|
|
inline std::vector<SystemData*>::const_iterator getIterator() const
|
|
|
|
{ return std::find(sSystemVector.cbegin(), sSystemVector.cend(), this); };
|
|
|
|
inline std::vector<SystemData*>::const_reverse_iterator getRevIterator() const
|
|
|
|
{ return std::find(sSystemVector.crbegin(), sSystemVector.crend(), this); };
|
|
|
|
inline bool isCollection() { return mIsCollectionSystem; };
|
2020-09-21 16:13:27 +00:00
|
|
|
inline bool isCustomCollection() { return mIsCustomCollectionSystem; };
|
2020-10-30 09:12:15 +00:00
|
|
|
inline bool isGroupedCustomCollection() { return mIsGroupedCustomCollectionSystem; };
|
|
|
|
void setIsGroupedCustomCollection(bool isGroupedCustom)
|
|
|
|
{ mIsGroupedCustomCollectionSystem = isGroupedCustom; };
|
2020-06-21 12:25:28 +00:00
|
|
|
inline bool isGameSystem() { return mIsGameSystem; };
|
|
|
|
|
|
|
|
bool isVisible();
|
|
|
|
|
|
|
|
SystemData* getNext() const;
|
|
|
|
SystemData* getPrev() const;
|
2020-07-28 13:19:54 +00:00
|
|
|
static SystemData* getRandomSystem(const SystemData* currentSystem);
|
|
|
|
FileData* getRandomGame(const FileData* currentGame = nullptr);
|
2021-03-19 17:47:49 +00:00
|
|
|
FileData* getPlaceholder() { return mPlaceholder; };
|
2020-06-21 12:25:28 +00:00
|
|
|
|
2020-11-05 17:18:11 +00:00
|
|
|
void sortSystem(bool reloadGamelist = true, bool jumpToFirstRow = false);
|
2020-09-26 11:03:14 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
// Load or re-load theme.
|
|
|
|
void loadTheme();
|
|
|
|
|
|
|
|
FileFilterIndex* getIndex() { return mFilterIndex; };
|
|
|
|
void onMetaDataSavePoint();
|
2020-07-13 18:13:48 +00:00
|
|
|
void writeMetaData();
|
2020-06-21 12:25:28 +00:00
|
|
|
|
|
|
|
void setupSystemSortType(FileData* mRootFolder);
|
2020-05-24 08:29:29 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
private:
|
2020-06-21 12:25:28 +00:00
|
|
|
bool mIsCollectionSystem;
|
2020-09-21 16:13:27 +00:00
|
|
|
bool mIsCustomCollectionSystem;
|
2020-10-30 09:12:15 +00:00
|
|
|
bool mIsGroupedCustomCollectionSystem;
|
2020-06-21 12:25:28 +00:00
|
|
|
bool mIsGameSystem;
|
|
|
|
bool mScrapeFlag; // Only used by scraper GUI to remember which systems to scrape.
|
|
|
|
std::string mName;
|
|
|
|
std::string mFullName;
|
|
|
|
SystemEnvironmentData* mEnvData;
|
|
|
|
std::string mThemeFolder;
|
|
|
|
std::shared_ptr<ThemeData> mTheme;
|
|
|
|
|
2020-06-21 20:11:29 +00:00
|
|
|
bool populateFolder(FileData* folder);
|
2020-06-21 12:25:28 +00:00
|
|
|
void indexAllGameFilters(const FileData* folder);
|
|
|
|
void setIsGameSystemStatus();
|
|
|
|
|
|
|
|
FileFilterIndex* mFilterIndex;
|
|
|
|
|
|
|
|
FileData* mRootFolder;
|
2021-03-19 17:47:49 +00:00
|
|
|
FileData* mPlaceholder;
|
2014-06-25 16:29:58 +00:00
|
|
|
};
|
2017-10-31 17:12:50 +00:00
|
|
|
|
|
|
|
#endif // ES_APP_SYSTEM_DATA_H
|