LeviLamina
Loading...
Searching...
No Matches
MoveAroundTargetGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h"
7#include "mc/world/actor/ai/goal/BaseGoalDefinition.h"
8#include "mc/world/actor/ai/goal/Goal.h"
9
10// auto generated forward declare list
11// clang-format off
13class Mob;
14struct FloatRange;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
19public:
20 // MoveAroundTargetGoal inner types declare
21 // clang-format off
22 class Definition;
23 // clang-format on
24
25 // MoveAroundTargetGoal inner types define
27 public:
28 // member variables
29 // NOLINTBEGIN
37 // NOLINTEND
38
39 public:
40 // prevent constructor by default
41 Definition& operator=(Definition const&);
42 Definition(Definition const&);
43 Definition();
44
45 public:
46 // virtual functions
47 // NOLINTBEGIN
48 // vIndex: 0
49 virtual ~Definition() /*override*/ = default;
50 // NOLINTEND
51
52 public:
53 // static functions
54 // NOLINTBEGIN
55 MCAPI static void buildSchema(
56 ::std::string const& name,
57 ::std::shared_ptr<
59 );
60 // NOLINTEND
61
62 public:
63 // destructor thunk
64 // NOLINTBEGIN
65
66 // NOLINTEND
67
68 public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73 };
74
75public:
76 // member variables
77 // NOLINTBEGIN
78 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
79 ::ll::TypedStorage<1, 1, bool> mReachedTarget;
80 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mFilters;
81 ::ll::TypedStorage<4, 4, float> mSpeed;
82 ::ll::TypedStorage<4, 4, float> mSpreadDegrees;
83 ::ll::TypedStorage<4, 8, ::FloatRange> mDestinationRange;
84 ::ll::TypedStorage<4, 4, float> mHeightDifferenceLimit;
85 ::ll::TypedStorage<4, 4, int> mHorizontalSearchDistance;
86 ::ll::TypedStorage<4, 4, int> mVerticalSearchDistance;
87 // NOLINTEND
88
89public:
90 // virtual functions
91 // NOLINTBEGIN
92 // vIndex: 1
93 virtual bool canUse() /*override*/;
94
95 // vIndex: 2
96 virtual bool canContinueToUse() /*override*/;
97
98 // vIndex: 4
99 virtual void start() /*override*/;
100
101 // vIndex: 5
102 virtual void stop() /*override*/;
103
104 // vIndex: 6
105 virtual void tick() /*override*/;
106
107 // vIndex: 7
108 virtual void appendDebugInfo(::std::string& str) const /*override*/;
109
110 // vIndex: 0
111 virtual ~MoveAroundTargetGoal() /*override*/ = default;
112 // NOLINTEND
113
114public:
115 // destructor thunk
116 // NOLINTBEGIN
117
118 // NOLINTEND
119
120public:
121 // virtual function thunks
122 // NOLINTBEGIN
123 MCAPI bool $canUse();
124
125 MCAPI bool $canContinueToUse();
126
127 MCAPI void $start();
128
129 MCAPI void $stop();
130
131 MCAPI void $tick();
132
133 MCAPI void $appendDebugInfo(::std::string& str) const;
134 // NOLINTEND
135
136public:
137 // vftables
138 // NOLINTBEGIN
139 MCAPI static void** $vftable();
140 // NOLINTEND
141};
Definition ActorFilterGroup.h:16
Definition BaseGoalDefinition.h:10
Definition Goal.h:14
Definition JsonSchemaObjectNode.h:8
Definition Mob.h:47
Definition MoveAroundTargetGoal.h:26
Definition MoveAroundTargetGoal.h:18
Definition FloatRange.h:11
Definition Alias.h:14