Initial version of auto updater for the new non universed version.
This commit is contained in:
227
src/main/java/com/massivecraft/factions/update/OldConf.java
Normal file
227
src/main/java/com/massivecraft/factions/update/OldConf.java
Normal file
@ -0,0 +1,227 @@
|
||||
package com.massivecraft.factions.update;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import org.bukkit.event.EventPriority;
|
||||
|
||||
import com.massivecraft.factions.FFlag;
|
||||
import com.massivecraft.factions.FPerm;
|
||||
import com.massivecraft.factions.Rel;
|
||||
import com.massivecraft.factions.entity.MConf;
|
||||
import com.massivecraft.factions.event.EventFactionsChunkChangeType;
|
||||
import com.massivecraft.massivecore.store.Entity;
|
||||
|
||||
public class OldConf extends Entity<OldConf>
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// META
|
||||
// -------------------------------------------- //
|
||||
|
||||
public void transferTo(MConf mconf)
|
||||
{
|
||||
//mconf.enabled = this.enabled;
|
||||
mconf.factionIdNone = this.factionIdNone;
|
||||
mconf.factionIdSafezone = this.factionIdSafezone;
|
||||
mconf.factionIdWarzone = this.factionIdWarzone;
|
||||
mconf.defaultPlayerFactionId = this.defaultPlayerFactionId;
|
||||
mconf.defaultPlayerRole = this.defaultPlayerRole;
|
||||
mconf.defaultPlayerPower = this.defaultPlayerPower;
|
||||
mconf.defaultFactionOpen = this.defaultFactionOpen;
|
||||
mconf.defaultFactionFlags = this.defaultFactionFlags;
|
||||
mconf.defaultFactionPerms = this.defaultFactionPerms;
|
||||
mconf.broadcastNameChange = this.broadcastNameChange;
|
||||
mconf.powerMax = this.powerMax;
|
||||
mconf.powerMin = this.powerMin;
|
||||
mconf.powerPerHour = this.powerPerHour;
|
||||
mconf.powerPerDeath = this.powerPerDeath;
|
||||
mconf.canLeaveWithNegativePower = this.canLeaveWithNegativePower;
|
||||
mconf.factionMemberLimit = this.factionMemberLimit;
|
||||
mconf.factionPowerMax = this.factionPowerMax;
|
||||
mconf.factionNameLengthMin = this.factionNameLengthMin;
|
||||
mconf.factionNameLengthMax = this.factionNameLengthMax;
|
||||
mconf.factionNameForceUpperCase = this.factionNameForceUpperCase;
|
||||
mconf.claimsMustBeConnected = this.claimsMustBeConnected;
|
||||
mconf.claimingFromOthersAllowed = this.claimingFromOthersAllowed;
|
||||
mconf.claimsCanBeUnconnectedIfOwnedByOtherFaction = this.claimsCanBeUnconnectedIfOwnedByOtherFaction;
|
||||
mconf.claimsRequireMinFactionMembers = this.claimsRequireMinFactionMembers;
|
||||
mconf.claimedLandsMax = this.claimedLandsMax;
|
||||
mconf.homesEnabled = this.homesEnabled;
|
||||
mconf.homesMustBeInClaimedTerritory = this.homesMustBeInClaimedTerritory;
|
||||
mconf.homesTeleportCommandEnabled = this.homesTeleportCommandEnabled;
|
||||
mconf.homesTeleportAllowedFromEnemyTerritory = this.homesTeleportAllowedFromEnemyTerritory;
|
||||
mconf.homesTeleportAllowedFromDifferentWorld = this.homesTeleportAllowedFromDifferentWorld;
|
||||
mconf.homesTeleportAllowedEnemyDistance = this.homesTeleportAllowedEnemyDistance;
|
||||
mconf.homesTeleportIgnoreEnemiesIfInOwnTerritory = this.homesTeleportIgnoreEnemiesIfInOwnTerritory;
|
||||
mconf.homesTeleportToOnDeathActive = this.homesTeleportToOnDeathActive;
|
||||
mconf.homesTeleportToOnDeathPriority = this.homesTeleportToOnDeathPriority;
|
||||
mconf.permanentFactionsDisableLeaderPromotion = this.permanentFactionsDisableLeaderPromotion;
|
||||
mconf.actionDeniedPainAmount = this.actionDeniedPainAmount;
|
||||
mconf.disablePVPForFactionlessPlayers = this.disablePVPForFactionlessPlayers;
|
||||
mconf.enablePVPAgainstFactionlessInAttackersLand = this.enablePVPAgainstFactionlessInAttackersLand;
|
||||
mconf.territoryShieldFactor = this.territoryShieldFactor;
|
||||
mconf.denyCommandsPermanentFactionMember = this.denyCommandsPermanentFactionMember;
|
||||
mconf.denyCommandsTerritoryRelation = this.denyCommandsTerritoryRelation;
|
||||
mconf.lwcRemoveOnChange = this.lwcRemoveOnChange;
|
||||
mconf.econEnabled = this.econEnabled;
|
||||
mconf.econLandReward = this.econLandReward;
|
||||
mconf.econUniverseAccount = this.econUniverseAccount;
|
||||
mconf.econChunkCost = this.econChunkCost;
|
||||
mconf.econCostCreate = this.econCostCreate;
|
||||
mconf.econCostSethome = this.econCostSethome;
|
||||
mconf.econCostJoin = this.econCostJoin;
|
||||
mconf.econCostLeave = this.econCostLeave;
|
||||
mconf.econCostKick = this.econCostKick;
|
||||
mconf.econCostInvite = this.econCostInvite;
|
||||
mconf.econCostDeinvite = this.econCostDeinvite;
|
||||
mconf.econCostHome = this.econCostHome;
|
||||
mconf.econCostName = this.econCostName;
|
||||
mconf.econCostDescription = this.econCostDescription;
|
||||
mconf.econCostTitle = this.econCostTitle;
|
||||
mconf.econCostOpen = this.econCostOpen;
|
||||
mconf.econRelCost = this.econRelCost;
|
||||
mconf.bankEnabled = this.bankEnabled;
|
||||
mconf.bankFactionPaysCosts = this.bankFactionPaysCosts;
|
||||
mconf.bankFactionPaysLandCosts = this.bankFactionPaysLandCosts;
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
// UNIVERSE ENABLE SWITCH
|
||||
// -------------------------------------------- //
|
||||
|
||||
public boolean enabled = true;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// SPECIAL FACTION IDS
|
||||
// -------------------------------------------- //
|
||||
|
||||
public String factionIdNone = null;
|
||||
public String factionIdSafezone = null;
|
||||
public String factionIdWarzone = null;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// DEFAULTS
|
||||
// -------------------------------------------- //
|
||||
|
||||
public String defaultPlayerFactionId = null;
|
||||
public Rel defaultPlayerRole = null;
|
||||
public double defaultPlayerPower = 0.0;
|
||||
|
||||
public boolean defaultFactionOpen = false;
|
||||
public Map<FFlag, Boolean> defaultFactionFlags = null;
|
||||
public Map<FPerm, Set<Rel>> defaultFactionPerms = null;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// MESSAGES
|
||||
// -------------------------------------------- //
|
||||
|
||||
public boolean broadcastNameChange = false;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// POWER
|
||||
// -------------------------------------------- //
|
||||
|
||||
public double powerMax = 10.0;
|
||||
public double powerMin = 0.0;
|
||||
public double powerPerHour = 2.0;
|
||||
public double powerPerDeath = -2.0;
|
||||
|
||||
public boolean canLeaveWithNegativePower = true;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// CORE
|
||||
// -------------------------------------------- //
|
||||
|
||||
public int factionMemberLimit = 0;
|
||||
public double factionPowerMax = 0.0;
|
||||
|
||||
public int factionNameLengthMin = 3;
|
||||
public int factionNameLengthMax = 16;
|
||||
public boolean factionNameForceUpperCase = false;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// CLAIMS
|
||||
// -------------------------------------------- //
|
||||
|
||||
public boolean claimsMustBeConnected = true;
|
||||
public boolean claimingFromOthersAllowed = true;
|
||||
public boolean claimsCanBeUnconnectedIfOwnedByOtherFaction = false;
|
||||
public int claimsRequireMinFactionMembers = 1;
|
||||
public int claimedLandsMax = 0;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// HOMES
|
||||
// -------------------------------------------- //
|
||||
|
||||
public boolean homesEnabled = true;
|
||||
public boolean homesMustBeInClaimedTerritory = true;
|
||||
public boolean homesTeleportCommandEnabled = true;
|
||||
public boolean homesTeleportAllowedFromEnemyTerritory = true;
|
||||
public boolean homesTeleportAllowedFromDifferentWorld = true;
|
||||
public double homesTeleportAllowedEnemyDistance = 32.0;
|
||||
public boolean homesTeleportIgnoreEnemiesIfInOwnTerritory = true;
|
||||
|
||||
public boolean homesTeleportToOnDeathActive = false;
|
||||
public EventPriority homesTeleportToOnDeathPriority = null;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// ASSORTED
|
||||
// -------------------------------------------- //
|
||||
|
||||
public boolean permanentFactionsDisableLeaderPromotion = false;
|
||||
public double actionDeniedPainAmount = 2.0D;
|
||||
public boolean disablePVPForFactionlessPlayers = false;
|
||||
public boolean enablePVPAgainstFactionlessInAttackersLand = false;
|
||||
public double territoryShieldFactor = 0.3D;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// DENY COMMANDS
|
||||
// -------------------------------------------- //
|
||||
|
||||
// commands which will be prevented if the player is a member of a permanent faction
|
||||
public List<String> denyCommandsPermanentFactionMember = null;
|
||||
|
||||
// commands which will be prevented when in claimed territory of another faction
|
||||
public Map<Rel, List<String>> denyCommandsTerritoryRelation = null;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// INTEGRATION: LWC
|
||||
// -------------------------------------------- //
|
||||
|
||||
public Map<EventFactionsChunkChangeType, Boolean> lwcRemoveOnChange = null;
|
||||
|
||||
// -------------------------------------------- //
|
||||
// INTEGRATION: ECONOMY
|
||||
// -------------------------------------------- //
|
||||
|
||||
public boolean econEnabled = false;
|
||||
|
||||
// TODO: Rename to include unit.
|
||||
public double econLandReward = 0.00;
|
||||
|
||||
public String econUniverseAccount = null;
|
||||
|
||||
public Map<EventFactionsChunkChangeType, Double> econChunkCost = null;
|
||||
|
||||
public double econCostCreate = 200.0;
|
||||
public double econCostSethome = 0.0;
|
||||
public double econCostJoin = 0.0;
|
||||
public double econCostLeave = 0.0;
|
||||
public double econCostKick = 0.0;
|
||||
public double econCostInvite = 0.0;
|
||||
public double econCostDeinvite = 0.0;
|
||||
public double econCostHome = 0.0;
|
||||
public double econCostName = 0.0;
|
||||
public double econCostDescription = 0.0;
|
||||
public double econCostTitle = 0.0;
|
||||
public double econCostOpen = 0.0;
|
||||
|
||||
public Map<Rel, Double> econRelCost = null;
|
||||
|
||||
//Faction banks, to pay for land claiming and other costs instead of individuals paying for them
|
||||
public boolean bankEnabled = true;
|
||||
//public static boolean bankMembersCanWithdraw = false; //Have to be at least moderator to withdraw or pay money to another faction
|
||||
public boolean bankFactionPaysCosts = true; //The faction pays for faction command costs, such as sethome
|
||||
public boolean bankFactionPaysLandCosts = true; //The faction pays for land claiming costs.
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.massivecraft.factions.update;
|
||||
|
||||
import com.massivecraft.factions.Factions;
|
||||
import com.massivecraft.massivecore.MassiveCore;
|
||||
import com.massivecraft.massivecore.store.Coll;
|
||||
import com.massivecraft.massivecore.store.MStore;
|
||||
|
||||
public class OldConfColl extends Coll<OldConf>
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
public OldConfColl(String name)
|
||||
{
|
||||
super(name, OldConf.class, MStore.getDb(), Factions.get());
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
// OVERRIDE
|
||||
// -------------------------------------------- //
|
||||
|
||||
@Override
|
||||
public void init()
|
||||
{
|
||||
super.init();
|
||||
this.get(MassiveCore.INSTANCE, true);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
package com.massivecraft.factions.update;
|
||||
|
||||
import com.massivecraft.factions.Factions;
|
||||
import com.massivecraft.massivecore.Aspect;
|
||||
import com.massivecraft.massivecore.MassiveCore;
|
||||
import com.massivecraft.massivecore.store.Colls;
|
||||
|
||||
public class OldConfColls extends Colls<OldConfColl, OldConf>
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// INSTANCE & CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
private static OldConfColls i = new OldConfColls();
|
||||
public static OldConfColls get() { return i; }
|
||||
|
||||
// -------------------------------------------- //
|
||||
// OVERRIDE: COLLS
|
||||
// -------------------------------------------- //
|
||||
|
||||
@Override
|
||||
public OldConfColl createColl(String collName)
|
||||
{
|
||||
return new OldConfColl(collName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Aspect getAspect()
|
||||
{
|
||||
return Factions.get().getAspect();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getBasename()
|
||||
{
|
||||
return "factions_uconf";
|
||||
}
|
||||
|
||||
@Override
|
||||
public OldConf get2(Object worldNameExtractable)
|
||||
{
|
||||
OldConfColl coll = this.get(worldNameExtractable);
|
||||
if (coll == null) return null;
|
||||
return coll.get(MassiveCore.INSTANCE);
|
||||
}
|
||||
|
||||
}
|
119
src/main/java/com/massivecraft/factions/update/UpdateUtil.java
Normal file
119
src/main/java/com/massivecraft/factions/update/UpdateUtil.java
Normal file
@ -0,0 +1,119 @@
|
||||
package com.massivecraft.factions.update;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import com.massivecraft.factions.Const;
|
||||
import com.massivecraft.factions.Factions;
|
||||
import com.massivecraft.factions.entity.MConf;
|
||||
import com.massivecraft.massivecore.MassiveCore;
|
||||
import com.massivecraft.massivecore.store.Coll;
|
||||
import com.massivecraft.massivecore.store.Db;
|
||||
import com.massivecraft.massivecore.store.MStore;
|
||||
import com.massivecraft.massivecore.util.MUtil;
|
||||
|
||||
public class UpdateUtil
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// CONSTANTS
|
||||
// -------------------------------------------- //
|
||||
|
||||
public static final List<String> oldCollnamePrefixes = MUtil.list(
|
||||
"factions_board@",
|
||||
"factions_faction@",
|
||||
"factions_uplayer@",
|
||||
"factions_uconf@"
|
||||
);
|
||||
|
||||
// -------------------------------------------- //
|
||||
// UPDATE
|
||||
// -------------------------------------------- //
|
||||
// Assumes the MConfColl has been inited!
|
||||
|
||||
public static void update()
|
||||
{
|
||||
// Select the old universe of our attention ...
|
||||
String universe = getUniverse();
|
||||
if (universe == null) return;
|
||||
|
||||
// ... load the old uconf data ...
|
||||
OldConfColls.get().init();
|
||||
OldConf oldConf = OldConfColls.get().getForUniverse(universe).get(MassiveCore.INSTANCE, true);
|
||||
|
||||
// ... transfer the old uconf data over to the new mconf ...
|
||||
oldConf.transferTo(MConf.get());
|
||||
|
||||
// ... rename target collections ...
|
||||
Db db = MStore.getDb();
|
||||
|
||||
db.getDriver().renameColl(db, "factions_board@" + universe, Const.COLLECTION_BOARD);
|
||||
db.getDriver().renameColl(db, "factions_faction@" + universe, Const.COLLECTION_FACTION);
|
||||
db.getDriver().renameColl(db, "factions_uplayer@" + universe, Const.COLLECTION_MPLAYER);
|
||||
|
||||
// ... rename remaining collections ...
|
||||
for (String collname : db.getCollnames())
|
||||
{
|
||||
if (!collname.startsWith("factions_")) continue;
|
||||
if (!collname.contains("@")) continue;
|
||||
db.getDriver().renameColl(db, collname, "old_" + collname);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
// UNIVERSE SELECTION
|
||||
// -------------------------------------------- //
|
||||
|
||||
public static String getUniverse()
|
||||
{
|
||||
List<String> universes = getUniverses();
|
||||
|
||||
String ret = null;
|
||||
int best = -1;
|
||||
|
||||
for (String universe : universes)
|
||||
{
|
||||
int count = getUniverseFactionCount(universe);
|
||||
if (count > 0 && count > best)
|
||||
{
|
||||
ret = universe;
|
||||
best = count;
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static int getUniverseFactionCount(String universe)
|
||||
{
|
||||
Coll<Object> coll = new Coll<Object>("factions_faction@"+universe, Object.class, MStore.getDb(), Factions.get());
|
||||
|
||||
Collection<String> ids = MStore.getDb().getDriver().getIds(coll);
|
||||
|
||||
return ids.size();
|
||||
}
|
||||
|
||||
public static List<String> getUniverses()
|
||||
{
|
||||
List<String> ret = new ArrayList<String>();
|
||||
|
||||
for (String collname : MStore.getDb().getCollnames())
|
||||
{
|
||||
for (String prefix : oldCollnamePrefixes)
|
||||
{
|
||||
if (collname.startsWith(prefix))
|
||||
{
|
||||
ret.add(collname.substring(prefix.length()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user