2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-11-26 03:04:25 +00:00
|
|
|
|
2019-09-22 21:52:05 +00:00
|
|
|
#include <optional>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Runtime/rstl.hpp"
|
|
|
|
#include "Runtime/Particle/CElementGen.hpp"
|
|
|
|
#include "Runtime/World/CActor.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CVector3f.hpp>
|
2017-11-26 03:04:25 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-12-08 05:30:43 +00:00
|
|
|
|
|
|
|
class CFishCloud : public CActor {
|
2019-04-03 04:32:31 +00:00
|
|
|
class CBoid {
|
|
|
|
friend class CFishCloud;
|
|
|
|
zeus::CVector3f x0_pos;
|
|
|
|
zeus::CVector3f xc_vel;
|
|
|
|
float x18_scale;
|
|
|
|
CBoid* x1c_next = nullptr;
|
|
|
|
bool x20_active = true;
|
2021-06-07 19:29:18 +00:00
|
|
|
|
2019-04-03 04:32:31 +00:00
|
|
|
public:
|
|
|
|
CBoid(const zeus::CVector3f& pos, const zeus::CVector3f& vel, float scale)
|
|
|
|
: x0_pos(pos), xc_vel(vel), x18_scale(scale) {}
|
|
|
|
zeus::CVector3f& Translation() { return x0_pos; }
|
|
|
|
const zeus::CVector3f& GetTranslation() const { return x0_pos; }
|
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
class CModifierSource {
|
2019-04-03 04:32:31 +00:00
|
|
|
friend class CFishCloud;
|
2018-12-08 05:30:43 +00:00
|
|
|
TUniqueId x0_source;
|
2019-04-03 04:32:31 +00:00
|
|
|
float x4_radius;
|
|
|
|
float x8_priority;
|
|
|
|
bool xc_isRepulsor;
|
|
|
|
bool xd_isSwirl;
|
2021-06-07 19:29:18 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
public:
|
2019-04-03 04:32:31 +00:00
|
|
|
CModifierSource(TUniqueId source, bool repulsor, bool swirl, float radius, float priority)
|
|
|
|
: x0_source(source), x4_radius(radius), x8_priority(priority), xc_isRepulsor(repulsor), xd_isSwirl(swirl) {}
|
|
|
|
void SetAffectPriority(float p) { x8_priority = p; }
|
|
|
|
void SetAffectRadius(float r) { x4_radius = r; }
|
|
|
|
float GetAffectPriority() const { return x8_priority; }
|
|
|
|
float GetAffectRadius() const { return x4_radius; }
|
|
|
|
bool IsRepulsor() const { return xc_isRepulsor; }
|
|
|
|
bool IsSwirl() const { return xd_isSwirl; }
|
|
|
|
TUniqueId GetSource() const { return x0_source; }
|
|
|
|
bool operator<(const CModifierSource& other) const {
|
|
|
|
if (x0_source == other.x0_source)
|
|
|
|
return xc_isRepulsor < other.xc_isRepulsor;
|
|
|
|
return x0_source < other.x0_source;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
std::vector<CBoid> xe8_boids;
|
|
|
|
std::vector<CBoid*> xf8_boidPartitionLists;
|
|
|
|
std::vector<CModifierSource> x108_modifierSources;
|
|
|
|
u32 x118_thinkCounter = 0;
|
|
|
|
u32 x11c_updateMask;
|
|
|
|
zeus::CVector3f x120_scale;
|
|
|
|
float x12c_randomMovementTimer = 0.f;
|
|
|
|
float x130_speed;
|
|
|
|
u32 x134_numBoids;
|
|
|
|
float x138_separationRadius;
|
|
|
|
float x13c_cohesionMagnitude;
|
|
|
|
float x140_alignmentWeight;
|
|
|
|
float x144_separationMagnitude;
|
|
|
|
float x148_weaponRepelMagnitude;
|
|
|
|
float x14c_playerRepelMagnitude;
|
|
|
|
float x150_scatterVel;
|
|
|
|
float x154_maxScatterAngle;
|
|
|
|
float x158_containmentMagnitude;
|
|
|
|
float x15c_playerRepelDampingSpeed;
|
|
|
|
float x160_weaponRepelDampingSpeed;
|
|
|
|
float x164_playerRepelDamping;
|
|
|
|
float x168_weaponRepelDamping;
|
|
|
|
zeus::CColor x16c_color;
|
|
|
|
float x170_weaponKillRadius;
|
|
|
|
float x174_containmentRadius;
|
|
|
|
/* Used to be position and normal arrays */
|
2021-06-07 19:29:18 +00:00
|
|
|
// rstl::reserved_vector<std::unique_ptr<float[]>, 4> x178_;
|
|
|
|
// rstl::reserved_vector<std::unique_ptr<float[]>, 4> x19c_;
|
2019-04-03 04:32:31 +00:00
|
|
|
rstl::reserved_vector<std::shared_ptr<CModelData>, 4> x1b0_models;
|
|
|
|
rstl::reserved_vector<TLockedToken<CGenDescription>, 4> x1c4_particleDescs;
|
|
|
|
rstl::reserved_vector<std::unique_ptr<CElementGen>, 4> x1f8_particleGens;
|
|
|
|
rstl::reserved_vector<u32, 4> x21c_deathParticleCounts;
|
2020-04-17 04:49:03 +00:00
|
|
|
CModelData::EWhichModel x230_whichModel{};
|
2019-04-03 04:32:31 +00:00
|
|
|
u16 x234_deathSfx;
|
|
|
|
zeus::CVector3f x238_partitionPitch;
|
|
|
|
zeus::CVector3f x244_ooPartitionPitch;
|
2020-04-20 04:57:50 +00:00
|
|
|
bool x250_24_randomMovement : 1 = false;
|
|
|
|
bool x250_25_worldSpace : 1 = true; // The result of a close_enough paradox (weird inlined test?)
|
|
|
|
bool x250_26_enableWeaponRepelDamping : 1 = false;
|
|
|
|
bool x250_27_validModel : 1 = false;
|
2020-04-11 05:50:10 +00:00
|
|
|
bool x250_28_killable : 1;
|
|
|
|
bool x250_29_repelFromThreats : 1;
|
2020-04-20 04:57:50 +00:00
|
|
|
bool x250_30_enablePlayerRepelDamping : 1 = false;
|
|
|
|
bool x250_31_updateWithoutPartitions : 1 = false;
|
2018-05-07 00:47:40 +00:00
|
|
|
|
2019-04-03 04:32:31 +00:00
|
|
|
void UpdateParticles(float dt);
|
|
|
|
void UpdatePartitionList();
|
|
|
|
bool PointInBox(const zeus::CAABox& aabb, const zeus::CVector3f& point) const;
|
|
|
|
zeus::CPlane FindClosestPlane(const zeus::CAABox& aabb, const zeus::CVector3f& point) const;
|
|
|
|
CBoid* GetListAt(const zeus::CVector3f& pos);
|
|
|
|
void BuildBoidNearList(const zeus::CVector3f& pos, float radius, rstl::reserved_vector<CBoid*, 25>& nearList);
|
|
|
|
void BuildBoidNearPartitionList(const zeus::CVector3f& pos, float radius,
|
|
|
|
rstl::reserved_vector<CBoid*, 25>& nearList);
|
2019-08-14 10:04:11 +00:00
|
|
|
void PlaceBoid(CStateManager& mgr, CBoid& boid, const zeus::CAABox& aabb) const;
|
2019-04-03 04:32:31 +00:00
|
|
|
void ApplySeparation(CBoid& boid, const rstl::reserved_vector<CBoid*, 25>& nearList) const;
|
2021-06-07 19:29:18 +00:00
|
|
|
void ApplySeparation(CBoid& boid, const zeus::CVector3f& separateFrom, float separationRadius,
|
|
|
|
float separationMagnitude) const;
|
2019-04-03 04:32:31 +00:00
|
|
|
void ApplyCohesion(CBoid& boid, const rstl::reserved_vector<CBoid*, 25>& nearList) const;
|
2021-06-07 19:29:18 +00:00
|
|
|
void ApplyCohesion(CBoid& boid, const zeus::CVector3f& cohesionFrom, float cohesionRadius,
|
|
|
|
float cohesionMagnitude) const;
|
2019-04-03 04:32:31 +00:00
|
|
|
void ApplyAlignment(CBoid& boid, const rstl::reserved_vector<CBoid*, 25>& nearList) const;
|
2021-06-07 19:29:18 +00:00
|
|
|
void ApplyAttraction(CBoid& boid, const zeus::CVector3f& attractTo, float attractionRadius,
|
|
|
|
float attractionMagnitude) const;
|
|
|
|
void ApplyRepulsion(CBoid& boid, const zeus::CVector3f& attractTo, float repulsionRadius,
|
|
|
|
float repulsionMagnitude) const;
|
2019-04-03 04:32:31 +00:00
|
|
|
void ApplySwirl(CBoid& boid, const zeus::CVector3f& swirlPoint, bool clockwise, float magnitude, float radius) const;
|
|
|
|
void ApplyContainment(CBoid& boid, const zeus::CAABox& aabb) const;
|
|
|
|
void ScatterBoid(CStateManager& mgr, CBoid& b) const;
|
|
|
|
void CreateBoidDeathParticle(CBoid& b) const;
|
|
|
|
void KillBoid(CBoid& b) const;
|
|
|
|
zeus::CAABox GetUntransformedBoundingBox() const;
|
|
|
|
zeus::CAABox GetBoundingBox() const;
|
|
|
|
void CreatePartitionList();
|
|
|
|
void AllocateSkinnedModels(CStateManager& mgr, CModelData::EWhichModel which);
|
|
|
|
void AddParticlesToRenderer() const;
|
|
|
|
void RenderBoid(int idx, const CBoid& boid, u32& drawMask, bool thermalHot, const CModelFlags& flags) const;
|
|
|
|
|
2017-11-26 03:04:25 +00:00
|
|
|
public:
|
2021-05-26 14:00:57 +00:00
|
|
|
DEFINE_ENTITY
|
2021-06-07 19:29:18 +00:00
|
|
|
CFishCloud(TUniqueId uid, bool active, std::string_view name, const CEntityInfo& info, const zeus::CVector3f& scale,
|
|
|
|
const zeus::CTransform& xf, CModelData&& mData, const CAnimRes& aRes, u32 numBoids, float speed,
|
|
|
|
float separationRadius, float cohesionMagnitude, float alignmentWeight, float separationMagnitude,
|
|
|
|
float weaponRepelMagnitude, float playerRepelMagnitude, float containmentMagnitude, float scatterVel,
|
|
|
|
float maxScatterAngle, float weaponRepelDampingSpeed, float playerRepelDampingSpeed,
|
|
|
|
float containmentRadius, u32 updateShift, const zeus::CColor& color, bool killable, float weaponKillRadius,
|
2019-04-03 04:32:31 +00:00
|
|
|
CAssetId part1, u32 partCount1, CAssetId part2, u32 partCount2, CAssetId part3, u32 partCount3,
|
|
|
|
CAssetId part4, u32 partCount4, u32 deathSfx, bool repelFromThreats, bool hotInThermal);
|
2018-12-08 05:30:43 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
void Accept(IVisitor& visitor) override;
|
|
|
|
void Think(float dt, CStateManager& mgr) override;
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId sender, CStateManager& mgr) override;
|
|
|
|
void PreRender(CStateManager& mgr, const zeus::CFrustum& frustum) override;
|
2020-04-09 17:28:20 +00:00
|
|
|
void Render(CStateManager& mgr) override;
|
2019-08-09 12:45:18 +00:00
|
|
|
void CalculateRenderBounds() override;
|
|
|
|
std::optional<zeus::CAABox> GetTouchBounds() const override;
|
|
|
|
void Touch(CActor& other, CStateManager& mgr) override;
|
2019-04-03 04:32:31 +00:00
|
|
|
void RemoveRepulsor(TUniqueId source);
|
|
|
|
void RemoveAttractor(TUniqueId source);
|
|
|
|
bool AddRepulsor(TUniqueId source, bool swirl, float radius, float priority);
|
|
|
|
bool AddAttractor(TUniqueId source, bool swirl, float radius, float priority);
|
2017-11-26 03:04:25 +00:00
|
|
|
};
|
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|