-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfgame.h
83 lines (66 loc) · 2.3 KB
/
fgame.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#ifndef FGAME_H
#define FGAME_H
#include <QDateTime>
#include "libfusion_global.h"
#include "flauncher.h"
#include "ffilesync.h"
enum FGameType {unknown, Executable, Steam, Origin, Uplay, Galaxy, ROM};
enum FGameSizeConstrain {FHeight, FWidth};
enum FGameArt { FArtBox, FArtClearart, FArtBanner, FArtFanart};
class LIBFUSIONSHARED_EXPORT FGame
{
public:
FGame (QString gName, FGameType gType, QString gDir, QString exePath, QStringList args);
FGame();
QString getName();
QString getExe();
QString getPath();
QString getArtworkDir();
QStringList getArgs();
FGameType getType();
QString getCommand();
FLauncher getLauncher();
QDateTime getGameLastPlayed() const;
void setName(QString val);
void setExe(QString val);
void setPath(QString val);
void setArgs(QStringList val);
void setType(FGameType val);
void setCommand(QString val);
void setLauncher(FLauncher launcher);
void setGameLastPlayed(const QDateTime &value);
void disableLauncher();
bool doesUseLauncher();
bool execute();
int dbId;
//Artwork-Stuff
QString getBoxart(bool fromCache = false, int size=0, FGameSizeConstrain fsc = FWidth);
QString getClearart(bool fromCache = false, int size=0, FGameSizeConstrain fsc = FWidth);
QString getFanart(bool fromCache = false, int size=0, FGameSizeConstrain fsc = FWidth);
QString getBanner(bool fromCache = false, int size=0, FGameSizeConstrain fsc = FWidth);
QString getArt(FGameArt imgType, bool fromCache = false, int size = 0, FGameSizeConstrain fsc = FWidth);
static QString FGameArtToStr(FGameArt imgType);
static QString FGameTypeToStr(FGameType type);
static QString getCacheDir();
QDir getSavegameDir() const;
void setSavegameDir(const QDir &value);
void setSavegameDir(const QString &value);
bool savegameSyncEndabled();
bool syncData();
protected:
QString gameName;
FGameType gameType;
QString gamePath;
QString gameExe;
QStringList gameArgs;
QString gameCommand;
QDateTime gameLastPlayed;
QDir savegameDir;
FLauncher launcher;
bool launcherEnabled;
bool syncEnabled;
private:
QString cachedImage(int size, FGameSizeConstrain fsc, FGameArt imgType);
QStringList createStringListFromArguments(QString args);
};
#endif // FGAME_H