* Added a new type of menu. * Renamed the methods and fixed buttons not selecting. * Fixed followUpMenu and menu having different dialogs. * Applying review changes. - Refactored the menu dialog instantiation. - Fixed the single-line else statement.
179 lines
5.9 KiB
Java
179 lines
5.9 KiB
Java
package mindustry.ui;
|
|
|
|
import arc.*;
|
|
import arc.struct.*;
|
|
import arc.util.*;
|
|
import mindustry.annotations.Annotations.*;
|
|
import mindustry.game.EventType.*;
|
|
import mindustry.gen.*;
|
|
|
|
import static mindustry.Vars.*;
|
|
|
|
/** Class for handling menus and notifications across the network. Unstable API! */
|
|
public class Menus{
|
|
private static final Seq<MenuListener> menuListeners = new Seq<>();
|
|
private static final Seq<TextInputListener> textInputListeners = new Seq<>();
|
|
|
|
/** Register a *global* menu listener. If no option is chosen, the option is returned as -1. */
|
|
public static int registerMenu(MenuListener listener){
|
|
menuListeners.add(listener);
|
|
return menuListeners.size - 1;
|
|
}
|
|
|
|
/** Register a *global* text input listener. If no text is provided, the text is returned as null. */
|
|
public static int registerTextInput(TextInputListener listener){
|
|
textInputListeners.add(listener);
|
|
return textInputListeners.size - 1;
|
|
}
|
|
|
|
//do not invoke any of the methods below directly, use Call
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void menu(int menuId, String title, String message, String[][] options){
|
|
if(title == null) title = "";
|
|
if(options == null) options = new String[0][0];
|
|
|
|
ui.showMenu(title, message, options, (option) -> Call.menuChoose(player, menuId, option));
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void followUpMenu(int menuId, String title, String message, String[][] options){
|
|
if(title == null) title = "";
|
|
if(options == null) options = new String[0][0];
|
|
|
|
ui.showFollowUpMenu(menuId, title, message, options, (option) -> Call.menuChoose(player, menuId, option));
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void hideFollowUpMenu(int menuId) {
|
|
ui.hideFollowUpMenu(menuId);
|
|
}
|
|
|
|
@Remote(targets = Loc.both, called = Loc.both)
|
|
public static void menuChoose(@Nullable Player player, int menuId, int option){
|
|
if(player != null){
|
|
Events.fire(new MenuOptionChooseEvent(player, menuId, option));
|
|
if(menuId >= 0 && menuId < menuListeners.size){
|
|
menuListeners.get(menuId).get(player, option);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void textInput(int textInputId, String title, String message, int textLength, String def, boolean numeric){
|
|
if(title == null) title = "";
|
|
|
|
ui.showTextInput(title, message, textLength, def, numeric, (text) -> {
|
|
Call.textInputResult(player, textInputId, text);
|
|
}, () -> {
|
|
Call.textInputResult(player, textInputId, null);
|
|
});
|
|
}
|
|
|
|
@Remote(targets = Loc.both, called = Loc.both)
|
|
public static void textInputResult(@Nullable Player player, int textInputId, @Nullable String text){
|
|
if(player != null){
|
|
Events.fire(new TextInputEvent(player, textInputId, text));
|
|
if(textInputId >= 0 && textInputId < textInputListeners.size){
|
|
textInputListeners.get(textInputId).get(player, text);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Remote(variants = Variant.both, unreliable = true)
|
|
public static void setHudText(String message){
|
|
if(message == null) return;
|
|
|
|
ui.hudfrag.setHudText(message);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void hideHudText(){
|
|
ui.hudfrag.toggleHudText(false);
|
|
}
|
|
|
|
/** TCP version */
|
|
@Remote(variants = Variant.both)
|
|
public static void setHudTextReliable(String message){
|
|
setHudText(message);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void announce(String message){
|
|
if(message == null) return;
|
|
|
|
ui.announce(message);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void infoMessage(String message){
|
|
if(message == null) return;
|
|
|
|
ui.showText("", message);
|
|
}
|
|
|
|
@Remote(variants = Variant.both, unreliable = true)
|
|
public static void infoPopup(String message, float duration, int align, int top, int left, int bottom, int right){
|
|
if(message == null) return;
|
|
|
|
ui.showInfoPopup(message, duration, align, top, left, bottom, right);
|
|
}
|
|
|
|
@Remote(variants = Variant.both, unreliable = true)
|
|
public static void label(String message, float duration, float worldx, float worldy){
|
|
if(message == null) return;
|
|
|
|
ui.showLabel(message, duration, worldx, worldy);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void infoPopupReliable(String message, float duration, int align, int top, int left, int bottom, int right){
|
|
if(message == null) return;
|
|
|
|
ui.showInfoPopup(message, duration, align, top, left, bottom, right);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void labelReliable(String message, float duration, float worldx, float worldy){
|
|
label(message, duration, worldx, worldy);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void infoToast(String message, float duration){
|
|
if(message == null) return;
|
|
|
|
ui.showInfoToast(message, duration);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void warningToast(int unicode, String text){
|
|
if(text == null || Fonts.icon.getData().getGlyph((char)unicode) == null) return;
|
|
|
|
ui.hudfrag.showToast(Fonts.getGlyph(Fonts.icon, (char)unicode), text);
|
|
}
|
|
|
|
@Remote(variants = Variant.both)
|
|
public static void openURI(String uri){
|
|
if(uri == null) return;
|
|
|
|
ui.showConfirm(Core.bundle.format("linkopen", uri), () -> Core.app.openURI(uri));
|
|
}
|
|
|
|
//internal use only
|
|
@Remote
|
|
public static void removeWorldLabel(int id){
|
|
var label = Groups.label.getByID(id);
|
|
if(label != null){
|
|
label.remove();
|
|
}
|
|
}
|
|
|
|
public interface MenuListener{
|
|
void get(Player player, int option);
|
|
}
|
|
|
|
public interface TextInputListener{
|
|
void get(Player player, @Nullable String text);
|
|
}
|
|
}
|