metaforce/DataSpec/DNACommon/STRG.hpp

28 lines
716 B
C++
Raw Normal View History

#ifndef __COMMON_STRG_HPP__
#define __COMMON_STRG_HPP__
#include <string>
2015-07-16 01:57:34 +00:00
#include <fstream>
#include <HECL/HECL.hpp>
2015-07-16 01:57:34 +00:00
#include <HECL/Database.hpp>
2015-07-17 00:01:05 +00:00
#include <Athena/FileWriter.hpp>
#include "DNACommon.hpp"
namespace Retro
{
2015-08-09 03:55:11 +00:00
struct ISTRG : BigYAML
{
2015-07-16 01:57:34 +00:00
virtual ~ISTRG() {}
virtual size_t count() const=0;
virtual std::string getUTF8(const FourCC& lang, size_t idx) const=0;
virtual std::wstring getUTF16(const FourCC& lang, size_t idx) const=0;
virtual HECL::SystemString getSystemString(const FourCC& lang, size_t idx) const=0;
virtual int32_t lookupIdx(const std::string& name) const=0;
};
std::unique_ptr<ISTRG> LoadSTRG(Athena::io::IStreamReader& reader);
2015-07-16 01:57:34 +00:00
}
#endif // __COMMON_STRG_HPP__