3#include "mc/_HeaderOutputPredefine.h"
6#include "mc/client/gui/ProgressHandler.h"
7#include "mc/deps/core/file/PathBuffer.h"
8#include "mc/deps/core/resource/ResourceLocation.h"
9#include "mc/world/actor/player/LoadingState.h"
15namespace Core {
class Path; }
22 ::ll::TypedStorage<8, 32, ::std::string> mTitle;
23 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mDestPath;
24 ::ll::TypedStorage<8, 16, ::std::shared_ptr<bool>> mExistenceTracker;
25 ::ll::TypedStorage<8, 64, ::std::function<void(
bool)>> mCallback;
26 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::TaskGroup>> mIOTaskGroup;
27 ::ll::TypedStorage<8, 56, ::ResourceLocation> mSrcLocation;
28 ::ll::TypedStorage<1, 1, bool> mSrcZip;
29 ::ll::TypedStorage<1, 1, bool> mDestZip;
30 ::ll::TypedStorage<1, 1, bool> mCopyComplete;
31 ::ll::TypedStorage<1, 1, bool> mCopySuccess;
32 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mExcludeDirs;
37 FileCopyProgressHandler();
42 virtual ~FileCopyProgressHandler() ;
44 virtual void onStart(::MinecraftScreenModel& minecraftScreenModel) ;
46 virtual void tick(::MinecraftScreenModel& minecraftScreenModel) ;
48 virtual void onCancel(::MinecraftScreenModel& minecraftScreenModel) ;
50 virtual void onExit(::MinecraftScreenModel& minecraftScreenModel) ;
52 virtual ::LoadingState getLoadingState(::MinecraftScreenModel& minecraftScreenModel)
const ;
54 virtual ::std::string getProgressMessage(::MinecraftScreenModel& minecraftScreenModel)
const ;
56 virtual ::std::string getTitleText() const ;
58 virtual ::std::
string getName() const ;
64 MCAPI FileCopyProgressHandler(
65 ::std::
string const& title,
66 ::ResourceLocation const& srcPath,
68 ::Core::Path const& dstPath,
70 ::std::vector<::std::
string> const& excludeDirs,
71 ::std::function<
void(
bool)> callback
79 ::std::
string const& title,
80 ::ResourceLocation const& srcPath,
82 ::Core::Path const& dstPath,
84 ::std::vector<::std::
string> const& excludeDirs,
85 ::std::function<
void(
bool)> callback
98 MCAPI
void $onStart(::MinecraftScreenModel& minecraftScreenModel);
100 MCAPI
void $tick(::MinecraftScreenModel& minecraftScreenModel);
102 MCFOLD
void $onCancel(::MinecraftScreenModel& minecraftScreenModel);
104 MCFOLD
void $onExit(::MinecraftScreenModel& minecraftScreenModel);
106 MCAPI ::LoadingState $getLoadingState(::MinecraftScreenModel& minecraftScreenModel) const;
108 MCFOLD ::std::
string $getProgressMessage(::MinecraftScreenModel& minecraftScreenModel) const;
110 MCFOLD ::std::
string $getTitleText() const;
112 MCAPI ::std::
string $getName() const;
Definition FileCopyProgressHandler.h:5
static MCAPI void ** $vftable()
Definition MinecraftScreenModel.h:5
Definition ProgressHandler.h:5
Definition TaskGroup.h:57