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

119 lines
4 KiB
Java
Raw Normal View History

/*
2016-08-02 13:08:22 +02:00
* This file ("PlayerData.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
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.data;
import de.ellpeck.actuallyadditions.api.booklet.IBookletPage;
import de.ellpeck.actuallyadditions.mod.booklet.gui.GuiBooklet;
import de.ellpeck.actuallyadditions.mod.booklet.misc.BookletUtils;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.nbt.NBTTagString;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
2016-06-17 23:50:38 +02:00
public final class PlayerData{
public static PlayerSave getDataFromPlayer(EntityPlayer player){
WorldData worldData = WorldData.get(player.getEntityWorld());
ConcurrentHashMap<UUID, PlayerSave> data = worldData.playerSaveData;
UUID id = player.getUniqueID();
if(data.containsKey(id)){
PlayerSave save = data.get(id);
if(save != null && save.id != null && save.id.equals(id)){
return save;
}
2015-10-03 10:16:18 +02:00
}
//Add Data if none is existant
PlayerSave save = new PlayerSave(id);
data.put(id, save);
worldData.markDirty();
return save;
2015-10-03 10:16:18 +02:00
}
public static class PlayerSave{
public UUID id;
public boolean bookGottenAlready;
2016-11-12 15:09:30 +01:00
public boolean didBookTutorial;
public boolean hasBatWings;
2016-11-22 19:35:52 +01:00
public boolean shouldDisableBatWings;
public int batWingsFlyTime;
public IBookletPage[] bookmarks = new IBookletPage[12];
@SideOnly(Side.CLIENT)
public GuiBooklet lastOpenBooklet;
public PlayerSave(UUID id){
this.id = id;
2015-10-23 16:54:33 +02:00
}
2016-11-22 19:35:52 +01:00
public void readFromNBT(NBTTagCompound compound, boolean savingToFile){
this.bookGottenAlready = compound.getBoolean("BookGotten");
2016-11-12 15:09:30 +01:00
this.didBookTutorial = compound.getBoolean("DidTutorial");
2016-11-22 19:35:52 +01:00
this.hasBatWings = compound.getBoolean("HasBatWings");
this.batWingsFlyTime = compound.getInteger("BatWingsFlyTime");
NBTTagList bookmarks = compound.getTagList("Bookmarks", 8);
this.loadBookmarks(bookmarks);
2016-11-22 19:35:52 +01:00
if(!savingToFile){
this.shouldDisableBatWings = compound.getBoolean("ShouldDisableWings");
}
}
2016-11-22 19:35:52 +01:00
public void writeToNBT(NBTTagCompound compound, boolean savingToFile){
compound.setBoolean("BookGotten", this.bookGottenAlready);
2016-11-12 15:09:30 +01:00
compound.setBoolean("DidTutorial", this.didBookTutorial);
2016-11-22 19:35:52 +01:00
compound.setBoolean("HasBatWings", this.hasBatWings);
compound.setInteger("BatWingsFlyTime", this.batWingsFlyTime);
compound.setTag("Bookmarks", this.saveBookmarks());
if(!savingToFile){
compound.setBoolean("ShouldDisableWings", this.shouldDisableBatWings);
}
}
public NBTTagList saveBookmarks(){
NBTTagList bookmarks = new NBTTagList();
for(IBookletPage bookmark : this.bookmarks){
bookmarks.appendTag(new NBTTagString(bookmark == null ? "" : bookmark.getIdentifier()));
}
return bookmarks;
}
2016-11-22 19:35:52 +01:00
public void loadBookmarks(NBTTagList bookmarks){
for(int i = 0; i < bookmarks.tagCount(); i++){
String strg = bookmarks.getStringTagAt(i);
if(strg != null && !strg.isEmpty()){
IBookletPage page = BookletUtils.getBookletPageById(strg);
this.bookmarks[i] = page;
}
else{
this.bookmarks[i] = null;
}
2016-11-22 19:35:52 +01:00
}
}
}
}