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
+121 -153
View File
@@ -19,197 +19,165 @@
package appeng.crafting;
import net.minecraft.nbt.NBTTagCompound;
import appeng.api.config.Actionable;
import appeng.api.networking.crafting.ICraftingCPU;
import appeng.api.networking.crafting.ICraftingLink;
import appeng.api.networking.crafting.ICraftingRequester;
import appeng.api.storage.data.IAEItemStack;
import net.minecraft.nbt.NBTTagCompound;
public class CraftingLink implements ICraftingLink
{
public class CraftingLink implements ICraftingLink {
private final ICraftingRequester req;
private final ICraftingCPU cpu;
private final String CraftID;
private final boolean standalone;
private boolean canceled = false;
private boolean done = false;
private CraftingLinkNexus tie;
private final ICraftingRequester req;
private final ICraftingCPU cpu;
private final String CraftID;
private final boolean standalone;
private boolean canceled = false;
private boolean done = false;
private CraftingLinkNexus tie;
public CraftingLink( final NBTTagCompound data, final ICraftingRequester req )
{
this.CraftID = data.getString( "CraftID" );
this.setCanceled( data.getBoolean( "canceled" ) );
this.setDone( data.getBoolean( "done" ) );
this.standalone = data.getBoolean( "standalone" );
public CraftingLink(final NBTTagCompound data, final ICraftingRequester req) {
this.CraftID = data.getString("CraftID");
this.setCanceled(data.getBoolean("canceled"));
this.setDone(data.getBoolean("done"));
this.standalone = data.getBoolean("standalone");
if( !data.hasKey( "req" ) || !data.getBoolean( "req" ) )
{
throw new IllegalStateException( "Invalid Crafting Link for Object" );
}
if (!data.hasKey("req") || !data.getBoolean("req")) {
throw new IllegalStateException("Invalid Crafting Link for Object");
}
this.req = req;
this.cpu = null;
}
this.req = req;
this.cpu = null;
}
public CraftingLink( final NBTTagCompound data, final ICraftingCPU cpu )
{
this.CraftID = data.getString( "CraftID" );
this.setCanceled( data.getBoolean( "canceled" ) );
this.setDone( data.getBoolean( "done" ) );
this.standalone = data.getBoolean( "standalone" );
public CraftingLink(final NBTTagCompound data, final ICraftingCPU cpu) {
this.CraftID = data.getString("CraftID");
this.setCanceled(data.getBoolean("canceled"));
this.setDone(data.getBoolean("done"));
this.standalone = data.getBoolean("standalone");
if( !data.hasKey( "req" ) || data.getBoolean( "req" ) )
{
throw new IllegalStateException( "Invalid Crafting Link for Object" );
}
if (!data.hasKey("req") || data.getBoolean("req")) {
throw new IllegalStateException("Invalid Crafting Link for Object");
}
this.cpu = cpu;
this.req = null;
}
this.cpu = cpu;
this.req = null;
}
@Override
public boolean isCanceled()
{
if( this.canceled )
{
return true;
}
@Override
public boolean isCanceled() {
if (this.canceled) {
return true;
}
if( this.done )
{
return false;
}
if (this.done) {
return false;
}
if( this.tie == null )
{
return false;
}
if (this.tie == null) {
return false;
}
return this.tie.isCanceled();
}
return this.tie.isCanceled();
}
@Override
public boolean isDone()
{
if( this.done )
{
return true;
}
@Override
public boolean isDone() {
if (this.done) {
return true;
}
if( this.canceled )
{
return false;
}
if (this.canceled) {
return false;
}
if( this.tie == null )
{
return false;
}
if (this.tie == null) {
return false;
}
return this.tie.isDone();
}
return this.tie.isDone();
}
@Override
public void cancel()
{
if( this.done )
{
return;
}
@Override
public void cancel() {
if (this.done) {
return;
}
this.setCanceled( true );
this.setCanceled(true);
if( this.tie != null )
{
this.tie.cancel();
}
if (this.tie != null) {
this.tie.cancel();
}
this.tie = null;
}
this.tie = null;
}
@Override
public boolean isStandalone()
{
return this.standalone;
}
@Override
public boolean isStandalone() {
return this.standalone;
}
@Override
public void writeToNBT( final NBTTagCompound tag )
{
tag.setString( "CraftID", this.CraftID );
tag.setBoolean( "canceled", this.isCanceled() );
tag.setBoolean( "done", this.isDone() );
tag.setBoolean( "standalone", this.standalone );
tag.setBoolean( "req", this.getRequester() != null );
}
@Override
public void writeToNBT(final NBTTagCompound tag) {
tag.setString("CraftID", this.CraftID);
tag.setBoolean("canceled", this.isCanceled());
tag.setBoolean("done", this.isDone());
tag.setBoolean("standalone", this.standalone);
tag.setBoolean("req", this.getRequester() != null);
}
@Override
public String getCraftingID()
{
return this.CraftID;
}
@Override
public String getCraftingID() {
return this.CraftID;
}
public void setNexus( final CraftingLinkNexus n )
{
if( this.tie != null )
{
this.tie.remove( this );
}
public void setNexus(final CraftingLinkNexus n) {
if (this.tie != null) {
this.tie.remove(this);
}
if( this.isCanceled() && n != null )
{
n.cancel();
this.tie = null;
return;
}
if (this.isCanceled() && n != null) {
n.cancel();
this.tie = null;
return;
}
this.tie = n;
this.tie = n;
if( n != null )
{
n.add( this );
}
}
if (n != null) {
n.add(this);
}
}
public IAEItemStack injectItems( final IAEItemStack input, final Actionable mode )
{
if( this.tie == null || this.tie.getRequest() == null || this.tie.getRequest().getRequester() == null )
{
return input;
}
public IAEItemStack injectItems(final IAEItemStack input, final Actionable mode) {
if (this.tie == null || this.tie.getRequest() == null || this.tie.getRequest().getRequester() == null) {
return input;
}
return this.tie.getRequest().getRequester().injectCraftedItems( this.tie.getRequest(), input, mode );
}
return this.tie.getRequest().getRequester().injectCraftedItems(this.tie.getRequest(), input, mode);
}
public void markDone()
{
if( this.tie != null )
{
this.tie.markDone();
}
}
public void markDone() {
if (this.tie != null) {
this.tie.markDone();
}
}
void setCanceled( final boolean canceled )
{
this.canceled = canceled;
}
void setCanceled(final boolean canceled) {
this.canceled = canceled;
}
ICraftingRequester getRequester()
{
return this.req;
}
ICraftingRequester getRequester() {
return this.req;
}
ICraftingCPU getCpu()
{
return this.cpu;
}
ICraftingCPU getCpu() {
return this.cpu;
}
void setDone( final boolean done )
{
this.done = done;
}
void setDone(final boolean done) {
this.done = done;
}
}