2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.ability;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2019-02-02 17:50:15 +01:00
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
2020-04-15 14:22:03 +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;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-10-09 12:59:38 +02:00
|
|
|
import net.minecraft.util.Identifier;
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.world.World;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-04-25 15:37:17 +02:00
|
|
|
public interface Ability<T extends Hit> {
|
2018-09-12 01:29:49 +02:00
|
|
|
/**
|
|
|
|
* Returns the number of ticks the player must hold the ability key to trigger this ability.
|
|
|
|
*/
|
2020-04-15 18:12:00 +02:00
|
|
|
int getWarmupTime(Pony player);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of ticks allowed for cooldown
|
|
|
|
*/
|
2020-04-15 18:12:00 +02:00
|
|
|
int getCooldownTime(Pony player);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called to check preconditions for activating the ability.
|
|
|
|
*
|
|
|
|
* @param w The world
|
|
|
|
* @param player The player
|
|
|
|
* @return True to allow activation
|
|
|
|
*/
|
2020-04-15 18:12:00 +02:00
|
|
|
default boolean canActivate(World w, Pony player) {
|
2018-09-12 01:29:49 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the given race is permitted to use this ability
|
|
|
|
* @param playerSpecies The player's species
|
|
|
|
*/
|
|
|
|
boolean canUse(Race playerSpecies);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called on the client to activate the ability.
|
|
|
|
*
|
|
|
|
* @param player The player activating the ability
|
|
|
|
* @return Data to be sent, or null if activation failed
|
|
|
|
*/
|
2019-02-02 17:50:15 +01:00
|
|
|
@Nullable
|
2020-04-15 18:12:00 +02:00
|
|
|
T tryActivate(Pony player);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-04-25 15:37:17 +02:00
|
|
|
Hit.Serializer<T> getSerializer();
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2020-10-09 12:59:38 +02:00
|
|
|
/**
|
|
|
|
* The icon representing this ability on the UI and HUD.
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
default Identifier getIcon(Pony player) {
|
|
|
|
Identifier id = Abilities.REGISTRY.getId(this);
|
|
|
|
return new Identifier(id.getNamespace(), "textures/gui/ability/" + id.getPath() + ".png");
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
/**
|
|
|
|
* Called to actually apply the ability.
|
|
|
|
* Only called on the server side.
|
|
|
|
*
|
|
|
|
* @param player The player that triggered the ability
|
|
|
|
* @param data Data previously sent from the client
|
|
|
|
*/
|
2020-04-15 18:12:00 +02:00
|
|
|
void apply(Pony player, T data);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
2019-02-03 10:45:45 +01:00
|
|
|
* Called every tick until the warmup timer runs out.
|
2018-09-12 01:29:49 +02:00
|
|
|
* @param player The current player
|
|
|
|
*/
|
2020-05-10 20:45:07 +02:00
|
|
|
void preApply(Pony player, AbilitySlot slot);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called every tick until the cooldown timer runs out.
|
|
|
|
* @param player The current player
|
|
|
|
*/
|
2020-05-10 20:45:07 +02:00
|
|
|
void postApply(Pony player, AbilitySlot slot);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|