LeviLamina
Loading...
Searching...
No Matches
MingleGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/MoveToPOIGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class MingleComponent;
13struct ActorUniqueID;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, int> mCooldownTicks;
21 ::ll::TypedStorage<4, 4, int> mCooldownTicksMax;
22 ::ll::TypedStorage<4, 4, int> mMingleTicks;
23 ::ll::TypedStorage<4, 4, int> mMingleTicksMax;
24 ::ll::TypedStorage<4, 4, int> mAvailableTicks;
25 ::ll::TypedStorage<4, 4, int> mAvailableTicksMax;
26 ::ll::TypedStorage<4, 4, int> mSpeakInterval;
27 ::ll::TypedStorage<8, 176, ::ActorDefinitionIdentifier> mDesiredPartnerType;
28 ::ll::TypedStorage<4, 4, float> mMingleDistanceSquared;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual bool canUse() /*override*/;
36
37 // vIndex: 2
38 virtual bool canContinueToUse() /*override*/;
39
40 // vIndex: 4
41 virtual void start() /*override*/;
42
43 // vIndex: 5
44 virtual void stop() /*override*/;
45
46 // vIndex: 6
47 virtual void tick() /*override*/;
48
49 // vIndex: 7
50 virtual void appendDebugInfo(::std::string& str) const /*override*/;
51
52 // vIndex: 0
53 virtual ~MingleGoal() /*override*/ = default;
54 // NOLINTEND
55
56public:
57 // member functions
58 // NOLINTBEGIN
59 MCAPI void _findNewPartner(::ActorUniqueID previousPartnerId);
60
61 MCAPI ::MingleComponent& _getMingleComponent() const;
62
63 MCAPI bool _isWithinInteractRange(::Actor& partner) const;
64
65 MCAPI void _tickPartneredActive(::MingleComponent& mingleComponent);
66 // NOLINTEND
67
68public:
69 // static functions
70 // NOLINTBEGIN
71 MCAPI static ::MingleComponent* _tryGetMingleComponent(::Actor& actor);
72 // NOLINTEND
73
74public:
75 // destructor thunk
76 // NOLINTBEGIN
77
78 // NOLINTEND
79
80public:
81 // virtual function thunks
82 // NOLINTBEGIN
83 MCAPI bool $canUse();
84
85 MCAPI bool $canContinueToUse();
86
87 MCAPI void $start();
88
89 MCAPI void $stop();
90
91 MCAPI void $tick();
92
93 MCAPI void $appendDebugInfo(::std::string& str) const;
94 // NOLINTEND
95
96public:
97 // vftables
98 // NOLINTBEGIN
99 MCAPI static void** $vftable();
100 // NOLINTEND
101};
Definition Actor.h:104
Definition MingleComponent.h:10
Definition MingleGoal.h:16
Definition MoveToPOIGoal.h:20
Definition ActorDefinitionIdentifier.h:13
Definition ActorUniqueID.h:5