2016-07-11 11:14:58 -04:00
|
|
|
#include <STDInclude.hpp>
|
|
|
|
|
2016-12-25 22:05:21 -05:00
|
|
|
#define IW4X_MAT_VERSION "0"
|
|
|
|
|
2016-07-11 11:14:58 -04:00
|
|
|
namespace Assets
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
void IMaterial::load(Game::XAssetHeader* header, std::string name, Components::ZoneBuilder::Zone* builder)
|
2016-12-27 13:17:52 -05:00
|
|
|
{
|
|
|
|
if (!header->data) this->loadJson(header, name, builder); // Check if we want to override materials
|
|
|
|
if (!header->data) this->loadNative(header, name, builder); // Check if there is a native one
|
|
|
|
if (!header->data) this->loadBinary(header, name, builder); // Check if we need to import a new one into the game
|
|
|
|
}
|
|
|
|
|
|
|
|
void IMaterial::loadBinary(Game::XAssetHeader* header, std::string name, Components::ZoneBuilder::Zone* builder)
|
2016-12-25 22:05:21 -05:00
|
|
|
{
|
|
|
|
Components::FileSystem::File materialFile(fmt::sprintf("materials/%s.iw4xMaterial", name.data()));
|
2016-12-27 13:17:52 -05:00
|
|
|
if (!materialFile.exists()) return;
|
2016-12-25 22:05:21 -05:00
|
|
|
|
|
|
|
Game::Material* material = builder->getAllocator()->allocate<Game::Material>();
|
2016-12-27 13:17:52 -05:00
|
|
|
if (!material)
|
2016-12-25 22:05:21 -05:00
|
|
|
{
|
|
|
|
Components::Logger::Print("Error allocating memory for material structure!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils::Stream::Reader reader(builder->getAllocator(), materialFile.getBuffer());
|
|
|
|
|
|
|
|
if (reader.read<__int64>() != *reinterpret_cast<__int64*>("IW4xMat" IW4X_MAT_VERSION))
|
|
|
|
{
|
|
|
|
Components::Logger::Error(0, "Reading material '%s' failed, header is invalid!", name.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
material->name = reader.readCString();
|
|
|
|
material->gameFlags = reader.readByte();
|
|
|
|
material->sortKey = reader.readByte();
|
|
|
|
material->textureAtlasRowCount = reader.readByte();
|
|
|
|
material->textureAtlasColumnCount = reader.readByte();
|
2016-12-26 12:44:33 -05:00
|
|
|
material->drawSurf.packed = reader.read<__int64>();
|
2016-12-25 22:05:21 -05:00
|
|
|
material->surfaceTypeBits = reader.read<int>();
|
|
|
|
material->hashIndex = reader.read<unsigned __int16>();
|
|
|
|
char* stateBitsEntry = reader.readArray<char>(48);
|
|
|
|
memcpy(material->stateBitsEntry, stateBitsEntry, 48);
|
|
|
|
material->textureCount = reader.readByte();
|
|
|
|
material->constantCount = reader.readByte();
|
|
|
|
material->stateBitsCount = reader.readByte();
|
|
|
|
material->stateFlags = reader.readByte();
|
|
|
|
material->cameraRegion = reader.readByte();
|
|
|
|
|
2016-12-26 12:44:33 -05:00
|
|
|
std::string techset = reader.readString();
|
2016-12-28 15:35:30 -05:00
|
|
|
material->techniqueSet = Components::AssetHandler::FindAssetForZone(Game::XAssetType::ASSET_TYPE_TECHNIQUE_SET, techset.data(), builder).techniqueSet;
|
2016-12-26 12:44:33 -05:00
|
|
|
|
2016-12-26 13:43:53 -05:00
|
|
|
if (!material->techniqueSet)
|
|
|
|
{
|
|
|
|
Components::Logger::Error("Techset '%s' not found!", techset.data());
|
|
|
|
}
|
|
|
|
|
2016-12-26 12:44:33 -05:00
|
|
|
material->textureTable = builder->getAllocator()->allocateArray<Game::MaterialTextureDef>(material->textureCount & 0xFF);
|
|
|
|
material->constantTable = builder->getAllocator()->allocateArray<Game::MaterialConstantDef>(material->constantCount & 0xFF);
|
|
|
|
material->stateBitTable = builder->getAllocator()->allocateArray<Game::GfxStateBits>(material->stateBitsCount & 0xFF);
|
2016-12-25 22:05:21 -05:00
|
|
|
|
2016-12-27 13:17:52 -05:00
|
|
|
if (!material->textureTable || !material->constantTable || !material->stateBitTable)
|
2016-12-25 22:05:21 -05:00
|
|
|
{
|
|
|
|
Components::Logger::Print("Error allocating memory for material structure!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-26 12:44:33 -05:00
|
|
|
for (char i = 0; i < material->textureCount; ++i)
|
2016-12-25 22:05:21 -05:00
|
|
|
{
|
2016-12-26 12:44:33 -05:00
|
|
|
std::string mapName = reader.readString();
|
|
|
|
material->textureTable[i].nameStart = mapName.front();
|
|
|
|
material->textureTable[i].nameEnd = mapName.back();
|
|
|
|
material->textureTable[i].nameHash = Game::R_HashString(mapName.data());
|
2016-12-25 22:05:21 -05:00
|
|
|
material->textureTable[i].sampleState = reader.readByte();
|
|
|
|
material->textureTable[i].semantic = reader.readByte();
|
2016-12-26 12:44:33 -05:00
|
|
|
|
2016-12-25 22:05:21 -05:00
|
|
|
if (material->textureTable[i].semantic == SEMANTIC_WATER_MAP)
|
|
|
|
{
|
2016-12-31 09:26:33 -05:00
|
|
|
material->textureTable[i].info.water = builder->getAllocator()->allocate<Game::water_t>();
|
2016-12-28 21:06:30 -05:00
|
|
|
material->textureTable[i].info.water->writable.floatTime = reader.read<float>();
|
2016-12-25 22:05:21 -05:00
|
|
|
material->textureTable[i].info.water->M = reader.read<int>();
|
|
|
|
material->textureTable[i].info.water->N = reader.read<int>();
|
|
|
|
int count = material->textureTable[i].info.water->M * material->textureTable[i].info.water->N;
|
2016-12-28 21:06:30 -05:00
|
|
|
material->textureTable[i].info.water->H0 = reader.readArray<Game::complex_s>(count);
|
|
|
|
material->textureTable[i].info.water->wTerm = reader.readArray<float>(count);
|
2016-12-25 22:05:21 -05:00
|
|
|
material->textureTable[i].info.water->Lx = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->Lz = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->gravity = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->windvel = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->winddir[0] = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->winddir[1] = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->amplitude = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->codeConstant[0] = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->codeConstant[1] = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->codeConstant[2] = reader.read<float>();
|
|
|
|
material->textureTable[i].info.water->codeConstant[3] = reader.read<float>();
|
2016-12-26 22:22:20 -05:00
|
|
|
material->textureTable[i].info.water->image = Components::AssetHandler::FindAssetForZone(Game::XAssetType::ASSET_TYPE_IMAGE, reader.readString().data(), builder).image;
|
2016-12-25 22:05:21 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-26 22:22:20 -05:00
|
|
|
material->textureTable[i].info.image = Components::AssetHandler::FindAssetForZone(Game::XAssetType::ASSET_TYPE_IMAGE, reader.readString().data(), builder).image;
|
2016-12-25 22:05:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 12:44:33 -05:00
|
|
|
for (char i = 0; i < material->constantCount; ++i)
|
2016-12-25 22:05:21 -05:00
|
|
|
{
|
2016-12-26 18:12:07 -05:00
|
|
|
for (int j = 0; j < 12; ++j)
|
|
|
|
{
|
|
|
|
material->constantTable[i].name[j] = reader.readByte();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string constName(material->constantTable[i].name, 12);
|
|
|
|
constName.push_back('0');
|
2016-12-26 12:44:33 -05:00
|
|
|
|
|
|
|
material->constantTable[i].nameHash = Game::R_HashString(constName.data());
|
2016-12-26 18:12:07 -05:00
|
|
|
material->constantTable[i].literal[0] = reader.read<float>();
|
|
|
|
material->constantTable[i].literal[1] = reader.read<float>();
|
|
|
|
material->constantTable[i].literal[2] = reader.read<float>();
|
|
|
|
material->constantTable[i].literal[3] = reader.read<float>();
|
2016-12-25 22:05:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
material->stateBitTable = reader.readArray<Game::GfxStateBits>(material->stateBitsCount);
|
2016-12-26 12:44:33 -05:00
|
|
|
header->material = material;
|
2016-12-27 13:17:52 -05:00
|
|
|
|
|
|
|
// Find correct sortkey by comparing techsets
|
|
|
|
Game::DB_EnumXAssets_Internal(Game::XAssetType::ASSET_TYPE_MATERIAL, [](Game::XAssetHeader header, void* data)
|
|
|
|
{
|
|
|
|
Game::Material* material = reinterpret_cast<Game::Material*>(data);
|
|
|
|
if (std::string(material->techniqueSet->name) == header.material->techniqueSet->name)
|
|
|
|
{
|
|
|
|
material->sortKey = header.material->sortKey;
|
|
|
|
}
|
|
|
|
}, material, false);
|
2016-12-25 22:05:21 -05:00
|
|
|
}
|
|
|
|
|
2016-12-27 14:59:57 -05:00
|
|
|
void IMaterial::loadNative(Game::XAssetHeader* header, std::string name, Components::ZoneBuilder::Zone* /*builder*/)
|
2016-12-27 13:17:52 -05:00
|
|
|
{
|
|
|
|
header->material = Components::AssetHandler::FindOriginalAsset(this->getType(), name.data()).material;
|
|
|
|
}
|
|
|
|
|
2016-12-25 22:05:21 -05:00
|
|
|
void IMaterial::loadJson(Game::XAssetHeader* header, std::string name, Components::ZoneBuilder::Zone* builder)
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
|
|
|
Components::FileSystem::File materialInfo(fmt::sprintf("materials/%s.json", name.data()));
|
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
if (!materialInfo.exists()) return;
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
std::string errors;
|
2016-11-20 08:09:07 -05:00
|
|
|
json11::Json infoData = json11::Json::parse(materialInfo.getBuffer(), errors);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
if (!infoData.is_object())
|
|
|
|
{
|
|
|
|
Components::Logger::Error("Failed to load material information for %s!", name.data());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto base = infoData["base"];
|
|
|
|
|
|
|
|
if (!base.is_string())
|
|
|
|
{
|
|
|
|
Components::Logger::Error("No valid material base provided for %s!", name.data());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Game::Material* baseMaterial = Game::DB_FindXAssetHeader(Game::XAssetType::ASSET_TYPE_MATERIAL, base.string_value().data()).material;
|
|
|
|
|
|
|
|
if (!baseMaterial) // TODO: Maybe check if default asset? Maybe not? You could still want to use the default one as base!?
|
|
|
|
{
|
|
|
|
Components::Logger::Error("Basematerial '%s' not found for %s!", base.string_value().data(), name.data());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
Game::Material* material = builder->getAllocator()->allocate<Game::Material>();
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
if (!material)
|
|
|
|
{
|
|
|
|
Components::Logger::Error("Failed to allocate material structure!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy base material to our structure
|
|
|
|
std::memcpy(material, baseMaterial, sizeof(Game::Material));
|
2016-11-20 08:09:07 -05:00
|
|
|
material->name = builder->getAllocator()->duplicateString(name);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
material->textureAtlasRowCount = 1;
|
|
|
|
material->textureAtlasColumnCount = 1;
|
|
|
|
|
|
|
|
// Load animation frames
|
|
|
|
auto anims = infoData["anims"];
|
|
|
|
if (anims.is_array())
|
|
|
|
{
|
|
|
|
auto animCoords = anims.array_items();
|
|
|
|
|
|
|
|
if (animCoords.size() >= 2)
|
|
|
|
{
|
|
|
|
auto animCoordX = animCoords[0];
|
|
|
|
auto animCoordY = animCoords[1];
|
|
|
|
|
|
|
|
if (animCoordX.is_number())
|
|
|
|
{
|
|
|
|
material->textureAtlasColumnCount = static_cast<char>(animCoordX.number_value()) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (animCoordY.is_number())
|
|
|
|
{
|
|
|
|
material->textureAtlasRowCount = static_cast<char>(animCoordY.number_value()) & 0xFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Model surface textures are special, they need a special order and whatnot
|
|
|
|
bool replaceTexture = Utils::String::StartsWith(name, "mc/");
|
|
|
|
if (replaceTexture)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
Game::MaterialTextureDef* textureTable = builder->getAllocator()->allocateArray<Game::MaterialTextureDef>(baseMaterial->textureCount);
|
2016-07-11 11:14:58 -04:00
|
|
|
std::memcpy(textureTable, baseMaterial->textureTable, sizeof(Game::MaterialTextureDef) * baseMaterial->textureCount);
|
|
|
|
material->textureTable = textureTable;
|
|
|
|
material->textureCount = baseMaterial->textureCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load referenced textures
|
|
|
|
auto textures = infoData["textures"];
|
|
|
|
if (textures.is_array())
|
|
|
|
{
|
|
|
|
std::vector<Game::MaterialTextureDef> textureList;
|
|
|
|
|
|
|
|
for (auto texture : textures.array_items())
|
|
|
|
{
|
|
|
|
if (!texture.is_array()) continue;
|
|
|
|
if (textureList.size() >= 0xFF) break;
|
|
|
|
|
|
|
|
auto textureInfo = texture.array_items();
|
|
|
|
if (textureInfo.size() < 2) continue;
|
|
|
|
|
|
|
|
auto map = textureInfo[0];
|
|
|
|
auto image = textureInfo[1];
|
|
|
|
if (!map.is_string() || !image.is_string()) continue;
|
|
|
|
|
|
|
|
Game::MaterialTextureDef textureDef;
|
|
|
|
|
|
|
|
textureDef.semantic = 0; // No water image
|
|
|
|
textureDef.sampleState = -30;
|
|
|
|
textureDef.nameEnd = map.string_value().back();
|
|
|
|
textureDef.nameStart = map.string_value().front();
|
|
|
|
textureDef.nameHash = Game::R_HashString(map.string_value().data());
|
|
|
|
|
|
|
|
textureDef.info.image = Components::AssetHandler::FindAssetForZone(Game::XAssetType::ASSET_TYPE_IMAGE, image.string_value(), builder).image;
|
|
|
|
|
|
|
|
if (replaceTexture)
|
|
|
|
{
|
|
|
|
bool applied = false;
|
|
|
|
|
|
|
|
for (char i = 0; i < baseMaterial->textureCount; ++i)
|
|
|
|
{
|
|
|
|
if (material->textureTable[i].nameHash == textureDef.nameHash)
|
|
|
|
{
|
|
|
|
applied = true;
|
|
|
|
material->textureTable[i].info.image = textureDef.info.image;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!applied)
|
|
|
|
{
|
|
|
|
Components::Logger::Error(0, "Unable to find texture for map '%s' in %s!", map.string_value().data(), baseMaterial->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
textureList.push_back(textureDef);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!replaceTexture)
|
|
|
|
{
|
|
|
|
if (!textureList.empty())
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
Game::MaterialTextureDef* textureTable = builder->getAllocator()->allocateArray<Game::MaterialTextureDef>(textureList.size());
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
if (!textureTable)
|
|
|
|
{
|
|
|
|
Components::Logger::Error("Failed to allocate texture table!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::memcpy(textureTable, textureList.data(), sizeof(Game::MaterialTextureDef) * textureList.size());
|
|
|
|
|
|
|
|
material->textureTable = textureTable;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
material->textureTable = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
material->textureCount = static_cast<char>(textureList.size()) & 0xFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
header->material = material;
|
|
|
|
}
|
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
void IMaterial::mark(Game::XAssetHeader header, Components::ZoneBuilder::Zone* builder)
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
|
|
|
Game::Material* asset = header.material;
|
|
|
|
|
|
|
|
if (asset->techniqueSet)
|
|
|
|
{
|
2016-12-28 15:35:30 -05:00
|
|
|
builder->loadAsset(Game::XAssetType::ASSET_TYPE_TECHNIQUE_SET, asset->techniqueSet);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (asset->textureTable)
|
|
|
|
{
|
|
|
|
for (char i = 0; i < asset->textureCount; ++i)
|
|
|
|
{
|
|
|
|
if (asset->textureTable[i].info.image)
|
|
|
|
{
|
|
|
|
if (asset->textureTable[i].semantic == SEMANTIC_WATER_MAP)
|
|
|
|
{
|
|
|
|
if (asset->textureTable[i].info.water->image)
|
|
|
|
{
|
2016-12-23 15:01:56 -05:00
|
|
|
builder->loadAsset(Game::XAssetType::ASSET_TYPE_IMAGE, asset->textureTable[i].info.water->image);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-23 15:01:56 -05:00
|
|
|
builder->loadAsset(Game::XAssetType::ASSET_TYPE_IMAGE, asset->textureTable[i].info.image);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
void IMaterial::save(Game::XAssetHeader header, Components::ZoneBuilder::Zone* builder)
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
AssertSize(Game::Material, 96);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
Utils::Stream* buffer = builder->getBuffer();
|
2016-07-11 11:14:58 -04:00
|
|
|
Game::Material* asset = header.material;
|
2016-11-20 08:09:07 -05:00
|
|
|
Game::Material* dest = buffer->dest<Game::Material>();
|
|
|
|
buffer->save(asset);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->pushBlock(Game::XFILE_BLOCK_VIRTUAL);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
if (asset->name)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->saveString(builder->getAssetName(this->getType(), asset->name));
|
2016-07-11 11:14:58 -04:00
|
|
|
Utils::Stream::ClearPointer(&dest->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (asset->techniqueSet)
|
|
|
|
{
|
2016-12-28 15:35:30 -05:00
|
|
|
dest->techniqueSet = builder->saveSubAsset(Game::XAssetType::ASSET_TYPE_TECHNIQUE_SET, asset->techniqueSet).techniqueSet;
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (asset->textureTable)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
AssertSize(Game::MaterialTextureDef, 12);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
// Pointer/Offset insertion is untested, but it worked in T6, so I think it's fine
|
2016-11-20 08:09:07 -05:00
|
|
|
if (builder->hasPointer(asset->textureTable))
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
dest->textureTable = builder->getPointer(asset->textureTable);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->align(Utils::Stream::ALIGN_4);
|
|
|
|
builder->storePointer(asset->textureTable);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
Game::MaterialTextureDef* destTextureTable = buffer->dest<Game::MaterialTextureDef>();
|
|
|
|
buffer->saveArray(asset->textureTable, asset->textureCount);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
|
|
|
for (char i = 0; i < asset->textureCount; ++i)
|
|
|
|
{
|
|
|
|
Game::MaterialTextureDef* destTextureDef = &destTextureTable[i];
|
|
|
|
Game::MaterialTextureDef* textureDef = &asset->textureTable[i];
|
|
|
|
|
|
|
|
if (textureDef->semantic == SEMANTIC_WATER_MAP)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
AssertSize(Game::water_t, 68);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
Game::water_t* destWater = buffer->dest<Game::water_t>();
|
2016-07-11 11:14:58 -04:00
|
|
|
Game::water_t* water = textureDef->info.water;
|
|
|
|
|
|
|
|
if (water)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->align(Utils::Stream::ALIGN_4);
|
|
|
|
buffer->save(water);
|
2016-07-11 11:14:58 -04:00
|
|
|
Utils::Stream::ClearPointer(&destTextureDef->info.water);
|
|
|
|
|
|
|
|
// Save_water_t
|
2016-12-28 21:06:30 -05:00
|
|
|
if (water->H0)
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->align(Utils::Stream::ALIGN_4);
|
2016-12-28 21:06:30 -05:00
|
|
|
buffer->save(water->H0, 8, water->M * water->N);
|
|
|
|
Utils::Stream::ClearPointer(&destWater->H0);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
|
2016-12-28 21:06:30 -05:00
|
|
|
if (water->wTerm)
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->align(Utils::Stream::ALIGN_4);
|
2016-12-28 21:06:30 -05:00
|
|
|
buffer->save(water->wTerm, 4, water->M * water->N);
|
|
|
|
Utils::Stream::ClearPointer(&destWater->wTerm);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (water->image)
|
|
|
|
{
|
2016-12-23 01:42:56 -05:00
|
|
|
destWater->image = builder->saveSubAsset(Game::XAssetType::ASSET_TYPE_IMAGE, water->image).image;
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (textureDef->info.image)
|
|
|
|
{
|
2016-12-23 01:42:56 -05:00
|
|
|
destTextureDef->info.image = builder->saveSubAsset(Game::XAssetType::ASSET_TYPE_IMAGE, textureDef->info.image).image;
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils::Stream::ClearPointer(&dest->textureTable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (asset->constantTable)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
AssertSize(Game::MaterialConstantDef, 32);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
if (builder->hasPointer(asset->constantTable))
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
dest->constantTable = builder->getPointer(asset->constantTable);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->align(Utils::Stream::ALIGN_16);
|
|
|
|
builder->storePointer(asset->constantTable);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->saveArray(asset->constantTable, asset->constantCount);
|
2016-07-11 11:14:58 -04:00
|
|
|
Utils::Stream::ClearPointer(&dest->constantTable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (asset->stateBitTable)
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
if (builder->hasPointer(asset->stateBitTable))
|
2016-07-11 11:14:58 -04:00
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
dest->stateBitTable = builder->getPointer(asset->stateBitTable);
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->align(Utils::Stream::ALIGN_4);
|
|
|
|
builder->storePointer(asset->stateBitTable);
|
2016-07-11 11:14:58 -04:00
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->save(asset->stateBitTable, 8, asset->stateBitsCount);
|
2016-07-11 11:14:58 -04:00
|
|
|
Utils::Stream::ClearPointer(&dest->stateBitTable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-20 08:09:07 -05:00
|
|
|
buffer->popBlock();
|
2016-07-11 11:14:58 -04:00
|
|
|
}
|
|
|
|
}
|