1
0
forked from akanyan/mu3-mods
Files
mu3-mods/Extras/MoreProfileOptions/MU3.CustomUI/patch_MU3UICounter.cs
akanyan 566d17c230 fix(MPO): don't tap into toRatingFloat
Cleaner, safer, and should fix collab play
2024-12-28 21:10:31 +00:00

37 lines
988 B
C#

using MU3.Mod;
using MU3.User;
namespace MU3.CustomUI;
class patch_MU3UICounter: MU3UICounter {
public bool isRatingDisplay { get; set; }
protected extern void orig_calcNumFiguresFloat(double value);
protected new void calcNumFiguresFloat(double value) {
orig_calcNumFiguresFloat(value);
if(isRatingDisplay) {
var b = CustomRating.GetSuffix();
if(b != 0) {
pushFigureFront(b);
}
}
}
protected void pushFigureFront(byte c) {
for(int i = numFigures_; i > 0; --i) {
figures_[i] = figures_[i - 1];
}
figures_[0] = c;
numFigures_ += 1;
}
public extern void orig_set_Counter(double value);
public void set_Counter(double value) {
if(isRatingDisplay && CustomRating.IsEnabled()) {
orig_set_Counter(UserUtil.toRatingFloat(CustomRating.Get()));
} else {
orig_set_Counter(value);
}
}
}