use of com.minecolonies.api.tileentities.TileEntityColonyBuilding in project minecolonies by Minecolonies.
the class AbstractBlockHut method createTileEntity.
@Nullable
@Override
public TileEntity createTileEntity(final BlockState state, final IBlockReader world) {
final TileEntityColonyBuilding building = (TileEntityColonyBuilding) MinecoloniesTileEntities.BUILDING.create();
building.registryName = this.getBuildingEntry().getRegistryName();
return building;
}
use of com.minecolonies.api.tileentities.TileEntityColonyBuilding in project minecolonies by Minecolonies.
the class AbstractBlockHut method setPlacedBy.
/**
* Event-Handler for placement of this block.
* <p>
* Override for custom logic.
*
* @param worldIn the word we are in.
* @param pos the position where the block was placed.
* @param state the state the placed block is in.
* @param placer the player placing the block.
* @param stack the itemstack from where the block was placed.
* @see Block#setPlacedBy(World, BlockPos, BlockState, LivingEntity, ItemStack)
*/
@Override
public void setPlacedBy(@NotNull final World worldIn, @NotNull final BlockPos pos, final BlockState state, final LivingEntity placer, final ItemStack stack) {
super.setPlacedBy(worldIn, pos, state, placer, stack);
/*
Only work on server side
*/
if (worldIn.isClientSide) {
return;
}
final TileEntity tileEntity = worldIn.getBlockEntity(pos);
if (tileEntity instanceof TileEntityColonyBuilding) {
@NotNull final TileEntityColonyBuilding hut = (TileEntityColonyBuilding) tileEntity;
if (hut.getBuildingName() != getBuildingEntry().getRegistryName()) {
hut.registryName = getBuildingEntry().getRegistryName();
}
@Nullable final IColony colony = IColonyManager.getInstance().getColonyByPosFromWorld(worldIn, hut.getPosition());
if (colony != null) {
colony.getBuildingManager().addNewBuilding(hut, worldIn);
colony.getProgressManager().progressBuildingPlacement(this);
}
}
}
use of com.minecolonies.api.tileentities.TileEntityColonyBuilding in project minecolonies by Minecolonies.
the class ItemScrollGuardHelp method useOn.
@Override
@NotNull
public ActionResultType useOn(ItemUseContext ctx) {
final ActionResultType result = super.useOn(ctx);
if (ctx.getLevel().isClientSide) {
return result;
}
final TileEntity te = ctx.getLevel().getBlockEntity(ctx.getClickedPos());
if (te instanceof TileEntityColonyBuilding && ctx.getPlayer() != null) {
final IBuilding building = ((TileEntityColonyBuilding) te).getColony().getBuildingManager().getBuilding(ctx.getClickedPos());
if (!(building instanceof AbstractBuildingGuards)) {
LanguageHandler.sendPlayerMessage(ctx.getPlayer(), "minecolonies.scroll.noguardbuilding");
}
}
return result;
}
use of com.minecolonies.api.tileentities.TileEntityColonyBuilding in project minecolonies by Minecolonies.
the class ItemResourceScroll method useOn.
/**
* Used when clicking on block in world.
*
* @param ctx the context of use.
* @return the result
*/
@Override
@NotNull
public ActionResultType useOn(ItemUseContext ctx) {
final ItemStack scroll = ctx.getPlayer().getItemInHand(ctx.getHand());
final CompoundNBT compound = checkForCompound(scroll);
TileEntity entity = ctx.getLevel().getBlockEntity(ctx.getClickedPos());
if (entity instanceof TileEntityColonyBuilding) {
compound.putInt(TAG_COLONY_ID, ((AbstractTileEntityColonyBuilding) entity).getColonyId());
BlockPosUtil.write(compound, TAG_BUILDER, ((AbstractTileEntityColonyBuilding) entity).getPosition());
if (!ctx.getLevel().isClientSide) {
LanguageHandler.sendPlayerMessage(ctx.getPlayer(), TranslationConstants.COM_MINECOLONIES_SCROLL_BUILDER_SET, ((AbstractTileEntityColonyBuilding) entity).getColony().getName());
}
} else if (ctx.getLevel().isClientSide) {
openWindow(compound, ctx.getPlayer());
}
return ActionResultType.SUCCESS;
}
use of com.minecolonies.api.tileentities.TileEntityColonyBuilding in project minecolonies by Minecolonies.
the class BlockStash method createTileEntity.
@Nullable
@Override
public TileEntity createTileEntity(BlockState state, IBlockReader world) {
final TileEntityColonyBuilding building = (TileEntityColonyBuilding) MinecoloniesTileEntities.STASH.create();
building.registryName = this.getBuildingEntry().getRegistryName();
return building;
}
Aggregations