use of mods.railcraft.common.blocks.tracks.outfitted.TrackKits in project Railcraft by Railcraft.
the class RailcraftConfig method loadBlocks.
private static void loadBlocks() {
configBlocks.addCustomCategoryComment(CAT_BLOCKS, "Here you can disable entire blocks.\n" + "Changing these will have adverse effects on existing worlds.\n" + "For the list of which sub-blocks are on each ID see the sub-block section below.");
configBlocks.addCustomCategoryComment(CAT_SUB_BLOCKS, "Here is were you can enable/disable various sub-blocks.\n" + "Railcraft will attempt to compensate for any missing component by providing alternatives (usually).");
for (RailcraftBlocks block : RailcraftBlocks.VALUES) {
loadBlockProperty(block.getBaseTag());
Class<? extends IVariantEnum> variantClass = block.getVariantClass();
if (variantClass != null)
for (IVariantEnum variant : variantClass.getEnumConstants()) {
String tag = block.getBaseTag() + RailcraftConstants.SEPERATOR + variant.getResourcePathSuffix();
loadBlockFeature(tag);
}
}
loadBlockProperty("fluid.creosote");
loadBlockProperty("fluid.steam");
// TODO: Move to own file?
for (TrackKits type : TrackKits.VALUES) {
// if (type.isDeprecated())
// continue;
loadBlockFeature(type.getRegistryName());
}
Map<String, Property> blocks = configBlocks.getCategory(CAT_BLOCKS);
blocks.keySet().retainAll(enabledBlocks.keySet());
Map<String, Property> subBlocks = configBlocks.getCategory(CAT_SUB_BLOCKS);
subBlocks.keySet().retainAll(enabledSubBlocks.keySet());
// for (EnumGeneric type : EnumGeneric.VALUES) {
// loadBlockFeature(type.getTag());
// }
//
// for (EnumPost type : EnumPost.VALUES) {
// loadBlockFeature(type.getTag());
// }
// for (EnumWallAlpha type : EnumWallAlpha.VALUES) {
// loadBlockFeature(type.getTag());
// }
//
// for (EnumWallBeta type : EnumWallBeta.VALUES) {
// loadBlockFeature(type.getTag());
// }
// for (BlockMaterial mat : BlockMaterial.STAIR_MATS) {
// loadBlockFeature(BlockRailcraftStairs.getTag(mat));
// }
//
// for (BlockMaterial mat : BlockMaterial.SLAB_MATS) {
// loadBlockFeature(BlockRailcraftSlab.getTag(mat));
// }
// for (BlockMaterial mat : BlockLantern.STONE_LANTERN.values()) {
// loadBlockFeature(BlockLantern.getTag(mat));
// }
//
// for (BlockMaterial mat : BlockLantern.METAL_LANTERN.values()) {
// loadBlockFeature(BlockLantern.getTag(mat));
// }
// for (EnumOre type : EnumOre.values()) {
// if (!type.isDeprecated())
// loadBlockFeature(type.getTag());
// }
// Set<IEnumMachine<?>> machineVariants = new HashSet<>();
// machineVariants.addAll(Arrays.asList(EnumMachineAlpha.VALUES));
// machineVariants.addAll(Arrays.asList(EnumMachineBeta.values()));
// machineVariants.addAll(Arrays.asList(EnumMachineGamma.values()));
// machineVariants.addAll(Arrays.asList(EnumMachineDelta.values()));
// machineVariants.addAll(Arrays.asList(EnumMachineEpsilon.values()));
//
// for (IEnumMachine<?> type : machineVariants) {
// loadBlockFeature(type.getTag());
// }
//
// for (EnumSignal type : EnumSignal.values()) {
// if (type.getModule() != null)
// loadBlockFeature(type.getTag());
// }
}
Aggregations