/*
* This file is part of Skript.
*
* Skript 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.
*
* Skript 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 Skript. If not, see <http://www.gnu.org/licenses/>.
*
*
* Copyright 2011-2014 Peter Güttinger
*
*/
package ch.njol.skript.entity;
import org.bukkit.entity.Creeper;
import org.eclipse.jdt.annotation.Nullable;
import ch.njol.skript.lang.Literal;
import ch.njol.skript.lang.SkriptParser.ParseResult;
/**
* @author Peter Güttinger
*/
public class CreeperData extends EntityData<Creeper> {
static {
EntityData.register(CreeperData.class, "creeper", Creeper.class, 1, "unpowered creeper", "creeper", "powered creeper");
}
private int powered = 0;
@Override
protected boolean init(final Literal<?>[] exprs, final int matchedPattern, final ParseResult parseResult) {
powered = matchedPattern - 1;
return true;
}
@Override
protected boolean init(final @Nullable Class<? extends Creeper> c, final @Nullable Creeper e) {
powered = e == null ? 0 : e.isPowered() ? 1 : -1;
return true;
}
@Override
public void set(final Creeper c) {
if (powered != 0)
c.setPowered(powered == 1);
}
@Override
public boolean match(final Creeper entity) {
return powered == 0 || entity.isPowered() == (powered == 1);
}
@Override
public Class<Creeper> getType() {
return Creeper.class;
}
@Override
protected int hashCode_i() {
return powered;
}
@Override
protected boolean equals_i(final EntityData<?> obj) {
if (!(obj instanceof CreeperData))
return false;
final CreeperData other = (CreeperData) obj;
return powered == other.powered;
}
// return "" + powered;
@Override
protected boolean deserialize(final String s) {
try {
powered = Integer.parseInt(s);
return true;
} catch (final NumberFormatException e) {
return false;
}
}
@Override
public boolean isSupertypeOf(final EntityData<?> e) {
if (e instanceof CreeperData)
return powered == 0 || ((CreeperData) e).powered == powered;
return false;
}
@Override
public EntityData getSuperType() {
return new CreeperData();
}
}