2018-09-12 01:29:49 +02:00
|
|
|
package com.minelittlepony.unicopia.player;
|
|
|
|
|
|
|
|
import com.minelittlepony.unicopia.Race;
|
|
|
|
import com.minelittlepony.unicopia.UClient;
|
2018-09-12 22:37:06 +02:00
|
|
|
import com.minelittlepony.unicopia.Unicopia;
|
2018-09-21 17:53:33 +02:00
|
|
|
import com.minelittlepony.unicopia.network.EffectSync;
|
2018-09-12 22:37:06 +02:00
|
|
|
import com.minelittlepony.unicopia.network.MsgPlayerCapabilities;
|
2018-09-12 01:29:49 +02:00
|
|
|
import com.minelittlepony.unicopia.spell.ICaster;
|
|
|
|
import com.minelittlepony.unicopia.spell.IMagicEffect;
|
|
|
|
import com.minelittlepony.unicopia.spell.SpellRegistry;
|
|
|
|
|
|
|
|
import net.minecraft.client.Minecraft;
|
2018-09-20 16:28:17 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
2018-09-12 01:29:49 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2018-09-20 16:28:17 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayerMP;
|
2018-09-12 01:29:49 +02:00
|
|
|
import net.minecraft.init.MobEffects;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2018-09-12 22:37:06 +02:00
|
|
|
import net.minecraft.network.datasync.DataParameter;
|
|
|
|
import net.minecraft.network.datasync.DataSerializers;
|
|
|
|
import net.minecraft.network.datasync.EntityDataManager;
|
2018-09-20 16:28:17 +02:00
|
|
|
import net.minecraft.network.play.server.SPacketSetPassengers;
|
2018-09-12 01:29:49 +02:00
|
|
|
import net.minecraft.potion.PotionEffect;
|
2018-09-12 22:37:06 +02:00
|
|
|
import net.minecraft.stats.StatList;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
|
|
|
class PlayerCapabilities implements IPlayer, ICaster<EntityPlayer> {
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
private static final DataParameter<Integer> PLAYER_RACE = EntityDataManager
|
|
|
|
.createKey(EntityPlayer.class, DataSerializers.VARINT);
|
2018-09-21 17:53:33 +02:00
|
|
|
|
2018-09-13 14:04:24 +02:00
|
|
|
private static final DataParameter<Float> EXERTION = EntityDataManager
|
|
|
|
.createKey(EntityPlayer.class, DataSerializers.FLOAT);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
private static final DataParameter<NBTTagCompound> EFFECT = EntityDataManager
|
|
|
|
.createKey(EntityPlayer.class, DataSerializers.COMPOUND_TAG);
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
private final PlayerAbilityDelegate powers = new PlayerAbilityDelegate(this);
|
|
|
|
|
|
|
|
private final PlayerGravityDelegate gravity = new PlayerGravityDelegate(this);
|
|
|
|
|
2018-09-19 09:09:30 +02:00
|
|
|
private final PlayerAttributes attributes = new PlayerAttributes();
|
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
private final EffectSync<EntityPlayer> effectDelegate = new EffectSync<>(this, EFFECT);
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
private float nextStepDistance = 1;
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-12 02:26:35 +02:00
|
|
|
private EntityPlayer entity;
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
PlayerCapabilities(EntityPlayer player) {
|
|
|
|
setOwner(player);
|
2018-09-12 02:26:35 +02:00
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
player.getDataManager().register(PLAYER_RACE, Race.HUMAN.ordinal());
|
2018-09-13 14:04:24 +02:00
|
|
|
player.getDataManager().register(EXERTION, 0F);
|
2018-09-21 17:53:33 +02:00
|
|
|
player.getDataManager().register(EFFECT, new NBTTagCompound());
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Race getPlayerSpecies() {
|
2018-09-12 22:37:06 +02:00
|
|
|
if (getOwner() == null) {
|
|
|
|
return Race.HUMAN;
|
|
|
|
}
|
2018-09-13 12:45:24 +02:00
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
return Race.fromId(getOwner().getDataManager().get(PLAYER_RACE));
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setPlayerSpecies(Race race) {
|
2018-09-21 17:53:33 +02:00
|
|
|
EntityPlayer player = getOwner();
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
if (!PlayerSpeciesList.instance().speciesPermitted(race, player)) {
|
2018-09-13 12:45:24 +02:00
|
|
|
race = Race.HUMAN;
|
|
|
|
}
|
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
player.getDataManager().set(PLAYER_RACE, race.ordinal());
|
2018-09-12 22:37:06 +02:00
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
player.capabilities.allowFlying = race.canFly();
|
|
|
|
gravity.updateFlightStat(player, player.capabilities.isFlying);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
player.sendPlayerAbilities();
|
|
|
|
sendCapabilities(false);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
2018-09-13 14:04:24 +02:00
|
|
|
@Override
|
|
|
|
public float getExertion() {
|
|
|
|
return getOwner().getDataManager().get(EXERTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setExertion(float exertion) {
|
|
|
|
getOwner().getDataManager().set(EXERTION, Math.max(0, exertion));
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
@Override
|
2018-09-12 22:37:06 +02:00
|
|
|
public void sendCapabilities(boolean full) {
|
|
|
|
if (!getOwner().getEntityWorld().isRemote) {
|
2018-09-21 17:53:33 +02:00
|
|
|
System.out.println("[SERVER] Sending player capabilities.");
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
if (full) {
|
|
|
|
Unicopia.channel.broadcast(new MsgPlayerCapabilities(this));
|
|
|
|
} else {
|
2018-09-21 17:53:33 +02:00
|
|
|
Unicopia.channel.broadcast(new MsgPlayerCapabilities(getPlayerSpecies(), getOwner()));
|
2018-09-12 22:37:06 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IAbilityReceiver getAbilities() {
|
|
|
|
return powers;
|
|
|
|
}
|
|
|
|
|
2018-09-25 00:22:04 +02:00
|
|
|
@Override
|
|
|
|
public IGravity getGravity() {
|
|
|
|
return gravity;
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
@Override
|
|
|
|
public boolean isClientPlayer() {
|
|
|
|
return UClient.isClientSide() &&
|
2018-09-12 02:26:35 +02:00
|
|
|
Minecraft.getMinecraft().player.getGameProfile().getId().equals(getOwner().getGameProfile().getId());
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
2018-09-20 16:28:17 +02:00
|
|
|
@Override
|
|
|
|
public void beforeUpdate(EntityPlayer entity) {
|
|
|
|
if (entity.world.isRemote) {
|
|
|
|
if (entity.isRiding() && entity.isSneaking()) {
|
|
|
|
|
|
|
|
Entity ridee = entity.getRidingEntity();
|
|
|
|
|
|
|
|
entity.dismountRidingEntity();
|
|
|
|
|
|
|
|
if (ridee instanceof EntityPlayerMP) {
|
|
|
|
((EntityPlayerMP)ridee).getServerWorld().getEntityTracker().sendToTrackingAndSelf(ridee, new SPacketSetPassengers(ridee));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
@Override
|
2018-09-12 02:26:35 +02:00
|
|
|
public void onUpdate(EntityPlayer entity) {
|
|
|
|
powers.onUpdate(entity);
|
|
|
|
gravity.onUpdate(entity);
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
if (hasEffect()) {
|
2018-09-12 22:37:06 +02:00
|
|
|
if (!getPlayerSpecies().canCast()) {
|
|
|
|
setEffect(null);
|
|
|
|
} else {
|
|
|
|
if (entity.getEntityWorld().isRemote) { // && entity.getEntityWorld().getWorldTime() % 10 == 0
|
2018-09-24 21:37:16 +02:00
|
|
|
getEffect().render(this);
|
2018-09-12 22:37:06 +02:00
|
|
|
}
|
|
|
|
|
2018-09-24 21:37:16 +02:00
|
|
|
if (!getEffect().update(this)) {
|
2018-09-12 22:37:06 +02:00
|
|
|
setEffect(null);
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
2018-09-12 22:37:06 +02:00
|
|
|
}
|
2018-09-13 14:04:24 +02:00
|
|
|
|
|
|
|
addExertion(-1);
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2018-09-19 09:09:30 +02:00
|
|
|
attributes.applyAttributes(entity, getPlayerSpecies());
|
2018-09-12 22:37:06 +02:00
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
@Override
|
|
|
|
public void onFall(float distance, float damageMultiplier) {
|
|
|
|
if (!entity.getEntityWorld().isRemote) {
|
|
|
|
if (getPlayerSpecies().canFly()) {
|
|
|
|
if (entity.fallDistance > 2) {
|
|
|
|
entity.addStat(StatList.FALL_ONE_CM, (int)Math.round(distance * 100));
|
|
|
|
}
|
|
|
|
|
|
|
|
gravity.landHard(entity, distance, damageMultiplier);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-16 00:45:44 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean stepOnCloud() {
|
|
|
|
EntityPlayer player = getOwner();
|
|
|
|
|
|
|
|
if ((player.fallDistance > 1) || player.distanceWalkedOnStepModified > nextStepDistance) {
|
|
|
|
nextStepDistance = player.distanceWalkedOnStepModified + 2;
|
|
|
|
player.fallDistance = 0;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-09-12 01:29:49 +02:00
|
|
|
public void onEntityEat() {
|
|
|
|
if (getPlayerSpecies() == Race.CHANGELING) {
|
|
|
|
EntityPlayer player = getOwner();
|
|
|
|
|
|
|
|
player.addPotionEffect(new PotionEffect(MobEffects.WEAKNESS, 2000, 2));
|
|
|
|
player.addPotionEffect(new PotionEffect(MobEffects.NAUSEA, 2000, 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToNBT(NBTTagCompound compound) {
|
2018-09-12 22:37:06 +02:00
|
|
|
compound.setString("playerSpecies", getPlayerSpecies().name());
|
2018-09-21 17:53:33 +02:00
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
compound.setTag("powers", powers.toNBT());
|
|
|
|
compound.setTag("gravity", gravity.toNBT());
|
|
|
|
|
2018-09-21 17:53:33 +02:00
|
|
|
IMagicEffect effect = getEffect();
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
if (effect != null) {
|
2018-09-21 17:53:33 +02:00
|
|
|
compound.setTag("effect", SpellRegistry.instance().serializeEffectToNBT(effect));
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readFromNBT(NBTTagCompound compound) {
|
2018-09-16 00:45:44 +02:00
|
|
|
setPlayerSpecies(Race.fromName(compound.getString("playerSpecies"), Race.HUMAN));
|
2018-09-21 17:53:33 +02:00
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
powers.readFromNBT(compound.getCompoundTag("powers"));
|
|
|
|
gravity.readFromNBT(compound.getCompoundTag("gravity"));
|
2018-09-21 17:53:33 +02:00
|
|
|
|
|
|
|
if (compound.hasKey("effect")) {
|
|
|
|
setEffect(SpellRegistry.instance().createEffectFromNBT(compound.getCompoundTag("effect")));
|
|
|
|
}
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
@Override
|
|
|
|
public void copyFrom(IPlayer oldPlayer) {
|
|
|
|
setEffect(oldPlayer.getEffect());
|
|
|
|
setPlayerSpecies(oldPlayer.getPlayerSpecies());
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
@Override
|
|
|
|
public void setEffect(IMagicEffect effect) {
|
2018-09-21 17:53:33 +02:00
|
|
|
effectDelegate.set(effect);
|
2018-09-12 22:37:06 +02:00
|
|
|
|
|
|
|
sendCapabilities(true);
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IMagicEffect getEffect() {
|
2018-09-21 17:53:33 +02:00
|
|
|
return effectDelegate.get();
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
|
2018-09-12 22:37:06 +02:00
|
|
|
@Override
|
|
|
|
public void setOwner(EntityPlayer owner) {
|
|
|
|
entity = owner;
|
|
|
|
}
|
|
|
|
|
2018-09-12 01:29:49 +02:00
|
|
|
@Override
|
|
|
|
public EntityPlayer getOwner() {
|
2018-09-12 02:26:35 +02:00
|
|
|
return entity;
|
2018-09-12 01:29:49 +02:00
|
|
|
}
|
|
|
|
}
|