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
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
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 // vIndex: 7
49 virtual void appendDebugInfo(::std::string& str) const /*override*/;
50
51 // vIndex: 1
52 virtual bool canUse() /*override*/;
53
54 // vIndex: 2
55 virtual bool canContinueToUse() /*override*/;
56
57 // vIndex: 4
58 virtual void start() /*override*/;
59
60 // vIndex: 5
61 virtual void stop() /*override*/;
62
63 // vIndex: 6
64 virtual void tick() /*override*/;
65
66 // vIndex: 0
67 virtual ~ExploreOutskirtsGoal() /*override*/ = default;
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCNAPI void $appendDebugInfo(::std::string& str) const;
74
75 MCNAPI bool $canUse();
76
77 MCNAPI bool $canContinueToUse();
78
79 MCNAPI void $start();
80
81 MCNAPI void $stop();
82
83 MCNAPI void $tick();
84 // NOLINTEND
85
86public:
87 // vftables
88 // NOLINTBEGIN
89 MCNAPI static void** $vftable();
90 // NOLINTEND
91};
Definition ExploreOutskirtsGoal.h:15
MCAPI void $stop()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI bool $canUse()
MCAPI bool $canContinueToUse()
MCAPI void $start()
MCAPI void $tick()
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Mob.h:47