private void processIncomingPackets() { for (RSCPacket p : packetQueue.getPackets()) { IoSession session = p.getSession(); Player player = (Player) session.getAttachment(); if (player.getUsername() == null && p.getID() != 32 && p.getID() != 77 && p.getID() != 0) { final String ip = player.getCurrentIP(); IPBanManager.throttle(ip); continue; } PacketHandler handler = packetHandlers.get(p.getID()); player.ping(); if (handler != null) { try { handler.handlePacket(p, session); try { if (p.getID() != 5) { // String s = "[PACKET] " + // session.getRemoteAddress().toString().replace("/", // "") + " : " + p.getID()+ // " ["+handler.getClass().toString()+"]" + " : "+ // player.getUsername() + " : "; // for(Byte b : p.getData()) // s += b; // Logger.println(s); } } catch (Exception e) { e.printStackTrace(); } } catch (Exception e) { String s; StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw, true); e.printStackTrace(pw); pw.flush(); sw.flush(); s = sw.toString(); Logger.error( "Exception with p[" + p.getID() + "] from " + player.getUsername() + " [" + player.getCurrentIP() + "]: " + s); player.getActionSender().sendLogout(); player.destroy(false); } } else { Logger.error( "Unhandled packet from " + player.getCurrentIP() + ": " + p.getID() + "len: " + p.getLength()); } } }
@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(); }
/** * Loads the packet handling classes from the persistence manager. * * @throws Exception */ protected void loadPacketHandlers() throws Exception { PacketHandlerDef[] handlerDefs = Instance.dataStore().loadPacketHandlerDefs(); for (PacketHandlerDef handlerDef : handlerDefs) { try { String className = handlerDef.getClassName(); Class<?> c = Class.forName(className); if (c != null) { PacketHandler handler = (PacketHandler) c.newInstance(); for (int packetID : handlerDef.getAssociatedPackets()) { packetHandlers.put(packetID, handler); } } } catch (Exception e) { Logger.error(e); } } }
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); }