LeviLamina
Loading...
Searching...
No Matches
UserDataScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/DirtyFlag.h"
7#include "mc/client/gui/GameEventNotification.h"
8#include "mc/client/gui/screens/controllers/ClientInstanceScreenController.h"
9#include "mc/deps/core/threading/TaskGroup.h"
10
11// auto generated forward declare list
12// clang-format off
14class PlayerListEntry;
15struct PlayerListInfo;
16namespace mce { class UUID; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 336, ::TaskGroup> mTaskGroup;
24 ::ll::TypedStorage<1, 1, ::std::atomic<bool>> mDirty;
25 ::ll::TypedStorage<1, 1, bool> mCanInvite;
26 ::ll::TypedStorage<8, 24, ::std::vector<::PlayerListInfo>> mPlayerList;
27 ::ll::TypedStorage<8, 24, ::std::vector<::mce::UUID>> mPlayerLobbyList;
28 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mXuidList;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 UserDataScreenController();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual ~UserDataScreenController() /*override*/;
39
40 virtual ::ui::DirtyFlag tick() /*override*/;
41
42 virtual ::ui::DirtyFlag handleGameEventNotification(::ui::GameEventNotification notification) /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI explicit UserDataScreenController(::std::shared_ptr<::ClientInstanceScreenModel> model);
49
50 MCAPI void _addEntryToPlayerList(::PlayerListEntry const& entry);
51
52 MCAPI void _addUserToPlayerList();
53
54 MCAPI void _registerBindings();
55
56 MCAPI void _requestPlayerProfileImages(::std::vector<::std::string> const& xuids);
57
58 MCAPI void _updatePlayerList();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::std::shared_ptr<::ClientInstanceScreenModel> model);
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI ::ui::DirtyFlag $tick();
77
78 MCAPI ::ui::DirtyFlag $handleGameEventNotification(::ui::GameEventNotification notification);
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftableForScreenController();
85
87 // NOLINTEND
88};
Definition ClientInstanceScreenController.h:5
Definition ClientInstanceScreenModel.h:5
Definition PlayerListEntry.h:20
Definition UserDataScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition UUID.h:7
Definition PlayerListInfo.h:5