Applied-Energistics-2-tiler.../src/main/java/appeng/decorative/solid/ChargedQuartzOreBlock.java

113 lines
3 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2015-09-29 15:47:55 +02:00
package appeng.decorative.solid;
import java.util.Random;
2015-05-09 13:06:09 +02:00
2015-06-16 02:44:59 +02:00
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
2015-06-16 02:44:59 +02:00
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
2015-12-24 02:07:03 +01:00
import appeng.api.AEApi;
import appeng.api.exceptions.MissingDefinition;
2014-07-07 04:04:58 +02:00
import appeng.client.render.effects.ChargedOreFX;
2014-02-09 06:08:27 +01:00
import appeng.core.AEConfig;
2014-07-26 04:52:21 +02:00
import appeng.core.CommonHelper;
2015-09-29 15:47:55 +02:00
public final class ChargedQuartzOreBlock extends QuartzOreBlock
{
2015-09-29 15:47:55 +02:00
public ChargedQuartzOreBlock()
{
this.setBoostBrightnessLow( 2 );
this.setBoostBrightnessHigh( 5 );
}
2015-12-24 02:03:16 +01:00
@Override
public Item getItemDropped( final IBlockState state, final Random rand, final int fortune )
{
2015-09-30 14:24:40 +02:00
for( final Item charged : AEApi.instance().definitions().materials().certusQuartzCrystalCharged().maybeItem().asSet() )
{
return charged;
}
throw new MissingDefinition( "Tried to access charged certus quartz crystal, even though they are disabled" );
}
@Override
public int damageDropped( final IBlockState state )
{
2015-12-24 02:03:16 +01:00
for( final ItemStack crystalStack : AEApi.instance().definitions().materials().certusQuartzCrystalCharged().maybeStack( 1 ).asSet() )
{
return crystalStack.getItemDamage();
}
throw new MissingDefinition( "Tried to access charged certus quartz crystal, even though they are disabled" );
}
@Override
public void randomDisplayTick( final World w, final BlockPos pos, final IBlockState state, final Random r )
{
2015-12-24 02:03:16 +01:00
if( !AEConfig.instance.enableEffects )
2015-04-29 02:30:53 +02:00
{
return;
2015-04-29 02:30:53 +02:00
}
double xOff = ( r.nextFloat() );
double yOff = ( r.nextFloat() );
double zOff = ( r.nextFloat() );
switch( r.nextInt( 6 ) )
{
case 0:
xOff = -0.01;
break;
case 1:
yOff = -0.01;
break;
case 2:
xOff = -0.01;
break;
case 3:
zOff = -0.01;
break;
case 4:
xOff = 1.01;
break;
case 5:
yOff = 1.01;
break;
case 6:
zOff = 1.01;
break;
}
if( CommonHelper.proxy.shouldAddParticles( r ) )
2014-01-30 03:47:55 +01:00
{
2015-09-30 14:24:40 +02:00
final ChargedOreFX fx = new ChargedOreFX( w, pos.getX() + xOff, pos.getY() + yOff, pos.getZ() + zOff, 0.0f, 0.0f, 0.0f );
2014-09-28 20:56:16 +02:00
Minecraft.getMinecraft().effectRenderer.addEffect( fx );
2014-01-30 03:47:55 +01:00
}
}
}