1#include "ObjectHitTable.hh"
3#include "game/system/ResourceManager.hh"
5#include <egg/util/Stream.hh>
10ObjectHitTable::ObjectHitTable(
const char *filename) {
13 System::ResourceManager::Instance()->getFile(filename, &size, System::ArchiveId::Core);
17 m_count = stream.read_s16();
18 m_fieldCount = stream.read_s16();
19 m_reactions = std::span<s16>(
new s16[m_count], m_count);
21 for (
auto &reaction : m_reactions) {
23 reaction = stream.read_s16();
24 stream.skip(m_fieldCount * 2 - 2);
27 m_slots =
reinterpret_cast<const s16 *
>(stream.dataAtIndex());
31ObjectHitTable::~ObjectHitTable() {
32 delete m_reactions.data();
35Kart::Reaction ObjectHitTable::reaction(s16 i)
const {
38 return static_cast<Kart::Reaction
>(m_reactions[i]);
41s16 ObjectHitTable::slot(ObjectId
id)
const {
42 constexpr size_t SLOT_COUNT = 0x2f4;
44 size_t i =
static_cast<std::underlying_type_t<ObjectId>
>(id);
45 return i < SLOT_COUNT ? parse<s16>(m_slots[i]) : -1;
A stream of data stored in memory.