metaforce/Runtime/CSortedLists.hpp

57 lines
2.1 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
#include <array>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/Collision/CMaterialFilter.hpp"
#include <zeus/CAABox.hpp>
2021-04-10 01:42:06 -07:00
namespace metaforce {
enum class ESortedList { MinX, MinY, MinZ, MaxX, MaxY, MaxZ };
2018-12-07 21:30:43 -08:00
struct SSortedList {
2021-06-06 16:53:41 -07:00
std::array<s16, kMaxEntities> x0_ids;
2018-12-07 21:30:43 -08:00
u32 x800_size = 0;
void Reset() { x0_ids.fill(-1); }
2018-12-07 21:30:43 -08:00
SSortedList() { Reset(); }
};
class CActor;
2018-12-07 21:30:43 -08:00
class CSortedListManager {
struct SNode {
const CActor* x0_actor = nullptr;
zeus::CAABox x4_box = zeus::skNullBox;
std::array<s16, 6> x1c_selfIdxs{-1, -1, -1, -1, -1, -1};
2018-12-07 21:30:43 -08:00
s16 x28_next = -1;
bool x2a_populated = false;
SNode() = default;
SNode(const CActor* act, const zeus::CAABox& aabb) : x0_actor(act), x4_box(aabb), x2a_populated(true) {}
};
2021-06-06 16:53:41 -07:00
std::array<SNode, kMaxEntities> x0_nodes;
std::array<SSortedList, 6> xb000_sortedLists;
2018-12-07 21:30:43 -08:00
void Reset();
void AddToLinkedList(s16 nodeId, s16& headId, s16& tailId);
void RemoveFromList(ESortedList list, s16 idx);
void MoveInList(ESortedList list, s16 idx);
void InsertInList(ESortedList list, SNode& node);
s16 FindInListUpper(ESortedList list, float value) const;
s16 FindInListLower(ESortedList list, float value) const;
s16 ConstructIntersectionArray(const zeus::CAABox& aabb);
s16 CalculateIntersections(ESortedList la, ESortedList lb, s16 a, s16 b, s16 c, s16 d, ESortedList slA,
ESortedList slB, ESortedList slC, ESortedList slD, const zeus::CAABox& aabb);
2018-12-07 21:30:43 -08:00
2017-03-23 22:30:16 -07:00
public:
2018-12-07 21:30:43 -08:00
CSortedListManager();
2021-06-07 12:29:18 -07:00
void BuildNearList(EntityList& out, const zeus::CVector3f& pos, const zeus::CVector3f& dir, float mag,
const CMaterialFilter& filter, const CActor* actor);
2021-06-07 12:29:18 -07:00
void BuildNearList(EntityList& out, const CActor& actor, const zeus::CAABox& aabb);
void BuildNearList(EntityList& out, const zeus::CAABox& aabb, const CMaterialFilter& filter, const CActor* actor);
void Remove(const CActor* actor);
void Move(const CActor* actor, const zeus::CAABox& aabb);
void Insert(const CActor* actor, const zeus::CAABox& aabb);
bool ActorInLists(const CActor* actor) const;
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce