|
|
|
@ -53,11 +53,14 @@ public class DestroyCityThread implements Runnable {
@@ -53,11 +53,14 @@ public class DestroyCityThread implements Runnable {
|
|
|
|
|
|
|
|
|
|
// Member variable assignment
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
cityZone = city.getParent(); |
|
|
|
|
newParent = cityZone.parent; |
|
|
|
|
formerGuild = city.getTOL().getGuild(); |
|
|
|
|
|
|
|
|
|
// Former guild loses it's tree!
|
|
|
|
|
Logger.info("Destroy city thread started for: " + cityZone.zoneName); |
|
|
|
|
|
|
|
|
|
// Former guild loses tree!
|
|
|
|
|
|
|
|
|
|
if (DbManager.GuildQueries.SET_GUILD_OWNED_CITY(formerGuild.getObjectUUID(), 0)) { |
|
|
|
|
|
|
|
|
@ -83,10 +86,10 @@ public class DestroyCityThread implements Runnable {
@@ -83,10 +86,10 @@ public class DestroyCityThread implements Runnable {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Building tol = null; |
|
|
|
|
|
|
|
|
|
// Build list of buildings within this parent zone
|
|
|
|
|
|
|
|
|
|
ArrayList<Building> destroySet = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
for (Building cityBuilding : cityZone.zoneBuildingSet) { |
|
|
|
|
|
|
|
|
|
// Sanity Check in case player deletes the building
|
|
|
|
@ -100,13 +103,6 @@ public class DestroyCityThread implements Runnable {
@@ -100,13 +103,6 @@ public class DestroyCityThread implements Runnable {
|
|
|
|
|
if (cityBuilding.getBlueprint().getBuildingGroup().equals(mbEnums.BuildingGroup.BANESTONE)) |
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
// TOL is processed after all other structures in the city zone
|
|
|
|
|
|
|
|
|
|
if (cityBuilding.getBlueprint().getBuildingGroup().equals(mbEnums.BuildingGroup.TOL)) { |
|
|
|
|
tol = cityBuilding; |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// All buildings are moved to a location relative
|
|
|
|
|
// to their new parent zone
|
|
|
|
|
|
|
|
|
@ -132,33 +128,27 @@ public class DestroyCityThread implements Runnable {
@@ -132,33 +128,27 @@ public class DestroyCityThread implements Runnable {
|
|
|
|
|
city.warehouse = null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Destroy all remaining city assets
|
|
|
|
|
// Mark all auto protected buildings for destruction
|
|
|
|
|
|
|
|
|
|
if ((cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.BARRACK) |
|
|
|
|
|| (cityBuilding.getBlueprint().isWallPiece()) |
|
|
|
|
|| (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.SHRINE) |
|
|
|
|
|| (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.TOL) |
|
|
|
|
|| (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.SPIRE) |
|
|
|
|
|| (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.WAREHOUSE)) { |
|
|
|
|
|
|
|
|
|
if (cityBuilding.getRank() != -1) |
|
|
|
|
BuildingManager.setRank(cityBuilding, -1); |
|
|
|
|
} |
|
|
|
|
if ((cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.BARRACK) || (cityBuilding.getBlueprint().isWallPiece()) || (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.SHRINE) || (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.TOL) || (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.SPIRE) || (cityBuilding.getBlueprint().getBuildingGroup() == mbEnums.BuildingGroup.WAREHOUSE)) |
|
|
|
|
destroySet.add(cityBuilding); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Destroy the tol
|
|
|
|
|
// Destroy set of auto-protected buildings
|
|
|
|
|
|
|
|
|
|
if (tol != null) |
|
|
|
|
BuildingManager.setRank(tol, -1); |
|
|
|
|
for (Building building : destroySet) |
|
|
|
|
if (building.getRank() != -1) |
|
|
|
|
BuildingManager.setRank(building, -1); |
|
|
|
|
|
|
|
|
|
if (city.realm != null) |
|
|
|
|
if (city.realm != null) { |
|
|
|
|
city.realm.removeCity(city.getObjectUUID()); |
|
|
|
|
city.realm = null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// It's now safe to delete the city zone from the database
|
|
|
|
|
// which will cause a cascade delete of everything else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (DbManager.ZoneQueries.DELETE_ZONE(cityZone) == false) { |
|
|
|
|
if (!DbManager.ZoneQueries.DELETE_ZONE(cityZone)) { |
|
|
|
|
Logger.error("DestroyCityThread", "Database error when deleting city zone: " + cityZone.getObjectUUID()); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -167,9 +157,13 @@ public class DestroyCityThread implements Runnable {
@@ -167,9 +157,13 @@ public class DestroyCityThread implements Runnable {
|
|
|
|
|
|
|
|
|
|
City.lastCityUpdate = System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
Logger.error(e); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Zone and city should vanish upon next reboot
|
|
|
|
|
// if the codebase reaches here.
|
|
|
|
|
|
|
|
|
|
Logger.info(city.getParent().zoneName + " uuid:" + city.getObjectUUID() + "has been destroyed!"); |
|
|
|
|
Logger.info(city.getParent().zoneName + " uuid: " + city.getObjectUUID() + " has been destroyed!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|