From 1fbaf9a3f4917eccc12984652c77e4f8c7d52976 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Fri, 7 Feb 2014 16:22:08 -0500 Subject: [PATCH] Ice spell effect solidly 9/12 done Added some models to the spell effect blocks. Texturing needs work. --- .../AlchemicalWizardry.java | 4 ++ .../BloodMagicConfiguration.java | 1 + .../common/AlchemicalWizardryEventHooks.java | 47 +++++++++++++++--- .../common/PotionIceCloak.java | 18 +++++++ .../itemRender/TEConduitItemRenderer.java | 2 +- .../TESpellEffectBlockItemRenderer.java | 2 +- .../spell/complex/effect/SpellEffectIce.java | 21 ++++---- .../impactEffects/ice/SelfDefensiveIce.java | 21 ++++++++ .../textures/models/SpellEffectIce.png | Bin 0 -> 953 bytes 9 files changed, 95 insertions(+), 21 deletions(-) create mode 100644 BM_src/WayofTime/alchemicalWizardry/common/PotionIceCloak.java create mode 100644 BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/impactEffects/ice/SelfDefensiveIce.java create mode 100644 resources/assets/alchemicalwizardry/textures/models/SpellEffectIce.png diff --git a/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java index 5f6c4435..c102848d 100644 --- a/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java +++ b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java @@ -32,6 +32,7 @@ import WayofTime.alchemicalWizardry.common.PotionBoost; import WayofTime.alchemicalWizardry.common.PotionDrowning; import WayofTime.alchemicalWizardry.common.PotionFlameCloak; import WayofTime.alchemicalWizardry.common.PotionFlight; +import WayofTime.alchemicalWizardry.common.PotionIceCloak; import WayofTime.alchemicalWizardry.common.PotionInhibit; import WayofTime.alchemicalWizardry.common.PotionProjectileProtect; import WayofTime.alchemicalWizardry.common.PotionReciprocation; @@ -131,6 +132,7 @@ public class AlchemicalWizardry public static Potion customPotionFlight; public static Potion customPotionReciprocation; public static Potion customPotionFlameCloak; + public static Potion customPotionIceCloak; public static int customPotionDrowningID; public static int customPotionBoostID; @@ -139,6 +141,7 @@ public class AlchemicalWizardry public static int customPotionFlightID; public static int customPotionReciprocationID; public static int customPotionFlameCloakID; + public static int customPotionIceCloakID; public static boolean isThaumcraftLoaded; public static boolean isForestryLoaded; @@ -557,6 +560,7 @@ public class AlchemicalWizardry customPotionFlight = (new PotionFlight(customPotionFlightID, false, 0)).setIconIndex(0, 0).setPotionName("Flight"); customPotionReciprocation = (new PotionReciprocation(customPotionReciprocationID, false, 0xFFFFFF)).setIconIndex(0, 0).setPotionName("Reciprocation"); customPotionFlameCloak = (new PotionFlameCloak(customPotionFlameCloakID,false,0).setIconIndex(0,0).setPotionName("Flame Cloak")); + customPotionIceCloak = (new PotionIceCloak(customPotionIceCloakID,false,0).setIconIndex(0,0).setPotionName("Ice Cloak")); //All items registered go here //LanguageRegistry.addName(orbOfTesting, "Orb of Testing"); LanguageRegistry.addName(ModItems.weakBloodOrb, "Weak Blood Orb"); diff --git a/BM_src/WayofTime/alchemicalWizardry/BloodMagicConfiguration.java b/BM_src/WayofTime/alchemicalWizardry/BloodMagicConfiguration.java index 4b55f0a4..22676828 100644 --- a/BM_src/WayofTime/alchemicalWizardry/BloodMagicConfiguration.java +++ b/BM_src/WayofTime/alchemicalWizardry/BloodMagicConfiguration.java @@ -45,6 +45,7 @@ public class BloodMagicConfiguration AlchemicalWizardry.customPotionFlightID = config.get("Potion ID", "Flight", 104).getInt(); AlchemicalWizardry.customPotionReciprocationID = config.get("Potion ID", "Reciprocation", 105).getInt(); AlchemicalWizardry.customPotionFlameCloakID = config.get("Potion ID","FlameCloak",106).getInt(); + AlchemicalWizardry.customPotionIceCloakID = config.get("Potion ID","IceCloak",107).getInt(); MeteorParadigm.maxChance = config.get("meteor", "maxChance", 1000).getInt(); AlchemicalWizardry.doMeteorsDestroyBlocks = config.get("meteor", "doMeteorsDestroyBlocks", true).getBoolean(true); diff --git a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java b/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java index 7848d707..a36c67cc 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/AlchemicalWizardryEventHooks.java @@ -1,10 +1,11 @@ package WayofTime.alchemicalWizardry.common; -import WayofTime.alchemicalWizardry.AlchemicalWizardry; -import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; -import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellHelper; -import cpw.mods.fml.common.ObfuscationReflectionHelper; -import cpw.mods.fml.relauncher.ReflectionHelper; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; + import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.IProjectile; @@ -14,12 +15,16 @@ import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.potion.Potion; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.DamageSource; +import net.minecraft.util.Vec3; import net.minecraftforge.event.ForgeSubscribe; import net.minecraftforge.event.entity.living.LivingAttackEvent; import net.minecraftforge.event.entity.living.LivingEvent.LivingJumpEvent; import net.minecraftforge.event.entity.living.LivingEvent.LivingUpdateEvent; - -import java.util.*; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; +import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellHelper; +import cpw.mods.fml.common.ObfuscationReflectionHelper; +import cpw.mods.fml.relauncher.ReflectionHelper; public class AlchemicalWizardryEventHooks { @@ -81,6 +86,11 @@ public class AlchemicalWizardryEventHooks double x = entityLiving.posX; double y = entityLiving.posY; double z = entityLiving.posZ; + + Vec3 blockVector = SpellHelper.getEntityBlockVector(entityLiving); + int xPos = (int)(blockVector.xCoord); + int yPos = (int)(blockVector.yCoord); + int zPos = (int)(blockVector.zCoord); if (entityLiving instanceof EntityPlayer && entityLiving.worldObj.isRemote) { @@ -248,6 +258,29 @@ public class AlchemicalWizardryEventHooks } } } + + if(entityLiving.isPotionActive(AlchemicalWizardry.customPotionIceCloak)) + { + if(entityLiving.worldObj.getWorldTime()%2==0) + entityLiving.worldObj.spawnParticle("reddust", x+SpellHelper.gaussian(1),y-1.3+SpellHelper.gaussian(0.3),z+SpellHelper.gaussian(1), 0x74,0xbb,0xfb); + int r = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionIceCloak).getAmplifier(); + int horizRange = r+1; + int vertRange = 1; + + if(!entityLiving.worldObj.isRemote) + { + for(int i=-horizRange; i<=horizRange;i++) + { + for(int k=-horizRange; k<=horizRange;k++) + { + for(int j=-vertRange-1; j<=vertRange-1; j++) + { + SpellHelper.freezeWaterBlock(entityLiving.worldObj, xPos+i, yPos+j, zPos+k); + } + } + } + } + } } } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/PotionIceCloak.java b/BM_src/WayofTime/alchemicalWizardry/common/PotionIceCloak.java new file mode 100644 index 00000000..18eba799 --- /dev/null +++ b/BM_src/WayofTime/alchemicalWizardry/common/PotionIceCloak.java @@ -0,0 +1,18 @@ +package WayofTime.alchemicalWizardry.common; + +import net.minecraft.potion.Potion; + +public class PotionIceCloak extends Potion +{ + public PotionIceCloak(int par1, boolean par2, int par3) + { + super(par1, par2, par3); + } + + @Override + public Potion setIconIndex(int par1, int par2) + { + super.setIconIndex(par1, par2); + return this; + } +} diff --git a/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TEConduitItemRenderer.java b/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TEConduitItemRenderer.java index cf062cfa..d35ab929 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TEConduitItemRenderer.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TEConduitItemRenderer.java @@ -42,7 +42,7 @@ public class TEConduitItemRenderer implements IItemRenderer GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F); //GL11.glRotatef(90F, 0.0F, 0.0F, 1.0F); //A reference to your Model file. Again, very important. - this.modelConduit.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.UP, ForgeDirection.DOWN); + this.modelConduit.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.DOWN, ForgeDirection.UP); //Tell it to stop rendering for both the PushMatrix's GL11.glPopMatrix(); GL11.glPopMatrix(); diff --git a/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java b/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java index 340f18c2..d313a2bc 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java @@ -41,7 +41,7 @@ public class TESpellEffectBlockItemRenderer implements IItemRenderer GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F); //GL11.glRotatef(90F, 0.0F, 0.0F, 1.0F); //A reference to your Model file. Again, very important. - this.modelSpellBlock.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.UP, ForgeDirection.DOWN); + this.modelSpellBlock.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.DOWN, ForgeDirection.UP); //Tell it to stop rendering for both the PushMatrix's GL11.glPopMatrix(); GL11.glPopMatrix(); diff --git a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectIce.java b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectIce.java index b33e632f..8603fbee 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectIce.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectIce.java @@ -3,12 +3,14 @@ package WayofTime.alchemicalWizardry.common.spell.complex.effect; import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmMelee; import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmProjectile; import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmSelf; +import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeDefaultIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeDefensiveIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeOffensiveIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileDefensiveIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileEnvironmentalIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileOffensiveIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfDefaultIce; +import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfDefensiveIce; import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfEnvironmentalIce; public class SpellEffectIce extends SpellEffect @@ -56,7 +58,7 @@ public class SpellEffectIce extends SpellEffect @Override public void defensiveModificationSelf(SpellParadigmSelf parad) { - // TODO Auto-generated method stub + parad.addSelfSpellEffect(new SelfDefensiveIce(this.powerEnhancement,this.potencyEnhancement,this.costEnhancement)); } @@ -69,8 +71,7 @@ public class SpellEffectIce extends SpellEffect @Override public void defaultModificationMelee(SpellParadigmMelee parad) { - // TODO Auto-generated method stub - + parad.addEntityEffect(new MeleeDefaultIce(this.powerEnhancement,this.potencyEnhancement,this.costEnhancement)); } @Override @@ -102,22 +103,19 @@ public class SpellEffectIce extends SpellEffect @Override protected int getCostForOffenseProjectile() { - // TODO Auto-generated method stub - return 0; + return (int)((60)*(this.powerEnhancement+1)*(3*this.potencyEnhancement+1)*Math.pow(0.85, costEnhancement)); } @Override protected int getCostForDefenseProjectile() { - // TODO Auto-generated method stub - return 0; + return (int)(75*(2*this.powerEnhancement+1)*(this.potencyEnhancement+1)*Math.pow(0.85, costEnhancement)); } @Override protected int getCostForEnvironmentProjectile() { - // TODO Auto-generated method stub - return 0; + return (int)(200*(2*this.powerEnhancement+1)*(2*this.potencyEnhancement+1)*Math.pow(0.85, costEnhancement)); } @Override @@ -136,8 +134,7 @@ public class SpellEffectIce extends SpellEffect @Override protected int getCostForDefenseSelf() { - // TODO Auto-generated method stub - return 0; + return (int)(200*(3*powerEnhancement+1)*(2*potencyEnhancement + 1)*Math.pow(0.85, costEnhancement)); } @Override @@ -149,7 +146,7 @@ public class SpellEffectIce extends SpellEffect @Override protected int getCostForDefaultMelee() { - return (int)(100*(potencyEnhancement+1)*(1.5*powerEnhancement+1)*Math.pow(0.85, costEnhancement)); + return (int)(125*(potencyEnhancement+1)*(1.5*powerEnhancement+1)*Math.pow(0.85, costEnhancement)); } @Override diff --git a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/impactEffects/ice/SelfDefensiveIce.java b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/impactEffects/ice/SelfDefensiveIce.java new file mode 100644 index 00000000..0345fb8e --- /dev/null +++ b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/impactEffects/ice/SelfDefensiveIce.java @@ -0,0 +1,21 @@ +package WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice; + +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.potion.PotionEffect; +import net.minecraft.world.World; +import WayofTime.alchemicalWizardry.AlchemicalWizardry; +import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.SelfSpellEffect; + +public class SelfDefensiveIce extends SelfSpellEffect +{ + public SelfDefensiveIce(int power, int potency, int cost) + { + super(power, potency, cost); + } + + @Override + public void onSelfUse(World world, EntityPlayer player) + { + player.addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionIceCloak.id,300*(2*this.powerUpgrades+1),this.potencyUpgrades)); + } +} diff --git a/resources/assets/alchemicalwizardry/textures/models/SpellEffectIce.png b/resources/assets/alchemicalwizardry/textures/models/SpellEffectIce.png new file mode 100644 index 0000000000000000000000000000000000000000..090b082a02e7712b141f1ce1e79ea3936d66d837 GIT binary patch literal 953 zcmV;q14jIbP)VGd000McNliru-U0^{3?ztd99IAU14c;abb;u8Je?oyeYxfQXGGzAL?3q1u%ih&8`WyTM zGIVKxY>oTK3w<~)JNPc4X;PvrA(m`@fFaSmqeb5FyW`0M2FP8!dfAhoOnn&Ab!GDF z{*DkxiPx=`RNK8Mdhjtq%lFT$8rO9FL)s0L8rIcno=Tah{R2RKb`Q{hV;*A!sebK- zK8!j_k1)}~Yt#GP!W%VlGO;{~XdLWio4mJ&PHvp~xJfDr(AD#riDb~6I@RTNZOOvSqxFAnh zQ8d?-32!R*p#0#n_=!+(M{>LX{{Rfg^+Q?=?yoA7T&2bM1>iA#KLYTb7On!|QCUck ztsc^T=61zlgpsoEN3?KNx5T6fiBQ;oF|8nhbpSsFO;0|-Hr8<=zDzo`+{K1C!TCZY zLTAU2`yX2XfEI<5CWVt0%e;@kGA!5Zr3*WSOoSL8-b7ZxxV}<*z}Ycm8UIv~fa=ofy$)A7kFwSSvL+OHBsKFuu=F0FTTVxkC9~?!-2<3a znPK&|3ru>hy2UsR#vm!R%&PA>pa=`lIM|y=9Q3wpDry?XlVC~0p-+T#OWJa7{Vbr% zasT#P!%LTUbne)q_F;?+V@vBlgvgx((!%x3P?|(Yx2nwpOmayc(~BZ;G_EkBjUy_! zw8{P0*kVfNzBr@H-aUFQo)D<#eAjxwBGm>8!_af{03Qc@7#xF3V@csnC&0At;+)|U zGV|U7ixl2m5$cvtivM~9*tZl#d0b;cRJ6lT8tcwdMD<}XMHpo0Nz?rU%Ur`?Xgdq| zqUe$!w4LYGH#@V`16=jzz5s(x*ZO*E(CGpW&u`RASrKYa@lo4CQu(f@FN!WZ2l%3> zFN*rppxKgfMNya1S<%k`nMiPv{z@a%KS#NEfUP!AR!<1hT5Xmhs)vV%hlhuUhlhuU bN73*fYjDdAI_6fb00000NkvXXu0mjfrUA3L literal 0 HcmV?d00001