2015-09-27 15:31:43 +02:00
|
|
|
/*
|
2016-08-02 13:08:22 +02:00
|
|
|
* This file ("PlayerData.java") is part of the Actually Additions mod for Minecraft.
|
2015-09-27 15:31:43 +02:00
|
|
|
* 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
|
2015-09-27 15:31:43 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2015-09-27 15:31:43 +02:00
|
|
|
*/
|
|
|
|
|
2016-06-04 13:51:06 +02:00
|
|
|
package de.ellpeck.actuallyadditions.mod.data;
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-11-12 13:54:49 +01:00
|
|
|
import de.ellpeck.actuallyadditions.api.booklet.IBookletPage;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.booklet.gui.GuiBooklet;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.booklet.misc.BookletUtils;
|
2015-09-27 15:31:43 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-11-12 13:54:49 +01:00
|
|
|
import net.minecraft.nbt.NBTTagList;
|
|
|
|
import net.minecraft.nbt.NBTTagString;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-07-14 20:25:12 +02:00
|
|
|
import java.util.UUID;
|
2016-11-22 18:26:29 +01:00
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public final class PlayerData{
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-07-14 20:25:12 +02:00
|
|
|
public static PlayerSave getDataFromPlayer(UUID id){
|
2016-11-22 18:26:29 +01:00
|
|
|
ConcurrentHashMap<UUID, PlayerSave> data = WorldData.getWorldUnspecificData().playerSaveData;
|
|
|
|
if(data.containsKey(id)){
|
|
|
|
PlayerSave save = data.get(id);
|
|
|
|
if(save != null && save.id != null && save.id.equals(id)){
|
2016-06-15 17:15:26 +02:00
|
|
|
return save;
|
2015-10-22 22:18:33 +02:00
|
|
|
}
|
2015-10-03 10:16:18 +02:00
|
|
|
}
|
2015-10-22 22:18:33 +02:00
|
|
|
|
|
|
|
//Add Data if none is existant
|
2016-11-22 18:26:29 +01:00
|
|
|
PlayerSave save = new PlayerSave(id);
|
|
|
|
data.put(id, save);
|
|
|
|
return save;
|
2015-10-03 10:16:18 +02:00
|
|
|
}
|
|
|
|
|
2016-07-12 22:13:50 +02:00
|
|
|
public static PlayerSave getDataFromPlayer(EntityPlayer player){
|
2016-07-14 20:25:12 +02:00
|
|
|
return getDataFromPlayer(player.getUniqueID());
|
2016-07-12 22:13:50 +02:00
|
|
|
}
|
|
|
|
|
2015-10-22 22:18:33 +02:00
|
|
|
public static class PlayerSave{
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-11-11 21:41:07 +01:00
|
|
|
public UUID id;
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-11-11 21:41:07 +01:00
|
|
|
public boolean displayTesla;
|
|
|
|
public boolean bookGottenAlready;
|
2016-11-12 15:09:30 +01:00
|
|
|
public boolean didBookTutorial;
|
2016-11-22 18:26:29 +01:00
|
|
|
public boolean hasBatWings;
|
|
|
|
public int batWingsFlyTime;
|
2015-09-27 15:31:43 +02:00
|
|
|
|
2016-11-12 13:54:49 +01:00
|
|
|
public IBookletPage[] bookmarks = new IBookletPage[12];
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public GuiBooklet lastOpenBooklet;
|
|
|
|
|
2016-11-11 21:41:07 +01:00
|
|
|
public PlayerSave(UUID id){
|
|
|
|
this.id = id;
|
2015-10-23 16:54:33 +02:00
|
|
|
}
|
|
|
|
|
2016-11-11 21:41:07 +01:00
|
|
|
public void readFromNBT(NBTTagCompound compound){
|
|
|
|
this.displayTesla = compound.getBoolean("DisplayTesla");
|
|
|
|
this.bookGottenAlready = compound.getBoolean("BookGotten");
|
2016-11-12 15:09:30 +01:00
|
|
|
this.didBookTutorial = compound.getBoolean("DidTutorial");
|
2016-11-22 18:26:29 +01:00
|
|
|
this.hasBatWings = compound.getBoolean("HasBatWings");
|
|
|
|
this.batWingsFlyTime = compound.getInteger("BatWingsFlyTime");
|
2016-11-12 13:54:49 +01:00
|
|
|
|
|
|
|
NBTTagList bookmarks = compound.getTagList("Bookmarks", 8);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2016-11-11 21:41:07 +01:00
|
|
|
}
|
2016-07-14 20:25:12 +02:00
|
|
|
|
2016-11-11 21:41:07 +01:00
|
|
|
public void writeToNBT(NBTTagCompound compound){
|
|
|
|
compound.setBoolean("DisplayTesla", this.displayTesla);
|
|
|
|
compound.setBoolean("BookGotten", this.bookGottenAlready);
|
2016-11-12 15:09:30 +01:00
|
|
|
compound.setBoolean("DidTutorial", this.didBookTutorial);
|
2016-11-22 18:26:29 +01:00
|
|
|
compound.setBoolean("HasBatWings", this.hasBatWings);
|
|
|
|
compound.setInteger("BatWingsFlyTime", this.batWingsFlyTime);
|
2016-11-12 13:54:49 +01:00
|
|
|
|
|
|
|
NBTTagList bookmarks = new NBTTagList();
|
|
|
|
for(IBookletPage bookmark : this.bookmarks){
|
|
|
|
bookmarks.appendTag(new NBTTagString(bookmark == null ? "" : bookmark.getIdentifier()));
|
|
|
|
}
|
|
|
|
compound.setTag("Bookmarks", bookmarks);
|
2015-09-27 15:31:43 +02:00
|
|
|
}
|
2016-11-11 21:41:07 +01:00
|
|
|
|
2015-09-27 15:31:43 +02:00
|
|
|
}
|
2015-10-22 22:18:33 +02:00
|
|
|
|
2016-07-14 20:25:12 +02:00
|
|
|
|
2015-09-27 15:31:43 +02:00
|
|
|
}
|