LeviLamina
Loading...
Searching...
No Matches
RaiderCelebrationGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/LevelSoundEvent.h"
7#include "mc/util/FloatRange.h"
8#include "mc/util/json_util/JsonSchemaObjectNode.h"
9#include "mc/world/actor/ActorDefinitionTrigger.h"
10#include "mc/world/actor/ai/goal/BaseGoalDefinition.h"
11#include "mc/world/actor/ai/goal/Goal.h"
12
13// auto generated forward declare list
14// clang-format off
15class Mob;
16namespace JsonUtil { class EmptyClass; }
17// clang-format on
18
19class RaiderCelebrationGoal : public ::Goal {
20public:
21 // RaiderCelebrationGoal inner types declare
22 // clang-format off
24 // clang-format on
25
26 // RaiderCelebrationGoal inner types define
28 public:
29 // member variables
30 // NOLINTBEGIN
31 ::ll::TypedStorage<4, 4, ::SharedTypes::Legacy::LevelSoundEvent> mSoundEvent;
32 ::ll::TypedStorage<4, 8, ::FloatRange> mSoundIntervalRange;
33 ::ll::TypedStorage<4, 8, ::FloatRange> mJumpIntervalRange;
34 ::ll::TypedStorage<4, 4, float> mDuration;
35 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger> mCelebrationEndEvent;
36 // NOLINTEND
37
38 public:
39 // virtual functions
40 // NOLINTBEGIN
41 virtual ~RaiderCelebrationDefinition() /*override*/ = default;
42 // NOLINTEND
43
44 public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI void addCelebrationSoundByName(::std::string const& name);
48 // NOLINTEND
49
50 public:
51 // static functions
52 // NOLINTBEGIN
53 MCAPI static void buildSchema(
54 ::std::string const& name,
55 ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<
58 );
59 // NOLINTEND
60
61 public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66 };
67
68public:
69 // member variables
70 // NOLINTBEGIN
71 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
72 ::ll::TypedStorage<4, 4, int> mNextJumpTickTimer;
73 ::ll::TypedStorage<4, 4, int> mNextSoundTickTimer;
74 ::ll::TypedStorage<4, 4, int> mRuntimeTicks;
75 ::ll::TypedStorage<4, 4, ::SharedTypes::Legacy::LevelSoundEvent> mSoundEvent;
76 ::ll::TypedStorage<4, 8, ::FloatRange> mSoundIntervalRange;
77 ::ll::TypedStorage<4, 8, ::FloatRange> mJumpIntervalRange;
78 ::ll::TypedStorage<4, 4, float> mDuration;
79 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger> mCelebrationEndEvent;
80 // NOLINTEND
81
82public:
83 // prevent constructor by default
84 RaiderCelebrationGoal& operator=(RaiderCelebrationGoal const&);
85 RaiderCelebrationGoal(RaiderCelebrationGoal const&);
86 RaiderCelebrationGoal();
87
88public:
89 // virtual functions
90 // NOLINTBEGIN
91 virtual bool canUse() /*override*/;
92
93 virtual bool canContinueToUse() /*override*/;
94
95 virtual void start() /*override*/;
96
97 virtual void stop() /*override*/;
98
99 virtual void tick() /*override*/;
100
101 virtual void appendDebugInfo(::std::string& str) const /*override*/;
102
103 virtual ~RaiderCelebrationGoal() /*override*/ = default;
104 // NOLINTEND
105
106public:
107 // virtual function thunks
108 // NOLINTBEGIN
109 MCAPI bool $canUse();
110
111 MCAPI bool $canContinueToUse();
112
113 MCAPI void $start();
114
115 MCAPI void $stop();
116
117 MCAPI void $tick();
118
119 MCAPI void $appendDebugInfo(::std::string& str) const;
120
121
122 // NOLINTEND
123
124public:
125 // vftables
126 // NOLINTBEGIN
127 MCNAPI static void** $vftable();
128 // NOLINTEND
129};
Definition BaseGoalDefinition.h:10
Definition Goal.h:14
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition Mob.h:50
Definition RaiderCelebrationGoal.h:27
static MCAPI void ** $vftable()