Skip to content

Commit 371e42f

Browse files
committed
Back to the roots, actually only to 1.10.2.
Auto-reformatted the code and updated the copyright
1 parent 1fe5fa6 commit 371e42f

File tree

180 files changed

+5173
-1882
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+5173
-1882
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repositories {
2929
}
3030
ivy {
3131
name = "Railcraft"
32-
artifactPattern "http://www.railcraft.info/ivy/com.headlamp-games/Railcraft/[revision]/[module]_1.10.2-[revision]-[classifier].[ext]"
32+
artifactPattern "http://www.railcraft.info/ivy/com.headlamp-games/Railcraft/[revision]/[module]_" + project.minecraftVersion.toString() + "-[revision]-[classifier].[ext]"
3333
}
3434
}
3535

@@ -50,7 +50,7 @@ minecraft {
5050

5151
dependencies {
5252
deobfCompile "mezz.jei:jei_" + project.minecraftVersion.toString() + ":" + project.jeiVersion.toString()
53-
deobfCompile "net.darkhax.tesla:Tesla:1.11-" + project.teslaVersion.toString()
53+
deobfCompile "net.darkhax.tesla:Tesla:1.10.2-" + project.teslaVersion.toString()
5454
compileOnly "net.industrial-craft:industrialcraft-2:" + project.ic2Version.toString() + ":api"
5555
compileOnly name: "Railcraft", version: project.railcraftVersion.toString(), classifier: "dev"
5656
}

gradle.properties

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ org.gradle.jvmargs=-Xmx3G
22

33
modName=Traincraft
44
modVersion=1.0.0
5-
minecraftVersion=1.11.2
5+
minecraftVersion=1.10.2
66
mappings=snapshot_20170125
7-
forgeVersion=13.20.0.2226
8-
jeiVersion=4.2.4.226
9-
teslaVersion=1.3.0.51
10-
ic2Version=2.6.9-ex110
11-
railcraftVersion=10.0.1
7+
forgeVersion=12.18.3.2281
8+
jeiVersion=3.14.7.419
9+
teslaVersion=1.2.1.49
10+
ic2Version=2.6.188-ex110
11+
railcraftVersion=10.1.1

src/main/java/si/meansoft/traincraft/Compat.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -14,7 +14,7 @@
1414
/**
1515
* @author canitzp
1616
*/
17-
public class Compat{
17+
public class Compat {
1818

1919
public static boolean isTeslaLoaded = Loader.isModLoaded("tesla");
2020
public static boolean isRailcraftLoaded = Loader.isModLoaded("railcraft");

src/main/java/si/meansoft/traincraft/IRegistryEntry.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -15,7 +15,7 @@
1515
/**
1616
* @author canitzp
1717
*/
18-
public interface IRegistryEntry{
18+
public interface IRegistryEntry {
1919

2020
IRegistryEntry[] getRegisterElements();
2121

@@ -26,6 +26,7 @@ public interface IRegistryEntry{
2626
void ownRegistry();
2727

2828
@SideOnly(Side.CLIENT)
29-
default void loadClientSide(){}
29+
default void loadClientSide() {
30+
}
3031

3132
}

src/main/java/si/meansoft/traincraft/RecipeRegistry.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -22,33 +22,33 @@
2222
*/
2323
public class RecipeRegistry {
2424

25-
public static void init(){
25+
public static void init() {
2626
initShaped();
2727
initShapeless();
2828
initDistillRecipes();
2929
initCrafterRecipes();
3030
initHearthFurnaceRecipes();
3131
}
3232

33-
private static void initShaped(){
33+
private static void initShaped() {
3434

3535
}
3636

37-
private static void initShapeless(){
37+
private static void initShapeless() {
3838
ItemStack plasticStack = new ItemStack(Registry.material, 1, ItemMaterial.Materials.PLASTIC.ordinal());
3939
GameRegistry.addShapelessRecipe(new ItemStack(Registry.material, 2, ItemMaterial.Materials.FUEL_CANISTER_EMPTY.ordinal()), plasticStack.copy(), plasticStack.copy(), plasticStack.copy(), plasticStack.copy());
4040
}
4141

42-
private static void initDistillRecipes(){
42+
private static void initDistillRecipes() {
4343
DistilleryRecipes.addRecipe(new ItemStack(Registry.material, 1, ItemMaterial.Materials.PLASTIC.ordinal()), new ItemStack(Registry.oilSand), new FluidStack(Registry.diesel, 1000), 50, 200);
4444
DistilleryRecipes.addFillingRecipe(new ItemStack(Registry.material, 2, ItemMaterial.Materials.FUEL_CANISTER_FULL.ordinal()), new ItemStack(Registry.material, 2, ItemMaterial.Materials.FUEL_CANISTER_EMPTY.ordinal()), new FluidStack(Registry.diesel, 1000));
4545
}
4646

47-
private static void initCrafterRecipes(){
47+
private static void initCrafterRecipes() {
4848
//CrafterRecipes.addSteamRecipe(new ItemStack(Blocks.BRICK_BLOCK), null, null, null, null, null, null, null, null, null, null);
4949
}
5050

51-
private static void initHearthFurnaceRecipes(){
51+
private static void initHearthFurnaceRecipes() {
5252
HearthFurnaceRecipes.addRecipe(new ItemStack(Registry.material, 1, ItemMaterial.Materials.GRAPHITE.ordinal()), new ItemStack(Items.IRON_INGOT), new ItemStack(Registry.material, 1, ItemMaterial.Materials.STEEL_INGOT.ordinal()), 1200);
5353
}
5454

src/main/java/si/meansoft/traincraft/Registry.java

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -27,7 +27,7 @@
2727
/**
2828
* @author canitzp
2929
*/
30-
public class Registry{
30+
public class Registry {
3131

3232
public static int entityIds = 0;
3333

@@ -42,9 +42,9 @@ public class Registry{
4242

4343
public static FluidBase diesel, refinedFuel, oil;
4444

45-
public static void preInit(FMLPreInitializationEvent event){
45+
public static void preInit(FMLPreInitializationEvent event) {
4646
//Blocks
47-
register(oilSand = new BlockBase(Material.SAND, "oil_Sand").generateBlock(Blocks.SAND, 50, 80, 7, 11).addOreDict("oreOilSand").setHarvestLevel(BlockBase.ToolEnum.SHOVEL, 2).setSound(SoundType.SAND));
47+
register(oilSand = new BlockBase(Material.SAND, "oil_sand").generateBlock(Blocks.SAND, 50, 80, 12, 3).addOreDict("oreOilSand").setHarvestLevel(BlockBase.ToolEnum.SHOVEL, 2).setSound(SoundType.SAND));
4848
register(petroleum = new BlockBase(Material.ROCK, "ore_petroleum").generateBlock(Blocks.STONE, 20, 70, 5, 9).addOreDict("orePetroleum").setHarvestLevel(BlockBase.ToolEnum.PICKAXE, 2).setSound(SoundType.STONE));
4949
register(distillery = new BlockDistillery());
5050
register(hearthFurnace = new BlockHearthFurnace());
@@ -63,20 +63,20 @@ public static void preInit(FMLPreInitializationEvent event){
6363
TraincraftAPI.addTrackRegister(BlockTrackStraight.class, BlockTrackSlope.class, BlockTrackCurve.class);
6464
TraincraftAPI.registerTracks();
6565

66-
register(TrainProvider.create(MuseumSteamTrain.class, "museumTrain", new MuseumSteamTrainModel()));
66+
//register(TrainProvider.create(MuseumSteamTrain.class, "museumTrain", new MuseumSteamTrainModel()));
6767
}
6868

69-
public static <T extends IRegistryEntry> T[] register(T... entries){
70-
for(T entry : entries){
71-
for(IRegistryEntry reg : entry.getRegisterElements()){
72-
if(reg instanceof IForgeRegistryEntry){
69+
public static <T extends IRegistryEntry> T[] register(T... entries) {
70+
for (T entry : entries) {
71+
for (IRegistryEntry reg : entry.getRegisterElements()) {
72+
if (reg instanceof IForgeRegistryEntry) {
7373
((IForgeRegistryEntry) reg).setRegistryName(new ResourceLocation(Traincraft.MODID, reg.getRegisterName()));
7474
GameRegistry.register((IForgeRegistryEntry<?>) reg);
7575
reg.onRegister(entries);
7676
} else {
7777
reg.ownRegistry();
7878
}
79-
if(Traincraft.loadedSide.isClient()){
79+
if (Traincraft.loadedSide.isClient()) {
8080
reg.loadClientSide();
8181
}
8282
}

src/main/java/si/meansoft/traincraft/TeslaWrapper.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -19,38 +19,38 @@
1919
/**
2020
* @author canitzp
2121
*/
22-
public class TeslaWrapper implements ITeslaHolder, ITeslaConsumer, ITeslaProducer{
22+
public class TeslaWrapper implements ITeslaHolder, ITeslaConsumer, ITeslaProducer {
2323

2424
private EnergyStorage storage;
2525

26-
private TeslaWrapper(EnergyStorage storage){
26+
private TeslaWrapper(EnergyStorage storage) {
2727
this.storage = storage;
2828
}
2929

30-
public static <T> T getFromCapability(EnergyStorage storage, Capability<T> c){
31-
if(c == TeslaCapabilities.CAPABILITY_HOLDER || c == TeslaCapabilities.CAPABILITY_HOLDER || c == TeslaCapabilities.CAPABILITY_PRODUCER){
30+
public static <T> T getFromCapability(EnergyStorage storage, Capability<T> c) {
31+
if (c == TeslaCapabilities.CAPABILITY_HOLDER || c == TeslaCapabilities.CAPABILITY_HOLDER || c == TeslaCapabilities.CAPABILITY_PRODUCER) {
3232
return (T) new TeslaWrapper(storage);
3333
}
3434
return null;
3535
}
3636

3737
@Override
38-
public long getStoredPower(){
38+
public long getStoredPower() {
3939
return this.storage.getEnergyStored();
4040
}
4141

4242
@Override
43-
public long getCapacity(){
43+
public long getCapacity() {
4444
return this.storage.getMaxEnergyStored();
4545
}
4646

4747
@Override
48-
public long givePower(long power, boolean simulated){
48+
public long givePower(long power, boolean simulated) {
4949
return this.storage.receiveEnergy((int) power, simulated);
5050
}
5151

5252
@Override
53-
public long takePower(long power, boolean simulated){
53+
public long takePower(long power, boolean simulated) {
5454
return this.storage.extractEnergy((int) power, simulated);
5555
}
5656
}

src/main/java/si/meansoft/traincraft/Traincraft.java

+17-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
1111

1212
import net.minecraft.creativetab.CreativeTabs;
13+
import net.minecraft.item.Item;
1314
import net.minecraft.item.ItemStack;
1415
import net.minecraftforge.fluids.FluidRegistry;
1516
import net.minecraftforge.fml.common.Mod;
@@ -29,7 +30,7 @@
2930
/**
3031
* @author canitzp
3132
*/
32-
@Mod(modid = Traincraft.MODID, name= Traincraft.NAME, version = Traincraft.VERSION)
33+
@Mod(modid = Traincraft.MODID, name = Traincraft.NAME, version = Traincraft.VERSION)
3334
public class Traincraft {
3435

3536
public static final String MODID = "traincraft";
@@ -49,7 +50,7 @@ public class Traincraft {
4950

5051
public static Side loadedSide;
5152

52-
static{
53+
static {
5354
/*
5455
* To initialize the buckets for fluids, if we don't call this, we haven't buckets
5556
* and this has to be called before preInit
@@ -66,15 +67,25 @@ public void preInit(FMLPreInitializationEvent event) {
6667
// Creating the two creative tabs for Traincraft. One for bLocks and items and the second for the rails
6768
generalTab = new CreativeTabs("traincraft_general_tab") {
6869
@Override
69-
public ItemStack getTabIconItem() {
70+
public ItemStack getIconItemStack() {
7071
return new ItemStack(Registry.oilSand);
7172
}
73+
74+
@Override
75+
public Item getTabIconItem() {
76+
return null;
77+
}
7278
};
73-
trackTab = new CreativeTabs("traincraft_track_tab"){
79+
trackTab = new CreativeTabs("traincraft_track_tab") {
7480
@Override
75-
public ItemStack getTabIconItem(){
81+
public ItemStack getIconItemStack() {
7682
return new ItemStack(BlockTrackStraight.block);
7783
}
84+
85+
@Override
86+
public Item getTabIconItem() {
87+
return null;
88+
}
7889
};
7990
logger.info("[Pre Initializing] Register Blocks, Items, ...");
8091
Registry.preInit(event);

src/main/java/si/meansoft/traincraft/TraincraftResources.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -23,11 +23,12 @@ public enum TraincraftResources {
2323
GUI_HEARTH_FURNACE("gui_hearth_furnace");
2424

2525
String name, textureName;
26+
2627
TraincraftResources(String name) {
2728
this.name = name;
2829
}
2930

30-
public ResourceLocation newGuiLocation(){
31+
public ResourceLocation newGuiLocation() {
3132
return new ResourceLocation(Traincraft.MODID, "textures/gui/" + name + ".png");
3233
}
3334

src/main/java/si/meansoft/traincraft/Util.java

+18-16
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* It is distributed under the Traincraft License (https://github.com/Traincraft/Traincraft/blob/master/LICENSE.md)
55
* You can find the source code at https://github.com/Traincraft/Traincraft
66
*
7-
* © 2011-2016
7+
* © 2011-2017
88
*/
99

1010
package si.meansoft.traincraft;
@@ -14,44 +14,46 @@
1414
import net.minecraft.item.ItemStack;
1515
import net.minecraft.tileentity.TileEntity;
1616
import net.minecraft.util.math.BlockPos;
17+
import si.meansoft.traincraft.compat.VanillaUtil;
1718

1819
/**
1920
* @author canitzp
2021
*/
2122
public class Util {
2223

23-
public static void sendTilePacketToAllAround(TileEntity tile){
24-
for(EntityPlayer player : tile.getWorld().playerEntities){
25-
if(player instanceof EntityPlayerMP){
24+
public static void sendTilePacketToAllAround(TileEntity tile) {
25+
for (EntityPlayer player : tile.getWorld().playerEntities) {
26+
if (player instanceof EntityPlayerMP) {
2627
BlockPos pos = tile.getPos();
27-
if(player.getDistance(pos.getX(), pos.getY(), pos.getZ()) <= 64){
28-
((EntityPlayerMP)player).connection.sendPacket(tile.getUpdatePacket());
28+
if (player.getDistance(pos.getX(), pos.getY(), pos.getZ()) <= 64) {
29+
((EntityPlayerMP) player).connection.sendPacket(tile.getUpdatePacket());
2930
}
3031
}
3132
}
3233
}
3334

34-
public static ItemStack decreaseItemStack(ItemStack toDecrease, ItemStack decreaseValue){
35-
if(ItemStack.areItemStacksEqual(toDecrease, decreaseValue)){
36-
int i = toDecrease.copy().getCount() - decreaseValue.copy().getCount();
37-
if(i > 0){
38-
toDecrease.shrink(decreaseValue.getCount());
39-
} else if(i <= 0){
40-
toDecrease = ItemStack.EMPTY;
35+
public static ItemStack decreaseItemStack(ItemStack toDecrease, ItemStack decreaseValue) {
36+
if (ItemStack.areItemStacksEqual(toDecrease, decreaseValue)) {
37+
int i = VanillaUtil.getCount(toDecrease) - VanillaUtil.getCount(decreaseValue);
38+
if (i > 0) {
39+
VanillaUtil.decreaseStack(toDecrease, VanillaUtil.getCount(decreaseValue));
40+
} else if (i <= 0) {
41+
toDecrease = VanillaUtil.getEmpty();
4142
}
4243
return toDecrease;
4344
}
4445
return toDecrease;
4546
}
4647

47-
public enum NBTType{
48+
public enum NBTType {
4849
SYNC,
4950
SAVE;
5051

51-
public boolean sync(){
52+
public boolean sync() {
5253
return this == SYNC;
5354
}
54-
public boolean save(){
55+
56+
public boolean save() {
5557
return this == SAVE;
5658
}
5759
}

0 commit comments

Comments
 (0)