LeviLamina
Loading...
Searching...
No Matches
PackManifestFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/resources/interface/IPackManifestFactory.h"
7
8// auto generated forward declare list
9// clang-format off
10class IPackTelemetry;
13class PackManifest;
14class PackReport;
17namespace Core { class Path; }
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 // vIndex: 0
40 virtual ~PackManifestFactory() /*override*/;
41
42 // vIndex: 1
43 virtual ::std::unique_ptr<::PackManifest> create(
44 ::PackAccessStrategy& accessStrategy,
45 ::ResourceLocation const& location,
46 ::PackReport& report,
47 ::SubpackInfoCollection* subpackInfoStack
48 ) /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCNAPI PackManifestFactory(::PackCapabilityRegistry const& packCapabilityRegistry, ::IPackTelemetry& eventing);
55
57 ::PackManifest& manifest,
58 ::PackAccessStrategy& accessStrategy,
59 ::ResourceLocation const& location
60 );
61
62 MCNAPI ::std::unique_ptr<::PackManifest>
64 // NOLINTEND
65
66public:
67 // static variables
68 // NOLINTBEGIN
69 MCNAPI static ::std::string const& MANIFEST_PACK_UUID_UPGRADE_SALT();
70
71 MCNAPI static ::Core::Path const& MANIFEST_PATH();
72
73 MCNAPI static ::Core::Path const& MANIFEST_PATH_OLD();
74
75 MCNAPI static ::std::unordered_map<::std::string, ::std::vector<char> const>& mAlternateContentKeys();
76
77 MCNAPI static ::std::unordered_map<::std::string, ::std::vector<char> const>& mContentKeys();
78 // NOLINTEND
79
80public:
81 // constructor thunks
82 // NOLINTBEGIN
83 MCNAPI void* $ctor(::PackCapabilityRegistry const& packCapabilityRegistry, ::IPackTelemetry& eventing);
84 // NOLINTEND
85
86public:
87 // destructor thunk
88 // NOLINTBEGIN
89 MCNAPI void $dtor();
90 // NOLINTEND
91
92public:
93 // virtual function thunks
94 // NOLINTBEGIN
95 MCNAPI ::std::unique_ptr<::PackManifest> $create(
96 ::PackAccessStrategy& accessStrategy,
97 ::ResourceLocation const& location,
98 ::PackReport& report,
99 ::SubpackInfoCollection* subpackInfoStack
100 );
101 // NOLINTEND
102
103public:
104 // vftables
105 // NOLINTBEGIN
106 MCNAPI static void** $vftable();
107 // NOLINTEND
108};
Definition IPackManifestFactory.h:17
Definition IPackTelemetry.h:5
Definition PackAccessStrategy.h:20
Definition PackCapabilityRegistry.h:10
Definition PackManifestFactory.h:20
MCAPI ::std::unique_ptr<::PackManifest > _upgradeToWorldTemplateManifest(::PackAccessStrategy const &accessStrategy, ::PackManifest &&inputPack)
static MCAPI void ** $vftable()
static MCAPI ::Core::Path const & MANIFEST_PATH_OLD()
static MCAPI ::std::unordered_map<::std::string, ::std::vector< char > const > & mAlternateContentKeys()
static MCAPI ::Core::Path const & MANIFEST_PATH()
static MCAPI ::std::unordered_map<::std::string, ::std::vector< char > const > & mContentKeys()
MCAPI void * $ctor(::PackCapabilityRegistry const &packCapabilityRegistry, ::IPackTelemetry &eventing)
static MCAPI ::std::string const & MANIFEST_PACK_UUID_UPGRADE_SALT()
MCAPI ::std::unique_ptr<::PackManifest > $create(::PackAccessStrategy &accessStrategy, ::ResourceLocation const &location, ::PackReport &report, ::SubpackInfoCollection *subpackInfoStack)
MCAPI void _setAndCachePackSize(::PackManifest &manifest, ::PackAccessStrategy &accessStrategy, ::ResourceLocation const &location)
MCAPI void $dtor()
MCAPI PackManifestFactory(::PackCapabilityRegistry const &packCapabilityRegistry, ::IPackTelemetry &eventing)
Definition PackManifest.h:36
Definition PackReport.h:16
Definition Path.h:16
Definition ResourceLocation.h:14
Definition SubpackInfoCollection.h:5
Definition Alias.h:14