public static Location getRestartLocation(Player player, Location from, RestartType restartType) { Reflection r = player.getReflection(); if (r != ReflectionManager.DEFAULT) if (r.getCoreLoc() != null) return r.getCoreLoc(); else if (r.getReturnLoc() != null) return r.getReturnLoc(); Clan clan = player.getClan(); if (clan != null) { // If teleport to clan hall if (restartType == RestartType.TO_CLANHALL && clan.getHasHideout() != 0) return ResidenceHolder.getInstance() .getResidence(clan.getHasHideout()) .getOwnerRestartPoint(); // If teleport to castle if (restartType == RestartType.TO_CASTLE && clan.getCastle() != 0) return ResidenceHolder.getInstance().getResidence(clan.getCastle()).getOwnerRestartPoint(); // If teleport to fortress if (restartType == RestartType.TO_FORTRESS && clan.getHasFortress() != 0) return ResidenceHolder.getInstance() .getResidence(clan.getHasFortress()) .getOwnerRestartPoint(); } if (player.isPK()) { if (player.getPKRestartPoint() != null) return player.getPKRestartPoint(); } else { if (player.getRestartPoint() != null) return player.getRestartPoint(); } RestartArea ra = MapRegionManager.getInstance().getRegionData(RestartArea.class, from); if (ra != null) { RestartPoint rp = ra.getRestartPoint().get(player.getRace()); Location restartPoint = Rnd.get(rp.getRestartPoints()); Location PKrestartPoint = Rnd.get(rp.getPKrestartPoints()); return player.isPK() ? PKrestartPoint : restartPoint; } _log.warn("Cannot find restart location from coordinates: " + from + "!"); return DEFAULT_RESTART; }
@SuppressWarnings("unchecked") public GameServer() throws Exception { _instance = this; _serverStarted = time(); _listeners = new GameServerListenerList(); new File("./log/").mkdir(); version = new Version(GameServer.class); _log.info("================================================="); _log.info("Project Revision: ........ " + PROJECT_REVISION); _log.info("Build Revision: .......... " + version.getRevisionNumber()); _log.info("Update: .................. " + UPDATE_NAME); _log.info("Build date: .............. " + version.getBuildDate()); _log.info("Compiler version: ........ " + version.getBuildJdk()); _log.info("================================================="); Clients.Load(); // Initialize config Config.load(); // Check binding address checkFreePorts(); // Initialize database Class.forName(Config.DATABASE_DRIVER).newInstance(); DatabaseFactory.getInstance().getConnection().close(); IdFactory _idFactory = IdFactory.getInstance(); if (!_idFactory.isInitialized()) { _log.error("Could not read object IDs from DB. Please Check Your Data."); throw new Exception("Could not initialize the ID factory"); } CacheManager.getInstance(); ThreadPoolManager.getInstance(); LfcDAO.LoadArenas(); LfcStatisticDAO.LoadGlobalStatistics(); LfcStatisticDAO.LoadLocalStatistics(); CustomStatsDAO.LoadCustomValues(); PremiumAccountRatesHolder.loadLists(); BotCheckManager.loadBotQuestions(); FreePremiumAccountsDao.LoadTable(); HidenItemsDAO.LoadAllHiddenItems(); CustomHeroDAO.getInstance(); HWIDBan.getInstance().load(); Scripts.getInstance(); GeoEngine.load(); Strings.reload(); GameTimeController.getInstance(); World.init(); Parsers.parseAll(); ItemsDAO.getInstance(); CrestCache.getInstance(); ImagesCache.getInstance(); CharacterDAO.getInstance(); ClanTable.getInstance(); DailyQuestsManager.EngageSystem(); // FakePlayersTable.getInstance(); SkillTreeTable.getInstance(); SubClassTable.getInstance(); EnchantHPBonusTable.getInstance(); PetSkillsTable.getInstance(); ItemAuctionManager.getInstance(); SpawnManager.getInstance().spawnAll(); FakePlayersSpawnManager.getInstance().spawnAll(); StaticObjectHolder.getInstance().spawnAll(); RaidBossSpawnManager.getInstance(); Scripts.getInstance().init(); ItemHolder.getInstance().initItems(); DimensionalRiftManager.getInstance(); Announcements.getInstance(); LotteryManager.getInstance(); PlayerMessageStack.getInstance(); if (Config.AUTODESTROY_ITEM_AFTER > 0) ItemsAutoDestroy.getInstance(); MonsterRace.getInstance(); if (Config.ENABLE_OLYMPIAD) { Olympiad.load(); Hero.getInstance(); } PetitionManager.getInstance(); CursedWeaponsManager.getInstance(); if (Config.ALLOW_WEDDING) { CoupleManager.getInstance(); } ItemHandler.getInstance(); AdminCommandHandler.getInstance().log(); UserCommandHandler.getInstance().log(); VoicedCommandHandler.getInstance().log(); TaskManager.getInstance(); _log.info("=[Events]========================================="); ResidenceHolder.getInstance().callInit(); EventHolder.getInstance().callInit(); _log.info("=================================================="); BoatHolder.getInstance().spawnAll(); CastleManorManager.getInstance(); Runtime.getRuntime().addShutdownHook(Shutdown.getInstance()); _log.info("IdFactory: Free ObjectID's remaining: " + IdFactory.getInstance().size()); if (Config.ALT_FISH_CHAMPIONSHIP_ENABLED) FishingChampionShipManager.getInstance(); HellboundManager.getInstance(); NaiaTowerManager.getInstance(); NaiaCoreManager.getInstance(); SoDManager.getInstance(); SoIManager.getInstance(); SoHManager.getInstance(); MiniGameScoreManager.getInstance(); CommissionManager.getInstance().init(); WorldStatisticsManager.getInstance(); ArcanManager.getInstance(); ToIManager.getInstance(); ParnassusManager.getInstance(); BaltusManager.getInstance(); Shutdown.getInstance().schedule(Config.RESTART_AT_TIME, Shutdown.RESTART); /* CCP Guard START ccpGuard.Protection.Init(); ** CCP Guard END*/ _log.info("GameServer Started"); _log.info("Maximum Numbers of Connected Players: " + Config.MAXIMUM_ONLINE_USERS); GamePacketHandler gph = new GamePacketHandler(); InetAddress serverAddr = Config.GAMESERVER_HOSTNAME.equalsIgnoreCase("*") ? null : InetAddress.getByName(Config.GAMESERVER_HOSTNAME); _selectorThreads = new ArrayList<SelectorThread<GameClient>>(Config.PORTS_GAME.length); for (int i = 0; i < Config.PORTS_GAME.length; i++) { SelectorThread<GameClient> selectorThread = new SelectorThread<GameClient>(Config.SELECTOR_CONFIG, gph, gph, gph, null); selectorThread.openServerSocket(serverAddr, Config.PORTS_GAME[i]); selectorThread.start(); _selectorThreads.add(i, selectorThread); } AuthServerCommunication.getInstance().start(); if (Config.SERVICES_OFFLINE_TRADE_RESTORE_AFTER_RESTART) ThreadPoolManager.getInstance().schedule(new RestoreOfflineTraders(), 30000L); if (Config.ONLINE_GENERATOR_ENABLED) ThreadPoolManager.getInstance() .scheduleAtFixedRate( new OnlineTxtGenerator(), 5000L, Config.ONLINE_GENERATOR_DELAY * 60 * 1000L); getListeners().onStart(); if (Config.IS_TELNET_ENABLED) statusServer = new TelnetServer(); else _log.info("Telnet server is currently disabled."); _log.info("================================================="); String memUsage = new StringBuilder().append(StatsUtils.getMemUsage()).toString(); for (String line : memUsage.split("\n")) _log.info(line); _log.info("================================================="); }