LeviLamina
Loading...
Searching...
No Matches
ActorDefinitionDiffList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/factory/DefinitionInstanceGroup.h"
7
8// auto generated forward declare list
9// clang-format off
12struct DiffListPair;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::ActorDefinitionGroup&> mDefinitions;
20 ::ll::TypedStorage<8, 24, ::std::vector<::DiffListPair>> mDefinitionStack;
21 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ActorDefinitionDescriptor>> mChangedDescription;
22 ::ll::TypedStorage<1, 1, bool> mChanged;
23 ::ll::TypedStorage<8, 72, ::DefinitionInstanceGroup> mAddedDefinitionGroup;
24 ::ll::TypedStorage<8, 72, ::DefinitionInstanceGroup> mRemovedDefinitionGroup;
25 ::ll::TypedStorage<8, 64, ::std::unordered_map<uint64, ::std::variant<int, float, bool, uint64>>>
26 mPendingPropertyChanges;
27 ::ll::TypedStorage<1, 1, bool> mLockedChanges;
28 ::ll::TypedStorage<8, 24, ::std::vector<::std::pair<bool, ::std::string>>> mPendingChanges;
29 ::ll::TypedStorage<8, 64, ::std::unordered_map<uint64, ::std::variant<int, float, bool, uint64>>>
30 mDeferredPropertyChanges;
31 // NOLINTEND
32
33public:
34 // prevent constructor by default
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI explicit ActorDefinitionDiffList(::ActorDefinitionGroup& definitions);
43
44 MCAPI void _updateStack();
45
46 MCAPI void addDefinition(::std::string const& def);
47
48 MCAPI void clearChangedDescription();
49
50 MCAPI ::std::string definitionListToString(::std::string const& delimiter) const;
51
52 MCAPI ::std::unique_ptr<::ActorDefinitionDescriptor> getDescription(bool needsUpdate);
53
54 MCAPI void removeDefinition(::std::string const& def);
55
56 MCAPI void setDefinitionStack(::std::vector<::DiffListPair>& stack);
57
58 MCAPI void unlockChanges();
59
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
66 MCAPI void* $ctor(::ActorDefinitionGroup& definitions);
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72 MCAPI void $dtor();
73 // NOLINTEND
74};
Definition ActorDefinitionDescriptor.h:30
Definition ActorDefinitionDiffList.h:15
Definition ActorDefinitionGroup.h:32
Definition DiffListPair.h:5