|
@@ -7,16 +7,11 @@ import com.gmail.nossr50.datatypes.validation.NonNullRule;
|
|
|
import com.gmail.nossr50.datatypes.validation.PositiveIntegerRule;
|
|
|
import com.gmail.nossr50.datatypes.validation.Validator;
|
|
|
import com.gmail.nossr50.util.experience.MMOExperienceBarManager;
|
|
|
+import com.google.common.base.Objects;
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
|
import com.neetgames.mcmmo.UniqueDataType;
|
|
|
import com.neetgames.mcmmo.exceptions.UnexpectedValueException;
|
|
|
import com.neetgames.mcmmo.skill.SkillBossBarState;
|
|
|
-import com.neetgames.neetlib.dirtydata.DirtyData;
|
|
|
-import com.neetgames.neetlib.dirtydata.DirtyMap;
|
|
|
-import com.neetgames.neetlib.mutableprimitives.MutableBoolean;
|
|
|
-import com.neetgames.neetlib.mutableprimitives.MutableInteger;
|
|
|
-import com.neetgames.neetlib.mutableprimitives.MutableLong;
|
|
|
-import com.neetgames.neetlib.mutableprimitives.MutableString;
|
|
|
import org.apache.commons.lang.NullArgumentException;
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
@@ -28,28 +23,28 @@ import java.util.UUID;
|
|
|
|
|
|
public class PlayerData {
|
|
|
|
|
|
- private final @NotNull MutableBoolean dirtyFlag; //Dirty values in this class will change this flag as needed
|
|
|
-
|
|
|
/* Player Stuff */
|
|
|
- private final @NotNull DirtyData<MutableString> playerName;
|
|
|
- private final @Nullable UUID playerUUID;
|
|
|
+ private @NotNull String playerName;
|
|
|
+ private final @Nullable UUID playerUUID; //TODO: T&C See if this is ever actually null, and if it is maybe we shouldn't allow it to be
|
|
|
|
|
|
/* Records */
|
|
|
- private final DirtyData<MutableLong> lastLogin;
|
|
|
+ private long lastLogin;
|
|
|
|
|
|
/* Skill Data */
|
|
|
- private final @NotNull DirtyMap<PrimarySkillType, Integer> skillLevelValues;
|
|
|
- private final @NotNull DirtyMap<PrimarySkillType, Float> skillExperienceValues;
|
|
|
- private final @NotNull DirtyMap<SuperAbilityType, Integer> abilityDeactivationTimestamps; // Ability & Cooldown
|
|
|
- private final @NotNull DirtyMap<UniqueDataType, Integer> uniquePlayerData; //Misc data that doesn't fit into other categories (chimaera wing, etc..)
|
|
|
- private final @NotNull DirtyMap<PrimarySkillType, SkillBossBarState> barStateMap;
|
|
|
+ private final @NotNull Map<PrimarySkillType, Integer> skillLevelValues;
|
|
|
+ private final @NotNull Map<PrimarySkillType, Float> skillExperienceValues;
|
|
|
+ private final @NotNull Map<SuperAbilityType, Integer> abilityDeactivationTimestamps; // Ability & Cooldown
|
|
|
+ private final @NotNull Map<UniqueDataType, Integer> uniquePlayerData; //Misc data that doesn't fit into other categories (chimaera wing, etc..)
|
|
|
+ private final @NotNull Map<PrimarySkillType, SkillBossBarState> barStateMap;
|
|
|
|
|
|
/* Special Flags */
|
|
|
- private final @NotNull DirtyData<MutableBoolean> partyChatSpying;
|
|
|
- private final @NotNull DirtyData<MutableBoolean> leaderBoardExclusion;
|
|
|
+ private boolean partyChatSpying;
|
|
|
+ private boolean leaderBoardExclusion;
|
|
|
|
|
|
/* Scoreboards */
|
|
|
- private final @NotNull DirtyData<MutableInteger> scoreboardTipsShown;
|
|
|
+ private int scoreboardTipsShown;
|
|
|
+
|
|
|
+ private int lastUpdateHash;
|
|
|
|
|
|
/**
|
|
|
* Create new persistent player data for a player
|
|
@@ -57,22 +52,20 @@ public class PlayerData {
|
|
|
*
|
|
|
* @param playerUUID target player's UUID
|
|
|
* @param playerName target player's name
|
|
|
- * @throws NullArgumentException thrown when never null arguments are null
|
|
|
*/
|
|
|
- public PlayerData(@Nullable UUID playerUUID, @NotNull String playerName) throws NullArgumentException {
|
|
|
+ public PlayerData(@Nullable UUID playerUUID, @NotNull String playerName) {
|
|
|
/*
|
|
|
* New Data
|
|
|
*/
|
|
|
- this.dirtyFlag = new MutableBoolean(false); //Set this one first
|
|
|
this.playerUUID = playerUUID;
|
|
|
- this.playerName = new DirtyData<>(new MutableString(playerName), dirtyFlag);
|
|
|
+ this.playerName = playerName;
|
|
|
|
|
|
- this.skillLevelValues = new DirtyMap<>(new HashMap<>(), dirtyFlag);
|
|
|
- this.skillExperienceValues = new DirtyMap<>(new HashMap<>(), dirtyFlag);
|
|
|
- this.abilityDeactivationTimestamps = new DirtyMap<>(new HashMap<>(), dirtyFlag);
|
|
|
- this.uniquePlayerData = new DirtyMap<>(new EnumMap<>(UniqueDataType.class), dirtyFlag);
|
|
|
+ this.skillLevelValues = new HashMap<>();
|
|
|
+ this.skillExperienceValues = new HashMap<>();
|
|
|
+ this.abilityDeactivationTimestamps = new HashMap<>();
|
|
|
+ this.uniquePlayerData = new EnumMap<>(UniqueDataType.class);
|
|
|
|
|
|
- this.scoreboardTipsShown = new DirtyData<>(new MutableInteger(0), dirtyFlag);
|
|
|
+ this.scoreboardTipsShown = 0;
|
|
|
|
|
|
for(SuperAbilityType superSkill : SuperAbilityType.values()) {
|
|
|
abilityDeactivationTimestamps.put(superSkill, 0);
|
|
@@ -92,11 +85,13 @@ public class PlayerData {
|
|
|
//Unique Player Data
|
|
|
this.uniquePlayerData.put(UniqueDataType.CHIMAERA_WING_DATS, 0);
|
|
|
|
|
|
- this.partyChatSpying = new DirtyData<>(new MutableBoolean(false), dirtyFlag);
|
|
|
+ this.partyChatSpying = false;
|
|
|
+
|
|
|
+ this.barStateMap = MMOExperienceBarManager.generateDefaultBarStateMap();
|
|
|
+ this.lastLogin = 0L; //Value of 0 will represent that the user hasn't been seen online
|
|
|
+ this.leaderBoardExclusion = false;
|
|
|
|
|
|
- this.barStateMap = new DirtyMap<>(MMOExperienceBarManager.generateDefaultBarStateMap(), dirtyFlag);
|
|
|
- this.lastLogin = new DirtyData<>(new MutableLong(0), dirtyFlag); //Value of 0 will represent that the user hasn't been seen online
|
|
|
- this.leaderBoardExclusion = new DirtyData<>(new MutableBoolean(false), dirtyFlag);
|
|
|
+ this.lastUpdateHash = hashCode();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -124,34 +119,32 @@ public class PlayerData {
|
|
|
@NotNull Map<PrimarySkillType, SkillBossBarState> barStateMap,
|
|
|
int scoreboardTipsShown,
|
|
|
long lastLogin,
|
|
|
- boolean leaderBoardExclusion) throws Exception {
|
|
|
+ boolean leaderBoardExclusion) throws UnexpectedValueException, NullPointerException {
|
|
|
|
|
|
/*
|
|
|
* Skills Data
|
|
|
*/
|
|
|
- this.dirtyFlag = new MutableBoolean(false); //Set this one first
|
|
|
-
|
|
|
validateRootSkillMap(skillLevelValues);
|
|
|
- this.skillLevelValues = new DirtyMap<>(skillLevelValues, dirtyFlag);
|
|
|
+ this.skillLevelValues = skillLevelValues;
|
|
|
|
|
|
validateRootSkillMap(skillExperienceValues);
|
|
|
- this.skillExperienceValues = new DirtyMap<>(skillExperienceValues, dirtyFlag);
|
|
|
+ this.skillExperienceValues = skillExperienceValues;
|
|
|
|
|
|
validateSuperSkillMap(abilityDeactivationTimestamps);
|
|
|
- this.abilityDeactivationTimestamps = new DirtyMap<>(abilityDeactivationTimestamps, dirtyFlag);
|
|
|
+ this.abilityDeactivationTimestamps = abilityDeactivationTimestamps;
|
|
|
|
|
|
- this.uniquePlayerData = new DirtyMap<>(uniquePlayerData, dirtyFlag);
|
|
|
+ this.uniquePlayerData = uniquePlayerData;
|
|
|
|
|
|
- this.scoreboardTipsShown = new DirtyData<>(new MutableInteger(scoreboardTipsShown), dirtyFlag);
|
|
|
+ this.scoreboardTipsShown = scoreboardTipsShown;
|
|
|
|
|
|
this.playerUUID = playerUUID;
|
|
|
- this.playerName = new DirtyData<>(new MutableString(playerName), dirtyFlag);
|
|
|
- this.barStateMap = new DirtyMap<>(barStateMap, dirtyFlag);
|
|
|
+ this.playerName = playerName;
|
|
|
+ this.barStateMap = barStateMap;
|
|
|
|
|
|
- this.partyChatSpying = new DirtyData<>(new MutableBoolean(partyChatSpying), dirtyFlag);
|
|
|
- this.lastLogin = new DirtyData<>(new MutableLong(lastLogin), dirtyFlag);
|
|
|
+ this.partyChatSpying = partyChatSpying;
|
|
|
+ this.lastLogin = lastLogin;
|
|
|
|
|
|
- this.leaderBoardExclusion = new DirtyData<>(new MutableBoolean(leaderBoardExclusion), dirtyFlag);
|
|
|
+ this.leaderBoardExclusion = leaderBoardExclusion;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -159,20 +152,30 @@ public class PlayerData {
|
|
|
*
|
|
|
* @param map target map
|
|
|
* @throws UnexpectedValueException when values are outside of expected norms
|
|
|
- * @throws Exception when values are outside of expected norms
|
|
|
*/
|
|
|
- private void validateRootSkillMap(Map<PrimarySkillType, ? extends Number> map) throws UnexpectedValueException, Exception {
|
|
|
+ private void validateRootSkillMap(Map<PrimarySkillType, ? extends Number> map) throws UnexpectedValueException, NullPointerException {
|
|
|
//TODO: Check for missing/unregistered
|
|
|
- Validator<Number> validator = new Validator<>();
|
|
|
+ Validator<Number> positiveValidator = new Validator<>();
|
|
|
+ Validator<Number> nullValidator = new Validator<>();
|
|
|
|
|
|
- validator.addRule(new PositiveIntegerRule<>());
|
|
|
- validator.addRule(new NonNullRule<>());
|
|
|
+ positiveValidator.addRule(new PositiveIntegerRule<>());
|
|
|
+ nullValidator.addRule(new NonNullRule<>());
|
|
|
|
|
|
for(PrimarySkillType primarySkillType : PrimarySkillType.values()) {
|
|
|
if(primarySkillType.isChildSkill())
|
|
|
continue;
|
|
|
-
|
|
|
- validator.validate(map.get(primarySkillType));
|
|
|
+
|
|
|
+ try {
|
|
|
+ positiveValidator.validate(map.get(primarySkillType));
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new UnexpectedValueException();
|
|
|
+ }
|
|
|
+
|
|
|
+ try {
|
|
|
+ nullValidator.validate(map.get(primarySkillType));
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new NullPointerException();
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -183,7 +186,7 @@ public class PlayerData {
|
|
|
* @throws UnexpectedValueException when values are outside of expected norms
|
|
|
* @throws Exception when values are outside of expected norms
|
|
|
*/
|
|
|
- private void validateSuperSkillMap(Map<? extends SuperAbilityType, ? extends Number> map) throws UnexpectedValueException, Exception {
|
|
|
+ private void validateSuperSkillMap(Map<? extends SuperAbilityType, ? extends Number> map) throws UnexpectedValueException, NullPointerException {
|
|
|
//TODO: Check for missing/unregistered
|
|
|
Validator<Number> validator = new Validator<>();
|
|
|
|
|
@@ -191,7 +194,11 @@ public class PlayerData {
|
|
|
validator.addRule(new NonNullRule<>());
|
|
|
|
|
|
for(SuperAbilityType superSkill : SuperAbilityType.values()) {
|
|
|
- validator.validate(map.get(superSkill));
|
|
|
+ try {
|
|
|
+ validator.validate(map.get(superSkill));
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new UnexpectedValueException();
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -204,30 +211,31 @@ public class PlayerData {
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
- public boolean isDirtyProfile() {
|
|
|
- return dirtyFlag.getImmutableCopy();
|
|
|
+ public boolean isProfileDirty() {
|
|
|
+ return lastUpdateHash != hashCode();
|
|
|
}
|
|
|
|
|
|
+ //TODO: T&C this needs to be called or pointless save operations won't be avoided
|
|
|
public void resetDirtyFlag() {
|
|
|
- dirtyFlag.setBoolean(false);
|
|
|
+ lastUpdateHash = hashCode();
|
|
|
}
|
|
|
|
|
|
public @NotNull String getPlayerName() {
|
|
|
- return playerName.getData().getImmutableCopy();
|
|
|
+ return playerName;
|
|
|
}
|
|
|
|
|
|
- public @NotNull UUID getPlayerUUID() {
|
|
|
+ public @Nullable UUID getPlayerUUID() {
|
|
|
return playerUUID;
|
|
|
}
|
|
|
|
|
|
- public boolean isPartyChatSpying() { return partyChatSpying.getData().getImmutableCopy(); }
|
|
|
+ public boolean isPartyChatSpying() { return partyChatSpying; }
|
|
|
|
|
|
public void togglePartyChatSpying() {
|
|
|
- partyChatSpying.getData().setBoolean(!partyChatSpying.getData().getImmutableCopy());
|
|
|
+ partyChatSpying = !partyChatSpying;
|
|
|
}
|
|
|
|
|
|
public void setPartyChatSpying(boolean bool) {
|
|
|
- this.partyChatSpying.getData().setBoolean(bool);
|
|
|
+ this.partyChatSpying = bool;
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -235,11 +243,11 @@ public class PlayerData {
|
|
|
*/
|
|
|
|
|
|
public int getScoreboardTipsShown() {
|
|
|
- return scoreboardTipsShown.getData(false).getImmutableCopy();
|
|
|
+ return scoreboardTipsShown;
|
|
|
}
|
|
|
|
|
|
public void setScoreboardTipsShown(int newValue) {
|
|
|
- scoreboardTipsShown.getData(true).setInt(newValue);
|
|
|
+ this.scoreboardTipsShown = newValue;
|
|
|
}
|
|
|
|
|
|
public int getChimaeraWingDATS() {
|
|
@@ -273,22 +281,6 @@ public class PlayerData {
|
|
|
return barStateMap;
|
|
|
}
|
|
|
|
|
|
- public @NotNull DirtyMap<PrimarySkillType, SkillBossBarState> getDirtyBarStateMap() {
|
|
|
- return barStateMap;
|
|
|
- }
|
|
|
-
|
|
|
- public @NotNull DirtyMap<PrimarySkillType, Integer> getDirtySkillLevelMap() {
|
|
|
- return skillLevelValues;
|
|
|
- }
|
|
|
-
|
|
|
- public @NotNull DirtyMap<PrimarySkillType, Float> getDirtyExperienceValueMap() {
|
|
|
- return skillExperienceValues;
|
|
|
- }
|
|
|
-
|
|
|
- public @NotNull DirtyData<MutableBoolean> getDirtyPartyChatSpying() {
|
|
|
- return partyChatSpying;
|
|
|
- }
|
|
|
-
|
|
|
public @NotNull Map<PrimarySkillType, Integer> getSkillLevelsMap() {
|
|
|
return skillLevelValues;
|
|
|
}
|
|
@@ -305,24 +297,20 @@ public class PlayerData {
|
|
|
return uniquePlayerData;
|
|
|
}
|
|
|
|
|
|
- public void setDirtyProfile() {
|
|
|
- this.dirtyFlag.setBoolean(true);
|
|
|
- }
|
|
|
-
|
|
|
public long getLastLogin() {
|
|
|
- return lastLogin.getData().getImmutableCopy();
|
|
|
+ return lastLogin;
|
|
|
}
|
|
|
|
|
|
public void setLastLogin(long newValue) {
|
|
|
- lastLogin.getData().setLong(newValue);
|
|
|
+ this.lastLogin = newValue;
|
|
|
}
|
|
|
|
|
|
public boolean isLeaderBoardExcluded() {
|
|
|
- return leaderBoardExclusion.getData().getImmutableCopy();
|
|
|
+ return leaderBoardExclusion;
|
|
|
}
|
|
|
|
|
|
public void setLeaderBoardExclusion(boolean bool) {
|
|
|
- leaderBoardExclusion.getData(true).setBoolean(bool);
|
|
|
+ this.leaderBoardExclusion = bool;
|
|
|
}
|
|
|
|
|
|
public @NotNull ImmutableMap<PrimarySkillType, Integer> copyPrimarySkillLevelsMap() {
|
|
@@ -332,4 +320,26 @@ public class PlayerData {
|
|
|
public @NotNull ImmutableMap<PrimarySkillType, Float> copyPrimarySkillExperienceValuesMap() {
|
|
|
return ImmutableMap.copyOf(getSkillsExperienceMap());
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean equals(Object o) {
|
|
|
+ if (this == o) return true;
|
|
|
+ if (o == null || getClass() != o.getClass()) return false;
|
|
|
+ PlayerData that = (PlayerData) o;
|
|
|
+ return lastLogin == that.lastLogin
|
|
|
+ && partyChatSpying == that.partyChatSpying
|
|
|
+ && leaderBoardExclusion == that.leaderBoardExclusion
|
|
|
+ && scoreboardTipsShown == that.scoreboardTipsShown
|
|
|
+ && Objects.equal(playerName, that.playerName)
|
|
|
+ && Objects.equal(playerUUID, that.playerUUID)
|
|
|
+ && Objects.equal(skillLevelValues, that.skillLevelValues)
|
|
|
+ && Objects.equal(skillExperienceValues, that.skillExperienceValues)
|
|
|
+ && Objects.equal(abilityDeactivationTimestamps, that.abilityDeactivationTimestamps)
|
|
|
+ && Objects.equal(uniquePlayerData, that.uniquePlayerData) && Objects.equal(barStateMap, that.barStateMap);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int hashCode() {
|
|
|
+ return Objects.hashCode(playerName, playerUUID, lastLogin, skillLevelValues, skillExperienceValues, abilityDeactivationTimestamps, uniquePlayerData, barStateMap, partyChatSpying, leaderBoardExclusion, scoreboardTipsShown);
|
|
|
+ }
|
|
|
}
|