mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-29 03:34:07 +00:00
750c0cab35
* remove fake match * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "3e9ed72e2" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "3e9ed72e2" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * new extraction script and a hack to make clear tag work * fix clear tag again * remove static from clear tag DLists * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "e7a8a48cf" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "e7a8a48cf" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "e243634e5" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "e243634e5" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "d0cd6b397" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "d0cd6b397" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * Update ovl_En_Clear_Tag.xml
151 lines
3.6 KiB
C++
151 lines
3.6 KiB
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "ZResource.h"
|
|
|
|
enum class TextureAnimationParamsType
|
|
{
|
|
/* 0 */ SingleScroll,
|
|
/* 1 */ DualScroll,
|
|
/* 2 */ ColorChange,
|
|
/* 3 */ ColorChangeLERP,
|
|
/* 4 */ ColorChangeLagrange,
|
|
/* 5 */ TextureCycle,
|
|
/* 6 */ Empty // An empty TextureAnimation has the form 00 00 00 06 00000000
|
|
};
|
|
|
|
class ZTextureAnimationParams : public ZResource
|
|
{
|
|
public:
|
|
ZTextureAnimationParams(ZFile* parent);
|
|
|
|
void ExtractFromBinary(uint32_t nRawDataIndex);
|
|
virtual void ExtractFromBinary(uint32_t nRawDataIndex, int count);
|
|
|
|
virtual std::string GetDefaultName(const std::string& prefix) const;
|
|
ZResourceType GetResourceType() const;
|
|
|
|
TextureAnimationParamsType type;
|
|
};
|
|
|
|
struct TextureScrollingParamsEntry
|
|
{
|
|
int8_t xStep;
|
|
int8_t yStep;
|
|
uint8_t width;
|
|
uint8_t height;
|
|
};
|
|
|
|
class TextureScrollingParams : public ZTextureAnimationParams
|
|
{
|
|
public:
|
|
TextureScrollingParams(ZFile* parent);
|
|
|
|
void ParseRawData() override;
|
|
void ExtractFromBinary(uint32_t nRawDataIndex, int count) override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
std::string GetDefaultName(const std::string& prefix) const override;
|
|
size_t GetRawDataSize() const override;
|
|
|
|
Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
int count; // 1 for Single, 2 for Dual
|
|
TextureScrollingParamsEntry rows[2]; // Too small to make a vector worth it
|
|
};
|
|
|
|
struct F3DPrimColor
|
|
{
|
|
uint8_t r;
|
|
uint8_t g;
|
|
uint8_t b;
|
|
uint8_t a;
|
|
uint8_t lodFrac;
|
|
};
|
|
|
|
struct F3DEnvColor
|
|
{
|
|
uint8_t r;
|
|
uint8_t g;
|
|
uint8_t b;
|
|
uint8_t a;
|
|
};
|
|
|
|
class TextureColorChangingParams : public ZTextureAnimationParams
|
|
{
|
|
public:
|
|
TextureColorChangingParams(ZFile* parent);
|
|
|
|
void ParseRawData() override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
std::string GetDefaultName(const std::string& prefix) const override;
|
|
size_t GetRawDataSize() const override;
|
|
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
uint16_t animLength; // size of list for type 2
|
|
uint16_t colorListCount;
|
|
segptr_t primColorListAddress;
|
|
segptr_t envColorListAddress;
|
|
segptr_t frameDataListAddress;
|
|
std::vector<F3DPrimColor> primColorList;
|
|
std::vector<F3DEnvColor> envColorList;
|
|
std::vector<uint16_t> frameDataList;
|
|
};
|
|
|
|
class TextureCyclingParams : public ZTextureAnimationParams
|
|
{
|
|
public:
|
|
TextureCyclingParams(ZFile* parent);
|
|
|
|
void ParseRawData() override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
std::string GetDefaultName(const std::string& prefix) const override;
|
|
size_t GetRawDataSize() const override;
|
|
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
uint16_t cycleLength;
|
|
segptr_t textureListAddress;
|
|
segptr_t textureIndexListAddress;
|
|
std::vector<segptr_t> textureList;
|
|
std::vector<uint8_t> textureIndexList;
|
|
};
|
|
|
|
struct TextureAnimationEntry
|
|
{
|
|
int8_t segment;
|
|
TextureAnimationParamsType type;
|
|
segptr_t paramsPtr;
|
|
};
|
|
|
|
class ZTextureAnimation : public ZResource
|
|
{
|
|
public:
|
|
ZTextureAnimation(ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
size_t GetRawDataSize() const override;
|
|
std::string GetDefaultName(const std::string& prefix) const override;
|
|
|
|
Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
private:
|
|
std::vector<TextureAnimationEntry> entries;
|
|
};
|