LeviLamina
Loading...
Searching...
No Matches
TransportItemsGoalSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec2.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockDescriptor;
11class ItemDescriptor;
12// clang-format on
13
15public:
16 // TransportItemsGoalSettings inner types define
17 enum class SearchStrategy : int {
18 Nearest = 0,
19 Random = 1,
20 };
21
22 enum class PlaceStrategy : int {
23 Any = 0,
24 WithMatching = 1,
25 WithMatchingOrEmpty = 2,
26 };
27
28public:
29 // member variables
30 // NOLINTBEGIN
31 ::ll::TypedStorage<8, 24, ::std::vector<::BlockDescriptor>> mSourceContainerTypes;
32 ::ll::TypedStorage<8, 24, ::std::vector<::BlockDescriptor>> mDestinationContainerTypes;
33 ::ll::TypedStorage<4, 4, uint> mMaxStackSize;
34 ::ll::TypedStorage<4, 4, float> mInteractionTime;
35 ::ll::TypedStorage<1, 1, bool> mAllowSimultaneousInteraction;
36 ::ll::TypedStorage<4, 4, ::TransportItemsGoalSettings::SearchStrategy> mSearchStrategy;
37 ::ll::TypedStorage<4, 8, ::Vec2> mSearchDistance;
38 ::ll::TypedStorage<4, 4, uint> mMaxVisitedContainers;
39 ::ll::TypedStorage<4, 4, uint> mIdleCooldown;
40 ::ll::TypedStorage<4, 4, ::TransportItemsGoalSettings::PlaceStrategy> mPlaceStrategy;
41 ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor>> mAllowedItems;
42 ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor>> mDisallowedItems;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56};
Definition BlockDescriptor.h:20
Definition ItemDescriptor.h:22
Definition Random.h:10
Definition TransportItemsGoalSettings.h:14