PKHeX/PKHeX.Core/Util/NetFramework/BinaryPrimitives.cs
Kurt 59fad0e8cf Minor tweaks
Extract some logic (origin markings)
Revise directives for NET7 targeting, remove old net5 refs
2022-08-05 16:18:42 -07:00

86 lines
2.5 KiB
C#

#if !NET6_0_OR_GREATER
global using static PKHeX.Core.Buffers.Binary.Extra.BinaryPrimitives;
using System;
using System.Runtime.InteropServices;
namespace PKHeX.Core.Buffers.Binary.Extra;
internal static class BinaryPrimitives
{
public static float ReadSingleLittleEndian(ReadOnlySpan<byte> data)
{
var value = MemoryMarshal.Read<float>(data);
if (BitConverter.IsLittleEndian)
return value;
return ReverseEndianness(value);
}
public static double ReadDoubleLittleEndian(ReadOnlySpan<byte> data)
{
var value = MemoryMarshal.Read<double>(data);
if (BitConverter.IsLittleEndian)
return value;
return ReverseEndianness(value);
}
public static float ReadSingleBigEndian(Span<byte> data)
{
var value = MemoryMarshal.Read<float>(data);
if (!BitConverter.IsLittleEndian)
return value;
return ReverseEndianness(value);
}
public static double ReadDoubleBigEndian(Span<byte> data)
{
var value = MemoryMarshal.Read<double>(data);
if (!BitConverter.IsLittleEndian)
return value;
return ReverseEndianness(value);
}
public static void WriteSingleLittleEndian(Span<byte> data, float value)
{
if (!BitConverter.IsLittleEndian)
value = ReverseEndianness(value);
MemoryMarshal.Write(data, ref value);
}
public static void WriteDoubleLittleEndian(Span<byte> data, double value)
{
if (!BitConverter.IsLittleEndian)
value = ReverseEndianness(value);
MemoryMarshal.Write(data, ref value);
}
public static void WriteSingleBigEndian(Span<byte> data, float value)
{
if (BitConverter.IsLittleEndian)
value = ReverseEndianness(value);
MemoryMarshal.Write(data, ref value);
}
public static void WriteDoubleBigEndian(Span<byte> data, double value)
{
if (BitConverter.IsLittleEndian)
value = ReverseEndianness(value);
MemoryMarshal.Write(data, ref value);
}
public static float ReverseEndianness(float input)
{
Span<byte> span = stackalloc byte[4];
MemoryMarshal.Write(span, ref input);
span.Reverse();
return MemoryMarshal.Read<float>(span);
}
public static double ReverseEndianness(double input)
{
Span<byte> span = stackalloc byte[8];
MemoryMarshal.Write(span, ref input);
span.Reverse();
return MemoryMarshal.Read<double>(span);
}
}
#endif