-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a few recipes, textures, add per-type differences to power
transmission/storage to torque conduits/dist/shaft blocks as well as flywheel controllers. adjust render size on waterwheel block.
- Loading branch information
1 parent
0c11531
commit 069fe3a
Showing
28 changed files
with
101 additions
and
47 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
src/main/java/net/shadowmage/ancientwarfare/automation/proxy/BCProxy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/java/net/shadowmage/ancientwarfare/automation/proxy/RFProxyActual.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...wmage/ancientwarfare/automation/tile/torque/TileTorqueStorageFlywheelControllerLarge.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.TorqueCell; | ||
|
||
public class TileTorqueStorageFlywheelControllerLarge extends TileTorqueStorageFlywheelController | ||
{ | ||
|
||
public TileTorqueStorageFlywheelControllerLarge() | ||
{ | ||
|
||
double max = AWAutomationStatics.high_transfer_max; | ||
inputCell = new TorqueCell(max, max, max, 1.f);//TODO set default values from config | ||
outputCell = new TorqueCell(max, max, max, 1.f);//TODO set default values from config | ||
} | ||
} |
5 changes: 4 additions & 1 deletion
5
...mage/ancientwarfare/automation/tile/torque/TileTorqueStorageFlywheelControllerMedium.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.TorqueCell; | ||
|
||
public class TileTorqueStorageFlywheelControllerMedium extends TileTorqueStorageFlywheelController | ||
{ | ||
public TileTorqueStorageFlywheelControllerMedium() | ||
{ | ||
|
||
double max = AWAutomationStatics.med_transfer_max; | ||
inputCell = new TorqueCell(max, max, max, 1.f);//TODO set default values from config | ||
outputCell = new TorqueCell(max, max, max, 1.f);//TODO set default values from config | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
...net/shadowmage/ancientwarfare/automation/tile/torque/TileTorqueTransportConduitHeavy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.minecraftforge.common.util.ForgeDirection; | ||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.SidedTorqueCell; | ||
|
||
public class TileTorqueTransportConduitHeavy extends TileTorqueTransportConduit | ||
{ | ||
|
||
public TileTorqueTransportConduitHeavy() | ||
{ | ||
|
||
double max = AWAutomationStatics.high_transfer_max; | ||
for(int i = 0; i <6; i++) | ||
{ | ||
storage[i] = new SidedTorqueCell(max, max, max, 1, ForgeDirection.values()[i], this);//TODO set from config | ||
} | ||
} | ||
|
||
} |
8 changes: 7 additions & 1 deletion
8
...et/shadowmage/ancientwarfare/automation/tile/torque/TileTorqueTransportConduitMedium.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.minecraftforge.common.util.ForgeDirection; | ||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.SidedTorqueCell; | ||
|
||
public class TileTorqueTransportConduitMedium extends TileTorqueTransportConduit | ||
{ | ||
|
||
public TileTorqueTransportConduitMedium() | ||
{ | ||
|
||
double max = AWAutomationStatics.med_transfer_max; | ||
for(int i = 0; i <6; i++) | ||
{ | ||
storage[i] = new SidedTorqueCell(max, max, max, 1, ForgeDirection.values()[i], this);//TODO set from config | ||
} | ||
} | ||
|
||
} |
9 changes: 8 additions & 1 deletion
9
...shadowmage/ancientwarfare/automation/tile/torque/TileTorqueTransportDistributorHeavy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.minecraftforge.common.util.ForgeDirection; | ||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.SidedTorqueCell; | ||
|
||
|
||
public class TileTorqueTransportDistributorHeavy extends TileTorqueTransportDistributor | ||
{ | ||
public TileTorqueTransportDistributorHeavy() | ||
{ | ||
|
||
double max = AWAutomationStatics.high_transfer_max; | ||
for(int i = 0; i <6; i++) | ||
{ | ||
storage[i] = new SidedTorqueCell(max, max, max, 1, ForgeDirection.values()[i], this);//TODO set from config | ||
} | ||
} | ||
} |
9 changes: 8 additions & 1 deletion
9
...hadowmage/ancientwarfare/automation/tile/torque/TileTorqueTransportDistributorMedium.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.minecraftforge.common.util.ForgeDirection; | ||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.SidedTorqueCell; | ||
|
||
|
||
public class TileTorqueTransportDistributorMedium extends TileTorqueTransportDistributor | ||
{ | ||
public TileTorqueTransportDistributorMedium() | ||
{ | ||
|
||
double max = AWAutomationStatics.med_transfer_max; | ||
for(int i = 0; i <6; i++) | ||
{ | ||
storage[i] = new SidedTorqueCell(max, max, max, 1, ForgeDirection.values()[i], this);//TODO set from config | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...a/net/shadowmage/ancientwarfare/automation/tile/torque/TileTorqueTransportShaftHeavy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
package net.shadowmage.ancientwarfare.automation.tile.torque; | ||
|
||
import net.shadowmage.ancientwarfare.automation.config.AWAutomationStatics; | ||
import net.shadowmage.ancientwarfare.core.interfaces.ITorque.TorqueCell; | ||
|
||
|
||
public class TileTorqueTransportShaftHeavy extends TileTorqueTransportShaft | ||
{ | ||
|
||
public TileTorqueTransportShaftHeavy() | ||
{ | ||
double max = AWAutomationStatics.high_transfer_max; | ||
torqueCell = new TorqueCell(max, max, max, 1); | ||
} | ||
|
||
} |
Oops, something went wrong.