LeviLamina
Loading...
Searching...
No Matches
InvestigateSuspiciousLocationGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/util/json_util/JsonSchemaObjectNode.h"
8#include "mc/world/actor/ai/goal/BaseGoalDefinition.h"
9#include "mc/world/actor/ai/goal/Goal.h"
10#include "mc/world/level/BlockPos.h"
11
12// auto generated forward declare list
13// clang-format off
14class Mob;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
19public:
20 // InvestigateSuspiciousLocationGoal inner types declare
21 // clang-format off
22 class Definition;
23 // clang-format on
24
25 // InvestigateSuspiciousLocationGoal inner types define
27 public:
28 // member variables
29 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 Definition& operator=(Definition const&);
37 Definition(Definition const&);
38 Definition();
39
40 public:
41 // virtual functions
42 // NOLINTBEGIN
43 // vIndex: 0
44 virtual ~Definition() /*override*/ = default;
45 // NOLINTEND
46
47 public:
48 // static functions
49 // NOLINTBEGIN
50 MCNAPI static void buildSchema(
51 ::std::string const& name,
52 ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<
55 );
56 // NOLINTEND
57
58 public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63 };
64
65public:
66 // member variables
67 // NOLINTBEGIN
68 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
69 ::ll::TypedStorage<4, 12, ::Vec3> mWantedPosition;
70 ::ll::TypedStorage<4, 12, ::BlockPos> mChosenEndPos;
71 ::ll::TypedStorage<4, 4, float> mSpeedMultiplier;
72 ::ll::TypedStorage<4, 4, float> mGoalRadiusSq;
73 ::ll::TypedStorage<1, 1, bool> mPathingInvalid;
74 ::ll::TypedStorage<1, 1, bool> mReachedTarget;
75 // NOLINTEND
76
77public:
78 // prevent constructor by default
82
83public:
84 // virtual functions
85 // NOLINTBEGIN
86 // vIndex: 1
87 virtual bool canUse() /*override*/;
88
89 // vIndex: 2
90 virtual bool canContinueToUse() /*override*/;
91
92 // vIndex: 4
93 virtual void start() /*override*/;
94
95 // vIndex: 5
96 virtual void stop() /*override*/;
97
98 // vIndex: 6
99 virtual void tick() /*override*/;
100
101 // vIndex: 7
102 virtual void appendDebugInfo(::std::string& str) const /*override*/;
103
104 // vIndex: 0
105 virtual ~InvestigateSuspiciousLocationGoal() /*override*/ = default;
106 // NOLINTEND
107
108public:
109 // virtual function thunks
110 // NOLINTBEGIN
111 MCNAPI bool $canUse();
112
113 MCNAPI bool $canContinueToUse();
114
115 MCNAPI void $start();
116
117 MCNAPI void $stop();
118
119 MCNAPI void $tick();
120
121 MCNAPI void $appendDebugInfo(::std::string& str) const;
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 InvestigateSuspiciousLocationGoal.h:26
static MCAPI void buildSchema(::std::string const &name, ::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode< ::JsonUtil::EmptyClass, ::InvestigateSuspiciousLocationGoal::Definition > > &root)
Definition InvestigateSuspiciousLocationGoal.h:18
static MCAPI void ** $vftable()
MCAPI void $appendDebugInfo(::std::string &str) const
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition Mob.h:47
Definition Alias.h:14