/* $Id: PlayerIsWearingOutfitCondition.java,v 1.2 2011/05/01 19:50:05 martinfuchs 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.entity.npc.condition;
import games.stendhal.common.parser.Sentence;
import games.stendhal.server.entity.Entity;
import games.stendhal.server.entity.Outfit;
import games.stendhal.server.entity.npc.ChatCondition;
import games.stendhal.server.entity.player.Player;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
/**
*
* @author jackrabbit
*
* Does the player wear (at least a part of) the specified outfit?
*/
public class PlayerIsWearingOutfitCondition implements ChatCondition{
private final Outfit outfit_to_check;
/**
* Creates a new PlayerIsWearingOutfitCondition
*
* @param outfit
* an outfit to be checked if it is worn by the player
*/
public PlayerIsWearingOutfitCondition(Outfit outfit) {
this.outfit_to_check = outfit;
}
public boolean fire(final Player player, final Sentence sentence, final Entity npc) {
final Outfit players_outfit = player.getOutfit();
return this.outfit_to_check.isPartOf(players_outfit);
}
public String toString() {
return "Player is wearing " + this.outfit_to_check.getCode() + " ?";
}
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
public boolean equals(final Object obj) {
return EqualsBuilder.reflectionEquals(this, obj, false,
PlayerIsWearingOutfitCondition.class);
}
}