2018-10-07 13:13:46 +00:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.Utilities
|
|
|
|
{
|
|
|
|
public struct UInt128
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
public long High { get; private set; }
|
|
|
|
public long Low { get; private set; }
|
2018-10-07 13:13:46 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public UInt128(long Low, long High)
|
2018-10-07 13:13:46 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
this.Low = Low;
|
|
|
|
this.High = High;
|
2018-10-07 13:13:46 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public UInt128(string UInt128Hex)
|
2018-10-07 13:13:46 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
if (UInt128Hex == null || UInt128Hex.Length != 32 || !UInt128Hex.All("0123456789abcdefABCDEF".Contains))
|
2018-10-07 13:13:46 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
throw new ArgumentException("Invalid Hex value!", nameof(UInt128Hex));
|
2018-10-07 13:13:46 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
Low = Convert.ToInt64(UInt128Hex.Substring(16), 16);
|
|
|
|
High = Convert.ToInt64(UInt128Hex.Substring(0, 16), 16);
|
2018-10-07 13:13:46 +00:00
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public void Write(BinaryWriter BinaryWriter)
|
2018-10-07 13:13:46 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
BinaryWriter.Write(Low);
|
|
|
|
BinaryWriter.Write(High);
|
2018-10-07 13:13:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return High.ToString("x16") + Low.ToString("x16");
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool IsZero()
|
|
|
|
{
|
|
|
|
return (Low | High) == 0;
|
|
|
|
}
|
|
|
|
}
|
2018-10-13 21:29:49 +00:00
|
|
|
}
|