ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntitySmileyCloud.java

71 lines
2.1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TileEntitySmileyCloud.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.network.gui.IStringReactor;
2016-02-17 23:15:56 +01:00
import de.ellpeck.actuallyadditions.mod.util.PosUtil;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
public class TileEntitySmileyCloud extends TileEntityBase implements IStringReactor{
public String name;
2015-10-03 10:16:18 +02:00
private String nameBefore;
2015-08-25 17:59:50 +02:00
public TileEntitySmileyCloud(){
super("smileyCloud");
}
@Override
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
super.writeSyncableNBT(compound, sync);
if(this.name != null){
compound.setString("Name", this.name);
}
}
2015-10-18 15:31:01 +02:00
@Override
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
super.readSyncableNBT(compound, sync);
2015-10-18 15:31:01 +02:00
this.name = compound.getString("Name");
}
2016-02-01 17:49:55 +01:00
@Override
public void updateEntity(){
super.updateEntity();
2016-05-02 17:46:53 +02:00
if(!this.worldObj.isRemote){
if(((this.nameBefore == null && this.name != null) || !this.nameBefore.equals(this.name)) && this.sendUpdateWithInterval()){
2016-02-01 17:49:55 +01:00
this.nameBefore = this.name;
this.markDirty();
}
}
}
@Override
public void onTextReceived(String text, int textID, EntityPlayer player){
this.name = text;
}
2016-02-17 23:15:56 +01:00
2016-03-18 18:16:25 +01:00
public void setStatus(boolean pinkAndFluffy){
int meta = PosUtil.getMetadata(this.pos, this.worldObj);
if(pinkAndFluffy){
if(meta <= 3){
PosUtil.setMetadata(this.pos, this.worldObj, meta+4, 2);
}
2016-02-20 16:16:41 +01:00
}
2016-03-18 18:16:25 +01:00
else{
if(meta >= 4){
PosUtil.setMetadata(this.pos, this.worldObj, meta-4, 2);
}
2016-02-20 16:16:41 +01:00
}
2016-02-17 23:15:56 +01:00
}
}