LeviLamina
Loading...
Searching...
No Matches
ManifestValidation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/routing/IEntryPoint.h"
7#include "mc/client/gui/oreui/routing/RouteFlags.h"
8#include "mc/client/gui/oreui/routing/RouteHistoryAction.h"
9#include "mc/deps/core/utility/NonOwnerPointer.h"
10
11// auto generated forward declare list
12// clang-format off
14class IContentManager;
15class ISceneStack;
17class SceneFactory;
18namespace OreUI { class RouteMatcher; }
19// clang-format on
20
21namespace OreUI::EntryPoints {
22
23class ManifestValidation : public ::OreUI::IEntryPoint {
24public:
25 // ManifestValidation inner types define
26 enum class ScreenType : uchar {
27 Default = 0,
28 Storage = 1,
29 };
30
31public:
32 // member variables
33 // NOLINTBEGIN
34 ::ll::TypedStorage<8, 8, ::PackManifestFactory&> mManifestFactory;
35 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const>> mKeyProvider;
36 ::ll::TypedStorage<8, 64, ::std::function<::IContentManager&()>> mGetContentManager;
37 // NOLINTEND
38
39public:
40 // prevent constructor by default
41 ManifestValidation& operator=(ManifestValidation const&);
42 ManifestValidation(ManifestValidation const&);
43 ManifestValidation();
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 virtual bool shouldAddToConfiguration() const /*override*/;
49
50 virtual void addToMatcher(
51 ::OreUI::RouteMatcher& routeMatcher,
52 ::SceneFactory& sceneFactory,
53 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
54 ) const /*override*/;
55 // NOLINTEND
56
57public:
58 // member functions
59 // NOLINTBEGIN
60 MCAPI ManifestValidation(
61 ::PackManifestFactory& manifestFactory,
62 ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const& keyProvider,
63 ::std::function<::IContentManager&()> getContentManager
64 );
65
66 MCAPI void _navigateToManifestValidationScreen(
67 ::SceneFactory& sceneFactory,
68 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack,
69 ::std::string const& path,
70 ::OreUI::RouteHistoryAction action,
71 ::OreUI::EntryPoints::ManifestValidation::ScreenType type
72 ) const;
73 // NOLINTEND
74
75public:
76 // static variables
77 // NOLINTBEGIN
78 MCAPI static ::std::add_lvalue_reference_t<char const[]> BASE_SCREEN_ID();
79
80 MCAPI static ::OreUI::EntryPoints::RouteFlags const& FLAGS();
81
82 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
83
84 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE_STORAGE();
85 // NOLINTEND
86
87public:
88 // constructor thunks
89 // NOLINTBEGIN
90 MCAPI void* $ctor(
91 ::PackManifestFactory& manifestFactory,
92 ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const& keyProvider,
93 ::std::function<::IContentManager&()> getContentManager
94 );
95 // NOLINTEND
96
97public:
98 // virtual function thunks
99 // NOLINTBEGIN
100 MCFOLD bool $shouldAddToConfiguration() const;
101
102 MCAPI void $addToMatcher(
103 ::OreUI::RouteMatcher& routeMatcher,
104 ::SceneFactory& sceneFactory,
105 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
106 ) const;
107 // NOLINTEND
108
109public:
110 // vftables
111 // NOLINTBEGIN
112 MCNAPI static void** $vftable();
113 // NOLINTEND
114};
115
116} // namespace OreUI::EntryPoints
Definition IContentKeyProvider.h:13
Definition IContentManager.h:5
Definition ISceneStack.h:5
Definition ManifestValidation.h:7
Definition RouteMatcher.h:7
Definition PackManifestFactory.h:21
Definition SceneFactory.h:5