|
@@ -4,6 +4,8 @@
|
|
|
|
|
|
#include "BinaryData.h"
|
|
#include "BinaryData.h"
|
|
#include "DatException.h"
|
|
#include "DatException.h"
|
|
|
|
+#include <cassert>
|
|
|
|
+#include "zlib/zlib.h"
|
|
|
|
|
|
extern "C++"
|
|
extern "C++"
|
|
{
|
|
{
|
|
@@ -15,7 +17,7 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
|
|
|
|
BinaryData::BinaryData(const BinaryData &d) {
|
|
BinaryData::BinaryData(const BinaryData &d) {
|
|
- size_ = d.size_;
|
|
|
|
|
|
+ size_ = d.size_;
|
|
data_ = new unsigned char[size_];
|
|
data_ = new unsigned char[size_];
|
|
memcpy(data_, d.data_, size_);
|
|
memcpy(data_, d.data_, size_);
|
|
}
|
|
}
|
|
@@ -36,17 +38,17 @@ namespace LOTRO_DAT {
|
|
return data_[pos];
|
|
return data_[pos];
|
|
}
|
|
}
|
|
|
|
|
|
- // Translates data into specified number type due to UTF-16LE encoding of the .dat file
|
|
|
|
|
|
+ // Translates T bytes from data into number using UTF-16LE encoding of the .dat file
|
|
template<int T>
|
|
template<int T>
|
|
long long BinaryData::ToNumber(const long long &pos) const {
|
|
long long BinaryData::ToNumber(const long long &pos) const {
|
|
try {
|
|
try {
|
|
long long ans = 0;
|
|
long long ans = 0;
|
|
|
|
|
|
- if (pos + 3 >= size_)
|
|
|
|
|
|
+ if (pos + T >= size_)
|
|
throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
|
|
throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
|
|
|
|
|
|
for (int i = T - 1; i >= 0; i--)
|
|
for (int i = T - 1; i >= 0; i--)
|
|
- ans = ((ans << 8ll) | (unsigned char)(data_[pos + i]));
|
|
|
|
|
|
+ ans = ((ans << 8ll) | data_[pos + i]);
|
|
|
|
|
|
return ans;
|
|
return ans;
|
|
} catch (...) {
|
|
} catch (...) {
|
|
@@ -54,7 +56,25 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- // Makes data from specified number type
|
|
|
|
|
|
+ // Translates T bytes from data into number in raw format
|
|
|
|
+ template<int T>
|
|
|
|
+ long long BinaryData::ToNumberRAW(const long long &pos) const {
|
|
|
|
+ try {
|
|
|
|
+ long long ans = 0;
|
|
|
|
+
|
|
|
|
+ if (pos + T >= size_)
|
|
|
|
+ throw DatException("Bad BinaryData::ToNumber(). Reached end of BinaryData!", DATA_EXCEPTION);
|
|
|
|
+
|
|
|
|
+ for (int i = 0; i < T; i++)
|
|
|
|
+ ans = ((ans << 8ll) | data_[pos + i]);
|
|
|
|
+
|
|
|
|
+ return ans;
|
|
|
|
+ } catch (...) {
|
|
|
|
+ throw DatException("Bad BinaryData::ToNumber(). Error while using template function", DATA_EXCEPTION);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Makes data from specified T bytes of number in Little Endian encoding
|
|
template<int T>
|
|
template<int T>
|
|
void BinaryData::FromNumber(const long long &number) {
|
|
void BinaryData::FromNumber(const long long &number) {
|
|
if (T < 0)
|
|
if (T < 0)
|
|
@@ -76,6 +96,28 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // Makes data from specified T bytes of number in raw
|
|
|
|
+ template<int T>
|
|
|
|
+ void BinaryData::FromNumberRAW(const long long &number) {
|
|
|
|
+ if (T < 0)
|
|
|
|
+ throw DatException("Bad BinaryData::FromNumber() - trying to make data from amount of bytes < 0");
|
|
|
|
+ try {
|
|
|
|
+ if (size_ != 0 && data_ != nullptr)
|
|
|
|
+ delete[] data_;
|
|
|
|
+
|
|
|
|
+ size_ = size_t(T);
|
|
|
|
+ data_ = new unsigned char[size_];
|
|
|
|
+
|
|
|
|
+ for (size_t i = size_ - 1; i >= 0; i--)
|
|
|
|
+ {
|
|
|
|
+ data_[i] = (unsigned char)((number >> (8 * i)) & 0xFF);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ } catch (...) {
|
|
|
|
+ throw DatException("Bad BinaryData::ToNumber(). Error in using template function", DATA_EXCEPTION);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
BinaryData &BinaryData::operator=(const BinaryData &data) {
|
|
BinaryData &BinaryData::operator=(const BinaryData &data) {
|
|
if (&data == this)
|
|
if (&data == this)
|
|
return *this;
|
|
return *this;
|
|
@@ -90,6 +132,7 @@ namespace LOTRO_DAT {
|
|
data_ = new unsigned char[size_];
|
|
data_ = new unsigned char[size_];
|
|
memcpy(data_, data.data_, size_);
|
|
memcpy(data_, data.data_, size_);
|
|
}
|
|
}
|
|
|
|
+
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -127,6 +170,30 @@ namespace LOTRO_DAT {
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ bool BinaryData::CheckCompression() const {
|
|
|
|
+ if (size() < 10)
|
|
|
|
+ return false;
|
|
|
|
+ auto header = ToNumberRAW<2>(4);
|
|
|
|
+ return (header == 0x7801 || header == 0x789C || header == 0x78DA);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ void BinaryData::DecompressData(unsigned int offset) {
|
|
|
|
+ const unsigned max_unpacked_size = 1024 * 1024 * 40; // Setting 40 MB as a maximum unpacked data;
|
|
|
|
+
|
|
|
|
+ BinaryData decompressed(max_unpacked_size);
|
|
|
|
+
|
|
|
|
+ uLongf new_size = max_unpacked_size;
|
|
|
|
+ int res = uncompress(decompressed.data_, &new_size, data_ + offset, size_ - offset);
|
|
|
|
+
|
|
|
|
+ if (res != 0) {
|
|
|
|
+ throw DatException("Bad BinaryData::DecompressData() - uncompress() failed!", DATA_EXCEPTION);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ decompressed.size_ = (unsigned int)new_size;
|
|
|
|
+ *this = decompressed;
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
template long long BinaryData::ToNumber<1>(long long const&) const;
|
|
template long long BinaryData::ToNumber<1>(long long const&) const;
|
|
template long long BinaryData::ToNumber<2>(long long const&) const;
|
|
template long long BinaryData::ToNumber<2>(long long const&) const;
|
|
template long long BinaryData::ToNumber<4>(long long const&) const;
|
|
template long long BinaryData::ToNumber<4>(long long const&) const;
|
|
@@ -136,5 +203,16 @@ namespace LOTRO_DAT {
|
|
template void BinaryData::FromNumber<2>(const long long &);
|
|
template void BinaryData::FromNumber<2>(const long long &);
|
|
template void BinaryData::FromNumber<4>(const long long &);
|
|
template void BinaryData::FromNumber<4>(const long long &);
|
|
template void BinaryData::FromNumber<8>(const long long &);
|
|
template void BinaryData::FromNumber<8>(const long long &);
|
|
|
|
+
|
|
|
|
+ template long long BinaryData::ToNumberRAW<1>(long long const&) const;
|
|
|
|
+ template long long BinaryData::ToNumberRAW<2>(long long const&) const;
|
|
|
|
+ template long long BinaryData::ToNumberRAW<4>(long long const&) const;
|
|
|
|
+ template long long BinaryData::ToNumberRAW<8>(long long const&) const;
|
|
|
|
+
|
|
|
|
+ template void BinaryData::FromNumberRAW<1>(const long long &);
|
|
|
|
+ template void BinaryData::FromNumberRAW<2>(const long long &);
|
|
|
|
+ template void BinaryData::FromNumberRAW<4>(const long long &);
|
|
|
|
+ template void BinaryData::FromNumberRAW<8>(const long long &);
|
|
|
|
+
|
|
}
|
|
}
|
|
}
|
|
}
|