2020-04-25 15:37:17 +02:00
|
|
|
package com.minelittlepony.unicopia.ability;
|
|
|
|
|
2020-09-22 15:52:44 +02:00
|
|
|
import java.util.Collections;
|
2020-05-06 15:55:25 +02:00
|
|
|
import java.util.EnumMap;
|
|
|
|
import java.util.Map;
|
2020-04-25 15:37:17 +02:00
|
|
|
import java.util.Optional;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-05-06 15:55:25 +02:00
|
|
|
import com.minelittlepony.unicopia.Race;
|
2020-04-25 15:37:17 +02:00
|
|
|
import com.minelittlepony.unicopia.ability.data.Hit;
|
2020-09-22 15:11:20 +02:00
|
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
2020-04-15 14:22:03 +02:00
|
|
|
import com.minelittlepony.unicopia.network.MsgPlayerAbility;
|
2020-04-23 23:44:31 +02:00
|
|
|
import com.minelittlepony.unicopia.network.Channel;
|
2020-04-15 18:12:00 +02:00
|
|
|
import com.minelittlepony.unicopia.util.NbtSerialisable;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.nbt.CompoundTag;
|
2020-04-25 15:37:17 +02:00
|
|
|
import net.minecraft.util.Identifier;
|
2020-05-10 17:18:45 +02:00
|
|
|
import net.minecraft.util.Tickable;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-05-10 17:18:45 +02:00
|
|
|
public class AbilityDispatcher implements Tickable, NbtSerialisable {
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-04-15 18:12:00 +02:00
|
|
|
private final Pony player;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-05-06 15:55:25 +02:00
|
|
|
private final Map<AbilitySlot, Stat> stats = new EnumMap<>(AbilitySlot.class);
|
2019-02-03 10:45:45 +01:00
|
|
|
|
2020-04-25 15:37:17 +02:00
|
|
|
public AbilityDispatcher(Pony player) {
|
2018-09-12 01:29:49 +02:00
|
|
|
this.player = player;
|
|
|
|
}
|
|
|
|
|
2020-05-10 20:45:07 +02:00
|
|
|
public void clear(AbilitySlot slot) {
|
|
|
|
Stat stat = getStat(slot);
|
2020-05-06 15:55:25 +02:00
|
|
|
|
2020-05-10 20:45:07 +02:00
|
|
|
if (stat.canSwitchStates()) {
|
|
|
|
stat.setActiveAbility(null);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-06 15:55:25 +02:00
|
|
|
public void activate(AbilitySlot slot) {
|
2020-05-10 20:45:07 +02:00
|
|
|
Stat stat = getStat(slot);
|
|
|
|
if (stat.canSwitchStates()) {
|
|
|
|
stat.getAbility().ifPresent(stat::setActiveAbility);
|
2019-02-03 10:45:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-06 15:55:25 +02:00
|
|
|
public Stat getStat(AbilitySlot slot) {
|
|
|
|
return stats.computeIfAbsent(slot, Stat::new);
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
@Override
|
2020-05-10 17:18:45 +02:00
|
|
|
public void tick() {
|
2020-05-10 20:45:07 +02:00
|
|
|
stats.values().forEach(Stat::tick);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-16 12:35:46 +01:00
|
|
|
public void toNBT(CompoundTag compound) {
|
2020-05-06 15:55:25 +02:00
|
|
|
if (compound.contains("stats")) {
|
|
|
|
stats.clear();
|
|
|
|
CompoundTag li = compound.getCompound("stats");
|
|
|
|
li.getKeys().forEach(key -> {
|
|
|
|
getStat(AbilitySlot.valueOf(key)).fromNBT(li.getCompound(key));
|
|
|
|
});
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-16 12:35:46 +01:00
|
|
|
public void fromNBT(CompoundTag compound) {
|
2020-05-06 15:55:25 +02:00
|
|
|
CompoundTag li = new CompoundTag();
|
|
|
|
stats.forEach((key, value) -> li.put(key.name(), value.toNBT()));
|
|
|
|
compound.put("stats", li);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
2020-05-06 15:55:25 +02:00
|
|
|
|
|
|
|
public class Stat implements NbtSerialisable {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ticks of warmup before an ability is triggered.
|
|
|
|
*/
|
|
|
|
private int warmup;
|
|
|
|
private int maxWarmup;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ticks of cooldown after an ability has been triggered.
|
|
|
|
*/
|
|
|
|
private int cooldown;
|
|
|
|
private int maxCooldown;
|
|
|
|
|
|
|
|
public final AbilitySlot slot;
|
|
|
|
|
2020-05-10 20:45:07 +02:00
|
|
|
/**
|
|
|
|
* True once the current ability has been triggered.
|
|
|
|
*/
|
|
|
|
private boolean triggered;
|
|
|
|
|
|
|
|
private Optional<Ability<?>> activeAbility = Optional.empty();
|
|
|
|
|
2020-05-06 15:55:25 +02:00
|
|
|
private Stat(AbilitySlot slot) {
|
|
|
|
this.slot = slot;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the current ability can we swapped out.
|
|
|
|
*/
|
|
|
|
boolean canSwitchStates() {
|
2020-05-10 20:45:07 +02:00
|
|
|
return !activeAbility.isPresent() || (warmup != 0) || (triggered && cooldown == 0);
|
2020-05-06 15:55:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getRemainingCooldown() {
|
|
|
|
return cooldown;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getFillProgress() {
|
|
|
|
float cooldown = getWarmup();
|
|
|
|
if (cooldown <= 0 || cooldown >= 1) {
|
|
|
|
return getCooldown();
|
|
|
|
}
|
|
|
|
return 1 - cooldown;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getCooldown() {
|
|
|
|
return maxCooldown <= 0 ? 0 : ((float)cooldown / (float)maxCooldown);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCooldown(int value) {
|
|
|
|
cooldown = value;
|
|
|
|
maxCooldown = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getWarmup() {
|
|
|
|
return maxWarmup <= 0 ? 0 : ((float)warmup / (float)maxWarmup);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWarmup(int value) {
|
|
|
|
maxWarmup = value;
|
|
|
|
warmup = value;
|
|
|
|
}
|
|
|
|
|
2020-05-10 20:45:07 +02:00
|
|
|
public void tick() {
|
|
|
|
getActiveAbility().ifPresent(this::activate);
|
|
|
|
}
|
|
|
|
|
|
|
|
private <T extends Hit> void activate(Ability<T> ability) {
|
2020-05-06 15:55:25 +02:00
|
|
|
if (warmup > 0) {
|
|
|
|
warmup--;
|
2020-05-10 20:45:07 +02:00
|
|
|
ability.preApply(player, slot);
|
|
|
|
return;
|
2020-05-06 15:55:25 +02:00
|
|
|
}
|
2020-05-10 20:45:07 +02:00
|
|
|
|
|
|
|
if (cooldown > 0 && cooldown-- > 0) {
|
|
|
|
ability.postApply(player, slot);
|
|
|
|
|
|
|
|
if (cooldown <= 0) {
|
|
|
|
setActiveAbility(null);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (triggered) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ability.canActivate(player.getWorld(), player)) {
|
|
|
|
triggered = true;
|
|
|
|
setCooldown(ability.getCooldownTime(player));
|
|
|
|
|
|
|
|
if (player.isClientPlayer()) {
|
|
|
|
T data = ability.tryActivate(player);
|
|
|
|
|
|
|
|
if (data != null) {
|
2020-09-23 21:56:57 +02:00
|
|
|
Channel.CLIENT_PLAYER_ABILITY.send(new MsgPlayerAbility<>(ability, data));
|
2020-05-10 20:45:07 +02:00
|
|
|
} else {
|
|
|
|
setCooldown(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cooldown <= 0) {
|
|
|
|
setActiveAbility(null);
|
2020-05-06 15:55:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 20:45:07 +02:00
|
|
|
public Optional<Ability<?>> getAbility() {
|
|
|
|
Race race = player.getSpecies();
|
2020-10-09 12:59:38 +02:00
|
|
|
return Abilities.BY_SLOT.computeIfAbsent(slot, c -> Collections.emptySet())
|
|
|
|
.stream()
|
|
|
|
.filter(a -> a.canUse(race))
|
|
|
|
.findFirst();
|
2020-05-10 20:45:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected synchronized void setActiveAbility(Ability<?> power) {
|
|
|
|
if (activeAbility.orElse(null) != power) {
|
|
|
|
triggered = false;
|
|
|
|
activeAbility = Optional.ofNullable(power);
|
|
|
|
setWarmup(activeAbility.map(p -> p.getWarmupTime(player)).orElse(0));
|
|
|
|
setCooldown(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected synchronized Optional<Ability<?>> getActiveAbility() {
|
|
|
|
return activeAbility.filter(ability -> {
|
|
|
|
return (!(ability == null || (triggered && warmup == 0 && cooldown == 0)) && ability.canUse(player.getSpecies()));
|
|
|
|
});
|
2020-05-06 15:55:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void toNBT(CompoundTag compound) {
|
|
|
|
compound.putInt("warmup", warmup);
|
|
|
|
compound.putInt("cooldown", cooldown);
|
|
|
|
compound.putInt("maxWarmup", maxWarmup);
|
|
|
|
compound.putInt("maxCooldown", maxCooldown);
|
2020-05-10 20:45:07 +02:00
|
|
|
compound.putBoolean("triggered", triggered);
|
|
|
|
getActiveAbility().ifPresent(ability -> {
|
|
|
|
compound.putString("activeAbility", Abilities.REGISTRY.getId(ability).toString());
|
|
|
|
});
|
2020-05-06 15:55:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void fromNBT(CompoundTag compound) {
|
|
|
|
warmup = compound.getInt("warmup");
|
|
|
|
cooldown = compound.getInt("cooldown");
|
|
|
|
maxWarmup = compound.getInt("maxWarmup");
|
|
|
|
maxCooldown = compound.getInt("maxCooldown");
|
2020-05-10 20:45:07 +02:00
|
|
|
triggered = compound.getBoolean("triggered");
|
|
|
|
activeAbility = Abilities.REGISTRY.getOrEmpty(new Identifier(compound.getString("activeAbility")));
|
2020-05-06 15:55:25 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|