metaforce/Runtime/World/CDestroyableRock.cpp

64 lines
2.3 KiB
C++
Raw Permalink Normal View History

#include "Runtime/World/CDestroyableRock.hpp"
2020-01-05 20:24:54 -08:00
#include "Runtime/World/CActorParameters.hpp"
#include "Runtime/CPlayerState.hpp"
#include "Runtime/CStateManager.hpp"
#include "TCastTo.hpp" // Generated file, do not modify include path
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-11-12 22:19:18 -08:00
CDestroyableRock::CDestroyableRock(TUniqueId id, bool active, std::string_view name, const CEntityInfo& info,
2018-12-07 21:30:43 -08:00
const zeus::CTransform& xf, CModelData&& modelData, float mass,
const CHealthInfo& health, const CDamageVulnerability& vulnerability,
const CMaterialList& matList, CAssetId fsm, const CActorParameters& actParams,
2020-01-05 20:24:54 -08:00
const CStaticRes& phazonModel, s32 w1)
2018-12-07 21:30:43 -08:00
: CAi(id, active, name, info, xf, std::move(modelData), modelData.GetBounds(), mass, health, vulnerability, matList,
2020-01-05 20:24:54 -08:00
fsm, actParams, 0.3f, 0.8f)
, x2d8_phazonModel(phazonModel)
, x32c_thermalMag(actParams.GetThermalMag())
, x338_healthInfo(health)
, x341_(w1 != 0) {
/* This is now in UsePhazonModel
x2d8_phazonModel->SetSortThermal(true);
*/
CreateShadow(false);
}
2021-04-10 01:42:06 -07:00
void CDestroyableRock::Accept(metaforce::IVisitor& visitor) { visitor.Visit(this); }
2020-01-05 20:24:54 -08:00
void CDestroyableRock::PreRender(CStateManager& mgr, const zeus::CFrustum& frustum) {
if (GetActive()) {
if (mgr.GetPlayerState()->GetActiveVisor(mgr) == CPlayerState::EPlayerVisor::Thermal) {
xb4_drawFlags = CModelFlags(0, 0, 1, zeus::skWhite);
} else {
u8 r;
u8 g;
u8 b;
u8 a;
x330_.toRGBA8(r, g, b, a);
if ((r & g & b) == 0xFF) {
2020-01-05 20:24:54 -08:00
xb4_drawFlags = CModelFlags(0, 0, 3, zeus::skWhite);
} else {
x330_.a() = 1.f;
xb4_drawFlags = CModelFlags(2, 0, 3, x330_);
2020-01-05 20:24:54 -08:00
}
}
}
CActor::PreRender(mgr, frustum);
}
void CDestroyableRock::Think(float dt, CStateManager& mgr) {
if (!GetActive()) {
2020-01-05 20:24:54 -08:00
return;
}
2018-12-07 21:30:43 -08:00
2020-01-05 20:24:54 -08:00
float damageMag = x32c_thermalMag;
if (x324_ > 0.f) {
x324_ = std::max(0.f, x324_ - dt);
zeus::CColor tmpColor = zeus::CColor(0.5, 0.f, 0.f, 1.f);
// TODO: Use skBlack once CModelFlags is properly reverse engineered
x330_ = zeus::CColor::lerp(/*zeus::skBlack*/ zeus::skWhite, tmpColor, x324_);
2020-01-05 20:24:54 -08:00
damageMag = ((x335_usePhazonModel ? 0.5f : 0.25f) * x324_) + damageMag;
}
xd0_damageMag = damageMag;
CEntity::Think(dt, mgr);
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce