2019-11-29 13:46:04 +00:00
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
2020-01-10 03:31:12 +00:00
|
|
|
#include <memory>
|
2019-11-29 13:46:04 +00:00
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <unordered_map>
|
2019-11-30 15:27:01 +00:00
|
|
|
#include <vector>
|
2019-11-29 13:46:04 +00:00
|
|
|
|
|
|
|
class CDImage;
|
2020-01-08 03:37:43 +00:00
|
|
|
class ByteStream;
|
2020-03-12 05:32:19 +00:00
|
|
|
class ProgressCallback;
|
2019-11-29 13:46:04 +00:00
|
|
|
|
2019-12-31 06:17:17 +00:00
|
|
|
class SettingsInterface;
|
|
|
|
|
2020-01-24 04:50:44 +00:00
|
|
|
enum class GameListEntryType
|
2019-11-29 13:46:04 +00:00
|
|
|
{
|
2020-01-24 04:50:44 +00:00
|
|
|
Disc,
|
|
|
|
PSExe
|
|
|
|
};
|
2019-12-04 11:12:50 +00:00
|
|
|
|
2020-01-24 04:50:46 +00:00
|
|
|
struct GameListDatabaseEntry
|
|
|
|
{
|
|
|
|
std::string code;
|
|
|
|
std::string title;
|
2020-03-12 03:51:29 +00:00
|
|
|
DiscRegion region;
|
2020-01-24 04:50:46 +00:00
|
|
|
};
|
|
|
|
|
2020-01-24 04:50:44 +00:00
|
|
|
struct GameListEntry
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
std::string code;
|
|
|
|
std::string title;
|
|
|
|
u64 total_size;
|
|
|
|
u64 last_modified_time;
|
2020-03-12 03:51:29 +00:00
|
|
|
DiscRegion region;
|
2020-01-24 04:50:44 +00:00
|
|
|
GameListEntryType type;
|
|
|
|
};
|
2019-11-30 13:55:05 +00:00
|
|
|
|
2020-01-24 04:50:44 +00:00
|
|
|
class GameList
|
|
|
|
{
|
|
|
|
public:
|
2019-11-30 13:55:05 +00:00
|
|
|
using EntryList = std::vector<GameListEntry>;
|
|
|
|
|
2019-11-29 13:46:04 +00:00
|
|
|
GameList();
|
|
|
|
~GameList();
|
|
|
|
|
2020-01-24 04:50:44 +00:00
|
|
|
static const char* EntryTypeToString(GameListEntryType type);
|
2019-12-04 11:54:14 +00:00
|
|
|
|
2020-01-10 03:31:12 +00:00
|
|
|
/// Returns true if the filename is a PlayStation executable we can inject.
|
|
|
|
static bool IsExeFileName(const char* path);
|
|
|
|
|
2020-04-16 14:29:56 +00:00
|
|
|
/// Returns true if the filename is a Portable Sound Format file we can uncompress/load.
|
|
|
|
static bool IsPsfFileName(const char* path);
|
|
|
|
|
2019-11-29 13:46:04 +00:00
|
|
|
static std::string GetGameCodeForImage(CDImage* cdi);
|
|
|
|
static std::string GetGameCodeForPath(const char* image_path);
|
2020-03-12 03:51:29 +00:00
|
|
|
static DiscRegion GetRegionForCode(std::string_view code);
|
|
|
|
static DiscRegion GetRegionFromSystemArea(CDImage* cdi);
|
|
|
|
static DiscRegion GetRegionForImage(CDImage* cdi);
|
|
|
|
static std::optional<DiscRegion> GetRegionForPath(const char* image_path);
|
2020-01-24 04:50:46 +00:00
|
|
|
static std::string_view GetTitleForPath(const char* path);
|
2019-11-29 13:46:04 +00:00
|
|
|
|
2019-11-30 13:55:05 +00:00
|
|
|
const EntryList& GetEntries() const { return m_entries; }
|
2019-11-30 15:27:01 +00:00
|
|
|
const u32 GetEntryCount() const { return static_cast<u32>(m_entries.size()); }
|
2019-11-30 13:55:05 +00:00
|
|
|
|
2020-01-24 04:50:44 +00:00
|
|
|
const GameListEntry* GetEntryForPath(const char* path) const;
|
2020-01-24 04:50:46 +00:00
|
|
|
const GameListDatabaseEntry* GetDatabaseEntryForCode(const std::string& code) const;
|
2020-01-24 04:50:44 +00:00
|
|
|
|
2020-01-24 04:51:25 +00:00
|
|
|
const std::string& GetCacheFilename() const { return m_cache_filename; }
|
|
|
|
const std::string& GetDatabaseFilename() const { return m_database_filename; }
|
|
|
|
|
2020-01-24 04:51:09 +00:00
|
|
|
void SetCacheFilename(std::string filename) { m_cache_filename = std::move(filename); }
|
|
|
|
void SetDatabaseFilename(std::string filename) { m_database_filename = std::move(filename); }
|
|
|
|
void SetSearchDirectoriesFromSettings(SettingsInterface& si);
|
2020-01-24 04:51:12 +00:00
|
|
|
|
|
|
|
bool IsDatabasePresent() const;
|
|
|
|
|
2019-12-31 06:17:17 +00:00
|
|
|
void AddDirectory(std::string path, bool recursive);
|
2020-03-12 05:32:19 +00:00
|
|
|
void Refresh(bool invalidate_cache, bool invalidate_database, ProgressCallback* progress = nullptr);
|
2019-11-30 13:55:05 +00:00
|
|
|
|
2019-11-29 13:46:04 +00:00
|
|
|
private:
|
2020-01-08 03:37:43 +00:00
|
|
|
enum : u32
|
|
|
|
{
|
|
|
|
GAME_LIST_CACHE_SIGNATURE = 0x45434C47,
|
2020-04-16 11:42:09 +00:00
|
|
|
GAME_LIST_CACHE_VERSION = 4
|
2020-01-08 03:37:43 +00:00
|
|
|
};
|
|
|
|
|
2020-01-24 04:50:46 +00:00
|
|
|
using DatabaseMap = std::unordered_map<std::string, GameListDatabaseEntry>;
|
2020-01-24 04:50:44 +00:00
|
|
|
using CacheMap = std::unordered_map<std::string, GameListEntry>;
|
|
|
|
|
2019-12-31 06:17:17 +00:00
|
|
|
struct DirectoryEntry
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
bool recursive;
|
|
|
|
};
|
|
|
|
|
2020-01-24 04:50:44 +00:00
|
|
|
class RedumpDatVisitor;
|
|
|
|
|
2019-12-04 11:12:50 +00:00
|
|
|
static bool GetExeListEntry(const char* path, GameListEntry* entry);
|
2019-11-29 13:46:04 +00:00
|
|
|
|
2020-01-08 03:37:43 +00:00
|
|
|
bool GetGameListEntry(const std::string& path, GameListEntry* entry);
|
|
|
|
bool GetGameListEntryFromCache(const std::string& path, GameListEntry* entry);
|
2020-03-12 05:32:19 +00:00
|
|
|
void ScanDirectory(const char* path, bool recursive, ProgressCallback* progress);
|
2019-11-29 13:46:04 +00:00
|
|
|
|
2020-01-08 03:37:43 +00:00
|
|
|
void LoadCache();
|
|
|
|
bool LoadEntriesFromCache(ByteStream* stream);
|
|
|
|
bool OpenCacheForWriting();
|
|
|
|
bool WriteEntryToCache(const GameListEntry* entry, ByteStream* stream);
|
2020-04-25 05:23:36 +00:00
|
|
|
void FlushCacheFileStream();
|
2020-01-08 03:37:43 +00:00
|
|
|
void CloseCacheFileStream();
|
|
|
|
void DeleteCacheFile();
|
|
|
|
|
|
|
|
void LoadDatabase();
|
|
|
|
void ClearDatabase();
|
|
|
|
|
2019-11-30 13:55:05 +00:00
|
|
|
DatabaseMap m_database;
|
|
|
|
EntryList m_entries;
|
2020-01-08 03:37:43 +00:00
|
|
|
CacheMap m_cache_map;
|
2020-01-10 03:31:12 +00:00
|
|
|
std::unique_ptr<ByteStream> m_cache_write_stream;
|
2019-12-31 06:17:17 +00:00
|
|
|
|
|
|
|
std::vector<DirectoryEntry> m_search_directories;
|
2020-01-08 03:37:43 +00:00
|
|
|
std::string m_cache_filename;
|
|
|
|
std::string m_database_filename;
|
|
|
|
bool m_database_load_tried = false;
|
2019-11-29 13:46:04 +00:00
|
|
|
};
|