mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +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
41 lines
No EOL
780 B
C++
41 lines
No EOL
780 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <stdint.h>
|
|
|
|
enum class SeekOffsetType
|
|
{
|
|
Start,
|
|
Current,
|
|
End
|
|
};
|
|
|
|
// TODO: Eventually account for endianess in binaryreader and binarywriter
|
|
enum class Endianess
|
|
{
|
|
Little = 0,
|
|
Big = 1,
|
|
};
|
|
|
|
class Stream
|
|
{
|
|
public:
|
|
virtual ~Stream() = default;
|
|
virtual uint64_t GetLength() = 0;
|
|
uint64_t GetBaseAddress() { return baseAddress; }
|
|
|
|
virtual void Seek(int32_t offset, SeekOffsetType seekType) = 0;
|
|
|
|
virtual std::unique_ptr<char[]> Read(size_t length) = 0;
|
|
virtual void Read(const char* dest, size_t length) = 0;
|
|
virtual int8_t ReadByte() = 0;
|
|
|
|
virtual void Write(char* destBuffer, size_t length) = 0;
|
|
virtual void WriteByte(int8_t value) = 0;
|
|
|
|
virtual void Flush() = 0;
|
|
virtual void Close() = 0;
|
|
|
|
protected:
|
|
uint64_t baseAddress;
|
|
}; |