2017-03-20 05:09:53 +00:00
|
|
|
#ifndef __DNACOMMON_MAPU_HPP__
|
|
|
|
#define __DNACOMMON_MAPU_HPP__
|
|
|
|
|
|
|
|
#include "DNACommon.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMAPU
|
2017-03-20 05:09:53 +00:00
|
|
|
{
|
|
|
|
struct MAPU : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<uint32_t> magic;
|
|
|
|
Value<uint32_t> version;
|
|
|
|
UniqueID32 hexMapa;
|
|
|
|
Value<uint32_t> worldCount;
|
|
|
|
struct Transform : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atVec4f> xf[3];
|
|
|
|
};
|
|
|
|
struct World : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
String<-1> name;
|
|
|
|
UniqueID32 mlvl;
|
|
|
|
Transform transform;
|
|
|
|
Value<uint32_t> hexCount;
|
|
|
|
Vector<Transform, DNA_COUNT(hexCount)> hexTransforms;
|
|
|
|
DNAColor hexColor;
|
|
|
|
};
|
|
|
|
Vector<World, DNA_COUNT(worldCount)> worlds;
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
static bool Cook(const hecl::blender::MapUniverse& mapu, const hecl::ProjectPath& out);
|
2017-03-20 05:09:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename PAKRouter>
|
2017-12-29 08:08:12 +00:00
|
|
|
bool ReadMAPUToBlender(hecl::blender::Connection& conn,
|
2017-03-20 05:09:53 +00:00
|
|
|
const MAPU& mapu,
|
|
|
|
const hecl::ProjectPath& outPath,
|
|
|
|
PAKRouter& pakRouter,
|
|
|
|
const typename PAKRouter::EntryType& entry,
|
|
|
|
bool force);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __DNACOMMON_MAPU_HPP__
|