Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 31544a8086 |
@@ -157,7 +157,7 @@
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_string_concatenation" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.text_block_indentation" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
|
||||
@@ -192,7 +192,7 @@
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_method_declaration" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.wrap_before_conditional_operator" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>
|
||||
@@ -285,7 +285,7 @@
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.indent_tag_description" value="false"/>
|
||||
|
||||
@@ -169,16 +169,16 @@ public class ClientHelper extends ServerHelper {
|
||||
}
|
||||
|
||||
private void postPlayerRender(final RenderLivingEvent.Pre p) {
|
||||
// FIXME final PlayerColor player = TickHandler.INSTANCE.getPlayerColors().get( p.getEntity().getEntityId() );
|
||||
// FIXME if( player != null )
|
||||
// FIXME {
|
||||
// FIXME final AEColor col = player.myColor;
|
||||
// FIXME final float r = 0xff & ( col.mediumVariant >> 16 );
|
||||
// FIXME final float g = 0xff & ( col.mediumVariant >> 8 );
|
||||
// FIXME final float b = 0xff & ( col.mediumVariant );
|
||||
// FIXME // FIXME: This is most certainly not going to work!
|
||||
// FIXME GlStateManager.color4f( r / 255.0f, g / 255.0f, b / 255.0f, 1.0f );
|
||||
// FIXME }
|
||||
// FIXME final PlayerColor player = TickHandler.INSTANCE.getPlayerColors().get( p.getEntity().getEntityId() );
|
||||
// FIXME if( player != null )
|
||||
// FIXME {
|
||||
// FIXME final AEColor col = player.myColor;
|
||||
// FIXME final float r = 0xff & ( col.mediumVariant >> 16 );
|
||||
// FIXME final float g = 0xff & ( col.mediumVariant >> 8 );
|
||||
// FIXME final float b = 0xff & ( col.mediumVariant );
|
||||
// FIXME // FIXME: This is most certainly not going to work!
|
||||
// FIXME GlStateManager.color4f( r / 255.0f, g / 255.0f, b / 255.0f, 1.0f );
|
||||
// FIXME }
|
||||
}
|
||||
|
||||
private void spawnVibrant(final World w, final double x, final double y, final double z) {
|
||||
|
||||
@@ -67,8 +67,7 @@ public class StackSizeRenderer {
|
||||
final float inverseScaleFactor = 1.0f / scaleFactor;
|
||||
final int offset = AEConfig.instance().isUseLargeFonts() ? 0 : -1;
|
||||
|
||||
TransformationMatrix tm = new TransformationMatrix(new Vector3f(0, 0, 300), // Taken from
|
||||
// ItemRenderer.renderItemOverlayIntoGUI
|
||||
TransformationMatrix tm = new TransformationMatrix(new Vector3f(0, 0, 300), // Taken from ItemRenderer.renderItemOverlayIntoGUI
|
||||
null, new Vector3f(scaleFactor, scaleFactor, scaleFactor), null);
|
||||
|
||||
RenderSystem.disableBlend();
|
||||
|
||||
@@ -142,7 +142,6 @@ public class CableBusBakedModel implements IBakedModel {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.facadeBuilder.buildFacadeQuads(layer, renderState, rand, quads, this.partModels::get);
|
||||
|
||||
return quads;
|
||||
@@ -328,12 +327,12 @@ public class CableBusBakedModel implements IBakedModel {
|
||||
|
||||
@Override
|
||||
public boolean isGui3d() {
|
||||
return false; // This model is never used in an UI
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSideLit() {
|
||||
return false; // This model is never used in an UI
|
||||
return false;// TODO
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -18,9 +18,7 @@
|
||||
|
||||
package appeng.client.render.cablebus;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Stream;
|
||||
@@ -39,7 +37,6 @@ import net.minecraftforge.client.model.IModelConfiguration;
|
||||
import appeng.api.util.AEColor;
|
||||
import appeng.client.render.BasicUnbakedModel;
|
||||
import appeng.core.AELog;
|
||||
import appeng.core.AppEng;
|
||||
import appeng.core.features.registries.PartModels;
|
||||
|
||||
/**
|
||||
@@ -47,8 +44,6 @@ import appeng.core.features.registries.PartModels;
|
||||
*/
|
||||
public class CableBusModel implements BasicUnbakedModel<CableBusModel> {
|
||||
|
||||
public static final ResourceLocation TRANSLUCENT_FACADE_MODEL = AppEng.makeId("part/translucent_facade");
|
||||
|
||||
private final PartModels partModels;
|
||||
|
||||
public CableBusModel(PartModels partModels) {
|
||||
@@ -58,9 +53,7 @@ public class CableBusModel implements BasicUnbakedModel<CableBusModel> {
|
||||
@Override
|
||||
public Collection<ResourceLocation> getModelDependencies() {
|
||||
partModels.setInitialized(true);
|
||||
List<ResourceLocation> models = new ArrayList<>(partModels.getModels());
|
||||
models.add(TRANSLUCENT_FACADE_MODEL);
|
||||
return models;
|
||||
return partModels.getModels();
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -75,11 +68,7 @@ public class CableBusModel implements BasicUnbakedModel<CableBusModel> {
|
||||
Map<ResourceLocation, IBakedModel> partModels = this.loadPartModels(bakery, spriteGetter, modelTransform);
|
||||
|
||||
CableBuilder cableBuilder = new CableBuilder(spriteGetter);
|
||||
|
||||
IBakedModel translucentFacadeModel = bakery.getBakedModel(TRANSLUCENT_FACADE_MODEL, modelTransform,
|
||||
spriteGetter);
|
||||
|
||||
FacadeBuilder facadeBuilder = new FacadeBuilder(translucentFacadeModel);
|
||||
FacadeBuilder facadeBuilder = new FacadeBuilder();
|
||||
|
||||
// This should normally not be used, but we *have* to provide a particle texture
|
||||
// or otherwise damage models will
|
||||
|
||||
@@ -20,7 +20,6 @@ package appeng.client.render.cablebus;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.EnumMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
@@ -30,8 +29,6 @@ import java.util.function.Function;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.renderer.BlockRendererDispatcher;
|
||||
@@ -91,9 +88,6 @@ public class FacadeBuilder {
|
||||
new AxisAlignedBB(0.0, 0.0, 0.0, THIN_THICKNESS, 1.0, 1.0),
|
||||
new AxisAlignedBB(1.0 - THIN_THICKNESS, 0.0, 0.0, 1.0, 1.0, 1.0) };
|
||||
|
||||
// Pre-rotated transparent facade quads
|
||||
private final Map<Direction, List<BakedQuad>> transparentFacadeQuads;
|
||||
|
||||
private final ThreadLocal<BakedPipeline> pipelines = ThreadLocal.withInitial(() -> BakedPipeline.builder()
|
||||
// Clamper is responsible for clamping the vertex to the bounds specified.
|
||||
.addElement("clamper", QuadClamper.FACTORY)
|
||||
@@ -110,29 +104,6 @@ public class FacadeBuilder {
|
||||
);
|
||||
private final ThreadLocal<Quad> collectors = ThreadLocal.withInitial(Quad::new);
|
||||
|
||||
public FacadeBuilder() {
|
||||
// This constructor is used for item models where transparent facades are not a
|
||||
// concern
|
||||
this.transparentFacadeQuads = new EnumMap<>(Direction.class);
|
||||
for (Direction facing : Direction.values()) {
|
||||
this.transparentFacadeQuads.put(facing, Collections.emptyList());
|
||||
}
|
||||
}
|
||||
|
||||
public FacadeBuilder(IBakedModel transparentFacadeModel) {
|
||||
// Pre-rotate the transparent facade model to all possible sides so that we can
|
||||
// add it quicker later
|
||||
List<BakedQuad> partQuads = transparentFacadeModel.getQuads(null, null, new Random(), EmptyModelData.INSTANCE);
|
||||
this.transparentFacadeQuads = new EnumMap<>(Direction.class);
|
||||
|
||||
for (Direction facing : Direction.values()) {
|
||||
// Rotate quads accordingly
|
||||
QuadRotator rotator = new QuadRotator();
|
||||
List<BakedQuad> rotated = rotator.rotateQuads(partQuads, facing, Direction.UP);
|
||||
this.transparentFacadeQuads.put(facing, ImmutableList.copyOf(rotated));
|
||||
}
|
||||
}
|
||||
|
||||
public void buildFacadeQuads(RenderType layer, CableBusRenderState renderState, Random rand, List<BakedQuad> quads,
|
||||
Function<ResourceLocation, IBakedModel> modelLookup) {
|
||||
BakedPipeline pipeline = this.pipelines.get();
|
||||
@@ -159,20 +130,14 @@ public class FacadeBuilder {
|
||||
Direction.UP));
|
||||
}
|
||||
}
|
||||
|
||||
// When we're forcing transparent facades, add a "border" model that indicates
|
||||
// where the facade is,
|
||||
// But otherwise skip the rest.
|
||||
if (transparent) {
|
||||
if (layer != RenderType.getCutout()) {
|
||||
quads.addAll(transparentFacadeQuads.get(side));
|
||||
}
|
||||
// If we are forcing transparency and this isn't the Translucent layer.
|
||||
if (transparent && layer != RenderType.getTranslucent()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
BlockState blockState = facadeRenderState.getSourceBlock();
|
||||
// If we aren't forcing transparency let the block decide if it should render.
|
||||
if (layer != null) {
|
||||
if (!transparent && layer != null) {
|
||||
if (!RenderTypeLookup.canRenderInLayer(blockState, layer)) {
|
||||
continue;
|
||||
}
|
||||
@@ -233,7 +198,7 @@ public class FacadeBuilder {
|
||||
List<BakedQuad> modelQuads = new ArrayList<>();
|
||||
// If we are forcing transparent facades, fake the render layer, and grab all
|
||||
// quads.
|
||||
if (layer == null) {
|
||||
if (transparent || layer == null) {
|
||||
for (RenderType forcedLayer : RenderType.getBlockRenderTypes()) {
|
||||
// Check if the block renders on the layer we want to force.
|
||||
if (RenderTypeLookup.canRenderInLayer(blockState, forcedLayer)) {
|
||||
|
||||
@@ -144,16 +144,16 @@ public class LightningFX extends SpriteTexturedParticle {
|
||||
for (int layer = 0; layer < 2; layer++) {
|
||||
if (layer == 0) {
|
||||
scale = 0.04;
|
||||
// FIXME offX *= 0.001;
|
||||
// FIXME offY *= 0.001;
|
||||
// FIXME offZ *= 0.001;
|
||||
// FIXME offX *= 0.001;
|
||||
// FIXME offY *= 0.001;
|
||||
// FIXME offZ *= 0.001;
|
||||
red = this.particleRed * j * 0.4f;
|
||||
green = this.particleGreen * j * 0.25f;
|
||||
blue = this.particleBlue * j * 0.45f;
|
||||
} else {
|
||||
// FIXME offX = 0;
|
||||
// FIXME offY = 0;
|
||||
// FIXME offZ = 0;
|
||||
// FIXME offX = 0;
|
||||
// FIXME offY = 0;
|
||||
// FIXME offZ = 0;
|
||||
scale = 0.02;
|
||||
red = this.particleRed * j * 0.9f;
|
||||
green = this.particleGreen * j * 0.65f;
|
||||
|
||||
@@ -177,42 +177,6 @@ public final class AppEng {
|
||||
return this.registration.advancementTriggers;
|
||||
}
|
||||
|
||||
// @EventHandler
|
||||
// private void preInit( final FMLPreInitializationEvent event )
|
||||
// {
|
||||
// final Stopwatch watch = Stopwatch.createStarted();
|
||||
// this.configDirectory = new File( event.getModConfigurationDirectory().getPath(), "AppliedEnergistics2" );
|
||||
//
|
||||
// final File configFile = new File( this.configDirectory, "AppliedEnergistics2.cfg" );
|
||||
// final File facadeFile = new File( this.configDirectory, "Facades.cfg" );
|
||||
// final File versionFile = new File( this.configDirectory, "VersionChecker.cfg" );
|
||||
// final File recipeFile = new File( this.configDirectory, "CustomRecipes.cfg" );
|
||||
// final Configuration recipeConfiguration = new Configuration( recipeFile );
|
||||
//
|
||||
// AEConfig.init( configFile );
|
||||
// FacadeConfig.init( facadeFile );
|
||||
//
|
||||
// AELog.info( "Pre Initialization ( started )" );
|
||||
//
|
||||
//
|
||||
// for( final IntegrationType type : IntegrationType.values() )
|
||||
// {
|
||||
// IntegrationRegistry.INSTANCE.add( type );
|
||||
// }
|
||||
//
|
||||
// this.registration.preInitialize( event );
|
||||
//
|
||||
// if( Platform.isClient() )
|
||||
// {
|
||||
// AppEng.proxy.preinit();
|
||||
// }
|
||||
//
|
||||
// IntegrationRegistry.INSTANCE.preInit();
|
||||
//
|
||||
// AELog.info( "Pre Initialization ( ended after " + watch.elapsed( TimeUnit.MILLISECONDS ) + "ms )" );
|
||||
//
|
||||
// }
|
||||
|
||||
private void startService(final String serviceName, final Thread thread) {
|
||||
thread.setName(serviceName);
|
||||
thread.setPriority(Thread.MIN_PRIORITY);
|
||||
|
||||
@@ -606,12 +606,12 @@ final class Registration {
|
||||
blocks.energyCell().maybeItem().ifPresent(cell -> registries.charger().addChargeRate(cell, 8000d));
|
||||
blocks.energyCellDense().maybeItem().ifPresent(cell -> registries.charger().addChargeRate(cell, 16000d));
|
||||
|
||||
// FIXME // add villager trading to black smiths for a few basic materials
|
||||
// FIXME if( AEConfig.instance().isFeatureEnabled( AEFeature.VILLAGER_TRADING ) )
|
||||
// FIXME {
|
||||
// FIXME // TODO: VILLAGER TRADING
|
||||
// FIXME // VillagerRegistry.instance().getRegisteredVillagers().registerVillageTradeHandler( 3, new AETrading() );
|
||||
// FIXME }
|
||||
// FIXME // add villager trading to black smiths for a few basic materials
|
||||
// FIXME if( AEConfig.instance().isFeatureEnabled( AEFeature.VILLAGER_TRADING ) )
|
||||
// FIXME {
|
||||
// FIXME // TODO: VILLAGER TRADING
|
||||
// FIXME // VillagerRegistry.instance().getRegisteredVillagers().registerVillageTradeHandler( 3, new AETrading() );
|
||||
// FIXME }
|
||||
|
||||
final IMovableRegistry mr = registries.movable();
|
||||
|
||||
|
||||
@@ -73,22 +73,22 @@ public final class P2PTunnelRegistry implements IP2PTunnelRegistry {
|
||||
this.addNewAttunement(blocks.energyCell(), TunnelType.FE_POWER);
|
||||
this.addNewAttunement(blocks.energyCellCreative(), TunnelType.FE_POWER);
|
||||
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 0 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 1 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 2 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 3 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 4 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 5 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 0 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 1 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 2 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 3 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 4 ), TunnelType.FE_POWER );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_0", 5 ), TunnelType.FE_POWER );
|
||||
|
||||
/**
|
||||
* EU tunnel items
|
||||
*/
|
||||
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 0 ), TunnelType.IC2_POWER ); // Copper cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 1 ), TunnelType.IC2_POWER ); // Glass fibre cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 2 ), TunnelType.IC2_POWER ); // Gold cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 3 ), TunnelType.IC2_POWER ); // HV cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 4 ), TunnelType.IC2_POWER ); // Tin cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 0 ), TunnelType.IC2_POWER ); // Copper cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 1 ), TunnelType.IC2_POWER ); // Glass fibre cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 2 ), TunnelType.IC2_POWER ); // Gold cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 3 ), TunnelType.IC2_POWER ); // HV cable
|
||||
// FIXME this.addNewAttunement( this.getModItem( "ic2", "cable", 4 ), TunnelType.IC2_POWER ); // Tin cable
|
||||
|
||||
/**
|
||||
* attune based on most redstone base items.
|
||||
@@ -115,15 +115,15 @@ public final class P2PTunnelRegistry implements IP2PTunnelRegistry {
|
||||
this.addNewAttunement(new ItemStack(Blocks.HOPPER), TunnelType.ITEM);
|
||||
this.addNewAttunement(new ItemStack(Blocks.CHEST), TunnelType.ITEM);
|
||||
this.addNewAttunement(new ItemStack(Blocks.TRAPPED_CHEST), TunnelType.ITEM);
|
||||
// FIXME this.addNewAttunement( this.getModItem( "extrautilities", "extractor_base", 0 ), TunnelType.ITEM );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "mekanism", "parttransmitter", 9 ), TunnelType.ITEM );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 0 ), TunnelType.ITEM ); // itemduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 1 ), TunnelType.ITEM ); // itemduct
|
||||
// FIXME // (opaque)
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 2 ), TunnelType.ITEM ); // impulse
|
||||
// FIXME // itemduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 3 ), TunnelType.ITEM ); // impulse
|
||||
// FIXME // itemduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "extrautilities", "extractor_base", 0 ), TunnelType.ITEM );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "mekanism", "parttransmitter", 9 ), TunnelType.ITEM );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 0 ), TunnelType.ITEM ); // itemduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 1 ), TunnelType.ITEM ); // itemduct
|
||||
// FIXME // (opaque)
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 2 ), TunnelType.ITEM ); // impulse
|
||||
// FIXME // itemduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_32", 3 ), TunnelType.ITEM ); // impulse
|
||||
// FIXME // itemduct
|
||||
// (opaque)
|
||||
|
||||
/**
|
||||
@@ -133,18 +133,18 @@ public final class P2PTunnelRegistry implements IP2PTunnelRegistry {
|
||||
this.addNewAttunement(new ItemStack(Items.LAVA_BUCKET), TunnelType.FLUID);
|
||||
this.addNewAttunement(new ItemStack(Items.MILK_BUCKET), TunnelType.FLUID);
|
||||
this.addNewAttunement(new ItemStack(Items.WATER_BUCKET), TunnelType.FLUID);
|
||||
// FIXME this.addNewAttunement( this.getModItem( "mekanism", "machineblock2", 11 ), TunnelType.FLUID );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "mekanism", "parttransmitter", 4 ), TunnelType.FLUID );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "extrautilities", "extractor_base", 6 ), TunnelType.FLUID );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 0 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 1 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME // (opaque)
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 2 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME // hardened
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 3 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME // hardened
|
||||
// FIXME // (opaque)
|
||||
// FIXME
|
||||
// FIXME this.addNewAttunement( this.getModItem( "mekanism", "machineblock2", 11 ), TunnelType.FLUID );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "mekanism", "parttransmitter", 4 ), TunnelType.FLUID );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "extrautilities", "extractor_base", 6 ), TunnelType.FLUID );
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 0 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 1 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME // (opaque)
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 2 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME // hardened
|
||||
// FIXME this.addNewAttunement( this.getModItem( "thermaldynamics", "duct_16", 3 ), TunnelType.FLUID ); // fluiduct
|
||||
// FIXME // hardened
|
||||
// FIXME // (opaque)
|
||||
// FIXME
|
||||
for (final AEColor c : AEColor.values()) {
|
||||
this.addNewAttunement(parts.cableGlass().stack(c, 1), TunnelType.ME);
|
||||
this.addNewAttunement(parts.cableCovered().stack(c, 1), TunnelType.ME);
|
||||
|
||||
@@ -106,37 +106,37 @@ class GrinderRecipeCategory implements IRecipeCategory<GrinderRecipe> {
|
||||
ingredients.setOutputs(VanillaTypes.ITEM, outputs);
|
||||
}
|
||||
|
||||
// FIXME USE SPECIAL INGREDIENT TYPE
|
||||
// FIXME @Override
|
||||
// FIXME public void drawInfo(Minecraft minecraft, int recipeWidth, int recipeHeight, int mouseX, int mouseY )
|
||||
// FIXME {
|
||||
// FIXME
|
||||
// FIXME FontRenderer fr = Minecraft.getMinecraft().fontRenderer;
|
||||
// FIXME
|
||||
// FIXME int x = 118;
|
||||
// FIXME
|
||||
// FIXME final float scale = 0.85f;
|
||||
// FIXME final float invScale = 1 / scale;
|
||||
// FIXME GlStateManager.scale( scale, scale, 1 );
|
||||
// FIXME
|
||||
// FIXME if( this.recipe.getOptionalOutput() != null )
|
||||
// FIXME {
|
||||
// FIXME String text = String.format( "%d%%", (int) ( this.recipe.getOptionalChance() * 100 ) );
|
||||
// FIXME float width = fr.getStringWidth( text ) * scale;
|
||||
// FIXME int xScaled = Math.round( ( x + ( 18 - width ) / 2 ) * invScale );
|
||||
// FIXME fr.drawString( text, xScaled, (int) ( 65 * invScale ), Color.gray.getRGB() );
|
||||
// FIXME x += 18;
|
||||
// FIXME }
|
||||
// FIXME
|
||||
// FIXME if( this.recipe.getSecondOptionalOutput() != null )
|
||||
// FIXME {
|
||||
// FIXME String text = String.format( "%d%%", (int) ( this.recipe.getSecondOptionalChance() * 100 ) );
|
||||
// FIXME float width = fr.getStringWidth( text ) * scale;
|
||||
// FIXME int xScaled = Math.round( ( x + ( 18 - width ) / 2 ) * invScale );
|
||||
// FIXME fr.drawString( text, xScaled, (int) ( 65 * invScale ), Color.gray.getRGB() );
|
||||
// FIXME }
|
||||
// FIXME
|
||||
// FIXME GlStateManager.scale( invScale, invScale, 1 );
|
||||
// FIXME }
|
||||
// FIXME USE SPECIAL INGREDIENT TYPE
|
||||
// FIXME @Override
|
||||
// FIXME public void drawInfo(Minecraft minecraft, int recipeWidth, int recipeHeight, int mouseX, int mouseY )
|
||||
// FIXME {
|
||||
// FIXME
|
||||
// FIXME FontRenderer fr = Minecraft.getMinecraft().fontRenderer;
|
||||
// FIXME
|
||||
// FIXME int x = 118;
|
||||
// FIXME
|
||||
// FIXME final float scale = 0.85f;
|
||||
// FIXME final float invScale = 1 / scale;
|
||||
// FIXME GlStateManager.scale( scale, scale, 1 );
|
||||
// FIXME
|
||||
// FIXME if( this.recipe.getOptionalOutput() != null )
|
||||
// FIXME {
|
||||
// FIXME String text = String.format( "%d%%", (int) ( this.recipe.getOptionalChance() * 100 ) );
|
||||
// FIXME float width = fr.getStringWidth( text ) * scale;
|
||||
// FIXME int xScaled = Math.round( ( x + ( 18 - width ) / 2 ) * invScale );
|
||||
// FIXME fr.drawString( text, xScaled, (int) ( 65 * invScale ), Color.gray.getRGB() );
|
||||
// FIXME x += 18;
|
||||
// FIXME }
|
||||
// FIXME
|
||||
// FIXME if( this.recipe.getSecondOptionalOutput() != null )
|
||||
// FIXME {
|
||||
// FIXME String text = String.format( "%d%%", (int) ( this.recipe.getSecondOptionalChance() * 100 ) );
|
||||
// FIXME float width = fr.getStringWidth( text ) * scale;
|
||||
// FIXME int xScaled = Math.round( ( x + ( 18 - width ) / 2 ) * invScale );
|
||||
// FIXME fr.drawString( text, xScaled, (int) ( 65 * invScale ), Color.gray.getRGB() );
|
||||
// FIXME }
|
||||
// FIXME
|
||||
// FIXME GlStateManager.scale( invScale, invScale, 1 );
|
||||
// FIXME }
|
||||
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ public abstract class AEBasePoweredItem extends AEBaseItem implements IAEItemPow
|
||||
|
||||
public AEBasePoweredItem(final DoubleSupplier powerCapacity, Properties props) {
|
||||
super(props);
|
||||
// FIXME this.setFull3D();
|
||||
// FIXME this.setFull3D();
|
||||
|
||||
this.powerCapacity = powerCapacity;
|
||||
}
|
||||
|
||||
@@ -55,7 +55,8 @@ import appeng.core.AppEng;
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
public class MolecularAssemblerRenderer extends TileEntityRenderer<MolecularAssemblerTileEntity> {
|
||||
|
||||
public static final ResourceLocation LIGHTS_MODEL = AppEng.makeId("block/molecular_assembler_lights");
|
||||
public static final ResourceLocation LIGHTS_MODEL = new ResourceLocation(AppEng.MOD_ID,
|
||||
"block/molecular_assembler_lights");
|
||||
|
||||
private static final RenderType MC_161917_RENDERTYPE_FIX = createRenderType();
|
||||
|
||||
|
||||
@@ -1064,11 +1064,8 @@ public class Platform {
|
||||
if (items != null && checkFuzzy) {
|
||||
for (final IAEItemStack x : items) {
|
||||
final ItemStack sh = x.getDefinition();
|
||||
if ((Platform.itemComparisons().isEqualItemType(providedTemplate,
|
||||
sh) /* FIXME || ae_req.sameOre( x ) */ ) && !ItemStack.areItemsEqual(sh, output)) { // Platform.isSameItemType(
|
||||
// sh,
|
||||
// providedTemplate
|
||||
// )
|
||||
if ((Platform.itemComparisons().isEqualItemType(providedTemplate, sh))
|
||||
&& !ItemStack.areItemsEqual(sh, output)) {
|
||||
final ItemStack cp = sh.copy();
|
||||
cp.setCount(1);
|
||||
ci.setInventorySlotContents(slot, cp);
|
||||
|
||||
@@ -90,14 +90,6 @@ public class ItemComparisonHelper {
|
||||
return (percentDamagedOfA > mode.breakPoint) == (percentDamagedOfB > mode.breakPoint);
|
||||
}
|
||||
}
|
||||
// FIXME
|
||||
// final OreReference aOR = OreHelper.INSTANCE.getOre( a ).orElse( null );
|
||||
// final OreReference bOR = OreHelper.INSTANCE.getOre( b ).orElse( null );
|
||||
//
|
||||
// if( OreHelper.INSTANCE.sameOre( aOR, bOR ) )
|
||||
// {
|
||||
// return true;
|
||||
// }
|
||||
|
||||
return a.isItemEqual(b);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"textures": {
|
||||
"0": "appliedenergistics2:part/cable_anchor",
|
||||
"particle": "appliedenergistics2:part/cable_anchor"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Element",
|
||||
"from": [7.0, 7.0, 1.0],
|
||||
"to": [9.0, 9.0, 6.0],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#0",
|
||||
"uv": [0.0, 0.0, 2.0, 2.0]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#0",
|
||||
"uv": [0.0, 0.0, 5.0, 2.0]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#0",
|
||||
"uv": [0.0, 0.0, 2.0, 2.0]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#0",
|
||||
"uv": [0.0, 0.0, 5.0, 2.0]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#0",
|
||||
"uv": [0.0, 0.0, 2.0, 5.0]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#0",
|
||||
"uv": [0.0, 0.0, 2.0, 5.0]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,58 +0,0 @@
|
||||
{
|
||||
"textures": {
|
||||
"facade": "appliedenergistics2:part/translucent_facade"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 0.25, 0.25],
|
||||
"faces": {
|
||||
"north": { "uv": [0, 15.75, 16, 16], "texture": "#facade" },
|
||||
"east": { "uv": [15.75, 15.75, 16, 16], "texture": "#facade" },
|
||||
"south": { "uv": [0, 15.75, 16, 16], "texture": "#facade" },
|
||||
"west": { "uv": [0, 15.75, 1, 16], "texture": "#facade" },
|
||||
"up": { "uv": [0, 0, 16, 1], "texture": "#facade" },
|
||||
"down": { "uv": [0, 15.75, 16, 16], "texture": "#facade" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 15.75, 0],
|
||||
"to": [16, 16, 0.25],
|
||||
"rotation": { "angle": 0, "axis": "y", "origin": [8, 23, 8] },
|
||||
"faces": {
|
||||
"north": { "uv": [0, 0, 16, 1], "texture": "#facade" },
|
||||
"east": { "uv": [15.75, 0, 16, 1], "texture": "#facade" },
|
||||
"south": { "uv": [0, 0, 16, 1], "texture": "#facade" },
|
||||
"west": { "uv": [0, 0, 1, 1], "texture": "#facade" },
|
||||
"up": { "uv": [0, 0, 16, 1], "texture": "#facade" },
|
||||
"down": { "uv": [0, 15.75, 16, 16], "texture": "#facade" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0.25, 0],
|
||||
"to": [0.25, 15.75, 0.25],
|
||||
"rotation": { "angle": 0, "axis": "y", "origin": [8, 23, 8] },
|
||||
"faces": {
|
||||
"north": { "uv": [15.75, 1, 16, 15.75], "texture": "#facade" },
|
||||
"east": { "uv": [15.75, 1, 16, 15.75], "texture": "#facade" },
|
||||
"south": { "uv": [0, 1, 1, 15.75], "texture": "#facade" },
|
||||
"west": { "uv": [0, 1, 1, 15.75], "texture": "#facade" },
|
||||
"up": { "uv": [0, 0, 1, 1], "texture": "#facade" },
|
||||
"down": { "uv": [0, 15.75, 1, 16], "texture": "#facade" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [15.75, 0.25, 0],
|
||||
"to": [16, 15.75, 0.25],
|
||||
"rotation": { "angle": 0, "axis": "y", "origin": [23, 23, 8] },
|
||||
"faces": {
|
||||
"north": { "uv": [0, 1, 1, 15.75], "texture": "#facade" },
|
||||
"east": { "uv": [15.75, 1, 16, 15.75], "texture": "#facade" },
|
||||
"south": { "uv": [15.75, 1, 16, 15.75], "texture": "#facade" },
|
||||
"west": { "uv": [0, 1, 1, 15.75], "texture": "#facade" },
|
||||
"up": { "uv": [15.75, 0, 16, 1], "texture": "#facade" },
|
||||
"down": { "uv": [15.75, 15.75, 16, 16], "texture": "#facade" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 126 B |
Reference in New Issue
Block a user