forked from akanyan/mu3-mods
37 lines
988 B
C#
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);
|
|
}
|
|
}
|
|
}
|