2017-05-26 21:15:04 +00:00
|
|
|
// Copyright (c) 2013- PPSSPP Project.
|
2013-03-30 14:44:10 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program 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 General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
2017-12-10 01:26:26 +00:00
|
|
|
#include <memory>
|
2017-02-27 20:57:46 +00:00
|
|
|
#include <mutex>
|
2017-03-12 16:16:38 +00:00
|
|
|
#include <atomic>
|
2013-03-30 14:44:10 +00:00
|
|
|
|
2013-06-08 15:48:41 +00:00
|
|
|
#include "file/file_util.h"
|
2013-03-30 14:44:10 +00:00
|
|
|
#include "Core/ELF/ParamSFO.h"
|
2016-12-27 21:26:49 +00:00
|
|
|
#include "UI/TextureUtil.h"
|
2013-04-13 20:39:19 +00:00
|
|
|
|
2016-12-25 17:18:19 +00:00
|
|
|
namespace Draw {
|
2016-12-25 20:01:57 +00:00
|
|
|
class DrawContext;
|
2016-12-25 19:54:37 +00:00
|
|
|
class Texture;
|
2016-12-25 17:18:19 +00:00
|
|
|
}
|
2016-03-06 21:16:50 +00:00
|
|
|
class PrioritizedWorkQueue;
|
2014-08-17 19:29:36 +00:00
|
|
|
|
2013-06-08 15:48:41 +00:00
|
|
|
// A GameInfo holds information about a game, and also lets you do things that the VSH
|
|
|
|
// does on the PSP, namely checking for and deleting savedata, and similar things.
|
2013-11-20 13:42:48 +00:00
|
|
|
// Only cares about games that are installed on the current device.
|
2013-06-08 15:48:41 +00:00
|
|
|
|
2015-06-11 18:22:16 +00:00
|
|
|
// A GameInfo object can also represent a piece of savedata.
|
|
|
|
|
2013-12-10 16:23:03 +00:00
|
|
|
// Guessed from GameID, not necessarily accurate
|
|
|
|
enum GameRegion {
|
|
|
|
GAMEREGION_JAPAN,
|
|
|
|
GAMEREGION_USA,
|
|
|
|
GAMEREGION_EUROPE,
|
|
|
|
GAMEREGION_HONGKONG,
|
|
|
|
GAMEREGION_ASIA,
|
|
|
|
GAMEREGION_OTHER,
|
|
|
|
GAMEREGION_MAX,
|
|
|
|
};
|
|
|
|
|
2014-06-22 01:24:21 +00:00
|
|
|
enum GameInfoWantFlags {
|
|
|
|
GAMEINFO_WANTBG = 0x01,
|
|
|
|
GAMEINFO_WANTSIZE = 0x02,
|
2014-06-22 01:38:26 +00:00
|
|
|
GAMEINFO_WANTSND = 0x04,
|
2017-03-26 17:02:34 +00:00
|
|
|
GAMEINFO_WANTBGDATA = 0x08, // Use with WANTBG.
|
2014-06-22 01:24:21 +00:00
|
|
|
};
|
|
|
|
|
2017-03-02 11:29:03 +00:00
|
|
|
class FileLoader;
|
|
|
|
enum class IdentifiedFileType;
|
|
|
|
|
2017-03-26 07:00:57 +00:00
|
|
|
struct GameInfoTex {
|
|
|
|
std::string data;
|
2017-05-18 10:52:03 +00:00
|
|
|
std::unique_ptr<ManagedTexture> texture;
|
2017-03-26 07:00:57 +00:00
|
|
|
// The time at which the Icon and the BG were loaded.
|
|
|
|
// Can be useful to fade them in smoothly once they appear.
|
|
|
|
double timeLoaded = 0.0;
|
2017-03-26 11:07:36 +00:00
|
|
|
std::atomic<bool> dataLoaded{};
|
2017-03-26 07:00:57 +00:00
|
|
|
|
|
|
|
void Clear() {
|
|
|
|
if (!data.empty()) {
|
|
|
|
data.clear();
|
|
|
|
dataLoaded = false;
|
|
|
|
}
|
2017-05-18 10:52:03 +00:00
|
|
|
texture.reset(nullptr);
|
2017-03-26 07:00:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-04-13 19:24:07 +00:00
|
|
|
class GameInfo {
|
|
|
|
public:
|
2017-03-02 11:29:03 +00:00
|
|
|
GameInfo();
|
2014-12-01 07:55:03 +00:00
|
|
|
~GameInfo();
|
2013-06-08 15:48:41 +00:00
|
|
|
|
2015-06-11 18:22:16 +00:00
|
|
|
bool Delete(); // Better be sure what you're doing when calling this.
|
2013-06-08 15:48:41 +00:00
|
|
|
bool DeleteAllSaveData();
|
2015-06-10 06:16:21 +00:00
|
|
|
bool LoadFromPath(const std::string &gamePath);
|
2015-06-12 12:46:34 +00:00
|
|
|
|
2017-12-10 01:26:26 +00:00
|
|
|
std::shared_ptr<FileLoader> GetFileLoader();
|
2015-06-10 06:16:21 +00:00
|
|
|
void DisposeFileLoader();
|
2013-06-08 15:48:41 +00:00
|
|
|
|
|
|
|
u64 GetGameSizeInBytes();
|
|
|
|
u64 GetSaveDataSizeInBytes();
|
2013-10-03 12:44:16 +00:00
|
|
|
u64 GetInstallDataSizeInBytes();
|
2013-06-08 15:48:41 +00:00
|
|
|
|
2013-12-10 16:23:03 +00:00
|
|
|
void ParseParamSFO();
|
2013-06-08 15:48:41 +00:00
|
|
|
|
2013-06-09 10:41:12 +00:00
|
|
|
std::vector<std::string> GetSaveDataDirectories();
|
2013-06-08 15:48:41 +00:00
|
|
|
|
2015-12-24 21:18:46 +00:00
|
|
|
std::string GetTitle();
|
2016-01-23 21:06:58 +00:00
|
|
|
void SetTitle(const std::string &newTitle);
|
2013-06-08 15:48:41 +00:00
|
|
|
|
2013-03-30 14:44:10 +00:00
|
|
|
// Hold this when reading or writing from the GameInfo.
|
|
|
|
// Don't need to hold it when just passing around the pointer,
|
|
|
|
// and obviously also not when creating it and holding the only pointer
|
|
|
|
// to it.
|
2017-02-27 20:57:46 +00:00
|
|
|
std::mutex lock;
|
2013-03-30 14:44:10 +00:00
|
|
|
|
2013-06-09 11:41:15 +00:00
|
|
|
std::string id;
|
|
|
|
std::string id_version;
|
2017-03-02 11:29:03 +00:00
|
|
|
int disc_total = 0;
|
|
|
|
int disc_number = 0;
|
|
|
|
int region = -1;
|
2013-08-10 17:56:47 +00:00
|
|
|
IdentifiedFileType fileType;
|
2013-03-30 14:44:10 +00:00
|
|
|
ParamSFOData paramSFO;
|
2017-03-26 07:00:57 +00:00
|
|
|
bool paramSFOLoaded = false;
|
|
|
|
bool hasConfig = false;
|
2013-11-20 13:42:48 +00:00
|
|
|
|
2013-03-30 18:23:20 +00:00
|
|
|
// Pre read the data, create a texture the next time (GL thread..)
|
2017-03-26 07:00:57 +00:00
|
|
|
GameInfoTex icon;
|
|
|
|
GameInfoTex pic0;
|
|
|
|
GameInfoTex pic1;
|
2013-03-30 14:44:10 +00:00
|
|
|
|
2014-06-22 01:38:26 +00:00
|
|
|
std::string sndFileData;
|
2017-03-26 11:07:36 +00:00
|
|
|
std::atomic<bool> sndDataLoaded{};
|
2014-06-22 01:38:26 +00:00
|
|
|
|
2017-03-26 07:00:57 +00:00
|
|
|
int wantFlags = 0;
|
2013-06-09 09:54:03 +00:00
|
|
|
|
2017-03-26 07:00:57 +00:00
|
|
|
double lastAccessedTime = 0.0;
|
2014-06-21 22:14:20 +00:00
|
|
|
|
2017-03-26 07:00:57 +00:00
|
|
|
u64 gameSize = 0;
|
|
|
|
u64 saveDataSize = 0;
|
|
|
|
u64 installDataSize = 0;
|
2017-12-29 16:55:49 +00:00
|
|
|
std::atomic<bool> pending{};
|
|
|
|
std::atomic<bool> working{};
|
2014-12-01 07:55:03 +00:00
|
|
|
|
2015-06-10 06:16:21 +00:00
|
|
|
protected:
|
2015-12-24 21:18:46 +00:00
|
|
|
// Note: this can change while loading, use GetTitle().
|
|
|
|
std::string title;
|
|
|
|
|
2019-02-25 19:51:19 +00:00
|
|
|
// TODO: Get rid of this shared_ptr and managae lifetime better instead.
|
2017-12-10 01:26:26 +00:00
|
|
|
std::shared_ptr<FileLoader> fileLoader;
|
2015-06-10 06:16:21 +00:00
|
|
|
std::string filePath_;
|
2017-05-18 10:41:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(GameInfo);
|
2013-03-30 14:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GameInfoCache {
|
|
|
|
public:
|
2016-02-14 21:07:10 +00:00
|
|
|
GameInfoCache();
|
2013-03-30 14:44:10 +00:00
|
|
|
~GameInfoCache();
|
|
|
|
|
2013-04-13 19:24:07 +00:00
|
|
|
// This creates a background worker thread!
|
2013-04-14 09:58:28 +00:00
|
|
|
void Clear();
|
2015-06-12 12:46:34 +00:00
|
|
|
void PurgeType(IdentifiedFileType fileType);
|
2013-04-13 19:24:07 +00:00
|
|
|
|
2017-03-26 07:00:57 +00:00
|
|
|
// All data in GameInfo including icon.texture may be zero the first time you call this
|
2013-03-30 14:44:10 +00:00
|
|
|
// but filled in later asynchronously in the background. So keep calling this,
|
2014-06-22 07:56:27 +00:00
|
|
|
// redrawing the UI often. Only set flags to GAMEINFO_WANTBG or WANTSND if you really want them
|
|
|
|
// because they're big. bgTextures and sound may be discarded over time as well.
|
2017-05-18 10:52:03 +00:00
|
|
|
std::shared_ptr<GameInfo> GetInfo(Draw::DrawContext *draw, const std::string &gamePath, int wantFlags);
|
2014-06-22 07:56:27 +00:00
|
|
|
void FlushBGs(); // Gets rid of all BG textures. Also gets rid of bg sounds.
|
2013-03-30 14:44:10 +00:00
|
|
|
|
2014-12-31 14:33:43 +00:00
|
|
|
PrioritizedWorkQueue *WorkQueue() { return gameInfoWQ_; }
|
|
|
|
|
2017-12-10 00:48:38 +00:00
|
|
|
void CancelAll();
|
2017-05-18 10:52:03 +00:00
|
|
|
void WaitUntilDone(std::shared_ptr<GameInfo> &info);
|
2015-10-03 22:00:46 +00:00
|
|
|
|
2013-03-30 14:44:10 +00:00
|
|
|
private:
|
2016-02-14 21:07:10 +00:00
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
2017-05-18 10:52:03 +00:00
|
|
|
void SetupTexture(std::shared_ptr<GameInfo> &info, Draw::DrawContext *draw, GameInfoTex &tex);
|
2014-06-21 20:49:30 +00:00
|
|
|
|
2017-05-18 10:52:03 +00:00
|
|
|
// Maps ISO path to info. Need to use shared_ptr as we can return these pointers -
|
|
|
|
// and if they get destructed while being in use, that's bad.
|
|
|
|
std::map<std::string, std::shared_ptr<GameInfo> > info_;
|
2013-04-13 19:24:07 +00:00
|
|
|
|
|
|
|
// Work queue and management
|
|
|
|
PrioritizedWorkQueue *gameInfoWQ_;
|
2013-03-30 18:23:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// This one can be global, no good reason not to.
|
2016-02-14 21:07:10 +00:00
|
|
|
extern GameInfoCache *g_gameInfoCache;
|