ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/util/playerdata/PersistentServerData.java

62 lines
2.1 KiB
Java
Raw Normal View History

/*
2015-10-06 16:36:25 +02:00
* This file ("PersistentServerData.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
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* <EFBFBD> 2015 Ellpeck
*/
package ellpeck.actuallyadditions.util.playerdata;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import java.util.ArrayList;
import java.util.UUID;
public class PersistentServerData{
public static ArrayList<PlayerSave> playerSaveData = new ArrayList<PlayerSave>();
public static NBTTagCompound getDataFromPlayer(EntityPlayer player){
//Get Data from existing data
for(PlayerSave save : playerSaveData){
if(save.thePlayerUUID.equals(player.getUniqueID())){
return save.theCompound;
}
2015-10-03 10:16:18 +02:00
}
//Add Data if none is existant
PlayerSave aSave = new PlayerSave(player.getUniqueID(), new NBTTagCompound());
playerSaveData.add(aSave);
return aSave.theCompound;
2015-10-03 10:16:18 +02:00
}
public static class PlayerSave{
public UUID thePlayerUUID;
public NBTTagCompound theCompound;
public PlayerSave(UUID theUUID, NBTTagCompound theCompound){
this.thePlayerUUID = theUUID;
this.theCompound = theCompound;
}
public void toNBT(NBTTagCompound compound, String name){
compound.setLong(name+"LeastSignificant", this.thePlayerUUID.getLeastSignificantBits());
compound.setLong(name+"MostSignificant", this.thePlayerUUID.getMostSignificantBits());
compound.setTag(name+"Tag", this.theCompound);
}
public static PlayerSave fromNBT(NBTTagCompound compound, String name){
UUID theID = new UUID(compound.getLong(name+"MostSignificant"), compound.getLong(name+"LeastSignificant"));
NBTTagCompound theCompound = compound.getCompoundTag(name+"Tag");
return new PlayerSave(theID, theCompound);
}
}
}