metaforce/DataSpec/DNACommon/STRG.hpp

25 lines
761 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#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>
#include "DNACommon.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec {
struct ISTRG : BigDNAVYaml {
virtual ~ISTRG() = default;
2015-07-16 01:57:34 +00:00
2018-12-08 05:30:43 +00:00
virtual size_t count() const = 0;
virtual std::string getUTF8(const FourCC& lang, size_t idx) const = 0;
virtual std::u16string 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(std::string_view name) const = 0;
2016-10-02 22:41:36 +00:00
2018-12-08 05:30:43 +00:00
virtual void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut) const;
};
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
2018-12-08 05:30:43 +00:00
} // namespace DataSpec