ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/data/PlayerData.java

64 lines
2 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +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
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.data;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import java.util.ArrayList;
import java.util.UUID;
public class PlayerData{
public static PlayerSave getDataFromPlayer(EntityPlayer player){
2016-06-04 13:52:27 +02:00
ArrayList<PlayerSave> data = WorldData.PLAYER_SAVE_DATA;
//Get Data from existing data
for(PlayerSave save : data){
if(save.thePlayerUUID.equals(player.getUniqueID())){
return save;
}
2015-10-03 10:16:18 +02:00
}
//Add Data if none is existant
PlayerSave aSave = new PlayerSave(player.getUniqueID(), new NBTTagCompound());
data.add(aSave);
return aSave;
2015-10-03 10:16:18 +02:00
}
public static class PlayerSave{
2016-05-19 20:05:12 +02:00
public final UUID thePlayerUUID;
public NBTTagCompound theCompound;
public PlayerSave(UUID theUUID, NBTTagCompound theCompound){
this.thePlayerUUID = theUUID;
this.theCompound = theCompound;
}
2015-10-29 19:51:00 +01:00
public static PlayerSave fromNBT(NBTTagCompound compound){
UUID theID = new UUID(compound.getLong("MostSignificant"), compound.getLong("LeastSignificant"));
NBTTagCompound theCompound = compound.getCompoundTag("Tag");
2015-10-23 16:54:33 +02:00
return new PlayerSave(theID, theCompound);
}
2015-10-29 19:51:00 +01:00
public NBTTagCompound toNBT(){
NBTTagCompound compound = new NBTTagCompound();
compound.setLong("LeastSignificant", this.thePlayerUUID.getLeastSignificantBits());
compound.setLong("MostSignificant", this.thePlayerUUID.getMostSignificantBits());
2015-10-29 19:51:00 +01:00
compound.setTag("Tag", this.theCompound);
return compound;
}
}
}