/newcode/src/com/prupe/mcpatcher/sky/FireworksHelper.java

https://bitbucket.org/SevenBits/mcpatcher · Java · 53 lines · 45 code · 8 blank · 0 comment · 19 complexity · fe8508790c41a36f621a7a23747dcb59 MD5 · raw file

  1. package com.prupe.mcpatcher.sky;
  2. import com.prupe.mcpatcher.*;
  3. import net.minecraft.src.EntityFX;
  4. import net.minecraft.src.EntityFireworkOverlayFX;
  5. import net.minecraft.src.EntityFireworkSparkFX;
  6. import net.minecraft.src.ResourceLocation;
  7. import org.lwjgl.opengl.GL11;
  8. import java.util.Properties;
  9. public class FireworksHelper {
  10. private static final int LIT_LAYER = 3;
  11. private static final int EXTRA_LAYER = LIT_LAYER + 1;
  12. private static final ResourceLocation PARTICLE_PROPERTIES = TexturePackAPI.newMCPatcherResourceLocation("particle.properties");
  13. private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.BETTER_SKIES);
  14. private static final boolean enable = Config.getBoolean(MCPatcherUtils.BETTER_SKIES, "brightenFireworks", true);
  15. private static BlendMethod blendMethod;
  16. public static int getFXLayer(EntityFX entity) {
  17. if (enable && (entity instanceof EntityFireworkSparkFX || entity instanceof EntityFireworkOverlayFX)) {
  18. return EXTRA_LAYER;
  19. } else {
  20. return entity.getFXLayer();
  21. }
  22. }
  23. public static boolean skipThisLayer(boolean skip, int layer) {
  24. return skip || layer == LIT_LAYER || (!enable && layer > LIT_LAYER);
  25. }
  26. public static void setParticleBlendMethod(int layer) {
  27. if (enable && layer == EXTRA_LAYER && blendMethod != null) {
  28. blendMethod.applyBlending();
  29. } else {
  30. GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
  31. }
  32. }
  33. static void reload() {
  34. Properties properties = TexturePackAPI.getProperties(PARTICLE_PROPERTIES);
  35. String blend = MCPatcherUtils.getStringProperty(properties, "blend." + EXTRA_LAYER, "add");
  36. blendMethod = BlendMethod.parse(blend);
  37. if (blendMethod == null) {
  38. logger.error("%s: unknown blend method %s", PARTICLE_PROPERTIES, blend);
  39. } else if (enable) {
  40. logger.config("using %s blending for fireworks particles", blendMethod);
  41. } else {
  42. logger.config("using default blending for fireworks particles");
  43. }
  44. }
  45. }