mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 07:48:16 -05:00
ZoneWriting stuff
This commit is contained in:
@ -0,0 +1,257 @@
|
||||
#include "ContentWriterT6.h"
|
||||
|
||||
#include <cassert>
|
||||
#include <sstream>
|
||||
|
||||
#include "Game/T6/XAssets/addonmapents/addonmapents_write_db.h"
|
||||
#include "Game/T6/XAssets/clipmap_t/clipmap_t_write_db.h"
|
||||
#include "Game/T6/XAssets/comworld/comworld_write_db.h"
|
||||
#include "Game/T6/XAssets/ddlroot_t/ddlroot_t_write_db.h"
|
||||
#include "Game/T6/XAssets/destructibledef/destructibledef_write_db.h"
|
||||
#include "Game/T6/XAssets/emblemset/emblemset_write_db.h"
|
||||
#include "Game/T6/XAssets/font_s/font_s_write_db.h"
|
||||
#include "Game/T6/XAssets/fonticon/fonticon_write_db.h"
|
||||
#include "Game/T6/XAssets/footstepfxtabledef/footstepfxtabledef_write_db.h"
|
||||
#include "Game/T6/XAssets/footsteptabledef/footsteptabledef_write_db.h"
|
||||
#include "Game/T6/XAssets/fxeffectdef/fxeffectdef_write_db.h"
|
||||
#include "Game/T6/XAssets/fximpacttable/fximpacttable_write_db.h"
|
||||
#include "Game/T6/XAssets/gameworldmp/gameworldmp_write_db.h"
|
||||
#include "Game/T6/XAssets/gameworldsp/gameworldsp_write_db.h"
|
||||
#include "Game/T6/XAssets/gfximage/gfximage_write_db.h"
|
||||
#include "Game/T6/XAssets/gfxlightdef/gfxlightdef_write_db.h"
|
||||
#include "Game/T6/XAssets/gfxworld/gfxworld_write_db.h"
|
||||
#include "Game/T6/XAssets/glasses/glasses_write_db.h"
|
||||
#include "Game/T6/XAssets/keyvaluepairs/keyvaluepairs_write_db.h"
|
||||
#include "Game/T6/XAssets/leaderboarddef/leaderboarddef_write_db.h"
|
||||
#include "Game/T6/XAssets/localizeentry/localizeentry_write_db.h"
|
||||
#include "Game/T6/XAssets/mapents/mapents_write_db.h"
|
||||
#include "Game/T6/XAssets/material/material_write_db.h"
|
||||
#include "Game/T6/XAssets/materialtechniqueset/materialtechniqueset_write_db.h"
|
||||
#include "Game/T6/XAssets/memoryblock/memoryblock_write_db.h"
|
||||
#include "Game/T6/XAssets/menudef_t/menudef_t_write_db.h"
|
||||
#include "Game/T6/XAssets/menulist/menulist_write_db.h"
|
||||
#include "Game/T6/XAssets/physconstraints/physconstraints_write_db.h"
|
||||
#include "Game/T6/XAssets/physpreset/physpreset_write_db.h"
|
||||
#include "Game/T6/XAssets/qdb/qdb_write_db.h"
|
||||
#include "Game/T6/XAssets/rawfile/rawfile_write_db.h"
|
||||
#include "Game/T6/XAssets/scriptparsetree/scriptparsetree_write_db.h"
|
||||
#include "Game/T6/XAssets/skinnedvertsdef/skinnedvertsdef_write_db.h"
|
||||
#include "Game/T6/XAssets/slug/slug_write_db.h"
|
||||
#include "Game/T6/XAssets/sndbank/sndbank_write_db.h"
|
||||
#include "Game/T6/XAssets/snddriverglobals/snddriverglobals_write_db.h"
|
||||
#include "Game/T6/XAssets/sndpatch/sndpatch_write_db.h"
|
||||
#include "Game/T6/XAssets/stringtable/stringtable_write_db.h"
|
||||
#include "Game/T6/XAssets/tracerdef/tracerdef_write_db.h"
|
||||
#include "Game/T6/XAssets/vehicledef/vehicledef_write_db.h"
|
||||
#include "Game/T6/XAssets/weaponattachment/weaponattachment_write_db.h"
|
||||
#include "Game/T6/XAssets/weaponattachmentunique/weaponattachmentunique_write_db.h"
|
||||
#include "Game/T6/XAssets/weaponcamo/weaponcamo_write_db.h"
|
||||
#include "Game/T6/XAssets/weaponvariantdef/weaponvariantdef_write_db.h"
|
||||
#include "Game/T6/XAssets/xanimparts/xanimparts_write_db.h"
|
||||
#include "Game/T6/XAssets/xglobals/xglobals_write_db.h"
|
||||
#include "Game/T6/XAssets/xmodel/xmodel_write_db.h"
|
||||
#include "Game/T6/XAssets/zbarrierdef/zbarrierdef_write_db.h"
|
||||
|
||||
#include "Writing/WritingException.h"
|
||||
|
||||
using namespace T6;
|
||||
|
||||
ContentWriter::ContentWriter()
|
||||
: varXAssetList(nullptr),
|
||||
varXAsset(nullptr),
|
||||
varScriptStringList(nullptr)
|
||||
{
|
||||
}
|
||||
|
||||
void ContentWriter::CreateXAssetList(XAssetList& xAssetList, MemoryManager& memory) const
|
||||
{
|
||||
if (!m_zone->m_script_strings.empty())
|
||||
{
|
||||
assert(m_zone->m_script_strings.size() <= SCR_STRING_MAX + 1);
|
||||
xAssetList.stringList.count = m_zone->m_script_strings.size();
|
||||
xAssetList.stringList.strings = static_cast<const char**>(memory.Alloc(sizeof(const char*) * m_zone->m_script_strings.size()));
|
||||
|
||||
for (auto i = 0u; i < m_zone->m_script_strings.size(); i++)
|
||||
{
|
||||
xAssetList.stringList.strings[i] = m_zone->m_script_strings[i].c_str();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
xAssetList.stringList.count = 0;
|
||||
xAssetList.stringList.strings = nullptr;
|
||||
}
|
||||
|
||||
xAssetList.dependCount = 0;
|
||||
xAssetList.depends = nullptr;
|
||||
|
||||
const auto assetCount = m_zone->m_pools->GetTotalAssetCount();
|
||||
if (assetCount > 0)
|
||||
{
|
||||
xAssetList.assetCount = assetCount;
|
||||
xAssetList.assets = static_cast<XAsset*>(memory.Alloc(sizeof(XAsset) * assetCount));
|
||||
|
||||
const auto end = m_zone->m_pools->end();
|
||||
auto index = 0u;
|
||||
for (auto i = m_zone->m_pools->begin(); i != end; ++i)
|
||||
{
|
||||
auto& asset = xAssetList.assets[index++];
|
||||
asset.type = static_cast<XAssetType>((*i)->m_type);
|
||||
asset.header.data = (*i)->m_ptr;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
xAssetList.assetCount = 0;
|
||||
xAssetList.assets = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
void ContentWriter::WriteScriptStringList(const bool atStreamStart)
|
||||
{
|
||||
assert(m_zone->m_script_strings.empty());
|
||||
|
||||
m_stream->PushBlock(XFILE_BLOCK_VIRTUAL);
|
||||
|
||||
if (atStreamStart)
|
||||
varScriptStringList = m_stream->Write(varScriptStringList);
|
||||
|
||||
if (varScriptStringList->strings != nullptr)
|
||||
{
|
||||
m_stream->Align(alignof(const char*));
|
||||
varXString = varScriptStringList->strings;
|
||||
WriteXStringArray(true, varScriptStringList->count);
|
||||
|
||||
m_stream->MarkFollowing(varScriptStringList->strings);
|
||||
}
|
||||
|
||||
m_stream->PopBlock();
|
||||
}
|
||||
|
||||
void ContentWriter::WriteXAsset(const bool atStreamStart)
|
||||
{
|
||||
#define WRITE_ASSET(type_index, typeName, headerEntry) \
|
||||
case type_index: \
|
||||
{ \
|
||||
Writer_##typeName writer(varXAsset->header.headerEntry, m_zone, m_stream); \
|
||||
writer.Write(&varXAsset->header.headerEntry); \
|
||||
break; \
|
||||
}
|
||||
|
||||
assert(varXAsset != nullptr);
|
||||
|
||||
if (atStreamStart)
|
||||
varXAsset = m_stream->Write(varXAsset);
|
||||
|
||||
switch (varXAsset->type)
|
||||
{
|
||||
WRITE_ASSET(ASSET_TYPE_PHYSPRESET, PhysPreset, physPreset)
|
||||
WRITE_ASSET(ASSET_TYPE_PHYSCONSTRAINTS, PhysConstraints, physConstraints)
|
||||
WRITE_ASSET(ASSET_TYPE_DESTRUCTIBLEDEF, DestructibleDef, destructibleDef)
|
||||
WRITE_ASSET(ASSET_TYPE_XANIMPARTS, XAnimParts, parts)
|
||||
WRITE_ASSET(ASSET_TYPE_XMODEL, XModel, model)
|
||||
WRITE_ASSET(ASSET_TYPE_MATERIAL, Material, material)
|
||||
WRITE_ASSET(ASSET_TYPE_TECHNIQUE_SET, MaterialTechniqueSet, techniqueSet)
|
||||
WRITE_ASSET(ASSET_TYPE_IMAGE, GfxImage, image)
|
||||
WRITE_ASSET(ASSET_TYPE_SOUND, SndBank, sound)
|
||||
WRITE_ASSET(ASSET_TYPE_SOUND_PATCH, SndPatch, soundPatch)
|
||||
WRITE_ASSET(ASSET_TYPE_CLIPMAP, clipMap_t, clipMap)
|
||||
WRITE_ASSET(ASSET_TYPE_CLIPMAP_PVS, clipMap_t, clipMap)
|
||||
WRITE_ASSET(ASSET_TYPE_COMWORLD, ComWorld, comWorld)
|
||||
WRITE_ASSET(ASSET_TYPE_GAMEWORLD_SP, GameWorldSp, gameWorldSp)
|
||||
WRITE_ASSET(ASSET_TYPE_GAMEWORLD_MP, GameWorldMp, gameWorldMp)
|
||||
WRITE_ASSET(ASSET_TYPE_MAP_ENTS, MapEnts, mapEnts)
|
||||
WRITE_ASSET(ASSET_TYPE_GFXWORLD, GfxWorld, gfxWorld)
|
||||
WRITE_ASSET(ASSET_TYPE_LIGHT_DEF, GfxLightDef, lightDef)
|
||||
WRITE_ASSET(ASSET_TYPE_FONT, Font_s, font)
|
||||
WRITE_ASSET(ASSET_TYPE_FONTICON, FontIcon, fontIcon)
|
||||
WRITE_ASSET(ASSET_TYPE_MENULIST, MenuList, menuList)
|
||||
WRITE_ASSET(ASSET_TYPE_MENU, menuDef_t, menu)
|
||||
WRITE_ASSET(ASSET_TYPE_LOCALIZE_ENTRY, LocalizeEntry, localize)
|
||||
WRITE_ASSET(ASSET_TYPE_WEAPON, WeaponVariantDef, weapon)
|
||||
WRITE_ASSET(ASSET_TYPE_ATTACHMENT, WeaponAttachment, attachment)
|
||||
WRITE_ASSET(ASSET_TYPE_ATTACHMENT_UNIQUE, WeaponAttachmentUnique, attachmentUnique)
|
||||
WRITE_ASSET(ASSET_TYPE_WEAPON_CAMO, WeaponCamo, weaponCamo)
|
||||
WRITE_ASSET(ASSET_TYPE_SNDDRIVER_GLOBALS, SndDriverGlobals, sndDriverGlobals)
|
||||
WRITE_ASSET(ASSET_TYPE_FX, FxEffectDef, fx)
|
||||
WRITE_ASSET(ASSET_TYPE_IMPACT_FX, FxImpactTable, impactFx)
|
||||
WRITE_ASSET(ASSET_TYPE_RAWFILE, RawFile, rawfile)
|
||||
WRITE_ASSET(ASSET_TYPE_STRINGTABLE, StringTable, stringTable)
|
||||
WRITE_ASSET(ASSET_TYPE_LEADERBOARD, LeaderboardDef, leaderboardDef)
|
||||
WRITE_ASSET(ASSET_TYPE_XGLOBALS, XGlobals, xGlobals)
|
||||
WRITE_ASSET(ASSET_TYPE_DDL, ddlRoot_t, ddlRoot)
|
||||
WRITE_ASSET(ASSET_TYPE_GLASSES, Glasses, glasses)
|
||||
WRITE_ASSET(ASSET_TYPE_EMBLEMSET, EmblemSet, emblemSet)
|
||||
WRITE_ASSET(ASSET_TYPE_SCRIPTPARSETREE, ScriptParseTree, scriptParseTree)
|
||||
WRITE_ASSET(ASSET_TYPE_KEYVALUEPAIRS, KeyValuePairs, keyValuePairs)
|
||||
WRITE_ASSET(ASSET_TYPE_VEHICLEDEF, VehicleDef, vehicleDef)
|
||||
WRITE_ASSET(ASSET_TYPE_MEMORYBLOCK, MemoryBlock, memoryBlock);
|
||||
WRITE_ASSET(ASSET_TYPE_ADDON_MAP_ENTS, AddonMapEnts, addonMapEnts)
|
||||
WRITE_ASSET(ASSET_TYPE_TRACER, TracerDef, tracerDef)
|
||||
WRITE_ASSET(ASSET_TYPE_SKINNEDVERTS, SkinnedVertsDef, skinnedVertsDef)
|
||||
WRITE_ASSET(ASSET_TYPE_QDB, Qdb, qdb)
|
||||
WRITE_ASSET(ASSET_TYPE_SLUG, Slug, slug)
|
||||
WRITE_ASSET(ASSET_TYPE_FOOTSTEP_TABLE, FootstepTableDef, footstepTableDef)
|
||||
WRITE_ASSET(ASSET_TYPE_FOOTSTEPFX_TABLE, FootstepFXTableDef, footstepFXTableDef)
|
||||
WRITE_ASSET(ASSET_TYPE_ZBARRIER, ZBarrierDef, zbarrierDef)
|
||||
|
||||
default:
|
||||
{
|
||||
std::ostringstream str;
|
||||
str << "Unsupported asset type: " << varXAsset->type << ".";
|
||||
throw WritingException(str.str());
|
||||
}
|
||||
}
|
||||
|
||||
#undef WRITE_ASSET
|
||||
}
|
||||
|
||||
void ContentWriter::WriteXAssetArray(const bool atStreamStart, const size_t count)
|
||||
{
|
||||
assert(varXAsset != nullptr);
|
||||
|
||||
if (atStreamStart)
|
||||
varXAsset = m_stream->Write(varXAsset, count);
|
||||
|
||||
for (size_t index = 0; index < count; index++)
|
||||
{
|
||||
WriteXAsset(false);
|
||||
varXAsset++;
|
||||
}
|
||||
}
|
||||
|
||||
void ContentWriter::WriteContent(Zone* zone, IZoneOutputStream* stream)
|
||||
{
|
||||
m_zone = zone;
|
||||
m_stream = stream;
|
||||
|
||||
m_stream->PushBlock(XFILE_BLOCK_VIRTUAL);
|
||||
|
||||
MemoryManager memory;
|
||||
XAssetList assetList{};
|
||||
|
||||
CreateXAssetList(assetList, memory);
|
||||
|
||||
varXAssetList = static_cast<XAssetList*>(m_stream->WriteDataRaw(&assetList, sizeof(assetList)));
|
||||
|
||||
varScriptStringList = &varXAssetList->stringList;
|
||||
WriteScriptStringList(false);
|
||||
|
||||
if (varXAssetList->depends != nullptr)
|
||||
{
|
||||
m_stream->Align(alignof(const char*));
|
||||
varXString = varXAssetList->depends;
|
||||
WriteXStringArray(true, varXAssetList->dependCount);
|
||||
m_stream->MarkFollowing(varXAssetList->depends);
|
||||
}
|
||||
|
||||
if (varXAssetList->assets != nullptr)
|
||||
{
|
||||
m_stream->Align(alignof(XAsset));
|
||||
varXAsset = varXAssetList->assets;
|
||||
WriteXAssetArray(true, varXAssetList->assetCount);
|
||||
m_stream->MarkFollowing(varXAssetList->assets);
|
||||
}
|
||||
|
||||
m_stream->PopBlock();
|
||||
}
|
||||
|
@ -7,13 +7,16 @@ namespace T6
|
||||
{
|
||||
class ContentWriter final : public ContentWriterBase, public IContentWritingEntryPoint
|
||||
{
|
||||
XAssetList* varXAssetList;
|
||||
XAsset* varXAsset;
|
||||
ScriptStringList* varScriptStringList;
|
||||
|
||||
void LoadScriptStringList(bool atStreamStart);
|
||||
void CreateXAssetList(XAssetList& xAssetList, MemoryManager& memory) const;
|
||||
|
||||
void LoadXAsset(bool atStreamStart);
|
||||
void LoadXAssetArray(bool atStreamStart, size_t count);
|
||||
void WriteScriptStringList(bool atStreamStart);
|
||||
|
||||
void WriteXAsset(bool atStreamStart);
|
||||
void WriteXAssetArray(bool atStreamStart, size_t count);
|
||||
|
||||
public:
|
||||
ContentWriter();
|
||||
|
Reference in New Issue
Block a user