/** * This file is part of aion-emu <aion-unique.com>. * * aion-emu 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 3 of the License, or * (at your option) any later version. * * aion-emu 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with aion-unique. If not, see <http://www.gnu.org/licenses/>. */ package com.aionemu.gameserver.network.aion.clientpackets; import org.apache.log4j.Logger; import com.aionemu.gameserver.model.gameobjects.player.DeniedStatus; import com.aionemu.gameserver.model.gameobjects.player.Player; import com.aionemu.gameserver.network.aion.AionClientPacket; import com.aionemu.gameserver.network.aion.serverpackets.SM_SYSTEM_MESSAGE; import com.aionemu.gameserver.network.aion.serverpackets.SM_VIEW_PLAYER_DETAILS; import com.aionemu.gameserver.world.World; import com.google.inject.Inject; /** * @author Avol * */ public class CM_VIEW_PLAYER_DETAILS extends AionClientPacket { private static final Logger log = Logger.getLogger(CM_VIEW_PLAYER_DETAILS.class); private int targetObjectId; @Inject private World world; public CM_VIEW_PLAYER_DETAILS(int opcode) { super(opcode); } /** * {@inheritDoc} */ @Override protected void readImpl() { targetObjectId = readD(); } /** * {@inheritDoc} */ @Override protected void runImpl() { Player player = world.findPlayer(targetObjectId); if(player == null) { //probably targetObjectId can be 0 log.warn("CHECKPOINT: can't show player details for " + targetObjectId); return; } if(player.getPlayerSettings().isInDeniedStatus(DeniedStatus.VEIW_DETAIL)) { sendPacket(SM_SYSTEM_MESSAGE.STR_MSG_REJECTED_WATCH(player.getName())); return; } sendPacket(new SM_VIEW_PLAYER_DETAILS(player.getEquipment().getEquippedItemsWithoutStigma())); } }