2010-11-27 03:33:28 +00:00
|
|
|
// $Id$
|
|
|
|
/*
|
|
|
|
* WorldEdit
|
2012-01-05 21:38:23 +00:00
|
|
|
* Copyright (C) 2010 sk89q <http://www.sk89q.com> and contributors
|
2010-11-27 03:33:28 +00:00
|
|
|
*
|
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.sk89q.worldedit.blocks;
|
|
|
|
|
2011-03-10 07:10:59 +00:00
|
|
|
import com.sk89q.jnbt.*;
|
2011-10-29 15:11:12 +00:00
|
|
|
import com.sk89q.worldedit.MobType;
|
2010-11-27 03:33:28 +00:00
|
|
|
import com.sk89q.worldedit.data.*;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
/**
|
2011-09-06 08:06:17 +00:00
|
|
|
* Represents mob spawners.
|
2010-11-27 03:33:28 +00:00
|
|
|
*
|
|
|
|
* @author sk89q
|
|
|
|
*/
|
|
|
|
public class MobSpawnerBlock extends BaseBlock implements TileEntityBlock {
|
|
|
|
/**
|
|
|
|
* Store mob spawn type.
|
|
|
|
*/
|
|
|
|
private String mobType;
|
|
|
|
/**
|
|
|
|
* Delay until next spawn.
|
|
|
|
*/
|
|
|
|
private short delay;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the mob spawner block.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public MobSpawnerBlock() {
|
2011-09-03 16:54:20 +00:00
|
|
|
super(BlockID.MOB_SPAWNER);
|
2011-09-06 08:06:17 +00:00
|
|
|
this.mobType = MobType.PIG.getName();
|
2010-11-27 03:33:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the mob spawner block.
|
|
|
|
*
|
2011-01-23 08:36:26 +00:00
|
|
|
* @param mobType
|
2010-11-27 03:33:28 +00:00
|
|
|
*/
|
|
|
|
public MobSpawnerBlock(String mobType) {
|
2011-09-03 16:54:20 +00:00
|
|
|
super(BlockID.MOB_SPAWNER);
|
2010-11-27 03:33:28 +00:00
|
|
|
this.mobType = mobType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the mob spawner block.
|
|
|
|
*
|
|
|
|
* @param data
|
2011-01-23 08:36:26 +00:00
|
|
|
*/
|
|
|
|
public MobSpawnerBlock(int data) {
|
2011-09-03 16:54:20 +00:00
|
|
|
super(BlockID.MOB_SPAWNER, data);
|
2011-01-23 08:36:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct the mob spawner block.
|
|
|
|
*
|
|
|
|
* @param data
|
|
|
|
* @param mobType
|
2010-11-27 03:33:28 +00:00
|
|
|
*/
|
|
|
|
public MobSpawnerBlock(int data, String mobType) {
|
2011-09-03 16:54:20 +00:00
|
|
|
super(BlockID.MOB_SPAWNER, data);
|
2010-11-27 03:33:28 +00:00
|
|
|
this.mobType = mobType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the mob type.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public String getMobType() {
|
|
|
|
return mobType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the mob type.
|
2011-09-24 19:32:03 +00:00
|
|
|
*
|
|
|
|
* @param mobType
|
2010-11-27 03:33:28 +00:00
|
|
|
*/
|
|
|
|
public void setMobType(String mobType) {
|
|
|
|
this.mobType = mobType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the delay
|
|
|
|
*/
|
|
|
|
public short getDelay() {
|
|
|
|
return delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param delay the delay to set
|
|
|
|
*/
|
|
|
|
public void setDelay(short delay) {
|
|
|
|
this.delay = delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the tile entity ID.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public String getTileEntityID() {
|
|
|
|
return "MobSpawner";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store additional tile entity data. Returns true if the data is used.
|
|
|
|
*
|
|
|
|
* @return map of values
|
|
|
|
* @throws DataException
|
|
|
|
*/
|
2011-11-23 01:29:48 +00:00
|
|
|
public Map<String, Tag> toTileEntityNBT()
|
2010-11-27 03:33:28 +00:00
|
|
|
throws DataException {
|
2011-11-23 01:29:48 +00:00
|
|
|
Map<String, Tag> values = new HashMap<String, Tag>();
|
2010-11-27 03:33:28 +00:00
|
|
|
values.put("EntityId", new StringTag("EntityId", mobType));
|
2011-01-23 08:36:26 +00:00
|
|
|
values.put("Delay", new ShortTag("Delay", delay));
|
2010-11-27 03:33:28 +00:00
|
|
|
return values;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get additional information from the title entity data.
|
|
|
|
*
|
|
|
|
* @param values
|
|
|
|
* @throws DataException
|
|
|
|
*/
|
2011-11-23 01:29:48 +00:00
|
|
|
public void fromTileEntityNBT(Map<String, Tag> values)
|
|
|
|
throws DataException {
|
2010-11-27 03:33:28 +00:00
|
|
|
if (values == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Tag t = values.get("id");
|
2011-11-23 01:29:48 +00:00
|
|
|
if (!(t instanceof StringTag) || !((StringTag) t).getValue().equals("MobSpawner")) {
|
2010-11-27 03:33:28 +00:00
|
|
|
throw new DataException("'MobSpawner' tile entity expected");
|
|
|
|
}
|
|
|
|
|
2012-03-30 04:11:49 +00:00
|
|
|
StringTag mobTypeTag = NBTUtils.getChildTag(values, "EntityId", StringTag.class);
|
|
|
|
ShortTag delayTag = NBTUtils.getChildTag(values, "Delay", ShortTag.class);
|
2010-11-27 03:33:28 +00:00
|
|
|
|
|
|
|
this.mobType = mobTypeTag.getValue();
|
|
|
|
this.delay = delayTag.getValue();
|
|
|
|
}
|
|
|
|
}
|