2015-09-09 00:49:20 +00:00
|
|
|
#include "MREA.hpp"
|
2015-09-10 20:30:35 +00:00
|
|
|
#include "SCLY.hpp"
|
2015-09-12 07:13:40 +00:00
|
|
|
#include "DeafBabe.hpp"
|
2015-09-28 05:19:31 +00:00
|
|
|
#include "../DNACommon/BabeDead.hpp"
|
2015-09-09 00:49:20 +00:00
|
|
|
|
2015-10-12 04:41:28 +00:00
|
|
|
#ifndef _USE_MATH_DEFINES
|
|
|
|
#define _USE_MATH_DEFINES 1
|
|
|
|
#endif
|
2015-09-27 04:36:15 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2015-09-09 00:49:20 +00:00
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
namespace DNAMP1
|
|
|
|
{
|
|
|
|
|
2015-09-12 07:13:40 +00:00
|
|
|
void MREA::ReadBabeDeadToBlender_1_2(HECL::BlenderConnection::PyOutStream& os,
|
|
|
|
Athena::io::IStreamReader& rs)
|
|
|
|
{
|
|
|
|
atUint32 bdMagic = rs.readUint32Big();
|
|
|
|
if (bdMagic != 0xBABEDEAD)
|
|
|
|
Log.report(LogVisor::FatalError, "invalid BABEDEAD magic");
|
2015-09-17 19:50:43 +00:00
|
|
|
os << "bpy.context.scene.render.engine = 'CYCLES'\n"
|
|
|
|
"bpy.context.scene.world.use_nodes = True\n"
|
|
|
|
"bpy.context.scene.render.engine = 'BLENDER_GAME'\n"
|
|
|
|
"bg_node = bpy.context.scene.world.node_tree.nodes['Background']\n";
|
2015-09-12 07:13:40 +00:00
|
|
|
for (atUint32 s=0 ; s<2 ; ++s)
|
|
|
|
{
|
|
|
|
atUint32 lightCount = rs.readUint32Big();
|
|
|
|
for (atUint32 l=0 ; l<lightCount ; ++l)
|
|
|
|
{
|
|
|
|
BabeDeadLight light;
|
|
|
|
light.read(rs);
|
2015-09-28 05:19:31 +00:00
|
|
|
ReadBabeDeadLightToBlender(os, light, s, l);
|
2015-09-12 07:13:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 00:49:20 +00:00
|
|
|
bool MREA::Extract(const SpecBase& dataSpec,
|
|
|
|
PAKEntryReadStream& rs,
|
|
|
|
const HECL::ProjectPath& outPath,
|
|
|
|
PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
const PAK::Entry& entry,
|
2015-09-10 20:30:35 +00:00
|
|
|
bool force,
|
2015-09-09 00:49:20 +00:00
|
|
|
std::function<void(const HECL::SystemChar*)>)
|
|
|
|
{
|
|
|
|
using RigPair = std::pair<CSKR*, CINF*>;
|
|
|
|
RigPair dummy(nullptr, nullptr);
|
|
|
|
|
2015-10-26 02:31:09 +00:00
|
|
|
/* Rename MREA for consistency */
|
|
|
|
HECL::ProjectPath mreaPath(outPath.getParentPath(), _S("!area.blend"));
|
|
|
|
if (!force && mreaPath.getPathType() == HECL::ProjectPath::PT_FILE)
|
|
|
|
return true;
|
|
|
|
|
2015-09-09 00:49:20 +00:00
|
|
|
/* Do extract */
|
|
|
|
Header head;
|
|
|
|
head.read(rs);
|
|
|
|
rs.seekAlign32();
|
|
|
|
|
|
|
|
HECL::BlenderConnection& conn = HECL::BlenderConnection::SharedConnection();
|
2015-10-26 02:31:09 +00:00
|
|
|
if (!conn.createBlend(mreaPath, HECL::BlenderConnection::TypeArea))
|
2015-09-09 00:49:20 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Open Py Stream and read sections */
|
|
|
|
HECL::BlenderConnection::PyOutStream os = conn.beginPythonOut(true);
|
|
|
|
os.format("import bpy\n"
|
|
|
|
"import bmesh\n"
|
2015-09-12 07:13:40 +00:00
|
|
|
"from mathutils import Vector\n"
|
2015-09-09 00:49:20 +00:00
|
|
|
"\n"
|
2015-10-01 00:40:21 +00:00
|
|
|
"bpy.context.scene.name = '%s'\n",
|
2015-09-09 00:49:20 +00:00
|
|
|
pakRouter.getBestEntryName(entry).c_str());
|
|
|
|
DNACMDL::InitGeomBlenderContext(os, dataSpec.getMasterShaderPath());
|
|
|
|
MaterialSet::RegisterMaterialProps(os);
|
|
|
|
os << "# Clear Scene\n"
|
|
|
|
"for ob in bpy.data.objects:\n"
|
|
|
|
" bpy.context.scene.objects.unlink(ob)\n"
|
|
|
|
" bpy.data.objects.remove(ob)\n"
|
2015-09-12 07:13:40 +00:00
|
|
|
"bpy.types.Lamp.retro_layer = bpy.props.IntProperty(name='Retro: Light Layer')\n"
|
2015-09-28 06:16:41 +00:00
|
|
|
"bpy.types.Lamp.retro_origtype = bpy.props.IntProperty(name='Retro: Original Type')\n"
|
2015-09-09 00:49:20 +00:00
|
|
|
"bpy.types.Object.retro_disable_enviro_visor = bpy.props.BoolProperty(name='Retro: Disable in Combat/Scan Visor')\n"
|
|
|
|
"bpy.types.Object.retro_disable_thermal_visor = bpy.props.BoolProperty(name='Retro: Disable in Thermal Visor')\n"
|
|
|
|
"bpy.types.Object.retro_disable_xray_visor = bpy.props.BoolProperty(name='Retro: Disable in X-Ray Visor')\n"
|
|
|
|
"bpy.types.Object.retro_thermal_level = bpy.props.EnumProperty(items=[('COOL', 'Cool', 'Cool Temperature'),"
|
|
|
|
"('HOT', 'Hot', 'Hot Temperature'),"
|
|
|
|
"('WARM', 'Warm', 'Warm Temperature')],"
|
|
|
|
"name='Retro: Thermal Visor Level')\n"
|
|
|
|
"\n";
|
|
|
|
|
|
|
|
/* One shared material set for all meshes */
|
|
|
|
os << "# Materials\n"
|
|
|
|
"materials = []\n"
|
|
|
|
"\n";
|
|
|
|
MaterialSet matSet;
|
|
|
|
atUint64 secStart = rs.position();
|
|
|
|
matSet.read(rs);
|
2015-09-19 01:38:40 +00:00
|
|
|
matSet.readToBlender(os, pakRouter, entry, 0);
|
2015-09-09 00:49:20 +00:00
|
|
|
rs.seek(secStart + head.secSizes[0], Athena::Begin);
|
|
|
|
std::vector<DNACMDL::VertexAttributes> vertAttribs;
|
|
|
|
DNACMDL::GetVertexAttributes(matSet, vertAttribs);
|
|
|
|
|
|
|
|
/* Read meshes */
|
|
|
|
atUint32 curSec = 1;
|
2015-10-12 04:41:28 +00:00
|
|
|
for (atUint32 m=0 ; m<head.meshCount ; ++m)
|
2015-09-09 00:49:20 +00:00
|
|
|
{
|
|
|
|
MeshHeader mHeader;
|
|
|
|
secStart = rs.position();
|
|
|
|
mHeader.read(rs);
|
|
|
|
rs.seek(secStart + head.secSizes[curSec++], Athena::Begin);
|
2015-09-26 03:12:08 +00:00
|
|
|
curSec += DNACMDL::ReadGeomSectionsToBlender<PAKRouter<PAKBridge>, MaterialSet, RigPair, DNACMDL::SurfaceHeader_1_2>
|
2015-09-19 01:38:40 +00:00
|
|
|
(os, rs, pakRouter, entry, dummy, true,
|
2015-09-09 00:49:20 +00:00
|
|
|
true, vertAttribs, m, head.secCount, 0, &head.secSizes[curSec]);
|
|
|
|
os.format("obj.retro_disable_enviro_visor = %s\n"
|
|
|
|
"obj.retro_disable_thermal_visor = %s\n"
|
|
|
|
"obj.retro_disable_xray_visor = %s\n"
|
|
|
|
"obj.retro_thermal_level = '%s'\n",
|
|
|
|
mHeader.visorFlags.disableEnviro() ? "True" : "False",
|
|
|
|
mHeader.visorFlags.disableThermal() ? "True" : "False",
|
|
|
|
mHeader.visorFlags.disableXray() ? "True" : "False",
|
|
|
|
mHeader.visorFlags.thermalLevelStr());
|
|
|
|
}
|
|
|
|
|
2015-09-12 07:13:40 +00:00
|
|
|
/* Skip AROT */
|
|
|
|
rs.seek(head.secSizes[curSec++], Athena::Current);
|
|
|
|
|
2015-09-10 20:30:35 +00:00
|
|
|
/* Read SCLY layers */
|
|
|
|
secStart = rs.position();
|
|
|
|
SCLY scly;
|
|
|
|
scly.read(rs);
|
|
|
|
scly.exportToLayerDirectories(entry, pakRouter, force);
|
|
|
|
rs.seek(secStart + head.secSizes[curSec++], Athena::Begin);
|
2015-09-12 07:13:40 +00:00
|
|
|
|
|
|
|
/* Read collision meshes */
|
|
|
|
DeafBabe collision;
|
|
|
|
secStart = rs.position();
|
|
|
|
collision.read(rs);
|
|
|
|
DeafBabe::BlenderInit(os);
|
|
|
|
collision.sendToBlender(os);
|
|
|
|
rs.seek(secStart + head.secSizes[curSec++], Athena::Begin);
|
|
|
|
|
|
|
|
/* Skip unknown section */
|
|
|
|
rs.seek(head.secSizes[curSec++], Athena::Current);
|
|
|
|
|
|
|
|
/* Read BABEDEAD Lights as Cycles emissives */
|
|
|
|
secStart = rs.position();
|
|
|
|
ReadBabeDeadToBlender_1_2(os, rs);
|
|
|
|
rs.seek(secStart + head.secSizes[curSec++], Athena::Begin);
|
|
|
|
|
2015-09-09 00:49:20 +00:00
|
|
|
/* Origins to center of mass */
|
2015-09-12 07:13:40 +00:00
|
|
|
os << "bpy.context.scene.layers[1] = True\n"
|
|
|
|
"bpy.ops.object.select_by_type(type='MESH')\n"
|
2015-09-09 00:49:20 +00:00
|
|
|
"bpy.ops.object.origin_set(type='ORIGIN_CENTER_OF_MASS')\n"
|
2015-09-12 07:13:40 +00:00
|
|
|
"bpy.ops.object.select_all(action='DESELECT')\n"
|
|
|
|
"bpy.context.scene.layers[1] = False\n";
|
2015-09-09 00:49:20 +00:00
|
|
|
|
2015-10-24 01:23:45 +00:00
|
|
|
/* Link MLVL scene as background */
|
|
|
|
os.linkBackground("//../!world.blend", "World");
|
2015-09-09 00:49:20 +00:00
|
|
|
|
2015-10-24 01:23:45 +00:00
|
|
|
os.centerView();
|
2015-09-09 00:49:20 +00:00
|
|
|
os.close();
|
|
|
|
return conn.saveBlend();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|