2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:43:35 -06:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2013-03-02 18:46:55 -07:00
|
|
|
#include <string>
|
2015-04-09 09:44:53 -06:00
|
|
|
#include <utility>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <vector>
|
2013-03-02 18:46:55 -07:00
|
|
|
|
2014-10-21 00:01:38 -06:00
|
|
|
#include "Common/Common.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "DiscIO/Volume.h"
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2010-08-02 21:20:44 -06:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
#include <wx/image.h>
|
2014-10-21 00:01:38 -06:00
|
|
|
#include <wx/bitmap.h>
|
2010-08-02 21:20:44 -06:00
|
|
|
#endif
|
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
class PointerWrap;
|
2011-03-22 01:27:23 -06:00
|
|
|
class GameListItem : NonCopyable
|
2008-12-07 21:46:09 -07:00
|
|
|
{
|
|
|
|
public:
|
2009-02-03 08:03:34 -07:00
|
|
|
GameListItem(const std::string& _rFileName);
|
2008-12-07 21:46:09 -07:00
|
|
|
~GameListItem();
|
|
|
|
|
|
|
|
bool IsValid() const {return m_Valid;}
|
|
|
|
const std::string& GetFileName() const {return m_FileName;}
|
2015-05-08 15:28:03 -06:00
|
|
|
std::string GetName(DiscIO::IVolume::ELanguage language) const;
|
2015-04-09 09:44:53 -06:00
|
|
|
std::string GetName() const;
|
2015-05-08 15:28:03 -06:00
|
|
|
std::string GetDescription(DiscIO::IVolume::ELanguage language) const;
|
2015-04-09 09:44:53 -06:00
|
|
|
std::string GetDescription() const;
|
2015-05-08 15:28:03 -06:00
|
|
|
std::vector<DiscIO::IVolume::ELanguage> GetLanguages() const;
|
2015-06-13 10:43:10 -06:00
|
|
|
std::string GetCompany() const { return m_company; }
|
2015-05-29 13:14:02 -06:00
|
|
|
u16 GetRevision() const { return m_Revision; }
|
2008-12-07 21:46:09 -07:00
|
|
|
const std::string& GetUniqueID() const {return m_UniqueID;}
|
2009-05-02 12:06:42 -06:00
|
|
|
const std::string GetWiiFSPath() const;
|
2008-12-07 21:46:09 -07:00
|
|
|
DiscIO::IVolume::ECountry GetCountry() const {return m_Country;}
|
2015-06-04 08:26:36 -06:00
|
|
|
DiscIO::IVolume::EPlatform GetPlatform() const { return m_Platform; }
|
2011-03-22 22:31:00 -06:00
|
|
|
const std::string& GetIssues() const { return m_issues; }
|
|
|
|
int GetEmuState() const { return m_emu_state; }
|
2008-12-07 21:46:09 -07:00
|
|
|
bool IsCompressed() const {return m_BlobCompressed;}
|
|
|
|
u64 GetFileSize() const {return m_FileSize;}
|
|
|
|
u64 GetVolumeSize() const {return m_VolumeSize;}
|
2015-05-29 13:14:02 -06:00
|
|
|
// 0 is the first disc, 1 is the second disc
|
2015-08-25 23:13:55 -06:00
|
|
|
u8 GetDiscNumber() const { return m_disc_number; }
|
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2013-09-25 01:05:36 -06:00
|
|
|
const wxBitmap& GetBitmap() const {return m_Bitmap;}
|
2008-12-07 21:46:09 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void DoState(PointerWrap &p);
|
2009-06-06 01:36:22 -06:00
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
private:
|
|
|
|
std::string m_FileName;
|
2013-03-02 18:46:55 -07:00
|
|
|
|
2015-05-08 15:28:03 -06:00
|
|
|
std::map<DiscIO::IVolume::ELanguage, std::string> m_names;
|
|
|
|
std::map<DiscIO::IVolume::ELanguage, std::string> m_descriptions;
|
2015-04-10 14:10:49 -06:00
|
|
|
std::string m_company;
|
2013-03-02 18:46:55 -07:00
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
std::string m_UniqueID;
|
2011-03-22 22:31:00 -06:00
|
|
|
|
|
|
|
std::string m_issues;
|
|
|
|
int m_emu_state;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
u64 m_FileSize;
|
|
|
|
u64 m_VolumeSize;
|
|
|
|
|
|
|
|
DiscIO::IVolume::ECountry m_Country;
|
2015-06-04 08:26:36 -06:00
|
|
|
DiscIO::IVolume::EPlatform m_Platform;
|
2015-05-29 13:14:02 -06:00
|
|
|
u16 m_Revision;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2013-09-25 01:05:36 -06:00
|
|
|
wxBitmap m_Bitmap;
|
2008-12-07 21:46:09 -07:00
|
|
|
#endif
|
|
|
|
bool m_Valid;
|
|
|
|
bool m_BlobCompressed;
|
2011-03-22 01:27:23 -06:00
|
|
|
std::vector<u8> m_pImage;
|
2013-09-25 01:05:36 -06:00
|
|
|
int m_ImageWidth, m_ImageHeight;
|
2015-05-29 13:14:02 -06:00
|
|
|
u8 m_disc_number;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2015-09-13 04:45:06 -06:00
|
|
|
std::string m_custom_name;
|
|
|
|
bool m_has_custom_name;
|
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
bool LoadFromCache();
|
|
|
|
void SaveToCache();
|
|
|
|
|
2015-09-06 04:34:48 -06:00
|
|
|
bool IsElfOrDol() const;
|
|
|
|
std::string CreateCacheFilename() const;
|
2015-06-13 12:06:27 -06:00
|
|
|
|
2015-09-04 11:08:30 -06:00
|
|
|
// Outputs to m_pImage
|
|
|
|
void ReadVolumeBanner(const DiscIO::IVolume& volume);
|
|
|
|
// Outputs to m_Bitmap
|
|
|
|
bool ReadPNGBanner(const std::string& path);
|
|
|
|
|
|
|
|
static wxBitmap ScaleBanner(wxImage* image);
|
2008-12-07 21:46:09 -07:00
|
|
|
};
|