/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 ~ 2010 Patrick Huy <patrick.huy@frz.cc> Matthias Butz <matze@odinms.de> Jan Christian Meyer <vimes@odinms.de> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License 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 <http://www.gnu.org/licenses/>. */ package handling.login; import client.MapleClient; import handling.channel.ChannelServer; import java.util.Map; import java.util.Map.Entry; import server.Timer.PingTimer; import tools.packet.CWvsContext; import tools.packet.LoginPacket; public class LoginWorker { private static long lastUpdate = 0; public static void registerClient(final MapleClient c) { if (LoginServer.isAdminOnly() && !c.isGm()/* && !c.isLocalhost()*/) { c.getSession().write(CWvsContext.broadcastMsg(1, "We are currently set to closed Alpha.\r\nYou don't seem to have tester privileges.\r\nPlease try again later.\r\nWhen the public beta goes live.")); c.getSession().write(LoginPacket.getLoginFailed(7)); return; } if (System.currentTimeMillis() - lastUpdate > 600000) { // Update once every 10 minutes lastUpdate = System.currentTimeMillis(); final Map<Integer, Integer> load = ChannelServer.getChannelLoad(); int usersOn = 0; if (load == null || load.size() <= 0) { // In an unfortunate event that client logged in before load lastUpdate = 0; c.getSession().write(LoginPacket.getLoginFailed(7)); return; } final double loadFactor = 1200 / ((double) LoginServer.getUserLimit() / load.size()); for (Entry<Integer, Integer> entry : load.entrySet()) { usersOn += entry.getValue(); load.put(entry.getKey(), Math.min(1200, (int) (entry.getValue() * loadFactor))); } LoginServer.setLoad(load, usersOn); lastUpdate = System.currentTimeMillis(); } if (c.finishLogin() == 0) { c.getSession().write(LoginPacket.getAuthSuccessRequest(c)); //start temp fix //CharLoginHandler.ServerStatusRequest(c); //c.setWorld(0); //c.setChannel(Randomizer.nextInt(ChannelServer.getAllInstances().size()) + 1); //c.getSession().write(LoginPacket.getCharList(c.getSecondPassword() != null, c.loadCharacters(0), c.getCharacterSlots())); //end temp fix c.setIdleTask(PingTimer.getInstance().schedule(new Runnable() { @Override public void run() { c.getSession().close(); } }, 10 * 60 * 10000)); } else { c.getSession().write(LoginPacket.getLoginFailed(7)); } } }