1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-21 20:25:54 +00:00
Slimefun4/src/me/mrCookieSlime/Slimefun/api/PlayerProfile.java

217 lines
5.6 KiB
Java
Raw Normal View History

package me.mrCookieSlime.Slimefun.api;
import java.io.File;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
2019-08-29 13:13:40 +00:00
import java.util.List;
import java.util.Map;
2019-08-25 15:35:19 +00:00
import java.util.Optional;
import java.util.Set;
import java.util.UUID;
2019-08-25 15:35:19 +00:00
import java.util.stream.IntStream;
import org.bukkit.ChatColor;
import org.bukkit.inventory.ItemStack;
import me.mrCookieSlime.CSCoreLibPlugin.Configuration.Config;
2019-08-31 09:36:45 +00:00
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.Research;
2019-08-26 17:13:56 +00:00
import me.mrCookieSlime.Slimefun.api.inventory.BackpackInventory;
/**
* A class that can store a Player's Research Profile for caching
*
* @author TheBusyBiscuit
*
*/
public final class PlayerProfile {
private UUID uuid;
private Config cfg;
private boolean dirty = false;
private boolean markedForDeletion = false;
private Set<Research> researches = new HashSet<>();
2019-08-25 15:35:19 +00:00
private Map<Integer, BackpackInventory> backpacks = new HashMap<>();
private PlayerProfile(UUID uuid) {
this.uuid = uuid;
cfg = new Config(new File("data-storage/Slimefun/Players/" + uuid.toString() + ".yml"));
for (Research research: Research.list()) {
if (cfg.contains("researches." + research.getID())) researches.add(research);
}
}
2019-08-26 17:13:56 +00:00
public Config getConfig() {
2019-08-25 15:35:19 +00:00
return cfg;
}
public UUID getUUID() {
return uuid;
}
2019-08-25 20:21:06 +00:00
/**
* This method returns whether the Player has logged off.
* If this is true, then the Profile can be removed from RAM.
*
* @return Whether the Profile is marked for deletion
*/
public boolean isMarkedForDeletion() {
return markedForDeletion;
}
2019-08-25 20:21:06 +00:00
/**
* This method returns whether the Profile has unsaved changes
*
* @return Whether there are unsaved changes
*/
public boolean isDirty() {
return dirty;
}
2019-08-25 20:21:06 +00:00
/**
* This method will save the Player's Researches and Backpacks to the hard drive
*/
public void save() {
2019-08-25 15:35:19 +00:00
for (BackpackInventory backpack: backpacks.values()) {
backpack.save();
}
cfg.save();
dirty = false;
}
2019-08-25 20:21:06 +00:00
/**
* This method sets the Player's "researched" status for this Research.
* Use the boolean to unlock or lock the Research
*
* @param research The Research that should be unlocked or locked
* @param unlock Whether the Research should be unlocked or locked
*/
public void setResearched(Research research, boolean unlock) {
dirty = true;
if (unlock) {
cfg.setValue("researches." + research.getID(), true);
researches.add(research);
}
else {
cfg.setValue("researches." + research.getID(), null);
researches.remove(research);
}
}
2019-08-25 20:21:06 +00:00
/**
* This method returns whether the Player has unlocked the given Research
*
* @param research The Research that is being queried
* @return Whether this Research has been unlocked
*/
public boolean hasUnlocked(Research research) {
return !research.isEnabled() || researches.contains(research);
}
/**
2019-08-25 15:35:19 +00:00
* This Method will return all Researches that this Player has unlocked
*
* @return A Hashset<Research> of all Researches this Player has unlocked
*/
public Set<Research> getResearches() {
return researches;
}
2019-08-25 15:35:19 +00:00
/**
* Call this method if the Player has left.
* The profile can then be removed from RAM.
*/
public void markForDeletion() {
this.markedForDeletion = true;
}
2019-08-25 15:35:19 +00:00
/**
* Call this method if this Profile has unsaved changes.
*/
public void markDirty() {
this.dirty = true;
}
public BackpackInventory createBackpack(int size) {
IntStream stream = IntStream.iterate(0, i -> i + 1).filter(i -> !cfg.contains("backpacks." + i + ".size"));
int id = stream.findFirst().getAsInt();
BackpackInventory backpack = new BackpackInventory(this, id, size);
backpacks.put(id, backpack);
return backpack;
}
public BackpackInventory getBackpack(int id) {
BackpackInventory backpack = backpacks.get(id);
if (backpack != null) return backpack;
else {
backpack = new BackpackInventory(this, id);
backpacks.put(id, backpack);
return backpack;
}
}
2019-08-25 20:39:59 +00:00
public String getTitle() {
2019-08-31 09:36:45 +00:00
List<String> titles = SlimefunPlugin.getSettings().researchesTitles;
2019-08-29 13:13:40 +00:00
2019-08-30 10:00:28 +00:00
int index = Math.round(Float.valueOf(String.valueOf(Math.round(((researches.size() * 100.0F) / Research.list().size()) * 100.0F) / 100.0F)) / 100.0F) * titles.size();
2019-08-25 20:39:59 +00:00
if (index > 0) index--;
2019-08-29 13:13:40 +00:00
return titles.get(index);
2019-08-25 20:39:59 +00:00
}
2019-08-25 15:35:19 +00:00
public static PlayerProfile fromUUID(UUID uuid) {
2019-08-31 09:36:45 +00:00
PlayerProfile profile = SlimefunPlugin.getUtilities().profiles.get(uuid);
if (profile == null) {
profile = new PlayerProfile(uuid);
2019-08-31 09:36:45 +00:00
SlimefunPlugin.getUtilities().profiles.put(uuid, profile);
}
else {
profile.markedForDeletion = false;
}
return profile;
}
public static boolean isLoaded(UUID uuid) {
2019-08-31 09:36:45 +00:00
return SlimefunPlugin.getUtilities().profiles.containsKey(uuid);
}
public static Iterator<PlayerProfile> iterator() {
2019-08-31 09:36:45 +00:00
return SlimefunPlugin.getUtilities().profiles.values().iterator();
}
2019-08-25 15:35:19 +00:00
public static BackpackInventory getBackpack(ItemStack item) {
if (item == null || !item.hasItemMeta() || !item.getItemMeta().hasLore()) return null;
Optional<Integer> id = Optional.empty();
String uuid = "";
for (String line: item.getItemMeta().getLore()) {
if (line.startsWith(ChatColor.translateAlternateColorCodes('&', "&7ID: ")) && line.contains("#")) {
try {
id = Optional.of(Integer.parseInt(line.split("#")[1]));
uuid = line.split("#")[0].replace(ChatColor.translateAlternateColorCodes('&', "&7ID: "), "");
} catch(NumberFormatException x) {
return null;
}
}
}
if (id.isPresent()) {
return PlayerProfile.fromUUID(UUID.fromString(uuid)).getBackpack(id.get());
}
else {
return null;
}
}
}