Better item display rates

This commit is contained in:
Anuken
2023-04-06 19:13:36 -04:00
parent 6dc3b7e729
commit ac7b694e91

View File

@@ -1,6 +1,5 @@
package mindustry.ui;
import arc.graphics.*;
import arc.scene.ui.layout.*;
import arc.util.*;
import mindustry.type.*;
@@ -31,8 +30,7 @@ public class ItemDisplay extends Table{
/** Displays the item with a "/sec" qualifier based on the time period, in ticks. */
public ItemDisplay(Item item, int amount, float timePeriod, boolean showName){
add(new ItemImage(item.uiIcon, amount));
add(Strings.autoFixed(amount / (timePeriod / 60f), 2) + StatUnit.perSecond.localized()).padLeft(2).padRight(5).color(Color.lightGray).style(Styles.outlineLabel);
if(showName) add(item.localizedName).padLeft(4 + amount > 99 ? 4 : 0);
add((showName ? item.localizedName + "\n" : "") + "[lightgray]" + Strings.autoFixed(amount / (timePeriod / 60f), 2) + StatUnit.perSecond.localized()).padLeft(2).padRight(5).style(Styles.outlineLabel);
this.item = item;
this.amount = amount;