metaforce/Runtime/Character/CModelData.cpp

518 lines
16 KiB
C++
Raw Normal View History

2016-04-14 03:32:27 +00:00
#include "CModelData.hpp"
#include "CAnimData.hpp"
2016-04-14 21:42:47 +00:00
#include "IAnimReader.hpp"
#include "Graphics/CGraphics.hpp"
#include "Graphics/CSkinnedModel.hpp"
#include "Graphics/CVertexMorphEffect.hpp"
#include "Editor/ProjectManager.hpp"
#include "CActorLights.hpp"
#include "CStateManager.hpp"
#include "CPlayerState.hpp"
#include "GameGlobalObjects.hpp"
#include "CAssetFactory.hpp"
#include "CCharacterFactory.hpp"
2016-04-16 03:24:25 +00:00
#include "CAdditiveAnimPlayback.hpp"
2016-04-14 03:32:27 +00:00
namespace urde
{
2016-08-31 23:08:09 +00:00
static logvisor::Module Log("urde::CModelData");
2016-04-14 03:32:27 +00:00
2016-04-15 03:02:21 +00:00
CModelData::~CModelData() {}
2016-04-14 03:32:27 +00:00
CModelData::CModelData() {}
2016-04-15 03:02:21 +00:00
CModelData CModelData::CModelDataNull() {return CModelData();}
2016-04-14 03:32:27 +00:00
2016-09-12 04:53:28 +00:00
CModelData::CModelData(const CStaticRes& res, int instCount)
: x0_scale(res.GetScale()), m_drawInstCount(instCount)
2016-04-14 03:32:27 +00:00
{
x1c_normalModel = g_SimplePool->GetObj({SBIG('CMDL'), res.GetId()});
2016-08-31 23:08:09 +00:00
if (!x1c_normalModel)
Log.report(logvisor::Fatal, "unable to find CMDL %08X", res.GetId());
2016-09-12 04:53:28 +00:00
m_normalModelInst = x1c_normalModel->MakeNewInstance(0, instCount);
2016-04-14 03:32:27 +00:00
}
2016-09-12 04:53:28 +00:00
CModelData::CModelData(const CAnimRes& res, int instCount)
: x0_scale(res.GetScale()), m_drawInstCount(instCount)
2016-04-14 03:32:27 +00:00
{
2016-04-14 21:42:47 +00:00
TToken<CCharacterFactory> factory = g_CharFactoryBuilder->GetFactory(res);
2016-09-12 04:53:28 +00:00
x10_animData = factory->CreateCharacter(res.GetCharacterNodeId(), res.CanLoop(), factory,
res.GetDefaultAnim(), instCount);
2016-04-14 03:32:27 +00:00
}
2016-04-14 21:42:47 +00:00
SAdvancementDeltas CModelData::GetAdvancementDeltas(const CCharAnimTime& a,
const CCharAnimTime& b) const
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
return x10_animData->GetAdvancementDeltas(a, b);
2016-04-14 21:42:47 +00:00
else
return {};
2016-04-14 03:32:27 +00:00
}
void CModelData::Render(const CStateManager& stateMgr, const zeus::CTransform& xf,
2017-08-26 04:36:25 +00:00
const CActorLights* lights, const CModelFlags& drawFlags) const
2016-04-14 03:32:27 +00:00
{
2016-04-14 21:42:47 +00:00
Render(GetRenderingModel(stateMgr), xf, lights, drawFlags);
2016-04-14 03:32:27 +00:00
}
2017-09-05 03:00:19 +00:00
bool CModelData::IsLoaded(int shaderIdx) const
{
if (x10_animData)
{
if (!x10_animData->xd8_modelData->GetModel()->IsLoaded(shaderIdx))
return false;
if (const CSkinnedModel* model = x10_animData->xf4_xrayModel.get())
if (!model->GetModel()->IsLoaded(shaderIdx))
return false;
if (const CSkinnedModel* model = x10_animData->xf8_infraModel.get())
if (!model->GetModel()->IsLoaded(shaderIdx))
return false;
}
if (const CModel* model = x1c_normalModel.GetObj())
if (!model->IsLoaded(shaderIdx))
return false;
if (const CModel* model = x2c_xrayModel.GetObj())
if (!model->IsLoaded(shaderIdx))
return false;
if (const CModel* model = x3c_infraModel.GetObj())
if (!model->IsLoaded(shaderIdx))
return false;
return true;
}
2017-07-31 05:19:05 +00:00
CModelData::EWhichModel CModelData::GetRenderingModel(const CStateManager& stateMgr)
2016-04-14 03:32:27 +00:00
{
2016-04-14 21:42:47 +00:00
switch (stateMgr.GetPlayerState()->GetActiveVisor(stateMgr))
{
case CPlayerState::EPlayerVisor::XRay:
return CModelData::EWhichModel::XRay;
case CPlayerState::EPlayerVisor::Thermal:
2018-02-05 06:56:09 +00:00
if (stateMgr.GetThermalDrawFlag() == EThermalDrawFlag::Cold)
return CModelData::EWhichModel::Thermal;
return CModelData::EWhichModel::ThermalHot;
2016-04-14 21:42:47 +00:00
default:
return CModelData::EWhichModel::Normal;
}
2016-04-14 03:32:27 +00:00
}
2016-08-21 00:04:50 +00:00
CSkinnedModel& CModelData::PickAnimatedModel(EWhichModel which) const
2016-04-14 03:32:27 +00:00
{
2016-08-21 00:04:50 +00:00
CSkinnedModel* ret = nullptr;
2016-04-14 21:42:47 +00:00
switch (which)
{
case EWhichModel::XRay:
2016-04-29 10:08:46 +00:00
ret = x10_animData->xf4_xrayModel.get();
2018-01-07 05:19:49 +00:00
break;
2016-04-14 21:42:47 +00:00
case EWhichModel::Thermal:
2018-02-05 06:56:09 +00:00
case EWhichModel::ThermalHot:
2016-04-29 10:08:46 +00:00
ret = x10_animData->xf8_infraModel.get();
2018-01-07 05:19:49 +00:00
break;
2016-04-14 21:42:47 +00:00
default: break;
}
if (ret)
return *ret;
2016-04-29 10:08:46 +00:00
return *x10_animData->xd8_modelData.GetObj();
2016-04-14 03:32:27 +00:00
}
2016-09-09 04:19:19 +00:00
const std::unique_ptr<CBooModel>& CModelData::PickStaticModel(EWhichModel which) const
2016-04-14 03:32:27 +00:00
{
2016-09-09 04:19:19 +00:00
const std::unique_ptr<CBooModel>* ret = nullptr;
2016-04-14 21:42:47 +00:00
switch (which)
{
case EWhichModel::XRay:
ret = &m_xrayModelInst;
2018-01-07 05:19:49 +00:00
break;
2016-04-14 21:42:47 +00:00
case EWhichModel::Thermal:
2018-02-05 06:56:09 +00:00
case EWhichModel::ThermalHot:
ret = &m_infraModelInst;
2018-01-07 05:19:49 +00:00
break;
2016-04-14 21:42:47 +00:00
default: break;
}
2018-01-07 05:19:49 +00:00
if (ret && *ret)
2016-04-14 21:42:47 +00:00
return *ret;
return m_normalModelInst;
2016-04-14 03:32:27 +00:00
}
2017-08-13 05:26:14 +00:00
void CModelData::SetXRayModel(const std::pair<CAssetId, CAssetId>& modelSkin)
2016-04-14 03:32:27 +00:00
{
2017-08-13 05:26:14 +00:00
if (modelSkin.first.IsValid())
2016-04-14 21:42:47 +00:00
{
2016-04-15 03:02:21 +00:00
if (g_ResFactory->GetResourceTypeById(modelSkin.first) == SBIG('CMDL'))
2016-04-14 21:42:47 +00:00
{
2017-08-13 05:26:14 +00:00
if (x10_animData && modelSkin.second.IsValid() &&
2016-04-15 03:02:21 +00:00
g_ResFactory->GetResourceTypeById(modelSkin.second) == SBIG('CSKR'))
2016-04-14 21:42:47 +00:00
{
2016-04-29 10:08:46 +00:00
x10_animData->SetXRayModel(g_SimplePool->GetObj({SBIG('CMDL'), modelSkin.first}),
2016-04-15 03:02:21 +00:00
g_SimplePool->GetObj({SBIG('CSKR'), modelSkin.second}));
2016-04-14 21:42:47 +00:00
}
else
{
2016-04-15 03:02:21 +00:00
x2c_xrayModel = g_SimplePool->GetObj({SBIG('CMDL'), modelSkin.first});
if (!x2c_xrayModel)
Log.report(logvisor::Fatal, "unable to find CMDL %08X", modelSkin.first);
2016-09-12 04:53:28 +00:00
m_xrayModelInst = x2c_xrayModel->MakeNewInstance(0, m_drawInstCount);
2016-04-14 21:42:47 +00:00
}
}
}
2016-04-14 03:32:27 +00:00
}
2017-08-13 05:26:14 +00:00
void CModelData::SetInfraModel(const std::pair<CAssetId, CAssetId>& modelSkin)
2016-04-14 03:32:27 +00:00
{
2017-08-13 05:26:14 +00:00
if (modelSkin.first.IsValid())
2016-04-14 21:42:47 +00:00
{
2016-04-15 03:02:21 +00:00
if (g_ResFactory->GetResourceTypeById(modelSkin.first) == SBIG('CMDL'))
2016-04-14 21:42:47 +00:00
{
2017-08-13 05:26:14 +00:00
if (x10_animData && modelSkin.second.IsValid() &&
2016-04-15 03:02:21 +00:00
g_ResFactory->GetResourceTypeById(modelSkin.second) == SBIG('CSKR'))
2016-04-14 21:42:47 +00:00
{
2016-04-29 10:08:46 +00:00
x10_animData->SetInfraModel(g_SimplePool->GetObj({SBIG('CMDL'), modelSkin.first}),
2016-04-15 03:02:21 +00:00
g_SimplePool->GetObj({SBIG('CSKR'), modelSkin.second}));
2016-04-14 21:42:47 +00:00
}
else
{
2016-04-15 03:02:21 +00:00
x3c_infraModel = g_SimplePool->GetObj({SBIG('CMDL'), modelSkin.first});
if (!x3c_infraModel)
Log.report(logvisor::Fatal, "unable to find CMDL %08X", modelSkin.first);
2016-09-12 04:53:28 +00:00
m_infraModelInst = x3c_infraModel->MakeNewInstance(0, m_drawInstCount);
2016-04-14 21:42:47 +00:00
}
}
}
2016-04-14 03:32:27 +00:00
}
2016-08-21 00:04:50 +00:00
bool CModelData::IsDefinitelyOpaque(EWhichModel which)
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
2016-04-14 21:42:47 +00:00
{
2016-08-21 00:04:50 +00:00
CSkinnedModel& model = PickAnimatedModel(which);
return model.GetModelInst()->IsOpaque();
2016-04-14 21:42:47 +00:00
}
else
{
2016-09-09 04:19:19 +00:00
const auto& model = PickStaticModel(which);
return model->IsOpaque();
2016-04-14 21:42:47 +00:00
}
2016-04-14 03:32:27 +00:00
}
bool CModelData::GetIsLoop() const
{
2016-04-29 10:08:46 +00:00
if (!x10_animData)
2016-04-14 21:42:47 +00:00
return false;
2016-04-29 10:08:46 +00:00
return x10_animData->GetIsLoop();
2016-04-14 03:32:27 +00:00
}
2016-04-14 21:42:47 +00:00
float CModelData::GetAnimationDuration(int idx) const
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (!x10_animData)
2016-04-14 21:42:47 +00:00
return 0.f;
2016-04-29 10:08:46 +00:00
return x10_animData->GetAnimationDuration(idx);
2016-04-14 03:32:27 +00:00
}
2016-04-14 21:42:47 +00:00
void CModelData::EnableLooping(bool enable)
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (!x10_animData)
2016-04-14 21:42:47 +00:00
return;
2016-04-29 10:08:46 +00:00
x10_animData->EnableLooping(enable);
2016-04-14 03:32:27 +00:00
}
2016-04-14 21:42:47 +00:00
void CModelData::AdvanceParticles(const zeus::CTransform& xf, float dt,
2016-04-14 03:32:27 +00:00
CStateManager& stateMgr)
{
2016-04-29 10:08:46 +00:00
if (!x10_animData)
2016-04-14 21:42:47 +00:00
return;
x10_animData->AdvanceParticles(xf, dt, x0_scale, stateMgr);
2016-04-14 03:32:27 +00:00
}
zeus::CAABox CModelData::GetBounds() const
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
2016-04-14 21:42:47 +00:00
{
return x10_animData->GetBoundingBox(zeus::CTransform::Scale(x0_scale));
2016-04-14 21:42:47 +00:00
}
else
{
const zeus::CAABox& aabb = x1c_normalModel->GetAABB();
return zeus::CAABox(aabb.min * x0_scale, aabb.max * x0_scale);
2016-04-14 21:42:47 +00:00
}
2016-04-14 03:32:27 +00:00
}
zeus::CAABox CModelData::GetBounds(const zeus::CTransform& xf) const
{
zeus::CTransform xf2 = xf * zeus::CTransform::Scale(x0_scale);
2016-04-29 10:08:46 +00:00
if (x10_animData)
return x10_animData->GetBoundingBox(xf2);
2016-04-14 21:42:47 +00:00
else
return x1c_normalModel->GetAABB().getTransformedAABox(xf2);
2016-04-14 03:32:27 +00:00
}
2017-11-13 06:19:18 +00:00
zeus::CTransform CModelData::GetScaledLocatorTransformDynamic(std::string_view name,
2016-04-14 03:32:27 +00:00
const CCharAnimTime* time) const
{
2016-04-14 21:42:47 +00:00
zeus::CTransform xf = GetLocatorTransformDynamic(name, time);
xf.origin *= x0_scale;
2016-04-14 21:42:47 +00:00
return xf;
2016-04-14 03:32:27 +00:00
}
2017-11-13 06:19:18 +00:00
zeus::CTransform CModelData::GetScaledLocatorTransform(std::string_view name) const
2016-04-14 03:32:27 +00:00
{
2016-04-14 21:42:47 +00:00
zeus::CTransform xf = GetLocatorTransform(name);
xf.origin *= x0_scale;
2016-04-14 21:42:47 +00:00
return xf;
2016-04-14 03:32:27 +00:00
}
2017-11-13 06:19:18 +00:00
zeus::CTransform CModelData::GetLocatorTransformDynamic(std::string_view name,
2016-04-14 03:32:27 +00:00
const CCharAnimTime* time) const
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
return x10_animData->GetLocatorTransform(name, time);
2016-04-14 21:42:47 +00:00
else
return {};
2016-04-14 03:32:27 +00:00
}
2017-11-13 06:19:18 +00:00
zeus::CTransform CModelData::GetLocatorTransform(std::string_view name) const
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
return x10_animData->GetLocatorTransform(name, nullptr);
2016-04-14 21:42:47 +00:00
else
return {};
2016-04-14 03:32:27 +00:00
}
2016-09-02 17:50:03 +00:00
SAdvancementDeltas CModelData::AdvanceAnimationIgnoreParticles(float dt, CRandom16& rand, bool advTree)
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
2016-09-02 17:50:03 +00:00
return x10_animData->AdvanceIgnoreParticles(dt, rand, advTree);
2016-04-14 21:42:47 +00:00
else
return {};
2016-04-14 03:32:27 +00:00
}
2016-09-02 17:50:03 +00:00
SAdvancementDeltas CModelData::AdvanceAnimation(float dt, CStateManager& stateMgr, TAreaId aid, bool advTree)
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
return x10_animData->Advance(dt, x0_scale, stateMgr, aid, advTree);
2016-04-14 21:42:47 +00:00
else
return {};
2016-04-14 03:32:27 +00:00
}
bool CModelData::IsAnimating() const
{
2016-04-29 10:08:46 +00:00
if (!x10_animData)
2016-04-14 21:42:47 +00:00
return false;
2016-04-29 10:08:46 +00:00
return x10_animData->IsAnimating();
2016-04-14 03:32:27 +00:00
}
bool CModelData::IsInFrustum(const zeus::CTransform& xf,
2016-09-04 02:27:35 +00:00
const zeus::CFrustum& frustum) const
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (!x10_animData && !x1c_normalModel)
2016-04-14 21:42:47 +00:00
return true;
2016-09-04 02:27:35 +00:00
return frustum.aabbFrustumTest(GetBounds(xf));
2016-04-14 03:32:27 +00:00
}
2016-09-04 02:27:35 +00:00
void CModelData::RenderParticles(const zeus::CFrustum& frustum) const
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
x10_animData->RenderAuxiliary(frustum);
2016-04-14 03:32:27 +00:00
}
2017-08-25 06:18:09 +00:00
void CModelData::Touch(EWhichModel which, int shaderIdx) const
2016-04-14 03:32:27 +00:00
{
2016-04-29 10:08:46 +00:00
if (x10_animData)
x10_animData->Touch(PickAnimatedModel(which), shaderIdx);
2016-04-14 21:42:47 +00:00
else
PickStaticModel(which)->Touch(shaderIdx);
2016-04-14 03:32:27 +00:00
}
2017-08-25 06:18:09 +00:00
void CModelData::Touch(const CStateManager& stateMgr, int shaderIdx) const
2016-04-14 03:32:27 +00:00
{
2017-08-25 06:18:09 +00:00
Touch(const_cast<CModelData&>(*this).GetRenderingModel(stateMgr), shaderIdx);
2016-04-14 03:32:27 +00:00
}
2018-02-05 06:56:09 +00:00
void CModelData::RenderThermal(const zeus::CTransform& xf, const zeus::CColor& mulColor,
const zeus::CColor& addColor, const CModelFlags& flags) const
2016-04-14 03:32:27 +00:00
{
CGraphics::SetModelMatrix(xf * zeus::CTransform::Scale(x0_scale));
2016-04-14 21:42:47 +00:00
CGraphics::DisableAllLights();
2018-02-05 06:56:09 +00:00
CModelFlags drawFlags = flags;
drawFlags.x4_color *= mulColor;
drawFlags.addColor = addColor;
drawFlags.m_extendedShader = EExtendedShader::Thermal;
2016-04-14 21:42:47 +00:00
2016-04-29 10:08:46 +00:00
if (x10_animData)
2016-04-14 21:42:47 +00:00
{
2018-02-05 06:56:09 +00:00
CSkinnedModel& model = PickAnimatedModel(EWhichModel::ThermalHot);
2016-08-21 20:39:18 +00:00
x10_animData->SetupRender(model, drawFlags, {}, nullptr);
2016-04-14 21:42:47 +00:00
model.Draw(drawFlags);
}
else
{
2018-02-05 06:56:09 +00:00
const auto& model = PickStaticModel(EWhichModel::ThermalHot);
model->Draw(drawFlags, nullptr, nullptr);
2016-04-14 21:42:47 +00:00
}
2016-04-14 03:32:27 +00:00
}
2016-04-14 21:42:47 +00:00
void CModelData::RenderUnsortedParts(EWhichModel which, const zeus::CTransform& xf,
2017-08-26 04:36:25 +00:00
const CActorLights* lights, const CModelFlags& drawFlags) const
2016-04-14 03:32:27 +00:00
{
2018-02-05 06:56:09 +00:00
if ((x14_25_sortThermal && which == EWhichModel::ThermalHot) ||
x10_animData || !x1c_normalModel || drawFlags.x0_blendMode > 4)
2016-04-14 21:42:47 +00:00
{
2016-08-29 04:22:54 +00:00
const_cast<CModelData*>(this)->x14_24_renderSorted = false;
2016-04-14 21:42:47 +00:00
return;
}
CGraphics::SetModelMatrix(xf * zeus::CTransform::Scale(x0_scale));
2016-08-21 00:04:50 +00:00
2016-09-09 04:19:19 +00:00
const auto& model = PickStaticModel(which);
2016-04-14 21:42:47 +00:00
if (lights)
2018-02-09 07:12:26 +00:00
{
lights->ActivateLights(*model);
2018-02-09 07:12:26 +00:00
}
2016-04-14 21:42:47 +00:00
else
2018-02-09 07:12:26 +00:00
{
std::vector<CLight> useLights;
useLights.push_back(CLight::BuildLocalAmbient(zeus::CVector3f::skZero, x18_ambientColor));
model->ActivateLights(useLights);
}
2016-04-14 21:42:47 +00:00
model->DrawNormal(drawFlags, nullptr, nullptr);
2016-04-14 21:42:47 +00:00
// Set ambient to white
CGraphics::DisableAllLights();
2016-08-29 04:22:54 +00:00
const_cast<CModelData*>(this)->x14_24_renderSorted = true;
2016-04-14 03:32:27 +00:00
}
2016-04-14 21:42:47 +00:00
void CModelData::Render(EWhichModel which, const zeus::CTransform& xf,
2017-08-26 04:36:25 +00:00
const CActorLights* lights, const CModelFlags& drawFlags) const
2016-08-23 03:12:50 +00:00
{
2018-02-05 06:56:09 +00:00
if (x14_25_sortThermal && which == EWhichModel::ThermalHot)
2016-04-14 21:42:47 +00:00
{
2018-12-08 01:49:15 +00:00
zeus::CColor mul(drawFlags.x4_color.a(), drawFlags.x4_color.a());
2018-02-05 06:56:09 +00:00
RenderThermal(xf, mul, {0.f, 0.f, 0.f, 0.25f}, drawFlags);
2016-04-14 21:42:47 +00:00
}
else
{
CGraphics::SetModelMatrix(xf * zeus::CTransform::Scale(x0_scale));
2016-04-14 21:42:47 +00:00
2016-04-29 10:08:46 +00:00
if (x10_animData)
2016-04-14 21:42:47 +00:00
{
2016-08-21 00:04:50 +00:00
CSkinnedModel& model = PickAnimatedModel(which);
if (lights)
2018-02-09 07:12:26 +00:00
{
lights->ActivateLights(*model.GetModelInst());
2018-02-09 07:12:26 +00:00
}
2016-08-21 00:04:50 +00:00
else
2018-02-09 07:12:26 +00:00
{
std::vector<CLight> useLights;
useLights.push_back(CLight::BuildLocalAmbient(zeus::CVector3f::skZero, x18_ambientColor));
model.GetModelInst()->ActivateLights(useLights);
}
2016-08-21 00:04:50 +00:00
x10_animData->Render(model, drawFlags, {}, nullptr);
2016-04-14 21:42:47 +00:00
}
else
{
2016-09-09 04:19:19 +00:00
const auto& model = PickStaticModel(which);
2016-08-21 00:04:50 +00:00
if (lights)
2018-02-09 07:12:26 +00:00
{
lights->ActivateLights(*model);
2018-02-09 07:12:26 +00:00
}
2016-08-21 00:04:50 +00:00
else
2018-02-09 07:12:26 +00:00
{
std::vector<CLight> useLights;
useLights.push_back(CLight::BuildLocalAmbient(zeus::CVector3f::skZero, x18_ambientColor));
model->ActivateLights(useLights);
}
2016-08-21 00:04:50 +00:00
2016-04-14 21:42:47 +00:00
if (x14_24_renderSorted)
model->DrawAlpha(drawFlags, nullptr, nullptr);
2016-04-14 21:42:47 +00:00
else
model->Draw(drawFlags, nullptr, nullptr);
2016-04-14 21:42:47 +00:00
}
// Set ambient to white
CGraphics::DisableAllLights();
2016-08-29 04:22:54 +00:00
const_cast<CModelData*>(this)->x14_24_renderSorted = false;
2016-04-14 21:42:47 +00:00
}
2016-04-14 03:32:27 +00:00
}
2017-05-06 05:21:42 +00:00
void CModelData::InvSuitDraw(EWhichModel which, const zeus::CTransform& xf, const CActorLights* lights,
const zeus::CColor& alphaColor, const zeus::CColor& additiveColor)
{
CGraphics::SetModelMatrix(xf * zeus::CTransform::Scale(x0_scale));
if (x10_animData)
{
CSkinnedModel& model = PickAnimatedModel(which);
model.GetModelInst()->DisableAllLights();
CModelFlags flags = {};
/* Z-prime */
flags.m_extendedShader = EExtendedShader::SolidColorBackfaceCullLEqualAlphaOnly;
flags.x4_color = zeus::CColor::skWhite;
x10_animData->Render(model, flags, {}, nullptr);
/* Normal Blended */
lights->ActivateLights(*model.GetModelInst());
flags.m_extendedShader = EExtendedShader::ForcedAlpha;
2017-05-06 05:21:42 +00:00
flags.x4_color = alphaColor;
x10_animData->Render(model, flags, {}, nullptr);
/* Selection Additive */
flags.m_extendedShader = EExtendedShader::ForcedAdditive;
flags.x4_color = additiveColor;
x10_animData->Render(model, flags, {}, nullptr);
}
else
{
CBooModel& model = *PickStaticModel(which);
model.DisableAllLights();
CModelFlags flags = {};
/* Z-prime */
flags.m_extendedShader = EExtendedShader::SolidColorBackfaceCullLEqualAlphaOnly;
flags.x4_color = zeus::CColor::skWhite;
model.Draw(flags, nullptr, nullptr);
/* Normal Blended */
lights->ActivateLights(model);
flags.m_extendedShader = EExtendedShader::ForcedAlpha;
2017-05-06 05:21:42 +00:00
flags.x4_color = alphaColor;
model.Draw(flags, nullptr, nullptr);
/* Selection Additive */
flags.m_extendedShader = EExtendedShader::ForcedAdditive;
flags.x4_color = additiveColor;
model.Draw(flags, nullptr, nullptr);
}
}
2018-11-08 00:53:38 +00:00
void CModelData::DisintegrateDraw(const CStateManager& mgr, const zeus::CTransform& xf,
const CTexture& tex, const zeus::CColor& addColor, float t)
{
DisintegrateDraw(GetRenderingModel(mgr), xf, tex, addColor, t);
}
void CModelData::DisintegrateDraw(EWhichModel which, const zeus::CTransform& xf,
const CTexture& tex, const zeus::CColor& addColor, float t)
{
zeus::CTransform scaledXf = xf * zeus::CTransform::Scale(x0_scale);
CGraphics::SetModelMatrix(scaledXf);
CBooModel::SetDisintegrateTexture(tex.GetBooTexture());
CModelFlags flags(5, 0, 3, zeus::CColor::skWhite);
flags.m_extendedShader = EExtendedShader::Disintegrate;
flags.addColor = addColor;
2018-12-08 01:49:15 +00:00
flags.addColor.a() = t; // Stash T value in here (shader does not care)
2018-11-08 00:53:38 +00:00
if (x10_animData)
{
CSkinnedModel& sModel = PickAnimatedModel(which);
x10_animData->Render(sModel, flags, {}, nullptr);
}
else
{
CBooModel& model = *PickStaticModel(which);
model.Draw(flags, nullptr, nullptr);
}
}
2016-04-14 03:32:27 +00:00
}