mirror of
https://github.com/Eaglercraft-Archive/EaglercraftX-1.8-workspace.git
synced 2026-06-23 18:28:13 +02:00
154 lines
5.3 KiB
Java
Executable File
154 lines
5.3 KiB
Java
Executable File
package net.minecraft.block;
|
|
|
|
import java.util.List;
|
|
|
|
import net.minecraft.block.material.MapColor;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.block.properties.IProperty;
|
|
import net.minecraft.block.properties.PropertyEnum;
|
|
import net.minecraft.block.state.BlockState;
|
|
import net.minecraft.block.state.IBlockState;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.IStringSerializable;
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
/**+
|
|
* This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code.
|
|
*
|
|
* Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!"
|
|
* Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team
|
|
*
|
|
* EaglercraftX 1.8 patch files (c) 2022-2024 lax1dude, ayunami2000. All Rights Reserved.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
public class BlockPrismarine extends Block {
|
|
public static PropertyEnum<BlockPrismarine.EnumType> VARIANT;
|
|
public static final int ROUGH_META = BlockPrismarine.EnumType.ROUGH.getMetadata();
|
|
public static final int BRICKS_META = BlockPrismarine.EnumType.BRICKS.getMetadata();
|
|
public static final int DARK_META = BlockPrismarine.EnumType.DARK.getMetadata();
|
|
|
|
public BlockPrismarine() {
|
|
super(Material.rock);
|
|
this.setDefaultState(this.blockState.getBaseState().withProperty(VARIANT, BlockPrismarine.EnumType.ROUGH));
|
|
this.setCreativeTab(CreativeTabs.tabBlock);
|
|
}
|
|
|
|
public static void bootstrapStates() {
|
|
VARIANT = PropertyEnum.<BlockPrismarine.EnumType>create("variant", BlockPrismarine.EnumType.class);
|
|
}
|
|
|
|
/**+
|
|
* Gets the localized name of this block. Used for the
|
|
* statistics page.
|
|
*/
|
|
public String getLocalizedName() {
|
|
return StatCollector.translateToLocal(
|
|
this.getUnlocalizedName() + "." + BlockPrismarine.EnumType.ROUGH.getUnlocalizedName() + ".name");
|
|
}
|
|
|
|
/**+
|
|
* Get the MapColor for this Block and the given BlockState
|
|
*/
|
|
public MapColor getMapColor(IBlockState iblockstate) {
|
|
return iblockstate.getValue(VARIANT) == BlockPrismarine.EnumType.ROUGH ? MapColor.cyanColor
|
|
: MapColor.diamondColor;
|
|
}
|
|
|
|
/**+
|
|
* Gets the metadata of the item this Block can drop. This
|
|
* method is called when the block gets destroyed. It returns
|
|
* the metadata of the dropped item based on the old metadata of
|
|
* the block.
|
|
*/
|
|
public int damageDropped(IBlockState iblockstate) {
|
|
return ((BlockPrismarine.EnumType) iblockstate.getValue(VARIANT)).getMetadata();
|
|
}
|
|
|
|
/**+
|
|
* Convert the BlockState into the correct metadata value
|
|
*/
|
|
public int getMetaFromState(IBlockState iblockstate) {
|
|
return ((BlockPrismarine.EnumType) iblockstate.getValue(VARIANT)).getMetadata();
|
|
}
|
|
|
|
protected BlockState createBlockState() {
|
|
return new BlockState(this, new IProperty[] { VARIANT });
|
|
}
|
|
|
|
/**+
|
|
* Convert the given metadata into a BlockState for this Block
|
|
*/
|
|
public IBlockState getStateFromMeta(int i) {
|
|
return this.getDefaultState().withProperty(VARIANT, BlockPrismarine.EnumType.byMetadata(i));
|
|
}
|
|
|
|
/**+
|
|
* returns a list of blocks with the same ID, but different meta
|
|
* (eg: wood returns 4 blocks)
|
|
*/
|
|
public void getSubBlocks(Item item, CreativeTabs var2, List<ItemStack> list) {
|
|
list.add(new ItemStack(item, 1, ROUGH_META));
|
|
list.add(new ItemStack(item, 1, BRICKS_META));
|
|
list.add(new ItemStack(item, 1, DARK_META));
|
|
}
|
|
|
|
public static enum EnumType implements IStringSerializable {
|
|
ROUGH(0, "prismarine", "rough"), BRICKS(1, "prismarine_bricks", "bricks"), DARK(2, "dark_prismarine", "dark");
|
|
|
|
private static final BlockPrismarine.EnumType[] META_LOOKUP = new BlockPrismarine.EnumType[3];
|
|
private final int meta;
|
|
private final String name;
|
|
private final String unlocalizedName;
|
|
|
|
private EnumType(int meta, String name, String unlocalizedName) {
|
|
this.meta = meta;
|
|
this.name = name;
|
|
this.unlocalizedName = unlocalizedName;
|
|
}
|
|
|
|
public int getMetadata() {
|
|
return this.meta;
|
|
}
|
|
|
|
public String toString() {
|
|
return this.name;
|
|
}
|
|
|
|
public static BlockPrismarine.EnumType byMetadata(int meta) {
|
|
if (meta < 0 || meta >= META_LOOKUP.length) {
|
|
meta = 0;
|
|
}
|
|
|
|
return META_LOOKUP[meta];
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public String getUnlocalizedName() {
|
|
return this.unlocalizedName;
|
|
}
|
|
|
|
static {
|
|
BlockPrismarine.EnumType[] types = values();
|
|
for (int i = 0; i < types.length; ++i) {
|
|
META_LOOKUP[types[i].getMetadata()] = types[i];
|
|
}
|
|
|
|
}
|
|
}
|
|
} |