當前位置: 首頁>>代碼示例>>Java>>正文


Java World.updateComparatorOutputLevel方法代碼示例

本文整理匯總了Java中net.minecraft.world.World.updateComparatorOutputLevel方法的典型用法代碼示例。如果您正苦於以下問題:Java World.updateComparatorOutputLevel方法的具體用法?Java World.updateComparatorOutputLevel怎麽用?Java World.updateComparatorOutputLevel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.world.World的用法示例。


在下文中一共展示了World.updateComparatorOutputLevel方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public void breakBlock(World worldIn, BlockPos pos, IBlockState state) {
    if (!keepInventory) {
        TileEntity tileEntity = worldIn.getTileEntity(pos);
        if (tileEntity instanceof CraftiniumForgeTileEntity) {
            CraftiniumForgeTileEntity entity = (CraftiniumForgeTileEntity) tileEntity;
            InventoryHelper.spawnItemStack(worldIn, pos.getX(), pos.getY(), pos.getZ(), entity.getFuel().getStackInSlot(0));
            InventoryHelper.spawnItemStack(worldIn, pos.getX(), pos.getY(), pos.getZ(), entity.getOutput().getStackInSlot(0));
            InventoryHelper.spawnItemStack(worldIn, pos.getX(), pos.getY(), pos.getZ(), entity.getInput().getStackInSlot(0));

            if(!entity.isBrokenByCreative()) {
                List<ItemStack> drops = this.getDrops(worldIn, pos, state, 0);
                for (ItemStack stack : drops) {
                    spawnAsEntity(worldIn, pos, stack);
                }
            }
            worldIn.updateComparatorOutputLevel(pos, this);
        }
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:Randores,項目名稱:Randores2,代碼行數:23,代碼來源:CraftiniumForge.java

示例2: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
/**
 * Called serverside after this block is replaced with another in Chunk, but before the Tile Entity is updated
 */
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    if (!keepInventory)
    {
        TileEntity tileentity = worldIn.getTileEntity(pos);

        if (tileentity instanceof TileEntityFurnace)
        {
            InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityFurnace)tileentity);
            worldIn.updateComparatorOutputLevel(pos, this);
        }
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:19,代碼來源:BlockFurnace.java

示例3: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public void breakBlock(World worldIn, BlockPos pos, IBlockState state) {
       TileEntity tileentity = worldIn.getTileEntity(pos);
       
       if (tileentity!=null && tileentity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null)) {
       	IItemHandler inventory = tileentity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null);
       	for (int i=0; i<inventory.getSlots(); i++) {
               ItemStack itemstack = inventory.getStackInSlot(i);

               if (!itemstack.isEmpty()) {
                   InventoryHelper.spawnItemStack(worldIn, pos.getX(), pos.getY(), pos.getZ(), itemstack);
               }
           }
       	worldIn.updateComparatorOutputLevel(pos, this);
       }
       super.breakBlock(worldIn, pos, state);
   }
 
開發者ID:elytra,項目名稱:Thermionics,代碼行數:18,代碼來源:BlockMachineBase.java

示例4: emptyInventoryInWorld

import net.minecraft.world.World; //導入方法依賴的package包/類
public static void emptyInventoryInWorld(World world, BlockPos pos, Block block, IInventory inventory) {
        for (int i = 0; i < inventory.getSizeInventory(); ++i) {
            ItemStack itemstack = inventory.getStackInSlot(i);
            spawnItemStack(world, pos, itemstack);
            inventory.setInventorySlotContents(i, ItemStackTools.getEmptyStack());
        }

        world.updateComparatorOutputLevel(pos, block);
//        world.func_147453_f(x, y, z, block);
    }
 
開發者ID:McJty,項目名稱:interactionwheel,代碼行數:11,代碼來源:InventoryHelper.java

