Browse Source

Realmmap loaded from config to assist with custom maps.

master
MagicBot 1 year ago
parent
commit
61e4a4aed4
  1. 2
      src/engine/gameManager/ConfigManager.java
  2. 3
      src/engine/net/client/msg/WorldRealmMsg.java
  3. 73
      src/engine/server/world/WorldServer.java

2
src/engine/gameManager/ConfigManager.java

@ -57,6 +57,8 @@ public enum ConfigManager {
MB_WORLD_NAME, MB_WORLD_NAME,
MB_WORLD_MAPID, MB_WORLD_MAPID,
MB_WORLD_REALMMAP,
MB_WORLD_PORT, MB_WORLD_PORT,
MB_WORLD_ACCESS_LVL, MB_WORLD_ACCESS_LVL,
MB_WORLD_WAREHOUSE_PUSH, MB_WORLD_WAREHOUSE_PUSH,

3
src/engine/net/client/msg/WorldRealmMsg.java

@ -26,6 +26,7 @@ import engine.net.ByteBufferReader;
import engine.net.ByteBufferWriter; import engine.net.ByteBufferWriter;
import engine.net.client.Protocol; import engine.net.client.Protocol;
import engine.objects.Realm; import engine.objects.Realm;
import engine.server.world.WorldServer;
public class WorldRealmMsg extends ClientNetMsg { public class WorldRealmMsg extends ClientNetMsg {
@ -74,7 +75,7 @@ public class WorldRealmMsg extends ClientNetMsg {
realm.serializeForClientMsg(writer); realm.serializeForClientMsg(writer);
writer.putInt(0x0); writer.putInt(0x0);
writer.putInt(3000000); writer.putInt(WorldServer.worldRealmMap);
} }

73
src/engine/server/world/WorldServer.java

@ -7,7 +7,6 @@
// www.magicbane.com // www.magicbane.com
package engine.server.world; package engine.server.world;
import engine.Enum; import engine.Enum;
@ -69,6 +68,8 @@ import static java.lang.System.exit;
public class WorldServer { public class WorldServer {
public static int worldMapID = Integer.parseInt(ConfigManager.MB_WORLD_MAPID.getValue()); public static int worldMapID = Integer.parseInt(ConfigManager.MB_WORLD_MAPID.getValue());
public static int worldRealmMap = Integer.parseInt(ConfigManager.MB_WORLD_REALMMAP.getValue());
public static int worldUUID = 1; // Root object in database public static int worldUUID = 1; // Root object in database
public static Enum.AccountStatus worldAccessLevel = Enum.AccountStatus.valueOf(ConfigManager.MB_WORLD_ACCESS_LVL.getValue()); public static Enum.AccountStatus worldAccessLevel = Enum.AccountStatus.valueOf(ConfigManager.MB_WORLD_ACCESS_LVL.getValue());
private static LocalDateTime bootTime = LocalDateTime.now(); private static LocalDateTime bootTime = LocalDateTime.now();
@ -152,11 +153,8 @@ public class WorldServer {
DispatchMessage.dispatchMsgDispatch(dispatch, Enum.DispatchChannel.SECONDARY); DispatchMessage.dispatchMsgDispatch(dispatch, Enum.DispatchChannel.SECONDARY);
} }
public static void shutdown() {
exit(1);
}
public static String getUptimeString() { public static String getUptimeString() {
String outString = null; String outString = null;
java.time.Duration uptimeDuration; java.time.Duration uptimeDuration;
String newLine = System.getProperty("line.separator"); String newLine = System.getProperty("line.separator");
@ -174,13 +172,35 @@ public class WorldServer {
return outString; return outString;
} }
public static void writePopulationFile() {
int population = SessionManager.getActivePlayerCharacterCount();
try {
File populationFile = new File(MBServerStatics.DEFAULT_DATA_DIR + ConfigManager.MB_WORLD_NAME.getValue().replaceAll("'", "") + ".pop");
FileWriter fileWriter;
try {
fileWriter = new FileWriter(populationFile, false);
fileWriter.write(Integer.toString(population));
fileWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
} catch (Exception e) {
Logger.error(e);
}
}
private int exec() { private int exec() {
LocalDateTime nextHeartbeatTime = LocalDateTime.now(); LocalDateTime nextHeartbeatTime = LocalDateTime.now();
LocalDateTime nextPopulationFileTime = LocalDateTime.now(); LocalDateTime nextPopulationFileTime = LocalDateTime.now();
LocalDateTime nextFlashTrashCheckTime = LocalDateTime.now(); LocalDateTime nextFlashTrashCheckTime = LocalDateTime.now();
LocalDateTime nextHourlyJobTime = LocalDateTime.now().withMinute(0).withSecond(0).plusHours(1); LocalDateTime nextHourlyJobTime = LocalDateTime.now().withMinute(0).withSecond(0).plusHours(1);
LocalDateTime nextWareHousePushTime = LocalDateTime.now();; LocalDateTime nextWareHousePushTime = LocalDateTime.now();
// Begin execution of main game loop // Begin execution of main game loop
@ -263,7 +283,6 @@ public class WorldServer {
Guild.getErrantGuild(); Guild.getErrantGuild();
Logger.info("Initializing PowersManager."); Logger.info("Initializing PowersManager.");
// activate powers manager
PowersManager.initPowersManager(true); PowersManager.initPowersManager(true);
Logger.info("Initializing granted Skills for Runes"); Logger.info("Initializing granted Skills for Runes");
@ -278,7 +297,6 @@ public class WorldServer {
Logger.info("Initializing MeshBounds"); Logger.info("Initializing MeshBounds");
MeshBounds.InitializeBuildingBounds(); MeshBounds.InitializeBuildingBounds();
// Load ItemBases
Logger.info("Loading ItemBases"); Logger.info("Loading ItemBases");
ItemBase.loadAllItemBases(); ItemBase.loadAllItemBases();
@ -294,6 +312,7 @@ public class WorldServer {
// Load new loot system // Load new loot system
Logger.info("Loading New Loot Tables"); Logger.info("Loading New Loot Tables");
LootManager.loadLootData(); LootManager.loadLootData();
//load old loot system (still needed for rolling for now) //load old loot system (still needed for rolling for now)
LootTable.populateLootTables(); LootTable.populateLootTables();
RuneBaseAttribute.LoadAllAttributes(); RuneBaseAttribute.LoadAllAttributes();
@ -307,7 +326,6 @@ public class WorldServer {
Logger.info("Loading Mob Powers for MobBases"); Logger.info("Loading Mob Powers for MobBases");
PowersManager.LoadAllMobPowers(); PowersManager.LoadAllMobPowers();
//load item enchantment values
Logger.info("Loading item enchants"); Logger.info("Loading item enchants");
DbManager.LootQueries.LOAD_ENCHANT_VALUES(); DbManager.LootQueries.LOAD_ENCHANT_VALUES();
@ -364,18 +382,14 @@ public class WorldServer {
SupportMsgType.InitializeSupportMsgType(); SupportMsgType.InitializeSupportMsgType();
//Load Buildings, Mobs and NPCs for server //Load Buildings, Mobs and NPCs for server
getWorldBuildingsMobsNPCs(); getWorldBuildingsMobsNPCs();
// Configure realms for serialization // Configure realms for serialization
// Doing this after the world is loaded // Doing this after the world is loaded
Logger.info("Configuring realm serialization data"); Logger.info("Configuring realm serialization data");
try{
Realm.configureAllRealms(); Realm.configureAllRealms();
}catch(Exception e){
Logger.error( e.getMessage());
}
Logger.info("Loading Mine data."); Logger.info("Loading Mine data.");
Mine.loadAllMines(); Mine.loadAllMines();
@ -400,6 +414,7 @@ public class WorldServer {
Logger.info("Loading All Players from database to Server Cache"); Logger.info("Loading All Players from database to Server Cache");
long start = System.currentTimeMillis(); long start = System.currentTimeMillis();
try { try {
DbManager.PlayerCharacterQueries.GET_ALL_CHARACTERS(); DbManager.PlayerCharacterQueries.GET_ALL_CHARACTERS();
} catch (Exception e) { } catch (Exception e) {
@ -407,6 +422,7 @@ public class WorldServer {
} }
long end = System.currentTimeMillis(); long end = System.currentTimeMillis();
Logger.info("Loading All Players took " + (end - start) + " ms."); Logger.info("Loading All Players took " + (end - start) + " ms.");
ItemProductionManager.ITEMPRODUCTIONMANAGER.initialize(); ItemProductionManager.ITEMPRODUCTIONMANAGER.initialize();
@ -444,17 +460,19 @@ public class WorldServer {
DispatchMessage.startMessagePump(); DispatchMessage.startMessagePump();
// Run maintenance // Run maintenance
MaintenanceManager.dailyMaintenance(); MaintenanceManager.dailyMaintenance();
// Disabled but kept in case of emergency
Logger.info("Starting Orphan Item Purge"); Logger.info("Starting Orphan Item Purge");
PurgeOprhans.startPurgeThread(); PurgeOprhans.startPurgeThread();
// Open/Close mines for the current window // Open/Close mines for the current window
Logger.info("Processing mine window."); Logger.info("Processing mine window.");
HourlyJobThread.processMineWindow(); HourlyJobThread.processMineWindow();
// Calculate bootstrap time and rest boot time to current time. // Calculate bootstrap time and rest boot time to current time.
java.time.Duration bootDuration = java.time.Duration.between(LocalDateTime.now(), bootTime); java.time.Duration bootDuration = java.time.Duration.between(LocalDateTime.now(), bootTime);
long bootSeconds = Math.abs(bootDuration.getSeconds()); long bootSeconds = Math.abs(bootDuration.getSeconds());
String boottime = String.format("%d hours %02d minutes %02d seconds", bootSeconds / 3600, (bootSeconds % 3600) / 60, (bootSeconds % 60)); String boottime = String.format("%d hours %02d minutes %02d seconds", bootSeconds / 3600, (bootSeconds % 3600) / 60, (bootSeconds % 60));
@ -467,6 +485,7 @@ public class WorldServer {
System.gc(); System.gc();
return true; return true;
} }
protected boolean initDatabaselayer() { protected boolean initDatabaselayer() {
// Try starting a GOM <-> DB connection. // Try starting a GOM <-> DB connection.
@ -493,7 +512,6 @@ public class WorldServer {
return true; return true;
} }
private void getWorldBuildingsMobsNPCs() { private void getWorldBuildingsMobsNPCs() {
ArrayList<Zone> rootParent; ArrayList<Zone> rootParent;
@ -702,29 +720,6 @@ public class WorldServer {
} }
} }
public static void writePopulationFile() {
int population = SessionManager.getActivePlayerCharacterCount();
try {
File populationFile = new File(MBServerStatics.DEFAULT_DATA_DIR + ConfigManager.MB_WORLD_NAME.getValue().replaceAll("'","") + ".pop");
FileWriter fileWriter;
try {
fileWriter = new FileWriter(populationFile, false);
fileWriter.write(Integer.toString(population));
fileWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
}catch(Exception e){
Logger.error(e);
}
}
private void processTrashFile() { private void processTrashFile() {
ArrayList<String> machineList; ArrayList<String> machineList;

Loading…
Cancel
Save