2017-03-20 05:09:53 +00:00
|
|
|
#include "MAPU.hpp"
|
|
|
|
#include "../DNAMP1/DNAMP1.hpp"
|
|
|
|
#include "../DNAMP2/DNAMP2.hpp"
|
|
|
|
#include "../DNAMP3/DNAMP3.hpp"
|
|
|
|
#include "zeus/CTransform.hpp"
|
2017-12-29 08:08:12 +00:00
|
|
|
#include "hecl/Blender/Connection.hpp"
|
2017-03-20 05:09:53 +00:00
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMAPU
|
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)
|
|
|
|
{
|
|
|
|
if (!force && outPath.isFile())
|
|
|
|
return true;
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
if (!conn.createBlend(outPath, hecl::blender::BlendType::MapUniverse))
|
2017-03-20 05:09:53 +00:00
|
|
|
return false;
|
2017-12-29 08:08:12 +00:00
|
|
|
hecl::blender::PyOutStream os = conn.beginPythonOut(true);
|
2017-03-20 05:09:53 +00:00
|
|
|
|
|
|
|
os << "import bpy\n"
|
|
|
|
"from mathutils import Matrix\n"
|
|
|
|
"\n"
|
|
|
|
"# Clear Scene\n"
|
|
|
|
"bpy.context.scene.camera = None\n"
|
|
|
|
"for ob in bpy.data.objects:\n"
|
|
|
|
" bpy.context.scene.objects.unlink(ob)\n"
|
|
|
|
" bpy.data.objects.remove(ob)\n"
|
|
|
|
"\n"
|
|
|
|
"bpy.types.Object.retro_mapworld_color = bpy.props.FloatVectorProperty(name='Retro: MapWorld Color',"
|
|
|
|
" description='Sets map world color', subtype='COLOR', size=4, min=0.0, max=1.0)\n"
|
|
|
|
"bpy.types.Object.retro_mapworld_path = bpy.props.StringProperty(name='Retro: MapWorld Path',"
|
|
|
|
" description='Sets path to World root')\n"
|
|
|
|
"\n";
|
|
|
|
|
|
|
|
hecl::ProjectPath hexPath = pakRouter.getWorking(mapu.hexMapa);
|
2017-11-13 06:19:18 +00:00
|
|
|
os.linkBlend(hexPath.getAbsolutePathUTF8().data(),
|
|
|
|
pakRouter.getBestEntryName(mapu.hexMapa).data());
|
2017-03-20 05:09:53 +00:00
|
|
|
os << "hexMesh = bpy.data.objects['MAP'].data\n";
|
|
|
|
|
|
|
|
for (const MAPU::World& wld : mapu.worlds)
|
|
|
|
{
|
|
|
|
hecl::ProjectPath path = UniqueIDBridge::TranslatePakIdToPath(wld.mlvl);
|
|
|
|
const MAPU::Transform& wldXf = wld.transform;
|
|
|
|
os.format("wldObj = bpy.data.objects.new('%s', None)\n"
|
|
|
|
"mtx = Matrix(((%f,%f,%f,%f),(%f,%f,%f,%f),(%f,%f,%f,%f),(0.0,0.0,0.0,1.0)))\n"
|
|
|
|
"mtxd = mtx.decompose()\n"
|
|
|
|
"wldObj.rotation_mode = 'QUATERNION'\n"
|
|
|
|
"wldObj.location = mtxd[0]\n"
|
|
|
|
"wldObj.rotation_quaternion = mtxd[1]\n"
|
|
|
|
"wldObj.scale = mtxd[2]\n"
|
|
|
|
"wldObj.retro_mapworld_color = (%f, %f, %f, %f)\n"
|
|
|
|
"wldObj.retro_mapworld_path = '''%s'''\n"
|
|
|
|
"bpy.context.scene.objects.link(wldObj)\n", wld.name.c_str(),
|
|
|
|
wldXf.xf[0].vec[0], wldXf.xf[0].vec[1], wldXf.xf[0].vec[2], wldXf.xf[0].vec[3],
|
|
|
|
wldXf.xf[1].vec[0], wldXf.xf[1].vec[1], wldXf.xf[1].vec[2], wldXf.xf[1].vec[3],
|
|
|
|
wldXf.xf[2].vec[0], wldXf.xf[2].vec[1], wldXf.xf[2].vec[2], wldXf.xf[2].vec[3],
|
|
|
|
wld.hexColor.r, wld.hexColor.g, wld.hexColor.b, wld.hexColor.a,
|
2017-11-13 06:19:18 +00:00
|
|
|
path.getParentPath().getRelativePathUTF8().data());
|
2017-03-20 05:09:53 +00:00
|
|
|
int idx = 0;
|
|
|
|
for (const MAPU::Transform& hexXf : wld.hexTransforms)
|
|
|
|
{
|
|
|
|
os.format("obj = bpy.data.objects.new('%s_%d', hexMesh)\n"
|
|
|
|
"mtx = Matrix(((%f,%f,%f,%f),(%f,%f,%f,%f),(%f,%f,%f,%f),(0.0,0.0,0.0,1.0)))\n"
|
|
|
|
"mtxd = mtx.decompose()\n"
|
|
|
|
"obj.rotation_mode = 'QUATERNION'\n"
|
|
|
|
"obj.location = mtxd[0]\n"
|
|
|
|
"obj.rotation_quaternion = mtxd[1]\n"
|
|
|
|
"obj.scale = mtxd[2]\n"
|
|
|
|
"bpy.context.scene.objects.link(obj)\n"
|
|
|
|
"obj.parent = wldObj\n",
|
|
|
|
wld.name.c_str(), idx++,
|
|
|
|
hexXf.xf[0].vec[0], hexXf.xf[0].vec[1], hexXf.xf[0].vec[2], hexXf.xf[0].vec[3],
|
|
|
|
hexXf.xf[1].vec[0], hexXf.xf[1].vec[1], hexXf.xf[1].vec[2], hexXf.xf[1].vec[3],
|
|
|
|
hexXf.xf[2].vec[0], hexXf.xf[2].vec[1], hexXf.xf[2].vec[2], hexXf.xf[2].vec[3]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
os << "for screen in bpy.data.screens:\n"
|
|
|
|
" for area in screen.areas:\n"
|
|
|
|
" for space in area.spaces:\n"
|
|
|
|
" if space.type == 'VIEW_3D':\n"
|
|
|
|
" space.viewport_shade = 'SOLID'\n"
|
|
|
|
" space.clip_end = 8000.0\n";
|
|
|
|
|
|
|
|
os.centerView();
|
|
|
|
os.close();
|
2017-03-20 21:15:00 +00:00
|
|
|
conn.saveBlend();
|
|
|
|
return true;
|
2017-03-20 05:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template bool ReadMAPUToBlender<PAKRouter<DNAMP1::PAKBridge>>
|
2017-12-29 08:08:12 +00:00
|
|
|
(hecl::blender::Connection& conn,
|
2017-03-20 05:09:53 +00:00
|
|
|
const MAPU& mapu,
|
|
|
|
const hecl::ProjectPath& outPath,
|
|
|
|
PAKRouter<DNAMP1::PAKBridge>& pakRouter,
|
|
|
|
const PAKRouter<DNAMP1::PAKBridge>::EntryType& entry,
|
|
|
|
bool force);
|
|
|
|
|
|
|
|
template bool ReadMAPUToBlender<PAKRouter<DNAMP2::PAKBridge>>
|
2017-12-29 08:08:12 +00:00
|
|
|
(hecl::blender::Connection& conn,
|
2017-03-20 05:09:53 +00:00
|
|
|
const MAPU& mapu,
|
|
|
|
const hecl::ProjectPath& outPath,
|
|
|
|
PAKRouter<DNAMP2::PAKBridge>& pakRouter,
|
|
|
|
const PAKRouter<DNAMP2::PAKBridge>::EntryType& entry,
|
|
|
|
bool force);
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
bool MAPU::Cook(const hecl::blender::MapUniverse& mapuIn, const hecl::ProjectPath& out)
|
2017-03-20 05:09:53 +00:00
|
|
|
{
|
|
|
|
MAPU mapu;
|
|
|
|
|
|
|
|
mapu.magic = 0xABCDEF01;
|
|
|
|
mapu.version = 1;
|
|
|
|
mapu.hexMapa = mapuIn.hexagonPath;
|
|
|
|
|
|
|
|
mapu.worldCount = mapuIn.worlds.size();
|
|
|
|
mapu.worlds.reserve(mapuIn.worlds.size());
|
2017-12-29 08:08:12 +00:00
|
|
|
for (const hecl::blender::MapUniverse::World& wld : mapuIn.worlds)
|
2017-03-20 05:09:53 +00:00
|
|
|
{
|
|
|
|
mapu.worlds.emplace_back();
|
|
|
|
MAPU::World& wldOut = mapu.worlds.back();
|
|
|
|
wldOut.name = wld.name;
|
2018-10-14 20:16:21 +00:00
|
|
|
wldOut.mlvl = hecl::ProjectPath(wld.worldPath, _SYS_STR("!world.*"));
|
2017-03-20 05:09:53 +00:00
|
|
|
wldOut.transform.xf[0] = wld.xf.val[0];
|
|
|
|
wldOut.transform.xf[1] = wld.xf.val[1];
|
|
|
|
wldOut.transform.xf[2] = wld.xf.val[2];
|
|
|
|
wldOut.hexCount = wld.hexagons.size();
|
|
|
|
wldOut.hexTransforms.reserve(wld.hexagons.size());
|
2017-12-29 08:08:12 +00:00
|
|
|
for (const hecl::blender::Matrix4f& mtx : wld.hexagons)
|
2017-03-20 05:09:53 +00:00
|
|
|
{
|
|
|
|
wldOut.hexTransforms.emplace_back();
|
|
|
|
MAPU::Transform& xf = wldOut.hexTransforms.back();
|
|
|
|
xf.xf[0] = mtx.val[0];
|
|
|
|
xf.xf[1] = mtx.val[1];
|
|
|
|
xf.xf[2] = mtx.val[2];
|
|
|
|
}
|
|
|
|
wldOut.hexColor = zeus::CColor(wld.color.val);
|
|
|
|
}
|
|
|
|
|
|
|
|
athena::io::FileWriter f(out.getAbsolutePath());
|
|
|
|
mapu.write(f);
|
2017-03-20 21:15:00 +00:00
|
|
|
int64_t rem = f.position() % 32;
|
|
|
|
if (rem)
|
|
|
|
for (int64_t i=0 ; i<32-rem ; ++i)
|
|
|
|
f.writeBytes((atInt8*)"\xff", 1);
|
2017-03-20 05:09:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|