mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-10-31 21:52:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			110 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * This file is part of ComputerCraft - http://www.computercraft.info
 | |
|  * Copyright Daniel Ratcliffe, 2011-2021. Do not distribute without permission.
 | |
|  * Send enquiries to dratcliffe@gmail.com
 | |
|  */
 | |
| 
 | |
| package dan200.computercraft.shared.common;
 | |
| 
 | |
| import net.minecraft.block.Block;
 | |
| import net.minecraft.block.BlockRenderType;
 | |
| import net.minecraft.block.BlockState;
 | |
| import net.minecraft.block.BlockWithEntity;
 | |
| import net.minecraft.block.entity.BlockEntity;
 | |
| import net.minecraft.block.entity.BlockEntityType;
 | |
| import net.minecraft.entity.player.PlayerEntity;
 | |
| import net.minecraft.server.world.ServerWorld;
 | |
| import net.minecraft.util.ActionResult;
 | |
| import net.minecraft.util.Hand;
 | |
| import net.minecraft.util.hit.BlockHitResult;
 | |
| import net.minecraft.util.math.BlockPos;
 | |
| import net.minecraft.world.World;
 | |
| 
 | |
| import javax.annotation.Nonnull;
 | |
| import javax.annotation.Nullable;
 | |
| import java.util.Random;
 | |
| 
 | |
| public abstract class BlockGeneric extends BlockWithEntity
 | |
| {
 | |
|     private final BlockEntityType<? extends TileGeneric> type;
 | |
| 
 | |
|     public BlockGeneric( Settings settings, BlockEntityType<? extends TileGeneric> type )
 | |
|     {
 | |
|         super( settings );
 | |
|         this.type = type;
 | |
|     }
 | |
| 
 | |
|     public BlockEntityType<? extends TileGeneric> getType()
 | |
|     {
 | |
|         return type;
 | |
|     }
 | |
| 
 | |
|     @Override
 | |
|     public BlockRenderType getRenderType( BlockState state )
 | |
|     {
 | |
|         return BlockRenderType.MODEL;
 | |
|     }
 | |
| 
 | |
|     @Override
 | |
|     @Deprecated
 | |
|     public final void neighborUpdate( @Nonnull BlockState state, World world, @Nonnull BlockPos pos, @Nonnull Block neighbourBlock,
 | |
|                                       @Nonnull BlockPos neighbourPos, boolean isMoving )
 | |
|     {
 | |
|         BlockEntity tile = world.getBlockEntity( pos );
 | |
|         if( tile instanceof TileGeneric )
 | |
|         {
 | |
|             ((TileGeneric) tile).onNeighbourChange( neighbourPos );
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @Override
 | |
|     @Deprecated
 | |
|     public final void onStateReplaced( @Nonnull BlockState block, @Nonnull World world, @Nonnull BlockPos pos, BlockState replace, boolean bool )
 | |
|     {
 | |
|         if( block.getBlock() == replace.getBlock() )
 | |
|         {
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         BlockEntity tile = world.getBlockEntity( pos );
 | |
|         super.onStateReplaced( block, world, pos, replace, bool );
 | |
|         world.removeBlockEntity( pos );
 | |
|         if( tile instanceof TileGeneric )
 | |
|         {
 | |
|             ((TileGeneric) tile).destroy();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @Nonnull
 | |
|     @Override
 | |
|     @Deprecated
 | |
|     public final ActionResult onUse( @Nonnull BlockState state, World world, @Nonnull BlockPos pos, @Nonnull PlayerEntity player, @Nonnull Hand hand,
 | |
|                                      @Nonnull BlockHitResult hit )
 | |
|     {
 | |
|         BlockEntity tile = world.getBlockEntity( pos );
 | |
|         return tile instanceof TileGeneric ? ((TileGeneric) tile).onActivate( player, hand, hit ) : ActionResult.PASS;
 | |
|     }
 | |
| 
 | |
|     @Override
 | |
|     @Deprecated
 | |
|     public void scheduledTick( @Nonnull BlockState state, ServerWorld world, @Nonnull BlockPos pos, @Nonnull Random rand )
 | |
|     {
 | |
|         BlockEntity te = world.getBlockEntity( pos );
 | |
|         if( te instanceof TileGeneric )
 | |
|         {
 | |
|             ((TileGeneric) te).blockTick();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @Nullable
 | |
|     @Override
 | |
|     public BlockEntity createBlockEntity( BlockPos pos, BlockState state )
 | |
|     {
 | |
|         if ( this.type != null )
 | |
|         {
 | |
|             return type.instantiate( pos, state );
 | |
|         }
 | |
|         return null;
 | |
|     }
 | |
| }
 | 
