mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 23:20:53 +01:00
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
#include <Structs/Vector2_NetQuantize.h>
|
|
#include <TiltedCore/Serialization.hpp>
|
|
|
|
using TiltedPhoques::Serialization;
|
|
|
|
bool Vector2_NetQuantize::operator==(const Vector2_NetQuantize& acRhs) const noexcept
|
|
{
|
|
return Pack() == acRhs.Pack();
|
|
}
|
|
|
|
bool Vector2_NetQuantize::operator!=(const Vector2_NetQuantize& acRhs) const noexcept
|
|
{
|
|
return !this->operator==(acRhs);
|
|
}
|
|
|
|
Vector2_NetQuantize& Vector2_NetQuantize::operator=(const glm::vec2& acRhs) noexcept
|
|
{
|
|
glm::vec2::operator=(acRhs);
|
|
return *this;
|
|
}
|
|
|
|
void Vector2_NetQuantize::Serialize(TiltedPhoques::Buffer::Writer& aWriter) const noexcept
|
|
{
|
|
aWriter.WriteBits(Pack(), 32);
|
|
}
|
|
|
|
void Vector2_NetQuantize::Deserialize(TiltedPhoques::Buffer::Reader& aReader) noexcept
|
|
{
|
|
uint64_t data;
|
|
aReader.ReadBits(data, 32);
|
|
|
|
Unpack(data & 0xFFFFFFFF);
|
|
}
|
|
|
|
void Vector2_NetQuantize::Unpack(uint32_t aValue) noexcept
|
|
{
|
|
int32_t xSign = (aValue & 1) != 0;
|
|
int32_t ySign = (aValue & 2) != 0;
|
|
|
|
auto xValue = static_cast<float>((aValue >> 2) & ((1 << 15) - 1));
|
|
auto yValue = static_cast<float>((aValue >> 17) & ((1 << 15) - 1));
|
|
|
|
x = xSign ? -xValue : xValue;
|
|
y = ySign ? -yValue : yValue;
|
|
}
|
|
|
|
uint32_t Vector2_NetQuantize::Pack() const noexcept
|
|
{
|
|
uint32_t data = 0;
|
|
|
|
int32_t ix = static_cast<int32_t>(x);
|
|
int32_t iy = static_cast<int32_t>(y);
|
|
|
|
data |= (ix < 0) ? 1 : 0;
|
|
data |= (iy < 0) ? 2 : 0;
|
|
|
|
const uint64_t xVal = std::abs(ix) & ((1 << 15) - 1);
|
|
const uint64_t yVal = std::abs(iy) & ((1 << 15) - 1);
|
|
|
|
data |= xVal << 2;
|
|
data |= yVal << 17;
|
|
|
|
return data;
|
|
}
|