2018-09-12 01:29:49 +02:00
|
|
|
package com.minelittlepony.unicopia.spell;
|
|
|
|
|
2019-01-22 17:39:30 +01:00
|
|
|
import com.minelittlepony.unicopia.util.serialisation.InbtSerialisable;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
2018-09-24 21:37:16 +02:00
|
|
|
* Interface for a magic spells
|
2018-09-12 01:29:49 +02:00
|
|
|
*/
|
2018-09-24 21:37:16 +02:00
|
|
|
public interface IMagicEffect extends InbtSerialisable, ILevelled {
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2019-01-22 17:39:30 +01:00
|
|
|
/**
|
|
|
|
* Gets the name used to identify this effect.
|
|
|
|
*/
|
2018-09-12 01:29:49 +02:00
|
|
|
String getName();
|
|
|
|
|
2019-01-22 17:39:30 +01:00
|
|
|
/**
|
|
|
|
* Gets the tint for this spell when applied to a gem.
|
|
|
|
*/
|
|
|
|
int getTint();
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
/**
|
|
|
|
* Sets this effect as dead.
|
|
|
|
*/
|
|
|
|
void setDead();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this spell is dead, and must be cleaned up.
|
|
|
|
*/
|
|
|
|
boolean getDead();
|
|
|
|
|
2019-01-26 22:20:35 +01:00
|
|
|
/**
|
|
|
|
* Called when first attached to a gem.
|
|
|
|
*/
|
|
|
|
default void onPlaced(ICaster<?> caster) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
/**
|
|
|
|
* Called every tick when attached to a player.
|
|
|
|
*
|
|
|
|
* @param source The entity we are currently attached to.
|
|
|
|
* @return true to keep alive
|
|
|
|
*/
|
2018-09-26 17:53:12 +02:00
|
|
|
default boolean updateOnPerson(ICaster<?> caster) {
|
|
|
|
return update(caster, getCurrentLevel());
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
2019-01-22 17:39:30 +01:00
|
|
|
* Called every tick when attached to an entity.
|
|
|
|
* Called on both sides.
|
2018-09-12 01:29:49 +02:00
|
|
|
*
|
2018-09-24 21:37:16 +02:00
|
|
|
* @param source The entity we are currently attached to.
|
|
|
|
* @param level Current active spell level
|
2018-09-12 01:29:49 +02:00
|
|
|
*/
|
2018-09-24 21:37:16 +02:00
|
|
|
boolean update(ICaster<?> source, int level);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-24 21:37:16 +02:00
|
|
|
/**
|
|
|
|
* Called every tick when attached to a player. Used to apply particle effects.
|
|
|
|
* Is only called on the client side.
|
|
|
|
*
|
|
|
|
* @param source The entity we are currently attached to.
|
|
|
|
*/
|
2018-09-26 17:53:12 +02:00
|
|
|
default void renderOnPerson(ICaster<?> source) {
|
|
|
|
render(source, getCurrentLevel());
|
2018-09-24 21:37:16 +02:00
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called every tick when attached to an entity to produce particle effects.
|
|
|
|
* Is only called on the client side.
|
|
|
|
*
|
|
|
|
* @param source The entity we are attached to.
|
|
|
|
* @param level Current spell level
|
|
|
|
*/
|
2018-09-26 17:53:12 +02:00
|
|
|
void render(ICaster<?> source, int level);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true to allow the gem update and move.
|
|
|
|
*/
|
|
|
|
default boolean allowAI() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|