Auto formatted, and cleaned imports
This commit is contained in:
parent
c001231216
commit
8e7d6b011e
64 changed files with 2268 additions and 2587 deletions
|
@ -14,7 +14,7 @@ public class ContainerCentrifuge extends TechRebornContainer {
|
|||
|
||||
public int tickTime;
|
||||
|
||||
public ContainerCentrifuge(TileCentrifuge tileCentrifuge, EntityPlayer player){
|
||||
public ContainerCentrifuge(TileCentrifuge tileCentrifuge, EntityPlayer player) {
|
||||
tile = tileCentrifuge;
|
||||
this.player = player;
|
||||
|
||||
|
@ -58,7 +58,7 @@ public class ContainerCentrifuge extends TechRebornContainer {
|
|||
public void detectAndSendChanges() {
|
||||
super.detectAndSendChanges();
|
||||
for (int i = 0; i < this.crafters.size(); ++i) {
|
||||
ICrafting icrafting = (ICrafting)this.crafters.get(i);
|
||||
ICrafting icrafting = (ICrafting) this.crafters.get(i);
|
||||
if (this.tickTime != this.tile.tickTime) {
|
||||
icrafting.sendProgressBarUpdate(this, 0, this.tile.tickTime);
|
||||
}
|
||||
|
|
|
@ -21,16 +21,13 @@ public class ContainerQuantumTank extends TechRebornContainer {
|
|||
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 3; ++i)
|
||||
{
|
||||
for (int j = 0; j < 9; ++j)
|
||||
{
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (int j = 0; j < 9; ++j) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < 9; ++i)
|
||||
{
|
||||
for (i = 0; i < 9; ++i) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18, 142));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,50 +1,49 @@
|
|||
package techreborn.client.container;
|
||||
|
||||
import techreborn.client.SlotOutput;
|
||||
import techreborn.tiles.TileCentrifuge;
|
||||
import techreborn.tiles.TileRollingMachine;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.inventory.Slot;
|
||||
import techreborn.client.SlotOutput;
|
||||
import techreborn.tiles.TileRollingMachine;
|
||||
|
||||
public class ContainerRollingMachine extends TechRebornContainer{
|
||||
|
||||
EntityPlayer player;
|
||||
TileRollingMachine tile;
|
||||
|
||||
public ContainerRollingMachine(TileRollingMachine tileRollingmachine, EntityPlayer player){
|
||||
tile = tileRollingmachine;
|
||||
this.player = player;
|
||||
public class ContainerRollingMachine extends TechRebornContainer {
|
||||
|
||||
//input
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 0, 30, 17));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 1, 30, 35));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 2, 30, 53));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 3, 48, 17));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 4, 48, 35));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 5, 48, 53));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 6, 66, 17));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 7, 66, 35));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 8, 66, 53));
|
||||
//outputs
|
||||
this.addSlotToContainer(new SlotOutput(tileRollingmachine.inventory, 9, 124, 35));
|
||||
EntityPlayer player;
|
||||
TileRollingMachine tile;
|
||||
|
||||
public ContainerRollingMachine(TileRollingMachine tileRollingmachine, EntityPlayer player) {
|
||||
tile = tileRollingmachine;
|
||||
this.player = player;
|
||||
|
||||
//input
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 0, 30, 17));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 1, 30, 35));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 2, 30, 53));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 3, 48, 17));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 4, 48, 35));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 5, 48, 53));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 6, 66, 17));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 7, 66, 35));
|
||||
this.addSlotToContainer(new Slot(tileRollingmachine.inventory, 8, 66, 53));
|
||||
//outputs
|
||||
this.addSlotToContainer(new SlotOutput(tileRollingmachine.inventory, 9, 124, 35));
|
||||
|
||||
|
||||
int i;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (int j = 0; j < 9; ++j) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
|
||||
}
|
||||
}
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (int j = 0; j < 9; ++j) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < 9; ++i) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18, 142));
|
||||
}
|
||||
}
|
||||
for (i = 0; i < 9; ++i) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18, 142));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canInteractWith(EntityPlayer player) {
|
||||
return true;
|
||||
}
|
||||
@Override
|
||||
public boolean canInteractWith(EntityPlayer player) {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -21,16 +21,13 @@ public class ContainerThermalGenerator extends TechRebornContainer {
|
|||
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 3; ++i)
|
||||
{
|
||||
for (int j = 0; j < 9; ++j)
|
||||
{
|
||||
for (i = 0; i < 3; ++i) {
|
||||
for (int j = 0; j < 9; ++j) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < 9; ++i)
|
||||
{
|
||||
for (i = 0; i < 9; ++i) {
|
||||
this.addSlotToContainer(new Slot(player.inventory, i, 8 + i * 18, 142));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue