85 lines
3.1 KiB
Java
85 lines
3.1 KiB
Java
package net.minecraft.block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.block.state.IBlockState;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.inventory.Container;
|
|
import net.minecraft.inventory.ContainerWorkbench;
|
|
import net.minecraft.stats.StatList;
|
|
import net.minecraft.util.BlockPos;
|
|
import net.minecraft.util.ChatComponentTranslation;
|
|
import net.minecraft.util.EnumFacing;
|
|
import net.minecraft.util.IChatComponent;
|
|
import net.minecraft.world.IInteractionObject;
|
|
import net.minecraft.world.World;
|
|
|
|
/**+
|
|
* 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 BlockWorkbench extends Block {
|
|
protected BlockWorkbench() {
|
|
super(Material.wood);
|
|
this.setCreativeTab(CreativeTabs.tabDecorations);
|
|
}
|
|
|
|
public boolean onBlockActivated(World world, BlockPos blockpos, IBlockState var3, EntityPlayer entityplayer,
|
|
EnumFacing var5, float var6, float var7, float var8) {
|
|
if (world.isRemote) {
|
|
return true;
|
|
} else {
|
|
entityplayer.displayGui(new BlockWorkbench.InterfaceCraftingTable(world, blockpos));
|
|
entityplayer.triggerAchievement(StatList.field_181742_Z);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public static class InterfaceCraftingTable implements IInteractionObject {
|
|
private final World world;
|
|
private final BlockPos position;
|
|
|
|
public InterfaceCraftingTable(World worldIn, BlockPos pos) {
|
|
this.world = worldIn;
|
|
this.position = pos;
|
|
}
|
|
|
|
public String getName() {
|
|
return null;
|
|
}
|
|
|
|
public boolean hasCustomName() {
|
|
return false;
|
|
}
|
|
|
|
public IChatComponent getDisplayName() {
|
|
return new ChatComponentTranslation(Blocks.crafting_table.getUnlocalizedName() + ".name", new Object[0]);
|
|
}
|
|
|
|
public Container createContainer(InventoryPlayer inventoryplayer, EntityPlayer var2) {
|
|
return new ContainerWorkbench(inventoryplayer, this.world, this.position);
|
|
}
|
|
|
|
public String getGuiID() {
|
|
return "minecraft:crafting_table";
|
|
}
|
|
}
|
|
} |