2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#ifndef __ISOFILE_H_
|
|
|
|
#define __ISOFILE_H_
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
#include "Volume.h"
|
2010-01-14 07:19:10 +00:00
|
|
|
#include "VolumeCreator.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2010-08-03 03:20:44 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
#include <wx/image.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class PointerWrap;
|
2011-03-22 07:27:23 +00:00
|
|
|
class GameListItem : NonCopyable
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-02-03 15:03:34 +00:00
|
|
|
GameListItem(const std::string& _rFileName);
|
2008-12-08 04:46:09 +00:00
|
|
|
~GameListItem();
|
|
|
|
|
|
|
|
bool IsValid() const {return m_Valid;}
|
|
|
|
const std::string& GetFileName() const {return m_FileName;}
|
2013-03-04 00:29:56 +00:00
|
|
|
std::string GetBannerName(int index) const;
|
|
|
|
std::string GetVolumeName(int index) const;
|
2013-03-03 01:46:55 +00:00
|
|
|
std::string GetName(int index) const;
|
|
|
|
std::string GetCompany() const;
|
|
|
|
std::string GetDescription(int index = 0) const;
|
2013-04-17 03:29:01 +00:00
|
|
|
int GetRevision() const { return m_Revision; }
|
2008-12-08 04:46:09 +00:00
|
|
|
const std::string& GetUniqueID() const {return m_UniqueID;}
|
2009-05-02 18:06:42 +00:00
|
|
|
const std::string GetWiiFSPath() const;
|
2008-12-08 04:46:09 +00:00
|
|
|
DiscIO::IVolume::ECountry GetCountry() const {return m_Country;}
|
2009-06-06 07:36:22 +00:00
|
|
|
int GetPlatform() const {return m_Platform;}
|
2011-03-23 04:31:00 +00:00
|
|
|
const std::string& GetIssues() const { return m_issues; }
|
|
|
|
int GetEmuState() const { return m_emu_state; }
|
2008-12-08 04:46:09 +00:00
|
|
|
bool IsCompressed() const {return m_BlobCompressed;}
|
|
|
|
u64 GetFileSize() const {return m_FileSize;}
|
|
|
|
u64 GetVolumeSize() const {return m_VolumeSize;}
|
2013-01-26 02:28:04 +00:00
|
|
|
bool IsDiscTwo() const {return m_IsDiscTwo;}
|
2008-12-08 04:46:09 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
const wxImage& GetImage() const {return m_Image;}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void DoState(PointerWrap &p);
|
2009-06-06 07:36:22 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
GAMECUBE_DISC = 0,
|
|
|
|
WII_DISC,
|
|
|
|
WII_WAD,
|
|
|
|
NUMBER_OF_PLATFORMS
|
|
|
|
};
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
private:
|
|
|
|
std::string m_FileName;
|
2013-03-03 01:46:55 +00:00
|
|
|
|
|
|
|
// TODO: eliminate this and overwrite with names from banner when available?
|
|
|
|
std::vector<std::string> m_volume_names;
|
|
|
|
|
|
|
|
// Stuff from banner
|
|
|
|
std::string m_company;
|
|
|
|
std::vector<std::string> m_names;
|
|
|
|
std::vector<std::string> m_descriptions;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
std::string m_UniqueID;
|
2011-03-23 04:31:00 +00:00
|
|
|
|
|
|
|
std::string m_issues;
|
|
|
|
int m_emu_state;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
u64 m_FileSize;
|
|
|
|
u64 m_VolumeSize;
|
|
|
|
|
|
|
|
DiscIO::IVolume::ECountry m_Country;
|
2009-06-06 07:36:22 +00:00
|
|
|
int m_Platform;
|
2013-04-17 03:29:01 +00:00
|
|
|
int m_Revision;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
wxImage m_Image;
|
|
|
|
#endif
|
|
|
|
bool m_Valid;
|
|
|
|
bool m_BlobCompressed;
|
2011-03-22 07:27:23 +00:00
|
|
|
std::vector<u8> m_pImage;
|
2013-01-26 02:28:04 +00:00
|
|
|
bool m_IsDiscTwo;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
bool LoadFromCache();
|
|
|
|
void SaveToCache();
|
|
|
|
|
|
|
|
std::string CreateCacheFilename();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|