forked from TeamGalacticraft/MachineLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisplayUtil.java
124 lines (107 loc) · 6.25 KB
/
DisplayUtil.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Copyright (c) 2021-2024 Team Galacticraft
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package dev.galacticraft.machinelib.client.api.util;
import com.google.common.collect.ImmutableList;
import dev.galacticraft.machinelib.api.config.Config;
import dev.galacticraft.machinelib.impl.Constant;
import dev.galacticraft.machinelib.impl.MachineLib;
import net.fabricmc.fabric.api.transfer.v1.fluid.FluidConstants;
import net.fabricmc.fabric.api.transfer.v1.fluid.FluidVariant;
import net.fabricmc.fabric.api.transfer.v1.fluid.FluidVariantAttributes;
import net.minecraft.ChatFormatting;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.client.resources.language.I18n;
import net.minecraft.core.component.DataComponentPatch;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.MutableComponent;
import net.minecraft.network.chat.Style;
import net.minecraft.network.chat.contents.TranslatableContents;
import net.minecraft.util.Mth;
import net.minecraft.world.level.material.Fluid;
import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.Unmodifiable;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.List;
public final class DisplayUtil {
private static final NumberFormat NUMBER_FORMAT = NumberFormat.getNumberInstance();
static {
if (NUMBER_FORMAT instanceof DecimalFormat fmt) {
fmt.setRoundingMode(RoundingMode.FLOOR);
}
NUMBER_FORMAT.setGroupingUsed(true);
}
private DisplayUtil() {
}
public static String truncateDecimal(double d, int places) {
NUMBER_FORMAT.setMaximumFractionDigits(places);
return NUMBER_FORMAT.format(d);
}
@Contract(pure = true, value = "_ -> new")
public static @NotNull MutableComponent formatNumber(long amount) {
return Component.literal(NUMBER_FORMAT.format(amount));
}
@Contract(pure = true, value = "_ -> new")
public static @NotNull MutableComponent formatEnergy(long amount) {
return formatNumber(amount).append(Component.translatable(Constant.TranslationKey.UNIT_GJ));
}
@Contract(pure = true, value = "_, _ -> new")
public static @NotNull MutableComponent formatFluid(long amount, boolean forceDetail) {
if (!forceDetail && MachineLib.CONFIG.fluidUnits() == Config.FluidUnits.MILLIBUCKET) {
return Component.literal(truncateDecimal((double) amount / ((double) (FluidConstants.BUCKET / 1000)), 0)).append(Component.translatable(Constant.TranslationKey.UNIT_MILLIBUCKET));
}
return Component.literal(String.valueOf(amount));
}
public static @NotNull @Unmodifiable List<Component> wrapText(@NotNull Component text, int length) {
return wrapText(text.getContents() instanceof TranslatableContents contents ? I18n.get(contents.getKey(), contents.getArgs()) : text.getString(), length, text.getStyle());
}
public static @NotNull @Unmodifiable List<Component> wrapText(@NotNull String text, int length, @Nullable Style style) {
Minecraft minecraft = Minecraft.getInstance();
ImmutableList.Builder<Component> list = ImmutableList.builder();
minecraft.font.getSplitter().splitLines(text, length, Style.EMPTY).stream()
.forEach(formattedText -> list.add(Component.literal(formattedText.getString()).withStyle(style)));
return list.build();
}
public static int colorScale(double stored, double capacity) {
double scale = 1.0 - (stored < 0 ? 0.0 : (capacity == 0 ? 1.0 : (1.0 - stored / capacity)));
return Mth.hsvToRgb((float) ((120.0 / 360.0) * scale), 1.0f, 0.90f);
}
public static void createFluidTooltip(@NotNull List<Component> tooltip, @Nullable Fluid fluid, @Nullable DataComponentPatch components, long amount, long capacity) {
if (amount == 0) {
tooltip.add(Component.translatable(Constant.TranslationKey.TANK_EMPTY).setStyle(Constant.Text.GRAY_STYLE));
return;
}
assert fluid != null;
tooltip.add(Component.translatable(Constant.TranslationKey.TANK_CONTENTS).setStyle(Constant.Text.GRAY_STYLE).append(FluidVariantAttributes.getName(FluidVariant.of(fluid, components == null ? DataComponentPatch.EMPTY : components))));
tooltip.add(Component.translatable(Constant.TranslationKey.TANK_AMOUNT).setStyle(Constant.Text.GRAY_STYLE).append(DisplayUtil.formatFluid(amount, Screen.hasShiftDown()).setStyle(Style.EMPTY.withColor(ChatFormatting.WHITE))));
if (capacity != -1) {
tooltip.add(Component.translatable(Constant.TranslationKey.TANK_CAPACITY).setStyle(Constant.Text.GRAY_STYLE).append(DisplayUtil.formatFluid(capacity, Screen.hasShiftDown()).setStyle(Style.EMPTY.withColor(ChatFormatting.WHITE))));
}
}
public static MutableComponent createEnergyTooltip(long amount, long capacity) {
return Component.translatable(Constant.TranslationKey.CURRENT_ENERGY, DisplayUtil.formatNumber(amount).setStyle(Style.EMPTY.withColor(DisplayUtil.colorScale(amount, capacity))), DisplayUtil.formatEnergy(capacity).setStyle(Constant.Text.LIGHT_PURPLE_STYLE)).setStyle(Constant.Text.GRAY_STYLE);
}
}