mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-17 20:42:23 +00:00
* git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "769f5702a" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "769f5702a" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Add `libpng` to readme * Remove `-ifp` since it doesn't exists anymore in ZAPD * Remove extra print I added * Add UNK_09 macro and other minor fixes * Simplify PNG rules * simplify gitignore * Update README.md Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Update dockerfile * basic instructions for cygwin and mac * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "86160be69" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "86160be69" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Change nanoseconds to seconds in extract_assets.py Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
36 lines
939 B
C++
36 lines
939 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "ZCutscene.h"
|
|
#include "ZFile.h"
|
|
#include "tinyxml2.h"
|
|
|
|
class ZCutsceneMM : public ZCutsceneBase
|
|
{
|
|
public:
|
|
uint32_t segmentOffset;
|
|
|
|
ZCutsceneMM(ZFile* nParent);
|
|
virtual ~ZCutsceneMM();
|
|
|
|
std::string GetBodySourceCode() override;
|
|
void DeclareVar(const std::string& prefix, const std::string& bodyStr) const override;
|
|
std::string GetSourceOutputCode(const std::string& prefix) override;
|
|
size_t GetRawDataSize() const override;
|
|
uint32_t getSegmentOffset() const override { return segmentOffset; }
|
|
|
|
void ParseRawData() override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
void ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
|
|
const uint32_t nRawDataIndex) override;
|
|
|
|
protected:
|
|
int32_t numCommands;
|
|
int32_t endFrame;
|
|
std::vector<CutsceneCommand*> commands;
|
|
|
|
std::vector<uint32_t> data;
|
|
};
|