LeviLamina
Loading...
Searching...
No Matches
ExploreOutskirtsGoal.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/world/actor/ai/goal/Goal.h"
8#include "mc/world/level/Tick.h"
9
10// auto generated forward declare list
11// clang-format off
12class Mob;
13// clang-format on
14
15class ExploreOutskirtsGoal : public ::Goal {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
20 ::ll::TypedStorage<4, 4, int> mMinimumWaitTimeTicks;
21 ::ll::TypedStorage<4, 4, int> mNextXZDistance;
22 ::ll::TypedStorage<4, 4, int> mNextYDistance;
23 ::ll::TypedStorage<8, 8, ::Tick> mMaximumWaitTimeTicks;
24 ::ll::TypedStorage<8, 8, ::Tick> mTravelTimeout;
25 ::ll::TypedStorage<4, 4, float> mSpeedModifier;
26 ::ll::TypedStorage<4, 4, float> mExploreDistance;
27 ::ll::TypedStorage<4, 4, float> mMinimumPerimeter;
28 ::ll::TypedStorage<4, 4, float> mMinimumDistanceFromTarget;
29 ::ll::TypedStorage<4, 4, float> mWaitTimerRatio;
30 ::ll::TypedStorage<4, 12, ::Vec3> mDistanceFromBoundary;
31 ::ll::TypedStorage<1, 1, bool> mFailedToPath;
32 ::ll::TypedStorage<1, 1, bool> mTraveling;
33 ::ll::TypedStorage<8, 8, ::Tick> mShiftLocationTimer;
34 ::ll::TypedStorage<8, 8, ::Tick> mWaitTimer;
35 ::ll::TypedStorage<8, 8, ::Tick> mTravelTimer;
36 ::ll::TypedStorage<4, 12, ::Vec3> mWantedPos;
37 // NOLINTEND
38
39public:
40 // prevent constructor by default
41 ExploreOutskirtsGoal& operator=(ExploreOutskirtsGoal const&);
42 ExploreOutskirtsGoal(ExploreOutskirtsGoal const&);
43 ExploreOutskirtsGoal();
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 virtual void appendDebugInfo(::std::string& str) const /*override*/;
49
50 virtual bool canUse() /*override*/;
51
52 virtual bool canContinueToUse() /*override*/;
53
54 virtual void start() /*override*/;
55
56 virtual void stop() /*override*/;
57
58 virtual void tick() /*override*/;
59
60 virtual ~ExploreOutskirtsGoal() /*override*/ = default;
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI void $appendDebugInfo(::std::string& str) const;
67
68 MCAPI bool $canUse();
69
70 MCAPI bool $canContinueToUse();
71
72 MCAPI void $start();
73
74 MCAPI void $stop();
75
76 MCAPI void $tick();
77
78
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Mob.h:50