A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartItem.cc
1#include "KartItem.hh"
2
3#include "game/kart/KartMove.hh"
4#include "game/kart/KartState.hh"
5
6#include "game/system/RaceManager.hh"
7
8namespace Item {
9
11KartItem::KartItem() {
12 m_flags.makeAllZero();
13}
14
16KartItem::~KartItem() = default;
17
19void KartItem::init(size_t playerIdx) {
20 apply(playerIdx);
21}
22
26 bool prevButton = m_flags.onBit(eFlags::ItemButtonHold);
27 m_flags.resetBit(eFlags::ItemButtonHold, eFlags::ItemButtonActivation);
28
29 const auto &currentInputs = inputs()->currentState();
30 if (currentInputs.item()) {
31 m_flags.setBit(eFlags::ItemButtonHold).changeBit(!prevButton, eFlags::ItemButtonActivation);
32 }
33
34 if (m_flags.onBit(eFlags::Lockout)) {
35 if (!state()->isBeforeRespawn() && !state()->isInAction() && !state()->isTriggerRespawn() &&
36 !state()->isCannonStart() && !state()->isInCannon() && !state()->isAfterCannon()) {
37 m_flags.resetBit(eFlags::Lockout);
38 }
39 } else {
40 if (state()->isInRespawn() || state()->isInAction() || state()->isTriggerRespawn() ||
41 state()->isCannonStart() || state()->isInCannon()) {
42 m_flags.setBit(eFlags::Lockout);
43 } else {
44 const auto *raceMgr = System::RaceManager::Instance();
45 bool canUse = m_flags.onBit(eFlags::ItemButtonActivation);
46 canUse = canUse && raceMgr->isStageReached(System::RaceManager::Stage::Race);
47 canUse = canUse && !state()->isInAction();
48 canUse = canUse && !state()->isBurnout();
49 canUse = canUse && (m_inventory.id() != ItemId::NONE);
50
51 if (canUse) {
52 // For now, assume only time trials are valid and use a mushroom
53 useMushroom();
54 }
55 }
56 }
57}
58
60void KartItem::clear() {
61 if (m_inventory.id() != ItemId::NONE) {
62 m_inventory.clear();
63 }
64}
65
67void KartItem::activateMushroom() {
68 move()->activateMushroom();
69}
70
72void KartItem::useMushroom() {
73 activateMushroom();
74 m_inventory.useItem(1);
75}
76
77} // namespace Item
void calc()
Calculates item activation based on the controller input state.
Definition KartItem.cc:25
Pertains to item handling.
constexpr TBitFlag< T, E > & resetBit(Es... es)
Resets the corresponding bits for the provided enum values.
Definition BitFlag.hh:68
constexpr bool onBit(Es... es) const
Checks if any of the corresponding bits for the provided enum values are on.
Definition BitFlag.hh:103
constexpr TBitFlag< T, E > & changeBit(bool on, Es... es)
Changes the state of the corresponding bits for the provided enum values.
Definition BitFlag.hh:80
constexpr void makeAllZero()
Resets all the bits to zero.
Definition BitFlag.hh:185
constexpr TBitFlag< T, E > & setBit(Es... es)
Sets the corresponding bits for the provided enum values.
Definition BitFlag.hh:57