Package games.stendhal.server.actions.admin

Source Code of games.stendhal.server.actions.admin.CIDListAction

/* $Id: CIDListAction.java,v 1.4 2010/09/19 02:21:43 nhnb Exp $ */
/***************************************************************************
*                   (C) Copyright 2003-2010 - Stendhal                    *
***************************************************************************
***************************************************************************
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
***************************************************************************/
package games.stendhal.server.actions.admin;

import static games.stendhal.common.constants.Actions.CIDLIST;
import static games.stendhal.common.constants.Actions.TARGET;
import games.stendhal.server.actions.CIDSubmitAction;
import games.stendhal.server.actions.CommandCenter;
import games.stendhal.server.core.engine.GameEvent;
import games.stendhal.server.core.engine.SingletonRepository;
import games.stendhal.server.entity.player.Player;

import java.util.Map;

import marauroa.common.game.RPAction;

class CIDListAction extends AdministrationAction {

  public static void register() {
    CommandCenter.register(CIDLIST, new CIDListAction(), 5000);
  }

  @Override
  public void perform(final Player player, final RPAction action) {
   
    if (action.has(TARGET)) {

      final String inputName = action.get(TARGET);
      final Player target = SingletonRepository.getRuleProcessor().getPlayer(inputName);

      if (target == null) {
        player.sendPrivateText("Player \"" + inputName + "\" not found");
        return;
      }

      final Map<String, String> nameList = CIDSubmitAction.nameList;
      final Map<String, String> idList = CIDSubmitAction.idList;
     
      //Lets use a clean name instead of what ever the admin inputed
      String playerName = target.getName();
     
      if (nameList.containsKey(playerName)) {
        String tid = nameList.get(playerName);
        if (idList.containsKey(tid)) {
          String group = idList.get(tid);
          player.sendPrivateText("These players are on the same computer: " + group);
          new GameEvent(player.getName(), "cidlist", playerName, group).raise();
        }
      }
     
    } else {
      player.sendPrivateText("Player name required");
    }
   
  }

}
TOP

Related Classes of games.stendhal.server.actions.admin.CIDListAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.