/** Cleans snapshots of entries over 60 seconds old (executed every second) */ public void cleanSnapshotDeque() { long curTime = GameEngine.getTimestamp(); // We need to compare // timestamps if (curTime - lastCleanedChatlogs > 1000) { // Every second lastCleanedChatlogs = curTime; lastCleanedChatlogsOutput++; if (lastCleanedChatlogsOutput > 60 * 5) { Logger.println("----------------------------------------------"); Logger.println(world.getSnapshots().size() + " items on deque"); } Iterator<Snapshot> i = world.getSnapshots().descendingIterator(); Snapshot s = null; while (i.hasNext()) { s = i.next(); if (curTime - s.getTimestamp() > 60000) { i.remove(); s = null; } else { s = null; } } i = null; if (lastCleanedChatlogsOutput > 60 * 5) { Logger.println(world.getSnapshots().size() + " items on deque AFTER CLEANUP"); Logger.println("----------------------------------------------"); lastCleanedChatlogsOutput = 0; } } }
public void emptyWorld() { for (Player p : world.getPlayers()) { p.save(); p.getActionSender().sendLogout(); } Instance.getServer().getLoginConnector().getActionSender().saveProfiles(); }
@SuppressWarnings("unchecked") public void loadWorld(World world) { try { tileArchive = new ZipFile(new File(Config.CONF_DIR, "data/Landscape.rscd")); // out = new ZipOutputStream(new FileOutputStream(new // File(Config.CONF_DIR, "data/new_Landscape.rscd"))); // out.setLevel(9); } catch (Exception e) { Logger.error(e); } long now = System.currentTimeMillis(); for (int lvl = 0; lvl < 4; lvl++) { int wildX = 2304; int wildY = 1776 - (lvl * 944); for (int sx = 0; sx < 1000; sx += 48) { for (int sy = 0; sy < 1000; sy += 48) { int x = (sx + wildX) / 48; int y = (sy + (lvl * 944) + wildY) / 48; loadSection(x, y, lvl, world, sx, sy + (944 * lvl)); } } } System.out.println((System.currentTimeMillis() - now) / 1000 + "s to parse"); // try { out.close(); } catch(Exception e) { Logger.error(e); } for (Shop shop : (List<Shop>) PersistenceManager.load("locs/Shops.xml.gz")) { world.registerShop(shop); } System.gc(); }
@SuppressWarnings("unchecked") public void loadObjects() { World world = Instance.getWorld(); for (GameObjectLoc gameObject : (List<GameObjectLoc>) PersistenceManager.load("locs/GameObjectLoc.xml.gz")) { if (Constants.GameServer.F2P_WILDY && Formulae.isP2P(true, gameObject)) continue; if (Formulae.isP2P(gameObject) && !World.isMembers()) continue; world.registerGameObject(new GameObject(gameObject)); } for (ItemLoc item : (List<ItemLoc>) PersistenceManager.load("locs/ItemLoc.xml.gz")) { if (Constants.GameServer.F2P_WILDY && Formulae.isP2P(true, item)) continue; if (Formulae.isP2P(item) && !World.isMembers()) continue; world.registerItem(new Item(item)); } // ember for (NPCLoc npc : (List<NPCLoc>) PersistenceManager.load("locs/NpcLoc.xml.gz")) { if (Constants.GameServer.F2P_WILDY && Formulae.isP2P(true, npc)) continue; if (Formulae.isP2P(npc) && !World.isMembers()) continue; world.registerNpc(new Npc(npc)); } }
private void loadSection( int sectionX, int sectionY, int height, World world, int bigX, int bigY) { // System.out.println(1); Sector s = null; try { String filename = "h" + height + "x" + sectionX + "y" + sectionY; ZipEntry e = tileArchive.getEntry(filename); if (e == null) { throw new Exception("Missing tile: " + filename); } ByteBuffer data = DataConversions.streamToBuffer(new BufferedInputStream(tileArchive.getInputStream(e))); s = Sector.unpack(data); // s = modifyAndSave(filename, s, bigX, bigY); } catch (Exception e) { Logger.error(e); } // System.out.println(2); for (int y = 0; y < Sector.HEIGHT; y++) { for (int x = 0; x < Sector.WIDTH; x++) { int bx = bigX + x; int by = bigY + y; if (!world.withinWorld(bx, by)) { continue; } world.getTileValue(bx, by).overlay = s.getTile(x, y).groundOverlay; world.getTileValue(bx, by).diagWallVal = s.getTile(x, y).diagonalWalls; world.getTileValue(bx, by).horizontalWallVal = s.getTile(x, y).horizontalWall; world.getTileValue(bx, by).verticalWallVal = s.getTile(x, y).verticalWall; world.getTileValue(bx, by).elevation = s.getTile(x, y).groundElevation; /** start of shit * */ if ((s.getTile(x, y).groundOverlay & 0xff) == 250) { s.getTile(x, y).groundOverlay = (byte) 2; } /** break in shit * */ int groundOverlay = s.getTile(x, y).groundOverlay & 0xFF; if (groundOverlay > 0 && EntityHandler.getTileDef(groundOverlay - 1).getObjectType() != 0) { world.getTileValue(bx, by).mapValue |= 0x40; // 64 } int verticalWall = s.getTile(x, y).verticalWall & 0xFF; if (verticalWall > 0 && EntityHandler.getDoorDef(verticalWall - 1).getUnknown() == 0 && EntityHandler.getDoorDef(verticalWall - 1).getDoorType() != 0) { world.getTileValue(bx, by).mapValue |= 1; // 1 world.getTileValue(bx, by - 1).mapValue |= 4; // 4 } int horizontalWall = s.getTile(x, y).horizontalWall & 0xFF; if (horizontalWall > 0 && EntityHandler.getDoorDef(horizontalWall - 1).getUnknown() == 0 && EntityHandler.getDoorDef(horizontalWall - 1).getDoorType() != 0) { world.getTileValue(bx, by).mapValue |= 2; // 2 world.getTileValue(bx - 1, by).mapValue |= 8; // 8 } int diagonalWalls = s.getTile(x, y).diagonalWalls; if (diagonalWalls > 0 && diagonalWalls < 12000 && EntityHandler.getDoorDef(diagonalWalls - 1).getUnknown() == 0 && EntityHandler.getDoorDef(diagonalWalls - 1).getDoorType() != 0) { world.getTileValue(bx, by).mapValue |= 0x20; // 32 } if (diagonalWalls > 12000 && diagonalWalls < 24000 && EntityHandler.getDoorDef(diagonalWalls - 12001).getUnknown() == 0 && EntityHandler.getDoorDef(diagonalWalls - 12001).getDoorType() != 0) { world.getTileValue(bx, by).mapValue |= 0x10; // 16 } /** end of shit * */ } } // System.out.println(3); }