mirror of
https://github.com/izzy2lost/Torch.git
synced 2026-03-26 17:00:59 -07:00
* Added options to have a better lib implementation * Cleaned up possible conflicts * Fixed compilation errors * Fixed more compilation errors * Compiled library on windows as MT * Fixed MT * Readded cmake deps * Fixed stormlib and some ifdefs * Added an option to ignore cache * Added no auto link when working as an standalone * Fixes for torchlib build/inclusion. * Fix standalone building. Fix extraction initialization in lib mode. * Fix stack size declaration. * Implemented comptool and preprocess system * Fixed cmake * Cleaned up a little bit * Added support for disabling stormlib * Fixed compilation errors and added support for disabling fzero and naudio * Renamed from CreateFile to AddFile because windows is stupid * Added STORMLIB_NO_AUTO_LINK * Trying to fix windows again * Fixed spdlog * Fixed enum parsing --------- Co-authored-by: Malkierian <malkierian@gmail.com> Co-authored-by: Malkierian <malkierian@live.com>
224 lines
4.8 KiB
C++
224 lines
4.8 KiB
C++
#include "./BinaryReader.h"
|
|
#include "./MemoryStream.h"
|
|
#include <cmath>
|
|
#include <stdexcept>
|
|
#include <locale>
|
|
|
|
LUS::BinaryReader::BinaryReader(char* nBuffer, size_t nBufferSize) {
|
|
mStream = std::make_shared<MemoryStream>(nBuffer, nBufferSize);
|
|
}
|
|
|
|
LUS::BinaryReader::BinaryReader(uint8_t* nBuffer, size_t nBufferSize) {
|
|
mStream = std::make_shared<MemoryStream>((char*) nBuffer, nBufferSize);
|
|
}
|
|
|
|
LUS::BinaryReader::BinaryReader(Stream* nStream) {
|
|
mStream.reset(nStream);
|
|
}
|
|
|
|
LUS::BinaryReader::BinaryReader(std::shared_ptr<Stream> nStream) {
|
|
mStream = nStream;
|
|
}
|
|
|
|
void LUS::BinaryReader::Close() {
|
|
mStream->Close();
|
|
}
|
|
|
|
void LUS::BinaryReader::SetEndianness(Torch::Endianness endianness) {
|
|
this->mEndianness = endianness;
|
|
}
|
|
|
|
Torch::Endianness LUS::BinaryReader::GetEndianness() const {
|
|
return mEndianness;
|
|
}
|
|
|
|
void LUS::BinaryReader::Seek(int32_t offset, SeekOffsetType seekType) {
|
|
mStream->Seek(offset, seekType);
|
|
}
|
|
|
|
uint32_t LUS::BinaryReader::GetBaseAddress() {
|
|
return mStream->GetBaseAddress();
|
|
}
|
|
|
|
void LUS::BinaryReader::Read(int32_t length) {
|
|
mStream->Read(length);
|
|
}
|
|
|
|
void LUS::BinaryReader::Read(char* buffer, int32_t length) {
|
|
mStream->Read(buffer, length);
|
|
}
|
|
|
|
char LUS::BinaryReader::ReadChar() {
|
|
return (char)mStream->ReadByte();
|
|
}
|
|
|
|
int8_t LUS::BinaryReader::ReadInt8() {
|
|
return mStream->ReadByte();
|
|
}
|
|
|
|
int16_t LUS::BinaryReader::ReadInt16() {
|
|
int16_t result = 0;
|
|
mStream->Read((char*)&result, sizeof(int16_t));
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP16(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
int32_t LUS::BinaryReader::ReadInt32() {
|
|
int32_t result = 0;
|
|
|
|
mStream->Read((char*)&result, sizeof(int32_t));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP32(result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
uint8_t LUS::BinaryReader::ReadUByte() {
|
|
return (uint8_t)mStream->ReadByte();
|
|
}
|
|
|
|
uint16_t LUS::BinaryReader::ReadUInt16() {
|
|
uint16_t result = 0;
|
|
|
|
mStream->Read((char*)&result, sizeof(uint16_t));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP16(result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
uint32_t LUS::BinaryReader::ReadUInt32() {
|
|
uint32_t result = 0;
|
|
|
|
mStream->Read((char*)&result, sizeof(uint32_t));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP32(result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
uint64_t LUS::BinaryReader::ReadUInt64() {
|
|
uint64_t result = 0;
|
|
|
|
mStream->Read((char*)&result, sizeof(uint64_t));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP64(result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
unsigned short LUS::BinaryReader::ReadUShort() {
|
|
unsigned short result = 0;
|
|
mStream->Read((char*)&result, sizeof(unsigned short));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP16(result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
short LUS::BinaryReader::ReadShort() {
|
|
short result = 0;
|
|
mStream->Read((char*)&result, sizeof(short));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
result = BSWAP16(result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
float LUS::BinaryReader::ReadFloat() {
|
|
float result = NAN;
|
|
|
|
mStream->Read((char*)&result, sizeof(float));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
float tmp;
|
|
char* dst = (char*)&tmp;
|
|
char* src = (char*)&result;
|
|
dst[3] = src[0];
|
|
dst[2] = src[1];
|
|
dst[1] = src[2];
|
|
dst[0] = src[3];
|
|
result = tmp;
|
|
}
|
|
|
|
if (std::isnan(result)) {
|
|
throw std::runtime_error("BinaryReader::ReadFloat(): Error reading stream");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
double LUS::BinaryReader::ReadDouble() {
|
|
double result = NAN;
|
|
|
|
mStream->Read((char*)&result, sizeof(double));
|
|
|
|
if (mEndianness != Torch::Endianness::Native) {
|
|
double tmp;
|
|
char* dst = (char*)&tmp;
|
|
char* src = (char*)&result;
|
|
dst[7] = src[0];
|
|
dst[6] = src[1];
|
|
dst[5] = src[2];
|
|
dst[4] = src[3];
|
|
dst[3] = src[4];
|
|
dst[2] = src[5];
|
|
dst[1] = src[6];
|
|
dst[0] = src[7];
|
|
result = tmp;
|
|
}
|
|
|
|
if (std::isnan(result)) {
|
|
throw std::runtime_error("BinaryReader::ReadDouble(): Error reading stream");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
std::string LUS::BinaryReader::ReadString() {
|
|
std::string res;
|
|
int numChars = ReadInt32();
|
|
for (int i = 0; i < numChars; i++) {
|
|
res += ReadChar();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
std::string LUS::BinaryReader::ReadCString() {
|
|
std::string res;
|
|
|
|
unsigned char c = 0;
|
|
do {
|
|
if (mStream->GetBaseAddress() >= mStream->GetLength()) {
|
|
break;
|
|
}
|
|
|
|
c = ReadChar();
|
|
res += c;
|
|
} while (c != '\0');
|
|
|
|
return res;
|
|
}
|
|
|
|
size_t LUS::BinaryReader::GetLength() {
|
|
return mStream->GetLength();
|
|
}
|
|
|
|
std::vector<char> LUS::BinaryReader::ToVector() {
|
|
return mStream->ToVector();
|
|
} |