/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 Patrick Huy Matthias Butz Jan Christian Meyer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package net.server.handlers.login; import client.MapleClient; import net.AbstractMaplePacketHandler; import net.server.Server; import net.server.coordinator.session.Hwid; import net.server.coordinator.session.SessionCoordinator; import net.server.coordinator.session.SessionCoordinator.AntiMulticlientResult; import net.server.world.World; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import tools.PacketCreator; import tools.data.input.SeekableLittleEndianAccessor; import java.net.InetAddress; import java.net.UnknownHostException; public final class CharSelectedHandler extends AbstractMaplePacketHandler { private static final Logger log = LoggerFactory.getLogger(CharSelectedHandler.class); private static int parseAntiMulticlientError(AntiMulticlientResult res) { return switch (res) { case REMOTE_PROCESSING -> 10; case REMOTE_LOGGEDIN -> 7; case REMOTE_NO_MATCH -> 17; case COORDINATOR_ERROR -> 8; default -> 9; }; } @Override public final void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) { int charId = slea.readInt(); String macs = slea.readMapleAsciiString(); String hostString = slea.readMapleAsciiString(); final Hwid hwid; try { hwid = Hwid.fromHostString(hostString); } catch (IllegalArgumentException e) { log.warn("Invalid host string: {}", hostString, e); c.sendPacket(PacketCreator.getAfterLoginError(17)); return; } c.updateMacs(macs); c.updateHwid(hwid); AntiMulticlientResult res = SessionCoordinator.getInstance().attemptGameSession(c, c.getAccID(), hwid); if (res != AntiMulticlientResult.SUCCESS) { c.sendPacket(PacketCreator.getAfterLoginError(parseAntiMulticlientError(res))); return; } if (c.hasBannedMac() || c.hasBannedHWID()) { SessionCoordinator.getInstance().closeSession(c, true); return; } Server server = Server.getInstance(); if(!server.haveCharacterEntry(c.getAccID(), charId)) { SessionCoordinator.getInstance().closeSession(c, true); return; } c.setWorld(server.getCharacterWorld(charId)); World wserv = c.getWorldServer(); if(wserv == null || wserv.isWorldCapacityFull()) { c.sendPacket(PacketCreator.getAfterLoginError(10)); return; } String[] socket = server.getInetSocket(c, c.getWorld(), c.getChannel()); if(socket == null) { c.sendPacket(PacketCreator.getAfterLoginError(10)); return; } server.unregisterLoginState(c); c.setCharacterOnSessionTransitionState(charId); try { c.sendPacket(PacketCreator.getServerIP(InetAddress.getByName(socket[0]), Integer.parseInt(socket[1]), charId)); } catch (UnknownHostException | NumberFormatException e) { e.printStackTrace(); } } }