Unicopia/src/main/java/com/minelittlepony/unicopia/ability/AbilityDispatcher.java

272 lines
8.3 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.ability;
import java.util.Collection;
import java.util.Collections;
2020-05-06 15:55:25 +02:00
import java.util.EnumMap;
import java.util.List;
2020-05-06 15:55:25 +02:00
import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
2020-05-06 15:55:25 +02:00
import com.minelittlepony.unicopia.Race;
import com.minelittlepony.unicopia.ability.data.Hit;
import com.minelittlepony.unicopia.entity.player.Pony;
import com.minelittlepony.unicopia.network.MsgPlayerAbility;
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;
import net.minecraft.sound.SoundEvents;
import net.minecraft.util.Identifier;
import net.minecraft.util.Tickable;
2018-09-12 01:29:49 +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
@Nullable
private Race prevRace;
private long maxPage;
public AbilityDispatcher(Pony player) {
2018-09-12 01:29:49 +02:00
this.player = player;
}
public void clear(AbilitySlot slot) {
Stat stat = getStat(slot);
2020-05-06 15:55:25 +02:00
if (stat.canSwitchStates()) {
stat.setActiveAbility(null);
2018-09-12 01:29:49 +02:00
}
}
public Optional<Ability<?>> activate(AbilitySlot slot, long page) {
Stat stat = getStat(slot);
if (stat.canSwitchStates()) {
return stat.getAbility(page).flatMap(stat::setActiveAbility);
2019-02-03 10:45:45 +01:00
}
return Optional.empty();
2019-02-03 10:45:45 +01:00
}
public Collection<Stat> getStats() {
return stats.values();
}
2020-05-06 15:55:25 +02:00
public Stat getStat(AbilitySlot slot) {
return stats.computeIfAbsent(slot, Stat::new);
}
public long getMaxPage() {
if (prevRace != player.getSpecies()) {
prevRace = player.getSpecies();
maxPage = Math.max(0, stats.values().stream().mapToLong(Stat::getMaxPage).reduce(0, Math::max) - 1);
}
return maxPage;
}
2018-09-12 01:29:49 +02:00
@Override
public void tick() {
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;
/**
* 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() {
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 double getCost(long page) {
if (warmup <= 0) {
return 0;
}
return getAbility(page).map(ability -> ability.getCostEstimate(player)).orElse(0D);
}
2020-05-06 15:55:25 +02:00
public void setWarmup(int value) {
maxWarmup = value;
warmup = value;
}
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--;
ability.preApply(player, slot);
return;
2020-05-06 15:55:25 +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) {
Channel.CLIENT_PLAYER_ABILITY.send(new MsgPlayerAbility<>(ability, data));
} else {
player.getEntity().playSound(SoundEvents.BLOCK_NOTE_BLOCK_DIDGERIDOO, 1, 1);
setCooldown(0);
}
}
}
if (cooldown <= 0) {
setActiveAbility(null);
2020-05-06 15:55:25 +02:00
}
}
public Optional<Ability<?>> getAbility(long page) {
Race race = player.getSpecies();
List<Ability<?>> found = Abilities.BY_SLOT.computeIfAbsent(slot, c -> Collections.emptySet())
.stream()
.filter(a -> a.canUse(race))
.collect(Collectors.toList());
if (found.isEmpty()) {
return Optional.empty();
}
page = Math.min(found.size() - 1, page);
return Optional.ofNullable(found.get((int)page));
}
public long getMaxPage() {
Race race = player.getSpecies();
return Abilities.BY_SLOT.computeIfAbsent(slot, c -> Collections.emptySet())
.stream()
.filter(a -> a.canUse(race))
.count();
}
protected synchronized Optional<Ability<?>> setActiveAbility(@Nullable Ability<?> power) {
if (activeAbility.orElse(null) != power) {
triggered = false;
activeAbility = Optional.ofNullable(power);
setWarmup(activeAbility.map(p -> p.getWarmupTime(player)).orElse(0));
setCooldown(0);
return activeAbility;
}
return Optional.empty();
}
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);
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");
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
}