reformatted all src files (#141)

This commit is contained in:
YoungOnion
2022-09-17 05:08:02 -06:00
committed by GitHub
parent 3328bfcda2
commit 9011273229
1056 changed files with 88127 additions and 110597 deletions
@@ -19,8 +19,14 @@
package appeng.entity;
import java.util.List;
import appeng.api.AEApi;
import appeng.api.definitions.IMaterials;
import appeng.client.EffectType;
import appeng.core.AEConfig;
import appeng.core.AppEng;
import appeng.core.features.AEFeature;
import appeng.helpers.Reflected;
import appeng.util.Platform;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
@@ -32,140 +38,111 @@ import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.World;
import appeng.api.AEApi;
import appeng.api.definitions.IMaterials;
import appeng.client.EffectType;
import appeng.core.AEConfig;
import appeng.core.AppEng;
import appeng.core.features.AEFeature;
import appeng.helpers.Reflected;
import appeng.util.Platform;
import java.util.List;
public final class EntityChargedQuartz extends AEBaseEntityItem
{
public final class EntityChargedQuartz extends AEBaseEntityItem {
private int delay = 0;
private int transformTime = 0;
private int delay = 0;
private int transformTime = 0;
@Reflected
public EntityChargedQuartz( final World w )
{
super( w );
}
@Reflected
public EntityChargedQuartz(final World w) {
super(w);
}
public EntityChargedQuartz( final World w, final double x, final double y, final double z, final ItemStack is )
{
super( w, x, y, z, is );
}
public EntityChargedQuartz(final World w, final double x, final double y, final double z, final ItemStack is) {
super(w, x, y, z, is);
}
@Override
public void onUpdate()
{
super.onUpdate();
@Override
public void onUpdate() {
super.onUpdate();
if( this.isDead || !AEConfig.instance().isFeatureEnabled( AEFeature.IN_WORLD_FLUIX ) )
{
return;
}
if (this.isDead || !AEConfig.instance().isFeatureEnabled(AEFeature.IN_WORLD_FLUIX)) {
return;
}
if( Platform.isClient() && this.delay > 30 && AEConfig.instance().isEnableEffects() )
{
AppEng.proxy.spawnEffect( EffectType.Lightning, this.world, this.posX, this.posY, this.posZ, null );
this.delay = 0;
}
if (Platform.isClient() && this.delay > 30 && AEConfig.instance().isEnableEffects()) {
AppEng.proxy.spawnEffect(EffectType.Lightning, this.world, this.posX, this.posY, this.posZ, null);
this.delay = 0;
}
this.delay++;
this.delay++;
final int j = MathHelper.floor( this.posX );
final int i = MathHelper.floor( ( this.getEntityBoundingBox().minY + this.getEntityBoundingBox().maxY ) / 2.0D );
final int k = MathHelper.floor( this.posZ );
final int j = MathHelper.floor(this.posX);
final int i = MathHelper.floor((this.getEntityBoundingBox().minY + this.getEntityBoundingBox().maxY) / 2.0D);
final int k = MathHelper.floor(this.posZ);
IBlockState state = this.world.getBlockState( new BlockPos( j, i, k ) );
final Material mat = state.getMaterial();
IBlockState state = this.world.getBlockState(new BlockPos(j, i, k));
final Material mat = state.getMaterial();
if( Platform.isServer() && mat.isLiquid() )
{
this.transformTime++;
if( this.transformTime > 60 )
{
if( !this.transform() )
{
this.transformTime = 0;
}
}
}
else
{
this.transformTime = 0;
}
}
if (Platform.isServer() && mat.isLiquid()) {
this.transformTime++;
if (this.transformTime > 60) {
if (!this.transform()) {
this.transformTime = 0;
}
}
} else {
this.transformTime = 0;
}
}
private boolean transform()
{
final ItemStack item = this.getItem();
final IMaterials materials = AEApi.instance().definitions().materials();
private boolean transform() {
final ItemStack item = this.getItem();
final IMaterials materials = AEApi.instance().definitions().materials();
if( materials.certusQuartzCrystalCharged().isSameAs( item ) )
{
final AxisAlignedBB region = new AxisAlignedBB( this.posX - 1, this.posY - 1, this.posZ - 1, this.posX + 1, this.posY + 1, this.posZ + 1 );
final List<Entity> l = this.getCheckedEntitiesWithinAABBExcludingEntity( region );
if (materials.certusQuartzCrystalCharged().isSameAs(item)) {
final AxisAlignedBB region = new AxisAlignedBB(this.posX - 1, this.posY - 1, this.posZ - 1, this.posX + 1, this.posY + 1, this.posZ + 1);
final List<Entity> l = this.getCheckedEntitiesWithinAABBExcludingEntity(region);
EntityItem redstone = null;
EntityItem netherQuartz = null;
EntityItem redstone = null;
EntityItem netherQuartz = null;
for( final Entity e : l )
{
if( e instanceof EntityItem && !e.isDead )
{
final ItemStack other = ( (EntityItem) e ).getItem();
if( !other.isEmpty() )
{
if( ItemStack.areItemsEqual( other, new ItemStack( Items.REDSTONE ) ) )
{
redstone = (EntityItem) e;
}
for (final Entity e : l) {
if (e instanceof EntityItem && !e.isDead) {
final ItemStack other = ((EntityItem) e).getItem();
if (!other.isEmpty()) {
if (ItemStack.areItemsEqual(other, new ItemStack(Items.REDSTONE))) {
redstone = (EntityItem) e;
}
if( ItemStack.areItemsEqual( other, new ItemStack( Items.QUARTZ ) ) )
{
netherQuartz = (EntityItem) e;
}
}
}
}
if (ItemStack.areItemsEqual(other, new ItemStack(Items.QUARTZ))) {
netherQuartz = (EntityItem) e;
}
}
}
}
if( redstone != null && netherQuartz != null )
{
this.getItem().grow( -1 );
redstone.getItem().grow( -1 );
netherQuartz.getItem().grow( -1 );
if (redstone != null && netherQuartz != null) {
this.getItem().grow(-1);
redstone.getItem().grow(-1);
netherQuartz.getItem().grow(-1);
if( this.getItem().getCount() <= 0 )
{
this.setDead();
}
if (this.getItem().getCount() <= 0) {
this.setDead();
}
if( redstone.getItem().getCount() <= 0 )
{
redstone.setDead();
}
if (redstone.getItem().getCount() <= 0) {
redstone.setDead();
}
if( netherQuartz.getItem().getCount() <= 0 )
{
netherQuartz.setDead();
}
if (netherQuartz.getItem().getCount() <= 0) {
netherQuartz.setDead();
}
materials.fluixCrystal().maybeStack( 2 ).ifPresent( is ->
{
final EntityItem entity = new EntityItem( this.world, this.posX, this.posY, this.posZ, is );
materials.fluixCrystal().maybeStack(2).ifPresent(is ->
{
final EntityItem entity = new EntityItem(this.world, this.posX, this.posY, this.posZ, is);
this.world.spawnEntity( entity );
} );
this.world.spawnEntity(entity);
});
return true;
}
}
return true;
}
}
return false;
}
return false;
}
}