2015-08-17 05:26:58 +00:00
|
|
|
#ifndef __DNAMP1_MREA_HPP__
|
|
|
|
#define __DNAMP1_MREA_HPP__
|
|
|
|
|
|
|
|
#include "../DNACommon/DNACommon.hpp"
|
2015-09-07 04:05:44 +00:00
|
|
|
#include "CMDLMaterials.hpp"
|
|
|
|
#include "CSKR.hpp"
|
2015-08-17 05:26:58 +00:00
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
|
|
|
namespace DNAMP1
|
|
|
|
{
|
|
|
|
|
2015-09-07 04:05:44 +00:00
|
|
|
struct MREA
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
2015-09-07 04:05:44 +00:00
|
|
|
struct Header : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> magic;
|
|
|
|
Value<atUint32> version;
|
|
|
|
Value<atVec4f> localToWorldMtx[3];
|
|
|
|
Value<atUint32> meshCount;
|
|
|
|
Value<atUint32> secCount;
|
|
|
|
Value<atUint32> geomSecIdx;
|
|
|
|
Value<atUint32> sclySecIdx;
|
|
|
|
Value<atUint32> collisionSecIdx;
|
|
|
|
Value<atUint32> unkSecIdx;
|
|
|
|
Value<atUint32> lightSecIdx;
|
|
|
|
Value<atUint32> visiSecIdx;
|
|
|
|
Value<atUint32> pathSecIdx;
|
|
|
|
Value<atUint32> arotSecIdx;
|
|
|
|
Vector<atUint32, DNA_COUNT(secCount)> secSizes;
|
|
|
|
};
|
2015-08-17 05:26:58 +00:00
|
|
|
|
2015-09-07 04:05:44 +00:00
|
|
|
struct MeshHeader : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
struct VisorFlags : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
|
|
|
Value<atUint32> flags;
|
2015-11-21 01:16:07 +00:00
|
|
|
enum class ThermalLevel
|
2015-09-07 04:05:44 +00:00
|
|
|
{
|
2015-11-21 01:16:07 +00:00
|
|
|
Cool,
|
|
|
|
Hot,
|
|
|
|
Warm
|
2015-09-07 04:05:44 +00:00
|
|
|
};
|
|
|
|
static const char* GetThermalLevelStr(ThermalLevel t)
|
|
|
|
{
|
|
|
|
switch (t)
|
|
|
|
{
|
2015-11-21 01:16:07 +00:00
|
|
|
case ThermalLevel::Cool: return "COOL";
|
|
|
|
case ThermalLevel::Hot: return "HOT";
|
|
|
|
case ThermalLevel::Warm: return "WARM";
|
2015-09-07 04:05:44 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
bool disableEnviro() const {return flags >> 1 & 0x1;}
|
|
|
|
void setDisableEnviro(bool v) {flags &= ~0x2; flags |= v << 1;}
|
|
|
|
bool disableThermal() const {return flags >> 2 & 0x1;}
|
|
|
|
void setDisableThermal(bool v) {flags &= ~0x4; flags |= v << 2;}
|
|
|
|
bool disableXray() const {return flags >> 3 & 0x1;}
|
|
|
|
void setDisableXray(bool v) {flags &= ~0x8; flags |= v << 3;}
|
|
|
|
ThermalLevel thermalLevel() const {return ThermalLevel(flags >> 4 & 0x3);}
|
2015-11-21 01:16:07 +00:00
|
|
|
void setThermalLevel(ThermalLevel v) {flags &= ~0x30; flags |= atUint32(v) << 4;}
|
2015-09-07 04:05:44 +00:00
|
|
|
const char* thermalLevelStr() const {return GetThermalLevelStr(thermalLevel());}
|
|
|
|
} visorFlags;
|
|
|
|
Value<atVec4f> xfMtx[3];
|
|
|
|
Value<atVec3f> aabb[2];
|
|
|
|
};
|
|
|
|
|
2015-09-12 07:13:40 +00:00
|
|
|
struct BabeDeadLight : BigDNA
|
|
|
|
{
|
|
|
|
DECL_DNA
|
2015-11-21 01:16:07 +00:00
|
|
|
enum class LightType : atUint32
|
2015-09-12 07:13:40 +00:00
|
|
|
{
|
2015-11-21 01:16:07 +00:00
|
|
|
LocalAmbient,
|
|
|
|
Directional,
|
|
|
|
Custom,
|
|
|
|
Spot,
|
|
|
|
Spot2,
|
|
|
|
LocalAmbient2
|
2015-09-12 07:13:40 +00:00
|
|
|
};
|
2015-11-21 01:16:07 +00:00
|
|
|
enum class Falloff : atUint32
|
2015-09-12 07:13:40 +00:00
|
|
|
{
|
2015-11-21 01:16:07 +00:00
|
|
|
Constant,
|
|
|
|
Linear,
|
|
|
|
Quadratic
|
2015-09-12 07:13:40 +00:00
|
|
|
};
|
|
|
|
Value<LightType> lightType;
|
|
|
|
Value<atVec3f> color;
|
|
|
|
Value<atVec3f> position;
|
|
|
|
Value<atVec3f> direction;
|
|
|
|
Value<float> q;
|
|
|
|
Value<float> spotCutoff;
|
|
|
|
Value<float> unk5;
|
|
|
|
Value<atUint8> unk6;
|
|
|
|
Value<float> unk7;
|
|
|
|
Value<Falloff> falloff;
|
|
|
|
Value<float> unk9;
|
|
|
|
};
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
static void ReadBabeDeadToBlender_1_2(hecl::BlenderConnection::PyOutStream& os,
|
|
|
|
athena::io::IStreamReader& rs);
|
2015-09-12 07:13:40 +00:00
|
|
|
|
2015-10-27 00:19:03 +00:00
|
|
|
static void AddCMDLRigPairs(PAKEntryReadStream& rs,
|
|
|
|
PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
std::unordered_map<UniqueID32, std::pair<UniqueID32, UniqueID32>>& addTo);
|
|
|
|
|
2015-09-07 04:05:44 +00:00
|
|
|
static bool Extract(const SpecBase& dataSpec,
|
|
|
|
PAKEntryReadStream& rs,
|
2016-03-04 23:04:53 +00:00
|
|
|
const hecl::ProjectPath& outPath,
|
2015-09-07 04:05:44 +00:00
|
|
|
PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
const PAK::Entry& entry,
|
|
|
|
bool,
|
2016-04-01 04:25:00 +00:00
|
|
|
hecl::BlenderToken& btok,
|
2016-03-04 23:04:53 +00:00
|
|
|
std::function<void(const hecl::SystemChar*)>);
|
2015-10-27 00:19:03 +00:00
|
|
|
|
|
|
|
static void Name(const SpecBase& dataSpec,
|
|
|
|
PAKEntryReadStream& rs,
|
|
|
|
PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
PAK::Entry& entry);
|
2015-08-17 05:26:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|