2025-05-17 22:56:57 -04:00
|
|
|
#include "zonefile_cod8_360.h"
|
|
|
|
|
|
|
|
|
|
#include <QDataStream>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
ZoneFile_COD8_360::ZoneFile_COD8_360()
|
2025-09-05 18:35:17 -04:00
|
|
|
: ZoneFile()
|
2025-05-17 22:56:57 -04:00
|
|
|
{
|
2025-09-05 18:35:17 -04:00
|
|
|
pSetType(0, ASSET_TYPE_PHYSPRESET);
|
|
|
|
|
pSetType(1, ASSET_TYPE_PHYSCOLLMAP);
|
|
|
|
|
pSetType(2, ASSET_TYPE_XANIMPARTS);
|
|
|
|
|
pSetType(3, ASSET_TYPE_XMODEL_SURFS);
|
|
|
|
|
pSetType(4, ASSET_TYPE_XMODEL);
|
|
|
|
|
pSetType(5, ASSET_TYPE_MATERIAL);
|
|
|
|
|
pSetType(6, ASSET_TYPE_PIXELSHADER);
|
|
|
|
|
pSetType(7, ASSET_TYPE_TECHNIQUE_SET);
|
|
|
|
|
pSetType(8, ASSET_TYPE_IMAGE);
|
|
|
|
|
pSetType(9, ASSET_TYPE_SOUND);
|
|
|
|
|
pSetType(10, ASSET_TYPE_SOUND_CURVE);
|
|
|
|
|
pSetType(11, ASSET_TYPE_LOADED_SOUND);
|
|
|
|
|
pSetType(12, ASSET_TYPE_CLIPMAP);
|
|
|
|
|
pSetType(13, ASSET_TYPE_COMWORLD);
|
|
|
|
|
pSetType(14, ASSET_TYPE_GAMEWORLD_SP);
|
|
|
|
|
pSetType(15, ASSET_TYPE_GAMEWORLD_MP);
|
|
|
|
|
pSetType(16, ASSET_TYPE_GLASSWORLD);
|
|
|
|
|
pSetType(17, ASSET_TYPE_PATHDATA);
|
|
|
|
|
pSetType(18, ASSET_TYPE_VEHICLE_TRACK);
|
|
|
|
|
pSetType(19, ASSET_TYPE_MAP_ENTS);
|
|
|
|
|
pSetType(20, ASSET_TYPE_FXWORLD);
|
|
|
|
|
pSetType(21, ASSET_TYPE_GFXWORLD);
|
|
|
|
|
pSetType(22, ASSET_TYPE_LIGHT_DEF);
|
|
|
|
|
pSetType(23, ASSET_TYPE_UI_MAP);
|
|
|
|
|
pSetType(24, ASSET_TYPE_FONT);
|
|
|
|
|
pSetType(25, ASSET_TYPE_MENULIST);
|
|
|
|
|
pSetType(26, ASSET_TYPE_MENU);
|
|
|
|
|
pSetType(27, ASSET_TYPE_LOCALIZE_ENTRY);
|
|
|
|
|
pSetType(28, ASSET_TYPE_ATTACHMENT);
|
|
|
|
|
pSetType(29, ASSET_TYPE_WEAPON);
|
|
|
|
|
pSetType(30, ASSET_TYPE_SNDDRIVER_GLOBALS);
|
|
|
|
|
pSetType(31, ASSET_TYPE_FX);
|
|
|
|
|
pSetType(32, ASSET_TYPE_IMPACT_FX);
|
|
|
|
|
pSetType(33, ASSET_TYPE_SURFACE_FX);
|
|
|
|
|
pSetType(34, ASSET_TYPE_AITYPE);
|
|
|
|
|
pSetType(35, ASSET_TYPE_MPTYPE);
|
|
|
|
|
pSetType(36, ASSET_TYPE_CHARACTER);
|
|
|
|
|
pSetType(37, ASSET_TYPE_XMODELALIAS);
|
|
|
|
|
pSetType(38, ASSET_TYPE_RAWFILE);
|
|
|
|
|
pSetType(39, ASSET_TYPE_SCRIPTFILE);
|
|
|
|
|
pSetType(40, ASSET_TYPE_STRINGTABLE);
|
|
|
|
|
pSetType(41, ASSET_TYPE_LEADERBOARD);
|
|
|
|
|
pSetType(42, ASSET_TYPE_STRUCTURED_DATA_DEF);
|
|
|
|
|
pSetType(43, ASSET_TYPE_TRACER);
|
|
|
|
|
pSetType(44, ASSET_TYPE_VEHICLE);
|
|
|
|
|
pSetType(45, ASSET_TYPE_ADDON_MAP_ENTS);
|
|
|
|
|
pSetType(46, ASSET_TYPE_COUNT);
|
|
|
|
|
pSetType(47, ASSET_TYPE_STRING);
|
|
|
|
|
pSetType(48, ASSET_TYPE_ASSETLIST);
|
2025-05-17 22:56:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ZoneFile_COD8_360::~ZoneFile_COD8_360()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ZoneFile_COD8_360::Load(const QByteArray aFileData) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|