795 lines
28 KiB
Java
795 lines
28 KiB
Java
package mindustry.ui.fragments;
|
|
|
|
import arc.*;
|
|
import arc.func.*;
|
|
import arc.graphics.*;
|
|
import arc.graphics.g2d.*;
|
|
import arc.math.*;
|
|
import arc.scene.*;
|
|
import arc.scene.actions.*;
|
|
import arc.scene.event.*;
|
|
import arc.scene.style.*;
|
|
import arc.scene.ui.*;
|
|
import arc.scene.ui.ImageButton.*;
|
|
import arc.scene.ui.layout.*;
|
|
import arc.struct.*;
|
|
import arc.util.*;
|
|
import mindustry.annotations.Annotations.*;
|
|
import mindustry.content.*;
|
|
import mindustry.core.GameState.*;
|
|
import mindustry.ctype.*;
|
|
import mindustry.game.EventType.*;
|
|
import mindustry.game.*;
|
|
import mindustry.gen.*;
|
|
import mindustry.graphics.*;
|
|
import mindustry.input.*;
|
|
import mindustry.net.Packets.*;
|
|
import mindustry.type.*;
|
|
import mindustry.ui.*;
|
|
|
|
import static mindustry.Vars.*;
|
|
|
|
public class HudFragment extends Fragment{
|
|
private static final float dsize = 65f;
|
|
|
|
public final PlacementFragment blockfrag = new PlacementFragment();
|
|
public boolean shown = true;
|
|
|
|
private ImageButton flip;
|
|
private CoreItemsDisplay coreItems = new CoreItemsDisplay();
|
|
|
|
private String hudText = "";
|
|
private boolean showHudText;
|
|
|
|
private Table lastUnlockTable;
|
|
private Table lastUnlockLayout;
|
|
private long lastToast;
|
|
|
|
@Override
|
|
public void build(Group parent){
|
|
|
|
//warn about guardian/boss waves
|
|
Events.on(WaveEvent.class, e -> {
|
|
int max = 10;
|
|
int winWave = state.isCampaign() && state.rules.winWave > 0 ? state.rules.winWave : Integer.MAX_VALUE;
|
|
outer:
|
|
for(int i = state.wave - 1; i <= Math.min(state.wave + max, winWave - 2); i++){
|
|
for(SpawnGroup group : state.rules.spawns){
|
|
if(group.effect == StatusEffects.boss && group.getSpawned(i) > 0){
|
|
int diff = (i + 2) - state.wave;
|
|
|
|
//increments at which to warn about incoming guardian
|
|
if(diff == 1 || diff == 2 || diff == 5 || diff == 10){
|
|
showToast(Icon.warning, Core.bundle.format("wave.guardianwarn" + (diff == 1 ? ".one" : ""), diff));
|
|
}
|
|
|
|
break outer;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
Events.on(SectorCaptureEvent.class, e ->{
|
|
showToast(Core.bundle.format("sector.captured", e.sector.isBeingPlayed() ? "" : e.sector.name() + " "));
|
|
});
|
|
|
|
Events.on(SectorLoseEvent.class, e -> {
|
|
showToast(Icon.warning, Core.bundle.format("sector.lost", e.sector.name()));
|
|
});
|
|
|
|
Events.on(SectorInvasionEvent.class, e -> {
|
|
showToast(Icon.warning, Core.bundle.format("sector.attacked", e.sector.name()));
|
|
});
|
|
|
|
Events.on(ResetEvent.class, e -> {
|
|
coreItems.resetUsed();
|
|
coreItems.clear();
|
|
});
|
|
|
|
//paused table
|
|
parent.fill(t -> {
|
|
t.name = "paused";
|
|
t.top().visible(() -> state.isPaused() && shown).touchable = Touchable.disabled;
|
|
t.table(Styles.black5, top -> top.add("@paused").style(Styles.outlineLabel).pad(8f)).growX();
|
|
});
|
|
|
|
//minimap + position
|
|
parent.fill(t -> {
|
|
t.name = "minimap/position";
|
|
t.visible(() -> Core.settings.getBool("minimap") && !state.rules.tutorial && shown);
|
|
//minimap
|
|
t.add(new Minimap()).name("minimap");
|
|
t.row();
|
|
//position
|
|
t.label(() -> player.tileX() + "," + player.tileY())
|
|
.visible(() -> Core.settings.getBool("position") && !state.rules.tutorial)
|
|
.touchable(Touchable.disabled)
|
|
.name("position");
|
|
t.top().right();
|
|
});
|
|
|
|
//TODO tear this all down
|
|
//menu at top left
|
|
parent.fill(cont -> {
|
|
cont.name = "overlaymarker";
|
|
cont.top().left();
|
|
|
|
if(mobile){
|
|
cont.table(select -> {
|
|
select.name = "mobile buttons";
|
|
select.left();
|
|
select.defaults().size(dsize).left();
|
|
|
|
ImageButtonStyle style = Styles.clearTransi;
|
|
|
|
select.button(Icon.menu, style, ui.paused::show).name("menu");
|
|
flip = select.button(Icon.upOpen, style, this::toggleMenus).get();
|
|
flip.name = "flip";
|
|
|
|
select.button(Icon.paste, style, ui.schematics::show)
|
|
.name("schematics");
|
|
|
|
select.button(Icon.pause, style, () -> {
|
|
if(net.active()){
|
|
ui.listfrag.toggle();
|
|
}else{
|
|
state.set(state.is(State.paused) ? State.playing : State.paused);
|
|
}
|
|
}).name("pause").update(i -> {
|
|
if(net.active()){
|
|
i.getStyle().imageUp = Icon.players;
|
|
}else{
|
|
i.setDisabled(false);
|
|
i.getStyle().imageUp = state.is(State.paused) ? Icon.play : Icon.pause;
|
|
}
|
|
});
|
|
|
|
select.button(Icon.chat, style,() -> {
|
|
if(net.active() && mobile){
|
|
if(ui.chatfrag.shown()){
|
|
ui.chatfrag.hide();
|
|
}else{
|
|
ui.chatfrag.toggle();
|
|
}
|
|
}else if(state.isCampaign()){
|
|
ui.research.show();
|
|
}else{
|
|
ui.database.show();
|
|
}
|
|
}).name("chat").update(i -> {
|
|
if(net.active() && mobile){
|
|
i.getStyle().imageUp = Icon.chat;
|
|
}else if(state.isCampaign()){
|
|
i.getStyle().imageUp = Icon.tree;
|
|
}else{
|
|
i.getStyle().imageUp = Icon.book;
|
|
}
|
|
});
|
|
|
|
select.image().color(Pal.gray).width(4f).fillY();
|
|
});
|
|
|
|
cont.row();
|
|
cont.image().height(4f).color(Pal.gray).fillX();
|
|
cont.row();
|
|
}
|
|
|
|
cont.update(() -> {
|
|
if(Core.input.keyTap(Binding.toggle_menus) && !ui.chatfrag.shown() && !Core.scene.hasDialog() && !(Core.scene.getKeyboardFocus() instanceof TextField)){
|
|
Core.settings.getBoolOnce("ui-hidden", () -> {
|
|
ui.announce(Core.bundle.format("showui", Core.keybinds.get(Binding.toggle_menus).key.toString(), 11));
|
|
});
|
|
toggleMenus();
|
|
}
|
|
});
|
|
|
|
Table wavesMain, editorMain;
|
|
|
|
cont.stack(wavesMain = new Table(), editorMain = new Table()).height(wavesMain.getPrefHeight())
|
|
.name("waves/editor");
|
|
|
|
wavesMain.visible(() -> shown && !state.isEditor());
|
|
wavesMain.top().left().name = "waves";
|
|
|
|
wavesMain.table(s -> {
|
|
//wave info button with text
|
|
s.add(makeStatusTable()).grow().name("status");
|
|
|
|
//table with button to skip wave
|
|
s.button(Icon.play, Styles.righti, 30f, () -> {
|
|
if(net.client() && player.admin){
|
|
Call.adminRequest(player, AdminAction.wave);
|
|
}else{
|
|
logic.skipWave();
|
|
}
|
|
}).growY().fillX().right().width(40f).disabled(b -> !canSkipWave()).name("skip");
|
|
}).width(dsize * 5 + 4f);
|
|
|
|
wavesMain.row();
|
|
|
|
wavesMain.table(Tex.button, t -> t.margin(10f).add(new Bar("boss.health", Pal.health, () -> state.boss() == null ? 0f : state.boss().healthf()).blink(Color.white))
|
|
.grow()).fillX().visible(() -> state.rules.waves && state.boss() != null).height(60f).name("boss");
|
|
|
|
wavesMain.row();
|
|
|
|
editorMain.name = "editor";
|
|
editorMain.table(Tex.buttonEdge4, t -> {
|
|
//t.margin(0f);
|
|
t.name = "teams";
|
|
t.add("@editor.teams").growX().left();
|
|
t.row();
|
|
t.table(teams -> {
|
|
teams.left();
|
|
int i = 0;
|
|
for(Team team : Team.baseTeams){
|
|
ImageButton button = teams.button(Tex.whiteui, Styles.clearTogglePartiali, 40f, () -> Call.setPlayerTeamEditor(player, team))
|
|
.size(50f).margin(6f).get();
|
|
button.getImageCell().grow();
|
|
button.getStyle().imageUpColor = team.color;
|
|
button.update(() -> button.setChecked(player.team() == team));
|
|
|
|
if(++i % 3 == 0){
|
|
teams.row();
|
|
}
|
|
}
|
|
}).left();
|
|
}).width(dsize * 5 + 4f);
|
|
editorMain.visible(() -> shown && state.isEditor());
|
|
|
|
//fps display
|
|
cont.table(info -> {
|
|
info.name = "fps/ping";
|
|
info.touchable = Touchable.disabled;
|
|
info.top().left().margin(4).visible(() -> Core.settings.getBool("fps") && shown);
|
|
IntFormat fps = new IntFormat("fps");
|
|
IntFormat ping = new IntFormat("ping");
|
|
IntFormat mem = new IntFormat("memory");
|
|
IntFormat memnative = new IntFormat("memory2");
|
|
|
|
info.label(() -> fps.get(Core.graphics.getFramesPerSecond())).left().style(Styles.outlineLabel).name("fps");
|
|
info.row();
|
|
|
|
if(android){
|
|
info.label(() -> memnative.get((int)(Core.app.getJavaHeap() / 1024 / 1024), (int)(Core.app.getNativeHeap() / 1024 / 1024))).left().style(Styles.outlineLabel).name("memory2");
|
|
info.row();
|
|
}else{
|
|
info.label(() -> mem.get((int)(Core.app.getJavaHeap() / 1024 / 1024))).left().style(Styles.outlineLabel).name("memory");
|
|
info.row();
|
|
}
|
|
|
|
info.label(() -> ping.get(netClient.getPing())).visible(net::client).left().style(Styles.outlineLabel).name("ping");
|
|
|
|
}).top().left();
|
|
});
|
|
|
|
//core items
|
|
parent.fill(t -> {
|
|
t.name = "coreitems";
|
|
t.top().add(coreItems);
|
|
t.visible(() -> Core.settings.getBool("coreitems") && !mobile && !state.isPaused() && shown);
|
|
});
|
|
|
|
//spawner warning
|
|
parent.fill(t -> {
|
|
t.name = "nearpoint";
|
|
t.touchable = Touchable.disabled;
|
|
t.table(Styles.black, c -> c.add("@nearpoint")
|
|
.update(l -> l.setColor(Tmp.c1.set(Color.white).lerp(Color.scarlet, Mathf.absin(Time.time(), 10f, 1f))))
|
|
.get().setAlignment(Align.center, Align.center))
|
|
.margin(6).update(u -> u.color.a = Mathf.lerpDelta(u.color.a, Mathf.num(spawner.playerNear()), 0.1f)).get().color.a = 0f;
|
|
});
|
|
|
|
parent.fill(t -> {
|
|
t.name = "waiting";
|
|
t.visible(() -> netServer.isWaitingForPlayers());
|
|
t.table(Tex.button, c -> c.add("@waiting.players"));
|
|
});
|
|
|
|
//'core is under attack' table
|
|
parent.fill(t -> {
|
|
t.name = "coreattack";
|
|
t.touchable = Touchable.disabled;
|
|
float notifDuration = 240f;
|
|
float[] coreAttackTime = {0};
|
|
float[] coreAttackOpacity = {0};
|
|
|
|
Events.run(Trigger.teamCoreDamage, () -> {
|
|
coreAttackTime[0] = notifDuration;
|
|
});
|
|
|
|
t.top().visible(() -> {
|
|
if(!shown) return false;
|
|
if(state.isMenu() || !state.teams.get(player.team()).hasCore()){
|
|
coreAttackTime[0] = 0f;
|
|
return false;
|
|
}
|
|
|
|
t.color.a = coreAttackOpacity[0];
|
|
if(coreAttackTime[0] > 0){
|
|
coreAttackOpacity[0] = Mathf.lerpDelta(coreAttackOpacity[0], 1f, 0.1f);
|
|
}else{
|
|
coreAttackOpacity[0] = Mathf.lerpDelta(coreAttackOpacity[0], 0f, 0.1f);
|
|
}
|
|
|
|
coreAttackTime[0] -= Time.delta;
|
|
|
|
return coreAttackOpacity[0] > 0;
|
|
});
|
|
t.table(Tex.button, top -> top.add("@coreattack").pad(2)
|
|
.update(label -> label.color.set(Color.orange).lerp(Color.scarlet, Mathf.absin(Time.time(), 2f, 1f)))).touchable(Touchable.disabled);
|
|
});
|
|
|
|
//tutorial text
|
|
parent.fill(t -> {
|
|
t.name = "tutorial";
|
|
Runnable resize = () -> {
|
|
t.clearChildren();
|
|
t.top().right().visible(() -> state.rules.tutorial);
|
|
t.stack(new Button(){{
|
|
marginLeft(48f);
|
|
labelWrap(() -> control.tutorial.stage.text() + (control.tutorial.canNext() ? "\n\n" + Core.bundle.get("tutorial.next") : "")).width(!Core.graphics.isPortrait() ? 400f : 160f).pad(2f);
|
|
clicked(() -> control.tutorial.nextSentence());
|
|
setDisabled(() -> !control.tutorial.canNext());
|
|
}},
|
|
new Table(f -> {
|
|
f.left().button(Icon.left, Styles.emptyi, () -> {
|
|
control.tutorial.prevSentence();
|
|
}).width(44f).growY().visible(() -> control.tutorial.canPrev());
|
|
}));
|
|
};
|
|
|
|
resize.run();
|
|
Events.on(ResizeEvent.class, e -> resize.run());
|
|
});
|
|
|
|
//'saving' indicator
|
|
parent.fill(t -> {
|
|
t.name = "saving";
|
|
t.bottom().visible(() -> control.saves.isSaving());
|
|
t.add("@saving").style(Styles.outlineLabel);
|
|
});
|
|
|
|
parent.fill(p -> {
|
|
p.name = "hudtext";
|
|
p.top().table(Styles.black3, t -> t.margin(4).label(() -> hudText)
|
|
.style(Styles.outlineLabel)).padTop(10).visible(p.color.a >= 0.001f);
|
|
p.update(() -> {
|
|
p.color.a = Mathf.lerpDelta(p.color.a, Mathf.num(showHudText), 0.2f);
|
|
if(state.isMenu()){
|
|
p.color.a = 0f;
|
|
showHudText = false;
|
|
}
|
|
});
|
|
p.touchable = Touchable.disabled;
|
|
});
|
|
|
|
//TODO DEBUG: rate table
|
|
if(false)
|
|
parent.fill(t -> {
|
|
t.name = "rates";
|
|
t.bottom().left();
|
|
t.table(Styles.black6, c -> {
|
|
Bits used = new Bits(content.items().size);
|
|
|
|
Runnable rebuild = () -> {
|
|
c.clearChildren();
|
|
|
|
for(Item item : content.items()){
|
|
if(state.rules.sector != null && state.rules.sector.info.getExport(item) >= 1){
|
|
c.image(item.icon(Cicon.small));
|
|
c.label(() -> (int)state.rules.sector.info.getExport(item) + " /s").color(Color.lightGray);
|
|
c.row();
|
|
}
|
|
}
|
|
};
|
|
|
|
c.update(() -> {
|
|
boolean wrong = false;
|
|
for(Item item : content.items()){
|
|
boolean has = state.rules.sector != null && state.rules.sector.info.getExport(item) >= 1;
|
|
if(used.get(item.id) != has){
|
|
used.set(item.id, has);
|
|
wrong = true;
|
|
}
|
|
}
|
|
if(wrong){
|
|
rebuild.run();
|
|
}
|
|
});
|
|
}).visible(() -> state.isCampaign() && content.items().contains(i -> state.rules.sector != null && state.rules.sector.info.getExport(i) > 0));
|
|
});
|
|
|
|
blockfrag.build(parent);
|
|
}
|
|
|
|
@Remote(targets = Loc.both, forward = true, called = Loc.both)
|
|
public static void setPlayerTeamEditor(Player player, Team team){
|
|
if(state.isEditor() && player != null){
|
|
player.team(team);
|
|
}
|
|
}
|
|
|
|
public void setHudText(String text){
|
|
showHudText = true;
|
|
hudText = text;
|
|
}
|
|
|
|
public void toggleHudText(boolean shown){
|
|
showHudText = shown;
|
|
}
|
|
|
|
private void scheduleToast(Runnable run){
|
|
long duration = (int)(3.5 * 1000);
|
|
long since = Time.timeSinceMillis(lastToast);
|
|
if(since > duration){
|
|
lastToast = Time.millis();
|
|
run.run();
|
|
}else{
|
|
Time.runTask((duration - since) / 1000f * 60f, run);
|
|
lastToast += duration;
|
|
}
|
|
}
|
|
|
|
public void showToast(String text){
|
|
showToast(Icon.ok, text);
|
|
}
|
|
|
|
public void showToast(Drawable icon, String text){
|
|
if(state.isMenu()) return;
|
|
|
|
scheduleToast(() -> {
|
|
Sounds.message.play();
|
|
|
|
Table table = new Table(Tex.button);
|
|
table.update(() -> {
|
|
if(state.isMenu() || !ui.hudfrag.shown){
|
|
table.remove();
|
|
}
|
|
});
|
|
table.margin(12);
|
|
table.image(icon).pad(3);
|
|
table.add(text).wrap().width(280f).get().setAlignment(Align.center, Align.center);
|
|
table.pack();
|
|
|
|
//create container table which will align and move
|
|
Table container = Core.scene.table();
|
|
container.top().add(table);
|
|
container.setTranslation(0, table.getPrefHeight());
|
|
container.actions(Actions.translateBy(0, -table.getPrefHeight(), 1f, Interp.fade), Actions.delay(2.5f),
|
|
//nesting actions() calls is necessary so the right prefHeight() is used
|
|
Actions.run(() -> container.actions(Actions.translateBy(0, table.getPrefHeight(), 1f, Interp.fade), Actions.remove())));
|
|
});
|
|
}
|
|
|
|
/** Show unlock notification for a new recipe. */
|
|
public void showUnlock(UnlockableContent content){
|
|
//some content may not have icons... yet
|
|
//also don't play in the tutorial to prevent confusion
|
|
if(state.isMenu() || state.rules.tutorial) return;
|
|
|
|
Sounds.message.play();
|
|
|
|
//if there's currently no unlock notification...
|
|
if(lastUnlockTable == null){
|
|
scheduleToast(() -> {
|
|
Table table = new Table(Tex.button);
|
|
table.update(() -> {
|
|
if(state.isMenu()){
|
|
table.remove();
|
|
lastUnlockLayout = null;
|
|
lastUnlockTable = null;
|
|
}
|
|
});
|
|
table.margin(12);
|
|
|
|
Table in = new Table();
|
|
|
|
//create texture stack for displaying
|
|
Image image = new Image(content.icon(Cicon.xlarge));
|
|
image.setScaling(Scaling.fit);
|
|
|
|
in.add(image).size(8 * 6).pad(2);
|
|
|
|
//add to table
|
|
table.add(in).padRight(8);
|
|
table.add("@unlocked");
|
|
table.pack();
|
|
|
|
//create container table which will align and move
|
|
Table container = Core.scene.table();
|
|
container.top().add(table);
|
|
container.setTranslation(0, table.getPrefHeight());
|
|
container.actions(Actions.translateBy(0, -table.getPrefHeight(), 1f, Interp.fade), Actions.delay(2.5f),
|
|
//nesting actions() calls is necessary so the right prefHeight() is used
|
|
Actions.run(() -> container.actions(Actions.translateBy(0, table.getPrefHeight(), 1f, Interp.fade), Actions.run(() -> {
|
|
lastUnlockTable = null;
|
|
lastUnlockLayout = null;
|
|
}), Actions.remove())));
|
|
|
|
lastUnlockTable = container;
|
|
lastUnlockLayout = in;
|
|
});
|
|
}else{
|
|
//max column size
|
|
int col = 3;
|
|
//max amount of elements minus extra 'plus'
|
|
int cap = col * col - 1;
|
|
|
|
//get old elements
|
|
Seq<Element> elements = new Seq<>(lastUnlockLayout.getChildren());
|
|
int esize = elements.size;
|
|
|
|
//...if it's already reached the cap, ignore everything
|
|
if(esize > cap) return;
|
|
|
|
//get size of each element
|
|
float size = 48f / Math.min(elements.size + 1, col);
|
|
|
|
lastUnlockLayout.clearChildren();
|
|
lastUnlockLayout.defaults().size(size).pad(2);
|
|
|
|
for(int i = 0; i < esize; i++){
|
|
lastUnlockLayout.add(elements.get(i));
|
|
|
|
if(i % col == col - 1){
|
|
lastUnlockLayout.row();
|
|
}
|
|
}
|
|
|
|
//if there's space, add it
|
|
if(esize < cap){
|
|
|
|
Image image = new Image(content.icon(Cicon.medium));
|
|
image.setScaling(Scaling.fit);
|
|
|
|
lastUnlockLayout.add(image);
|
|
}else{ //else, add a specific icon to denote no more space
|
|
lastUnlockLayout.image(Icon.add);
|
|
}
|
|
|
|
lastUnlockLayout.pack();
|
|
}
|
|
}
|
|
|
|
public void showLaunchDirect(){
|
|
Image image = new Image();
|
|
image.color.a = 0f;
|
|
image.setFillParent(true);
|
|
image.actions(Actions.fadeIn(launchDuration / 60f, Interp.pow2In), Actions.delay(8f / 60f), Actions.remove());
|
|
Core.scene.add(image);
|
|
}
|
|
|
|
public void showLaunch(){
|
|
Image image = new Image();
|
|
image.color.a = 0f;
|
|
image.setFillParent(true);
|
|
image.actions(Actions.fadeIn(40f / 60f));
|
|
image.update(() -> {
|
|
if(state.isMenu()){
|
|
image.remove();
|
|
}
|
|
});
|
|
Core.scene.add(image);
|
|
}
|
|
|
|
public void showLand(){
|
|
Image image = new Image();
|
|
image.color.a = 1f;
|
|
image.touchable = Touchable.disabled;
|
|
image.setFillParent(true);
|
|
image.actions(Actions.fadeOut(0.8f), Actions.remove());
|
|
image.update(() -> {
|
|
image.toFront();
|
|
if(state.isMenu()){
|
|
image.remove();
|
|
}
|
|
});
|
|
Core.scene.add(image);
|
|
}
|
|
|
|
private void toggleMenus(){
|
|
if(flip != null){
|
|
flip.getStyle().imageUp = shown ? Icon.downOpen : Icon.upOpen;
|
|
}
|
|
|
|
shown = !shown;
|
|
}
|
|
|
|
private Table makeStatusTable(){
|
|
Table table = new Table(Tex.wavepane);
|
|
|
|
StringBuilder ibuild = new StringBuilder();
|
|
|
|
IntFormat wavef = new IntFormat("wave");
|
|
IntFormat wavefc = new IntFormat("wave.cap");
|
|
IntFormat enemyf = new IntFormat("wave.enemy");
|
|
IntFormat enemiesf = new IntFormat("wave.enemies");
|
|
IntFormat enemycf = new IntFormat("wave.enemycore");
|
|
IntFormat enemycsf = new IntFormat("wave.enemycores");
|
|
IntFormat waitingf = new IntFormat("wave.waiting", i -> {
|
|
ibuild.setLength(0);
|
|
int m = i/60;
|
|
int s = i % 60;
|
|
if(m > 0){
|
|
ibuild.append(m);
|
|
ibuild.append(":");
|
|
if(s < 10){
|
|
ibuild.append("0");
|
|
}
|
|
}
|
|
ibuild.append(s);
|
|
return ibuild.toString();
|
|
});
|
|
|
|
table.touchable = Touchable.enabled;
|
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
table.name = "waves";
|
|
|
|
table.marginTop(0).marginBottom(4).marginLeft(4);
|
|
|
|
class SideBar extends Element{
|
|
public final Floatp amount;
|
|
public final boolean flip;
|
|
public final Boolp flash;
|
|
|
|
float last, blink, value;
|
|
|
|
public SideBar(Floatp amount, Boolp flash, boolean flip){
|
|
this.amount = amount;
|
|
this.flip = flip;
|
|
this.flash = flash;
|
|
|
|
setColor(Pal.health);
|
|
}
|
|
|
|
@Override
|
|
public void draw(){
|
|
float next = amount.get();
|
|
|
|
if(Float.isNaN(next) || Float.isInfinite(next)) next = 1f;
|
|
|
|
if(next < last && flash.get()){
|
|
blink = 1f;
|
|
}
|
|
|
|
blink = Mathf.lerpDelta(blink, 0f, 0.2f);
|
|
value = Mathf.lerpDelta(value, next, 0.15f);
|
|
last = next;
|
|
|
|
if(Float.isNaN(value) || Float.isInfinite(value)) value = 1f;
|
|
|
|
drawInner(Pal.darkishGray);
|
|
|
|
Draw.beginStencil();
|
|
|
|
Fill.crect(x, y, width, height * value);
|
|
|
|
Draw.beginStenciled();
|
|
|
|
drawInner(Tmp.c1.set(color).lerp(Color.white, blink));
|
|
|
|
Draw.endStencil();
|
|
}
|
|
|
|
void drawInner(Color color){
|
|
if(flip){
|
|
x += width;
|
|
width = -width;
|
|
}
|
|
|
|
float stroke = width * 0.35f;
|
|
float bh = height/2f;
|
|
Draw.color(color);
|
|
|
|
Fill.quad(
|
|
x, y,
|
|
x + stroke, y,
|
|
x + width, y + bh,
|
|
x + width - stroke, y + bh
|
|
);
|
|
|
|
Fill.quad(
|
|
x + width, y + bh,
|
|
x + width - stroke, y + bh,
|
|
x, y + height,
|
|
x + stroke, y + height
|
|
);
|
|
|
|
Draw.reset();
|
|
|
|
if(flip){
|
|
width = -width;
|
|
x -= width;
|
|
}
|
|
}
|
|
}
|
|
|
|
table.stack(
|
|
new Element(){
|
|
@Override
|
|
public void draw(){
|
|
Draw.color(Pal.darkerGray);
|
|
Fill.poly(x + width/2f, y + height/2f, 6, height / Mathf.sqrt3);
|
|
Draw.reset();
|
|
Drawf.shadow(x + width/2f, y + height/2f, height * 1.13f);
|
|
}
|
|
},
|
|
new Table(t -> {
|
|
float bw = 40f;
|
|
float pad = -20;
|
|
t.margin(0);
|
|
|
|
t.add(new SideBar(() -> player.unit().healthf(), () -> true, true)).width(bw).growY().padRight(pad);
|
|
t.image(() -> player.icon()).scaling(Scaling.bounded).grow().maxWidth(54f).with(i -> {
|
|
if(mobile){
|
|
//on mobile, cause a respawn on tap
|
|
i.clicked(() -> {
|
|
if(!player.unit().spawnedByCore && !player.dead()){
|
|
Call.unitClear(player);
|
|
control.input.controlledType = null;
|
|
}
|
|
});
|
|
}
|
|
});
|
|
t.add(new SideBar(() -> player.dead() ? 0f : player.displayAmmo() ? player.unit().ammof() : player.unit().healthf(), () -> !player.displayAmmo(), false)).width(bw).growY().padLeft(pad).update(b -> {
|
|
b.color.set(player.displayAmmo() ? player.dead() || player.unit() instanceof BlockUnitc ? Pal.ammo : player.unit().type.ammoType.color : Pal.health);
|
|
});
|
|
|
|
t.getChildren().get(1).toFront();
|
|
})).size(120f, 80).padRight(4);
|
|
|
|
table.labelWrap(() -> {
|
|
builder.setLength(0);
|
|
|
|
if(!state.rules.waves && state.rules.attackMode){
|
|
int sum = Math.max(state.teams.present.sum(t -> t.team != player.team() ? t.cores.size : 0), 1);
|
|
builder.append(sum > 1 ? enemycsf.get(sum) : enemycf.get(sum));
|
|
return builder;
|
|
}
|
|
|
|
if(!state.rules.waves && state.isCampaign()){
|
|
builder.append("[lightgray]").append(Core.bundle.get("sector.curcapture"));
|
|
}
|
|
|
|
if(!state.rules.waves){
|
|
return builder;
|
|
}
|
|
|
|
if(state.rules.winWave > 1 && state.rules.winWave >= state.wave && state.isCampaign()){
|
|
builder.append(wavefc.get(state.wave, state.rules.winWave));
|
|
}else{
|
|
builder.append(wavef.get(state.wave));
|
|
}
|
|
builder.append("\n");
|
|
|
|
if(state.enemies > 0){
|
|
if(state.enemies == 1){
|
|
builder.append(enemyf.get(state.enemies));
|
|
}else{
|
|
builder.append(enemiesf.get(state.enemies));
|
|
}
|
|
builder.append("\n");
|
|
}
|
|
|
|
if(state.rules.waveTimer){
|
|
builder.append((logic.isWaitingWave() ? Core.bundle.get("wave.waveInProgress") : (waitingf.get((int)(state.wavetime/60)))));
|
|
}else if(state.enemies == 0){
|
|
builder.append(Core.bundle.get("waiting"));
|
|
}
|
|
|
|
return builder;
|
|
}).growX().pad(8f);
|
|
|
|
table.touchable(() -> state.rules.waves ? Touchable.enabled : Touchable.disabled);
|
|
|
|
return table;
|
|
}
|
|
|
|
private boolean canSkipWave(){
|
|
return state.rules.waves && ((net.server() || player.admin) || !net.active()) && state.enemies == 0 && !spawner.isSpawning() && !state.rules.tutorial;
|
|
}
|
|
|
|
}
|