示例5: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public void breakBlock (World world, BlockPos pos, IBlockState state) {
    TileEntity tile = world.getTileEntity(pos);
    if (tile instanceof TileBloomeryFurnace) {
        InventoryHelper.dropInventoryItems(world, pos, (TileBloomeryFurnace)tile);
        world.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(world, pos, state);
}
 
開發者ID:jaquadro,項目名稱:GardenStuff,代碼行數:11,代碼來源:BlockBloomeryFurnace.java

示例6: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
/**
 * Called serverside after this block is replaced with another in Chunk, but before the Tile Entity is updated
 */
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    TileEntity tileentity = worldIn.getTileEntity(pos);

    if (tileentity instanceof IInventory)
    {
        InventoryHelper.dropInventoryItems(worldIn, pos, (IInventory)tileentity);
        worldIn.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:16,代碼來源:BlockChest.java

示例7: updatePoweredState

import net.minecraft.world.World; //導入方法依賴的package包/類
private void updatePoweredState(World worldIn, BlockPos pos, IBlockState state)
{
    boolean flag = ((Boolean)state.getValue(POWERED)).booleanValue();
    boolean flag1 = false;
    List<EntityMinecart> list = this.<EntityMinecart>findMinecarts(worldIn, pos, EntityMinecart.class, new Predicate[0]);

    if (!list.isEmpty())
    {
        flag1 = true;
    }

    if (flag1 && !flag)
    {
        worldIn.setBlockState(pos, state.withProperty(POWERED, Boolean.valueOf(true)), 3);
        worldIn.notifyNeighborsOfStateChange(pos, this);
        worldIn.notifyNeighborsOfStateChange(pos.down(), this);
        worldIn.markBlockRangeForRenderUpdate(pos, pos);
    }

    if (!flag1 && flag)
    {
        worldIn.setBlockState(pos, state.withProperty(POWERED, Boolean.valueOf(false)), 3);
        worldIn.notifyNeighborsOfStateChange(pos, this);
        worldIn.notifyNeighborsOfStateChange(pos.down(), this);
        worldIn.markBlockRangeForRenderUpdate(pos, pos);
    }

    if (flag1)
    {
        worldIn.scheduleUpdate(pos, this, this.tickRate(worldIn));
    }

    worldIn.updateComparatorOutputLevel(pos, this);
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:35,代碼來源:BlockRailDetector.java

示例8: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
/**
 * Called serverside after this block is replaced with another in Chunk, but before the Tile Entity is updated
 */
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    TileEntity tileentity = worldIn.getTileEntity(pos);

    if (tileentity instanceof TileEntityHopper)
    {
        InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityHopper)tileentity);
        worldIn.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:16,代碼來源:BlockHopper.java

示例9: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    TileEntity tileentity = worldIn.getTileEntity(pos);

    if (tileentity instanceof TileEntityHopper)
    {
        InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityHopper)tileentity);
        worldIn.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:13,代碼來源:BlockHopper.java

示例10: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    TileEntity tileentity = worldIn.getTileEntity(pos);

    if (tileentity instanceof TileEntityInstrumentPlayer)
    {
        InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityInstrumentPlayer)tileentity);
        worldIn.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:iChun,項目名稱:Clef,代碼行數:14,代碼來源:BlockInstrumentPlayer.java

示例11: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    TileEntity tileentity = worldIn.getTileEntity(pos);

    if (tileentity instanceof TileEntityDispenser)
    {
        InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityDispenser)tileentity);
        worldIn.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:13,代碼來源:BlockDispenser.java

示例12: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public void breakBlock(World worldIn, BlockPos pos, IBlockState state) {
	TileEntity tileentity = worldIn.getTileEntity(pos);

	if (tileentity instanceof TileEntityAmmoFurnace) {
		InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityAmmoFurnace) tileentity);
		worldIn.updateComparatorOutputLevel(pos, this);
	}

	super.breakBlock(worldIn, pos, state);
}
 
開發者ID:rafradek,項目名稱:Mods,代碼行數:12,代碼來源:BlockAmmoFurnace.java

示例13: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
/**
 * Called serverside after this block is replaced with another in Chunk, but before the Tile Entity is updated
 */
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    TileEntity tileentity = worldIn.getTileEntity(pos);

    if (tileentity instanceof TileEntityDispenser)
    {
        InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityDispenser)tileentity);
        worldIn.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:16,代碼來源:BlockDispenser.java

示例14: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
{
    if (!keepInventory)
    {
        TileEntity tileentity = worldIn.getTileEntity(pos);

        if (tileentity instanceof TileEntityFurnace)
        {
            InventoryHelper.dropInventoryItems(worldIn, pos, (TileEntityFurnace)tileentity);
            worldIn.updateComparatorOutputLevel(pos, this);
        }
    }

    super.breakBlock(worldIn, pos, state);
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:16,代碼來源:BlockFurnace.java

示例15: breakBlock

import net.minecraft.world.World; //導入方法依賴的package包/類
@Override
public void breakBlock(World world, BlockPos pos, IBlockState state)
{
    TileEntity te = world.getTileEntity(pos);
    if (te instanceof IInventory)
    {
        InventoryHelper.dropInventoryItems(world, pos, (IInventory) te);
        world.updateComparatorOutputLevel(pos, this);
    }

    super.breakBlock(world, pos, state);
}
 
開發者ID:cubex2,項目名稱:morefurnaces,代碼行數:13,代碼來源:BlockMoreFurnaces.java


注:本文中的net.minecraft.world.World.updateComparatorOutputLevel方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。