Kinoko
A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartItem.hh
1
#pragma once
2
3
#include "game/item/ItemInventory.hh"
4
5
#include "game/kart/KartObjectProxy.hh"
6
7
#include <egg/core/BitFlag.hh>
8
9
namespace
Item
{
10
13
class
KartItem
:
Kart::KartObjectProxy
{
14
public
:
15
KartItem
();
16
~KartItem
();
17
18
void
init(
size_t
playerIdx);
19
void
calc
();
20
void
clear();
21
22
void
activateMushroom();
23
void
useMushroom();
24
26
[[nodiscard]]
ItemInventory
&inventory() {
27
return
m_inventory;
28
}
30
31
private
:
32
enum class
eFlags {
33
Lockout = 10,
34
ItemButtonHold = 12,
35
ItemButtonActivation = 14,
36
};
37
typedef
EGG::TBitFlag<u16, eFlags>
Flags
;
38
39
Flags
m_flags;
40
ItemInventory
m_inventory;
41
};
42
43
}
// namespace Item
Item::ItemInventory
Definition
ItemInventory.hh:8
Item::KartItem
State management for item usage.
Definition
KartItem.hh:13
Item::KartItem::calc
void calc()
Calculates item activation based on the controller input state.
Definition
KartItem.cc:25
Kart::KartObjectProxy
Base class for most kart-related objects.
Definition
KartObjectProxy.hh:64
Item
Pertains to item handling.
Definition
ItemDirector.cc:5
EGG::TBitFlag
Wrapper around an integral type with an enum corresponding to its bits.
Definition
BitFlag.hh:16
game
item
KartItem.hh
Made by
Malleo
. Logo by
vabold
. Website generated by
Doxygen
1.12.0