A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectId.hh
1#pragma once
2
3#include <Common.hh>
4
5namespace Field {
6
7enum class ObjectId {
8 DummyPole = 0x066,
9 DokanSFC = 0x12e,
10 CastleTree1c = 0x130,
11 PalmTree = 0x145,
12 DKtreeA64c = 0x158,
13 TownTreeDsc = 0x15b,
14 OilSFC = 0x15d,
15 ParasolR = 0x16e,
16 PuchiPakkun = 0x1aa,
17 Aurora = 0x204,
18 Mdush = 0x217,
19};
20
21enum class BlacklistedObjectId {
22 Itembox = 0x65,
23 Hanabi = 0x16a,
24};
25
26static constexpr bool IsObjectBlacklisted(u16 id) {
27 BlacklistedObjectId objectId = static_cast<BlacklistedObjectId>(id);
28 switch (objectId) {
29 // Disabled collision
30 case BlacklistedObjectId::Itembox:
31 return true;
32
33 // No collision
34 case BlacklistedObjectId::Hanabi:
35 return true;
36
37 default:
38 return false;
39 }
40}
41
42} // namespace Field
This header houses common data types such as our integral types and enums.
Pertains to collision.