2015-07-13 06:29:12 +00:00
|
|
|
#ifndef __COMMON_STRG_HPP__
|
|
|
|
#define __COMMON_STRG_HPP__
|
|
|
|
|
|
|
|
#include <string>
|
2015-07-16 01:57:34 +00:00
|
|
|
#include <fstream>
|
2016-03-04 23:04:53 +00:00
|
|
|
#include <hecl/hecl.hpp>
|
|
|
|
#include <hecl/Database.hpp>
|
|
|
|
#include <athena/FileWriter.hpp>
|
2015-07-13 06:29:12 +00:00
|
|
|
#include "DNACommon.hpp"
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-08-09 03:55:11 +00:00
|
|
|
struct ISTRG : BigYAML
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-16 01:57:34 +00:00
|
|
|
virtual ~ISTRG() {}
|
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
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;
|
2016-03-04 23:04:53 +00:00
|
|
|
virtual hecl::SystemString getSystemString(const FourCC& lang, size_t idx) const=0;
|
2015-07-13 06:29:12 +00:00
|
|
|
virtual int32_t lookupIdx(const std::string& name) const=0;
|
|
|
|
};
|
2016-03-04 23:04:53 +00:00
|
|
|
std::unique_ptr<ISTRG> LoadSTRG(athena::io::IStreamReader& reader);
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __COMMON_STRG_HPP__
|