2022-08-13 02:48:34 +00:00
|
|
|
#ifndef _CSORTEDLISTS_HPP
|
|
|
|
#define _CSORTEDLISTS_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "MetroidPrime/CObjectList.hpp"
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CAABox.hpp"
|
|
|
|
|
|
|
|
class CActor;
|
|
|
|
|
|
|
|
namespace SL {
|
|
|
|
struct SNode {
|
|
|
|
CActor* x0_actor;
|
|
|
|
CAABox x4_box;
|
|
|
|
s16 x1c_selfIdxs[6];
|
|
|
|
s16 x28_next;
|
|
|
|
bool x2a_populated;
|
|
|
|
};
|
|
|
|
CHECK_SIZEOF(SNode, 0x2c);
|
|
|
|
|
|
|
|
struct SSortedList {
|
|
|
|
s16 x0_ids[kMaxObjects];
|
2022-09-05 04:01:13 +00:00
|
|
|
uint x800_size;
|
2022-08-13 02:48:34 +00:00
|
|
|
};
|
|
|
|
CHECK_SIZEOF(SSortedList, 0x804);
|
|
|
|
|
|
|
|
class CSortedListManager {
|
|
|
|
SNode x0_nodes[kMaxObjects];
|
|
|
|
SSortedList xb000_sortedLists[6];
|
|
|
|
};
|
|
|
|
CHECK_SIZEOF(CSortedListManager, 0xe018);
|
|
|
|
} // namespace SL
|
|
|
|
|
2022-09-18 06:05:46 +00:00
|
|
|
#endif
|