LeviLamina
Loading...
Searching...
No Matches
LateJoinPreGameScreenController.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/screens/controllers/MinecraftScreenController.h"
8
9// auto generated forward declare list
10// clang-format off
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 64, ::std::function<void()>> mUserReadyToJoinCallback;
20 ::ll::TypedStorage<1, 1, bool> mIsSigningIn;
21 ::ll::TypedStorage<1, 1, bool> mIsUserReady;
22 ::ll::TypedStorage<1, 1, bool> mShouldPromptForPlatformConnection;
23 ::ll::TypedStorage<1, 1, bool> mShouldCheckPremiumPlatformAccess;
24 ::ll::TypedStorage<1, 1, bool> mCheckingPremiumPlatformAccess;
25 ::ll::TypedStorage<1, 1, bool> mAutoXBLSignInAttempted;
26 ::ll::TypedStorage<1, 1, bool> mShowingWarning;
27 ::ll::TypedStorage<1, 1, bool> mIsAnimatingTextVisible;
28 ::ll::TypedStorage<8, 32, ::std::string> mAnimatedMessage;
29 ::ll::TypedStorage<4, 4, int> mAnimationCount;
30 ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mLastAnimatingTextUpdate;
31 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::PlatformMultiplayerRestrictions>> mPlatformMultiplayerRestrictions;
32 ::ll::TypedStorage<1, 1, bool> mHasXBLBroadcast;
33 // NOLINTEND
34
35public:
36 // prevent constructor by default
37 LateJoinPreGameScreenController();
38
39public:
40 // virtual functions
41 // NOLINTBEGIN
42 virtual ~LateJoinPreGameScreenController() /*override*/ = default;
43
44 virtual void onOpen() /*override*/;
45
46 virtual ::ui::DirtyFlag tick() /*override*/;
47
48 virtual ::std::string _getButtonBDescription() /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI LateJoinPreGameScreenController(
55 ::std::shared_ptr<::MinecraftScreenModel> model,
56 ::std::function<void()> const& userReadyCallback,
57 bool hasXBLBroadcast
58 );
59
60 MCAPI void _checkPremiumAccessAndShowUpsell(::std::function<void(bool)> callback);
61
62 MCAPI void _handleUserReadyToJoinGame();
63
64 MCAPI void _promptForPlatformConnection();
65
66 MCAPI bool _tickAnimatingText(bool updateBaseText);
67
68 MCAPI bool _tickUserState();
69
70 MCAPI void _warnLockedSkin();
71
72 MCAPI void _warnRestrictedPlatformMultiplayer();
73 // NOLINTEND
74
75public:
76 // constructor thunks
77 // NOLINTBEGIN
78 MCAPI void* $ctor(
79 ::std::shared_ptr<::MinecraftScreenModel> model,
80 ::std::function<void()> const& userReadyCallback,
81 bool hasXBLBroadcast
82 );
83 // NOLINTEND
84
85public:
86 // virtual function thunks
87 // NOLINTBEGIN
88 MCAPI void $onOpen();
89
90 MCAPI ::ui::DirtyFlag $tick();
91
92 MCAPI ::std::string $_getButtonBDescription();
93 // NOLINTEND
94
95public:
96 // vftables
97 // NOLINTBEGIN
98 MCNAPI static void** $vftableForScreenController();
99
101 // NOLINTEND
102};
Definition LateJoinPreGameScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5
Definition PlatformMultiplayerRestrictions.h:5