LeviLamina
Loading...
Searching...
No Matches
WallClimberPathNavigation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/navigation/PathNavigation.h"
7#include "mc/world/level/BlockPos.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Actor;
13class BlockSource;
14class Mob;
16class Path;
17class Vec3;
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<4, 12, ::BlockPos> mPathToPosition;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 2
31 virtual void tick(::NavigationComponent& parent, ::Mob& mob) /*override*/;
32
33 // vIndex: 5
34 virtual ::std::unique_ptr<::Path>
35 createPath(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos) /*override*/;
36
37 // vIndex: 4
38 virtual ::std::unique_ptr<::Path>
39 createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target) /*override*/;
40
41 // vIndex: 7
42 virtual bool moveTo(::NavigationComponent& parent, ::Mob& mob, ::Actor& target, float speed) /*override*/;
43
44 // vIndex: 11
45 virtual bool canUpdatePath(::Mob const& mob) const /*override*/;
46
47 // vIndex: 0
48 virtual ~WallClimberPathNavigation() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCNAPI bool _isInsideBorderBlock(::AABB const& aabb, ::BlockSource const& region, float grow) const;
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI void $tick(::NavigationComponent& parent, ::Mob& mob);
61
62 MCNAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos);
63
64 MCNAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target);
65
66 MCNAPI bool $moveTo(::NavigationComponent& parent, ::Mob& mob, ::Actor& target, float speed);
67
68 MCNAPI bool $canUpdatePath(::Mob const& mob) const;
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition AABB.h:18
Definition Actor.h:103
Definition BlockSource.h:67
Definition Mob.h:47
Definition NavigationComponent.h:22
Definition PathNavigation.h:17
Definition Path.h:16
Definition Vec3.h:10
Definition WallClimberPathNavigation.h:20
MCAPI ::std::unique_ptr<::Path > $createPath(::NavigationComponent &parent, ::Mob &mob, ::Vec3 const &pos)
MCAPI ::std::unique_ptr<::Path > $createPath(::NavigationComponent &parent, ::Mob &mob, ::Actor const &target)
static MCAPI void ** $vftable()
MCAPI bool _isInsideBorderBlock(::AABB const &aabb, ::BlockSource const &region, float grow) const
MCAPI bool $moveTo(::NavigationComponent &parent, ::Mob &mob, ::Actor &target, float speed)
MCAPI void $tick(::NavigationComponent &parent, ::Mob &mob)
MCAPI bool $canUpdatePath(::Mob const &mob) const