LeviLamina
Loading...
Searching...
No Matches
EnchantingContainerManagerModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/ContainerID.h"
7#include "mc/world/containers/managers/models/ContainerManagerModel.h"
8#include "mc/world/level/BlockPos.h"
9
10// auto generated forward declare list
11// clang-format off
14class ItemStack;
15class Player;
16// clang-format on
17
18class EnchantingContainerManagerModel : public ::ContainerManagerModel {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 12, ::BlockPos> mBlockPos;
23 ::ll::TypedStorage<1, 1, bool> mShouldBookBeOpen;
24 ::ll::TypedStorage<8, 24, ::std::vector<::ItemEnchantOption>> mEnchantOptions;
25 ::ll::TypedStorage<8, 64, ::std::function<void(::EnchantingContainerManagerModel&)>> mOptionsChangedCallback;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 EnchantingContainerManagerModel();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~EnchantingContainerManagerModel() /*override*/ = default;
36
37 virtual ::std::vector<::ItemStack> getItemCopies() const /*override*/;
38
39 virtual void setSlot(int slot, ::ItemStack const& item, bool fromNetwork) /*override*/;
40
41 virtual ::ItemStack const& getSlot(int slot) const /*override*/;
42
43 virtual void setData(int id, int value) /*override*/;
44
45 virtual bool isValid(float pickRange) /*override*/;
46
47 virtual void broadcastChanges() /*override*/;
48
49 virtual ::ContainerScreenContext _postInit() /*override*/;
50 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
55 MCAPI EnchantingContainerManagerModel(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
56
57 MCAPI void recalculateOptions();
58 // NOLINTEND
59
60public:
61 // static variables
62 // NOLINTBEGIN
63 MCAPI static int const& NUM_OPTIONS();
64 // NOLINTEND
65
66public:
67 // constructor thunks
68 // NOLINTBEGIN
69 MCAPI void* $ctor(::ContainerID containerId, ::Player& player, ::BlockPos const& blockPos);
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCAPI ::std::vector<::ItemStack> $getItemCopies() const;
76
77 MCAPI void $setSlot(int slot, ::ItemStack const& item, bool fromNetwork);
78
79 MCAPI ::ItemStack const& $getSlot(int slot) const;
80
81 MCFOLD void $setData(int id, int value);
82
83 MCAPI bool $isValid(float pickRange);
84
85 MCFOLD void $broadcastChanges();
86
87 MCAPI ::ContainerScreenContext $_postInit();
88
89
90 // NOLINTEND
91
92public:
93 // vftables
94 // NOLINTBEGIN
95 MCAPI static void** $vftable();
96 // NOLINTEND
97};
Definition BlockPos.h:19
Definition ContainerScreenContext.h:17
static MCAPI void ** $vftable()
Definition ItemEnchantOption.h:14
Definition ItemStack.h:26
Definition Player.h:125