VideoRecorder added

This commit is contained in:
ecumber
2022-07-13 11:53:28 -07:00
parent 9d3bc8cfe1
commit 3034895d2f
6 changed files with 57 additions and 6 deletions
+2
View File
@@ -54,6 +54,8 @@ target_sources(uking PRIVATE
Timer.h
UIGlue.cpp
UIGlue.h
VideoRecorder.cpp
VideoRecorder.h
VFR.cpp
VFR.h
VFRValue.cpp
+18
View File
@@ -0,0 +1,18 @@
#include "KingSystem/System/VideoRecorder.h"
namespace ksys {
SEAD_SINGLETON_DISPOSER_IMPL(VideoRecorder)
void VideoRecorder::postCalc() {
if (!isCaptureEnabled())
return;
u32 framenum = mFrameNumber;
sead::FixedSafeString<0x100> output;
output.format("%s/%04d.tga", mFilename.cstr(), framenum);
agl::utl::ScreenShotMgr::instance()->reserveCaptureWithDebugHeap(
true, agl::TextureDataSerializerTGA::TGAFormat::_1, output, false);
mFrameNumber++;
}
} // namespace ksys
+31
View File
@@ -0,0 +1,31 @@
#pragma once
#include <agl/utl/aglScreenShotMgr.h>
#include <basis/seadNew.h>
#include <heap/seadDisposer.h>
#include <prim/seadSafeString.h>
#include "KingSystem/Utils/Types.h"
namespace ksys {
class VideoRecorder {
SEAD_SINGLETON_DISPOSER(VideoRecorder)
VideoRecorder() = default;
virtual ~VideoRecorder();
public:
void postCalc();
bool isCaptureEnabled() const { return mCaptureEnabled; }
u32 getFrameNumber() const { return mFrameNumber; }
const sead::SafeString& getFileName() const { return mFilename; }
private:
bool mCaptureEnabled = false;
bool _29 = true;
u32 mFrameNumber = 0;
sead::FixedSafeString<0x100> mFilename;
};
KSYS_CHECK_SIZE_NX150(VideoRecorder, 0x148);
} // namespace ksys