mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
76 lines
2.7 KiB
Java
76 lines
2.7 KiB
Java
package com.minelittlepony.unicopia.client;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
import com.minelittlepony.unicopia.IKeyBindingHandler;
|
|
import com.minelittlepony.unicopia.SpeciesList;
|
|
import com.minelittlepony.unicopia.UnicopiaCore;
|
|
import com.minelittlepony.unicopia.ability.PowersRegistry;
|
|
import com.minelittlepony.unicopia.entity.player.IPlayer;
|
|
|
|
import net.fabricmc.fabric.api.client.keybinding.FabricKeyBinding;
|
|
import net.fabricmc.fabric.api.client.keybinding.KeyBindingRegistry;
|
|
import net.minecraft.client.MinecraftClient;
|
|
import net.minecraft.client.options.KeyBinding;
|
|
import net.minecraft.client.util.InputUtil;
|
|
import net.minecraft.util.Identifier;
|
|
|
|
|
|
public class KeyBindingsHandler implements IKeyBindingHandler {
|
|
private final MinecraftClient client = MinecraftClient.getInstance();
|
|
|
|
private final List<KeyBinding> bindings = new ArrayList<>();
|
|
private final List<KeyBinding> removed = new ArrayList<>();
|
|
|
|
private final List<KeyBinding> pressed = new ArrayList<>();
|
|
|
|
@Override
|
|
public void addKeybind(IKeyBinding p) {
|
|
KeyBindingRegistry.INSTANCE.addCategory(p.getKeyCategory());
|
|
|
|
FabricKeyBinding b = FabricKeyBinding.Builder.create(new Identifier(UnicopiaCore.MODID, p.getKeyName()), InputUtil.Type.KEYSYM, p.getKeyCode(), p.getKeyCategory()).build();
|
|
KeyBindingRegistry.INSTANCE.register(b);
|
|
|
|
bindings.add(b);
|
|
}
|
|
|
|
@Override
|
|
public void onKeyInput() {
|
|
if (client.currentScreen != null
|
|
|| client.player == null) {
|
|
return;
|
|
}
|
|
IPlayer iplayer = SpeciesList.instance().getPlayer(client.player);
|
|
|
|
for (KeyBinding i : bindings) {
|
|
if (i.isPressed()) {
|
|
|
|
if (!pressed.contains(i)) {
|
|
pressed.add(i);
|
|
|
|
if (!PowersRegistry.instance().hasRegisteredPower(i.getDefaultKeyCode().getKeyCode())) {
|
|
removed.add(i);
|
|
System.out.println("Error: Keybinding(" + i.getLocalizedName() + ") does not have a registered pony power. Keybinding will be removed from event.");
|
|
} else {
|
|
PowersRegistry.instance()
|
|
.getCapablePowerFromKey(i.getDefaultKeyCode().getKeyCode(), iplayer.getSpecies())
|
|
.ifPresent(iplayer.getAbilities()::tryUseAbility);
|
|
}
|
|
}
|
|
} else {
|
|
if (pressed.contains(i)) {
|
|
pressed.remove(i);
|
|
|
|
iplayer.getAbilities().tryClearAbility();
|
|
}
|
|
}
|
|
}
|
|
|
|
for (KeyBinding i : removed) {
|
|
removed.remove(i);
|
|
bindings.remove(i);
|
|
pressed.remove(i);
|
|
}
|
|
}
|
|
}
|