From 6dc177619dc61b07c2acae308533119d32163918 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Tue, 28 Jan 2025 02:03:14 +0100 Subject: [PATCH] Improve `UDecimal` --- pixmappaint.d | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 48ac5e8..3d1007f 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -407,6 +407,16 @@ struct UDecimal { return (_value >> 32).castTo!uint; } + /// + T opCast(T : double)() const { + return (_value / double(0xFFFF_FFFF)); + } + + /// + T opCast(T : float)() const { + return (_value / float(0xFFFF_FFFF)); + } + /// public UDecimal round() const { const truncated = (_value & 0xFFFF_FFFF_0000_0000); @@ -534,49 +544,49 @@ struct UDecimal { public { /// - auto opOpAssign(string op : "+")(const uint rhs) { + UDecimal opOpAssign(string op : "+")(const uint rhs) { _value += (ulong(rhs) << 32); return this; } /// ditto - auto opOpAssign(string op : "+")(const UDecimal rhs) { + UDecimal opOpAssign(string op : "+")(const UDecimal rhs) { _value += rhs._value; return this; } /// ditto - auto opOpAssign(string op : "-")(const uint rhs) { + UDecimal opOpAssign(string op : "-")(const uint rhs) { _value -= (ulong(rhs) << 32); return this; } /// ditto - auto opOpAssign(string op : "-")(const UDecimal rhs) { + UDecimal opOpAssign(string op : "-")(const UDecimal rhs) { _value -= rhs._value; return this; } /// ditto - auto opOpAssign(string op : "*")(const uint rhs) { + UDecimal opOpAssign(string op : "*")(const uint rhs) { _value *= rhs; return this; } /// ditto - auto opOpAssign(string op : "/")(const uint rhs) { + UDecimal opOpAssign(string op : "/")(const uint rhs) { _value /= rhs; return this; } /// ditto - auto opOpAssign(string op : "<<")(const uint rhs) const { + UDecimal opOpAssign(string op : "<<")(const uint rhs) const { _value <<= rhs; return this; } /// ditto - auto opOpAssign(string op : ">>")(const uint rhs) const { + UDecimal opOpAssign(string op : ">>")(const uint rhs) const { _value >>= rhs; return this; }