diff --git a/build.gradle b/build.gradle index 35276bea..b3c27f49 100644 --- a/build.gradle +++ b/build.gradle @@ -1,27 +1,23 @@ buildscript { repositories { + maven { url = 'https://files.minecraftforge.net/maven' } + jcenter() mavenCentral() - maven { url "http://files.minecraftforge.net/maven" } - maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { - classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' + classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true } } plugins { - id "net.minecraftforge.gradle.forge" version "2.0.2" - id 'com.matthewprenger.cursegradle' version '1.1.0' - id 'maven-publish' + id "com.matthewprenger.cursegradle" version "1.3.0" + id "maven-publish" } -def build_number = 'CUSTOM' -if (System.getenv('BUILD_NUMBER') != null) - build_number = System.getenv('BUILD_NUMBER') +apply plugin: 'net.minecraftforge.gradle' -def username = "${mod_name}" -if (project.hasProperty('dev_username')) - username = "${dev_username}" +def build_number = System.getenv('BUILD_NUMBER') != null ? System.getenv('BUILD_NUMBER') : 'CUSTOM' +def username = project.hasProperty('dev_username') ? "${dev_username}" : "${mod_name}" group = package_group archivesBaseName = mod_name @@ -33,38 +29,54 @@ repositories { } dependencies { - deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}" - deobfCompile "mcp.mobius.waila:Hwyla:${waila_version}" - deobfCompile "info.amerifrance.guideapi:Guide-API:${guideapi_version}" + minecraft "net.minecraftforge:forge:${mc_version}-${forge_version}" + compile fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") + compile fg.deobf("mcp.mobius.waila:Hwyla:${waila_version}") } minecraft { - version = "${mc_version}-${forge_version}" - runDir = "run" + mappings channel: "snapshot", version: "20190912-1.14.3" - replace "@VERSION@", project.version - replaceIn "BloodMagic.java" + runs { + client { + workingDirectory project.file('run') + property 'forge.logging.markers', '' + property 'forge.logging.console.level', 'info' + property 'username', username - clientRunArgs += "--username=${username}" + mods { + bloodmagic { + source sourceSets.main + } + } + } - if (project.hasProperty('mappings_version')) - mappings = project.mappings_version + server { + workingDirectory project.file('run/server') + property 'forge.logging.markers', '' + property 'forge.logging.console.level', 'info' + + mods { + bloodmagic { + source sourceSets.main + } + } + } + } } +apply from: "gradle/process_mod_info.gradle" + processResources { inputs.property "version", project.version - inputs.property "mcversion", project.minecraft.version from(sourceSets.main.resources.srcDirs) { - include '**/*.info' - include '**/*.properties' + include '**/*.toml' - expand 'version': project.version, 'mcversion': project.minecraft.version + expand 'version': project.version } - from(sourceSets.main.resources.srcDirs) { - exclude '**/*.info' - exclude '**/*.properties' + exclude '**/*.toml' } } @@ -77,7 +89,6 @@ allprojects { jar { classifier = '' from sourceSets.main.output - from sourceSets.api.output manifest.mainAttributes( "Built-By": System.getProperty('user.name'), "Created-By": "${System.getProperty('java.vm.version')} + (${System.getProperty('java.vm.vendor')})", @@ -87,28 +98,21 @@ jar { ) } +// API jar task apiJar(type: Jar) { classifier = 'api' - from sourceSets.api.output - - // TODO: when FG bug is fixed, remove allJava from the api jar. - // https://github.com/MinecraftForge/ForgeGradle/issues/369 - // Gradle should be able to pull them from the -sources jar. - from sourceSets.api.allJava -} - -task javadocJar(type: Jar, dependsOn: javadoc) { - from javadoc.destinationDir - classifier = 'javadoc' + include 'com/WayofTime/bloodmagic/api/**/*' + exclude 'com/WayofTime/bloodmagic/api/impl/**/*' + from sourceSets.main.allSource + from sourceSets.main.output } task sourcesJar(type: Jar) { classifier = 'sources' from sourceSets.main.allJava - from sourceSets.api.allJava } -tasks.build.dependsOn javadoc, javadocJar, apiJar, sourcesJar +tasks.build.dependsOn apiJar, sourcesJar tasks.withType(JavaCompile) { task -> task.options.encoding = 'UTF-8' @@ -119,7 +123,6 @@ publishing { publications { mavenJava(MavenPublication) { artifact jar - artifact javadocJar artifact sourcesJar artifact apiJar } @@ -161,7 +164,6 @@ String getChangelogText() { def curseRelations = { optionalLibrary 'jei' optionalLibrary 'hwyla' - requiredLibrary 'guide-api' } curseforge { @@ -175,7 +177,6 @@ curseforge { relations curseRelations - addArtifact javadocJar addArtifact sourcesJar addArtifact apiJar } diff --git a/gradle.properties b/gradle.properties index 04505448..2e6ce016 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,12 +1,13 @@ mod_name=BloodMagic package_group=com.wayoftime.bloodmagic -mod_version=2.4.2 -mc_version=1.12.2 -forge_version=14.23.5.2808 +mod_version=2.5.0 +mc_version=1.14.4 +forge_version=28.1.1 curse_id=224791 -mappings_version=stable_39 +mapping_channel=snapshot +mapping_version=20190912-1.14.3 -jei_version=4.14.4.264 -waila_version=1.8.26-B41_1.12.2 +jei_version=6.0.0.11 +waila_version=1.10.6-B67_1.14.4 guideapi_version=1.12-2.1.8-63 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a5ffca25..9d7c377b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip diff --git a/src/main/java/WayofTime/bloodmagic/BloodMagic.java b/src/main/java/WayofTime/bloodmagic/BloodMagic.java index 4f763a30..19437999 100644 --- a/src/main/java/WayofTime/bloodmagic/BloodMagic.java +++ b/src/main/java/WayofTime/bloodmagic/BloodMagic.java @@ -16,7 +16,7 @@ import WayofTime.bloodmagic.structures.ModDungeons; import WayofTime.bloodmagic.util.PluginUtil; import WayofTime.bloodmagic.util.handler.IMCHandler; import com.google.common.collect.Lists; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraft.launchwrapper.Launch; import net.minecraftforge.common.config.Configuration; @@ -40,13 +40,13 @@ public class BloodMagic { public static final boolean IS_DEV = (Boolean) Launch.blackboard.get("fml.deobfuscatedEnvironment"); public static final List> PLUGINS = Lists.newArrayList(); public static final RitualManager RITUAL_MANAGER = new RitualManager(new Configuration(new File(Loader.instance().getConfigDir(), MODID + "/" + "rituals.cfg"))); - public static final CreativeTabs TAB_BM = new CreativeTabs(MODID + ".creativeTab") { + public static final ItemGroup TAB_BM = new ItemGroup(MODID + ".creativeTab") { @Override public ItemStack createIcon() { return OrbRegistry.getOrbStack(RegistrarBloodMagic.ORB_WEAK); } }; - public static CreativeTabs TAB_TOMES = new CreativeTabs(MODID + ".creativeTabTome") { + public static ItemGroup TAB_TOMES = new ItemGroup(MODID + ".creativeTabTome") { @Override public ItemStack createIcon() { return new ItemStack(RegistrarBloodMagicItems.UPGRADE_TOME); diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffect.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffect.java index 6bac1e53..3db3f305 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffect.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffect.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.iface.IAlchemyArray; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -17,13 +17,13 @@ public abstract class AlchemyArrayEffect { public abstract boolean update(TileEntity tile, int ticksActive); - public abstract void writeToNBT(NBTTagCompound tag); + public abstract void writeToNBT(CompoundNBT tag); - public abstract void readFromNBT(NBTTagCompound tag); + public abstract void readFromNBT(CompoundNBT tag); public abstract AlchemyArrayEffect getNewCopy(); - public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) { + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, BlockState state, Entity entity) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java index 67dc2ac6..1f234cd9 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectArrowTurret.java @@ -5,15 +5,15 @@ import java.util.List; import javax.vecmath.Vector2d; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLiving; -import net.minecraft.entity.monster.EntityMob; -import net.minecraft.entity.projectile.EntityTippedArrow; -import net.minecraft.init.Items; -import net.minecraft.item.ItemArrow; +import net.minecraft.entity.MobEntity; +import net.minecraft.entity.monster.MonsterEntity; +import net.minecraft.entity.projectile.ArrowEntity; +import net.minecraft.item.ArrowItem; +import net.minecraft.item.Items; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; @@ -23,7 +23,7 @@ import net.minecraftforge.items.IItemHandler; import WayofTime.bloodmagic.util.Utils; public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { - public EntityLiving target; + public MobEntity target; public int arrowTimer; public static final int ARROW_WINDUP = 50; private int lastChestSlot = -1; @@ -47,7 +47,7 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { if (chestTile == null) { return false; } - IItemHandler itemHandler = Utils.getInventory(chestTile, EnumFacing.UP); + IItemHandler itemHandler = Utils.getInventory(chestTile, Direction.UP); if (itemHandler == null) { return false; } @@ -55,7 +55,7 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { ItemStack arrowStack = new ItemStack(Items.AIR); if (lastChestSlot >= 0 && lastChestSlot < itemHandler.getSlots()) { ItemStack testStack = itemHandler.extractItem(lastChestSlot, 1, true); - if (testStack.isEmpty() || !(testStack.getItem() instanceof ItemArrow)) { + if (testStack.isEmpty() || !(testStack.getItem() instanceof ArrowItem)) { lastChestSlot = -1; } else { arrowStack = testStack; @@ -65,7 +65,7 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { if (lastChestSlot < 0) { for (int i = 0; i < itemHandler.getSlots(); i++) { ItemStack testStack = itemHandler.extractItem(i, 1, true); - if (!testStack.isEmpty() && testStack.getItem() instanceof ItemArrow) { + if (!testStack.isEmpty() && testStack.getItem() instanceof ArrowItem) { arrowStack = testStack; lastChestSlot = i; break; @@ -100,9 +100,9 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { arrowTimer = -1; } - List mobsInRange = world.getEntitiesWithinAABB(EntityMob.class, getBounds(pos)); + List mobsInRange = world.getEntitiesWithinAABB(MonsterEntity.class, getBounds(pos)); - for (EntityMob entity : mobsInRange) { + for (MonsterEntity entity : mobsInRange) { if (canFireOnMob(world, pos, entity))// && isMobInFilter(ent)) { target = entity; @@ -132,14 +132,14 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { return lastYaw; } - public void fireOnTarget(World world, BlockPos pos, ItemStack arrowStack, EntityLiving targetMob) { + public void fireOnTarget(World world, BlockPos pos, ItemStack arrowStack, MobEntity targetMob) { float vel = 3f; double damage = 2; if (!world.isRemote) { - if (arrowStack.getItem() instanceof ItemArrow) { + if (arrowStack.getItem() instanceof ArrowItem) { // ItemArrow arrow = (ItemArrow) arrowStack.getItem(); // EntityArrow entityarrow = arrow.createArrow(world, arrowStack, targetMob); - EntityTippedArrow entityarrow = new EntityTippedArrow(world); + ArrowEntity entityarrow = new ArrowEntity(world); entityarrow.setPotionEffect(arrowStack); entityarrow.posX = pos.getX() + 0.5; entityarrow.posY = pos.getY() + 0.5; @@ -192,12 +192,12 @@ public class AlchemyArrayEffectArrowTurret extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectAttractor.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectAttractor.java index 9d8d63d5..3be0cbb8 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectAttractor.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectAttractor.java @@ -5,12 +5,12 @@ import WayofTime.bloodmagic.fakePlayer.FakePlayerBM; import WayofTime.bloodmagic.tile.TileAlchemyArray; import com.mojang.authlib.GameProfile; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLiving; -import net.minecraft.entity.ai.EntityAIBase; -import net.minecraft.entity.ai.EntityAITasks; -import net.minecraft.entity.ai.EntityAITasks.EntityAITaskEntry; +import net.minecraft.entity.MobEntity; +import net.minecraft.entity.ai.goal.Goal; +import net.minecraft.entity.ai.goal.GoalSelector; +import net.minecraft.entity.ai.goal.GoalSelector.EntityAITaskEntry; import net.minecraft.entity.monster.*; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.pathfinding.Path; import net.minecraft.pathfinding.PathFinder; import net.minecraft.pathfinding.WalkNodeProcessor; @@ -28,7 +28,7 @@ import java.util.*; */ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { private FakePlayer target; - private Set tracking = new HashSet<>(); + private Set tracking = new HashSet<>(); private int counter = 0; private int maxMobsAttracted = 10000; @@ -48,7 +48,7 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { BlockPos pos = tile.getPos(); counter++; if (counter < 10) { - for (EntityLiving ent : tracking) { + for (MobEntity ent : tracking) { onEntityTick(pos, ent); } @@ -59,10 +59,10 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { World world = tile.getWorld(); - Set trackingThisTick = new HashSet<>(); - List entsInBounds = world.getEntitiesWithinAABB(EntityLiving.class, getBounds(pos)); + Set trackingThisTick = new HashSet<>(); + List entsInBounds = world.getEntitiesWithinAABB(MobEntity.class, getBounds(pos)); - for (EntityLiving ent : entsInBounds) { + for (MobEntity ent : entsInBounds) { if (!ent.isDead)// && isMobInFilter(ent)) { double x = (pos.getX() + 0.5D - ent.posX); @@ -92,7 +92,7 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { } } - for (EntityLiving e : tracking) { + for (MobEntity e : tracking) { if (!trackingThisTick.contains(e)) { onUntracked(e); } @@ -103,7 +103,7 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { return false; } - public boolean canEntityBeTracked(BlockPos pos, EntityLiving entity) { + public boolean canEntityBeTracked(BlockPos pos, MobEntity entity) { return getEntityCooldown(pos, entity) <= 0; } @@ -111,15 +111,15 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { return "BMAttractor:" + pos; } - public int getEntityCooldown(BlockPos pos, EntityLiving entity) { + public int getEntityCooldown(BlockPos pos, MobEntity entity) { return entity.getEntityData().getInteger(getPosKey(pos)); } - public void setEntityCooldown(BlockPos pos, EntityLiving entity, int cooldown) { + public void setEntityCooldown(BlockPos pos, MobEntity entity, int cooldown) { entity.getEntityData().setInteger(getPosKey(pos), cooldown); } - public void decrementEntityCooldown(BlockPos pos, EntityLiving entity) { + public void decrementEntityCooldown(BlockPos pos, MobEntity entity) { int cooldown = getEntityCooldown(pos, entity); if (cooldown > 0) { setEntityCooldown(pos, entity, cooldown - 1); @@ -134,29 +134,29 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { return 10; } - private void onUntracked(EntityLiving e) { - if (e instanceof EntityEnderman) { + private void onUntracked(MobEntity e) { + if (e instanceof EndermanEntity) { e.getEntityData().setBoolean("BM:tracked", false); } } - private void onTracked(EntityLiving e) { - if (e instanceof EntityEnderman) { + private void onTracked(MobEntity e) { + if (e instanceof EndermanEntity) { e.getEntityData().setBoolean("BM:tracked", true); } } - private void onEntityTick(BlockPos pos, EntityLiving ent) { - if (ent instanceof EntitySlime) { + private void onEntityTick(BlockPos pos, MobEntity ent) { + if (ent instanceof SlimeEntity) { ent.faceEntity(getTarget(ent.getEntityWorld(), pos), 10.0F, 20.0F); - } else if (ent instanceof EntitySilverfish) { + } else if (ent instanceof SilverfishEntity) { if (counter < 10) { return; } - EntitySilverfish sf = (EntitySilverfish) ent; + SilverfishEntity sf = (SilverfishEntity) ent; Path pathentity = getPathEntityToEntity(ent, getTarget(ent.getEntityWorld(), pos), getRange()); sf.getNavigator().setPath(pathentity, sf.getAIMoveSpeed()); - } else if (ent instanceof EntityBlaze) { + } else if (ent instanceof BlazeEntity) { double x = (pos.getX() + 0.5D - ent.posX); double y = (pos.getY() + 1D - ent.posY); double z = (pos.getZ() + 0.5D - ent.posZ); @@ -169,21 +169,21 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { } ent.motionZ += z / distance * speed; } - } else if (ent instanceof EntityPigZombie || ent instanceof EntitySpider) { + } else if (ent instanceof ZombiePigmanEntity || ent instanceof SpiderEntity) { forceMove(pos, ent); // ent.setAttackTarget(target); - } else if (ent instanceof EntityEnderman) { + } else if (ent instanceof EndermanEntity) { ent.setAttackTarget(getTarget(ent.getEntityWorld(), pos)); } } - private void forceMove(BlockPos pos, EntityLiving ent) { + private void forceMove(BlockPos pos, MobEntity ent) { double x = (pos.getX() + 0.5D - ent.posX); double y = (pos.getY() + 1D - ent.posY); double z = (pos.getZ() + 0.5D - ent.posZ); double distance = Math.sqrt(x * x + y * y + z * z); if (distance > 2) { - EntityMob mod = (EntityMob) ent; + MonsterEntity mod = (MonsterEntity) ent; mod.faceEntity(getTarget(ent.getEntityWorld(), pos), 180, 0); mod.getMoveHelper().strafe(0, 0.3f); if (mod.posY < pos.getY()) { @@ -200,10 +200,10 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { int targZ = MathHelper.floor(targetEntity.posZ); PathFinder pf = new PathFinder(new WalkNodeProcessor()); - return pf.findPath(targetEntity.getEntityWorld(), (EntityLiving) entity, new BlockPos(targX, targY, targZ), range); + return pf.findPath(targetEntity.getEntityWorld(), (MobEntity) entity, new BlockPos(targX, targY, targZ), range); } - private boolean trackMob(BlockPos pos, EntityLiving ent) { + private boolean trackMob(BlockPos pos, MobEntity ent) { //TODO: Figure out if this crud is needed if (useSetTarget(ent)) { ent.setAttackTarget(getTarget(ent.getEntityWorld(), pos)); @@ -215,13 +215,13 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { } } - private boolean useSetTarget(EntityLiving ent) { - return ent instanceof EntityPigZombie || ent instanceof EntitySpider || ent instanceof EntitySilverfish; + private boolean useSetTarget(MobEntity ent) { + return ent instanceof ZombiePigmanEntity || ent instanceof SpiderEntity || ent instanceof SilverfishEntity; } - public void removeAssignedAITask(BlockPos pos, EntityLiving ent) { + public void removeAssignedAITask(BlockPos pos, MobEntity ent) { Set entries = ent.tasks.taskEntries; - EntityAIBase remove = null; + Goal remove = null; for (EntityAITaskEntry entry : entries) { if (entry.action instanceof AttractTask) { AttractTask at = (AttractTask) entry.action; @@ -237,11 +237,11 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { } } - private boolean attractUsingAITask(BlockPos pos, EntityLiving ent) { + private boolean attractUsingAITask(BlockPos pos, MobEntity ent) { tracking.add(ent); Set entries = ent.tasks.taskEntries; // boolean hasTask = false; - EntityAIBase remove = null; + Goal remove = null; // boolean isTracked; for (EntityAITaskEntry entry : entries) { if (entry.action instanceof AttractTask) { @@ -263,10 +263,10 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { return true; } - private void cancelCurrentTasks(EntityLiving ent) { + private void cancelCurrentTasks(MobEntity ent) { Iterator iterator = ent.tasks.taskEntries.iterator(); - List currentTasks = new ArrayList<>(); + List currentTasks = new ArrayList<>(); while (iterator.hasNext()) { EntityAITaskEntry entityaitaskentry = iterator.next(); if (entityaitaskentry != null) { @@ -285,24 +285,24 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { } } - private boolean applySpecialCase(BlockPos pos, EntityLiving ent) { - if (ent instanceof EntitySlime) { + private boolean applySpecialCase(BlockPos pos, MobEntity ent) { + if (ent instanceof SlimeEntity) { ent.faceEntity(getTarget(ent.getEntityWorld(), pos), 10.0F, 20.0F); // ent.setAttackTarget(getTarget(ent.worldObj, pos)); return true; - } else if (ent instanceof EntitySilverfish) { - EntitySilverfish es = (EntitySilverfish) ent; + } else if (ent instanceof SilverfishEntity) { + SilverfishEntity es = (SilverfishEntity) ent; Path pathentity = getPathEntityToEntity(ent, getTarget(ent.getEntityWorld(), pos), getRange()); es.getNavigator().setPath(pathentity, es.getAIMoveSpeed()); return true; - } else if (ent instanceof EntityBlaze) { + } else if (ent instanceof BlazeEntity) { return true; } return false; } - private boolean useSpecialCase(EntityLiving ent) { - return ent instanceof EntitySlime || ent instanceof EntitySilverfish || ent instanceof EntityBlaze; + private boolean useSpecialCase(MobEntity ent) { + return ent instanceof SlimeEntity || ent instanceof SilverfishEntity || ent instanceof BlazeEntity; } public FakePlayer getTarget(World world, BlockPos pos) { @@ -315,12 +315,12 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @@ -329,15 +329,15 @@ public class AlchemyArrayEffectAttractor extends AlchemyArrayEffect { return new AlchemyArrayEffectAttractor(key); } - private static class AttractTask extends EntityAIBase { - private EntityLiving mob; + private static class AttractTask extends Goal { + private MobEntity mob; private BlockPos coord; private FakePlayer target; private int updatesSincePathing; private boolean started = false; - private AttractTask(EntityLiving mob, FakePlayer target, BlockPos coord) { + private AttractTask(MobEntity mob, FakePlayer target, BlockPos coord) { this.mob = mob; this.coord = coord; this.target = target; diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBinding.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBinding.java index d3e9849c..6659fbf1 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBinding.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBinding.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.client.render.alchemyArray.BindingAlchemyCircleRenderer; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.effect.LightningBoltEntity; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -30,7 +30,7 @@ public class AlchemyArrayEffectBinding extends AlchemyArrayEffectCrafting { BlockPos pos = tile.getPos(); ItemStack output = outputStack.copy(); - EntityItem outputEntity = new EntityItem(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output); + ItemEntity outputEntity = new ItemEntity(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output); tile.getWorld().spawnEntity(outputEntity); @@ -49,18 +49,18 @@ public class AlchemyArrayEffectBinding extends AlchemyArrayEffectCrafting { double dispX = distance * Math.sin(angle); double dispZ = -distance * Math.cos(angle); - EntityLightningBolt lightning = new EntityLightningBolt(world, pos.getX() + dispX, pos.getY(), pos.getZ() + dispZ, true); + LightningBoltEntity lightning = new LightningBoltEntity(world, pos.getX() + dispX, pos.getY(), pos.getZ() + dispZ, true); world.spawnEntity(lightning); } } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { //EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { //EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBounce.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBounce.java index cd35b720..69f5be05 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBounce.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectBounce.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.iface.IAlchemyArray; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -20,13 +20,13 @@ public class AlchemyArrayEffectBounce extends AlchemyArrayEffect { } @Override - public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) { + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, BlockState state, Entity entity) { if (entity.isSneaking()) { entity.fallDistance = 0; } else if (entity.motionY < 0.0D) { entity.motionY = -entity.motionY; - if (!(entity instanceof EntityLivingBase)) { + if (!(entity instanceof LivingEntity)) { entity.motionY *= 0.8D; } @@ -35,12 +35,12 @@ public class AlchemyArrayEffectBounce extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCrafting.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCrafting.java index 9f658335..df9ee547 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCrafting.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCrafting.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.alchemyArray; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; @@ -36,7 +36,7 @@ public class AlchemyArrayEffectCrafting extends AlchemyArrayEffect { ItemStack output = outputStack.copy(); - EntityItem outputEntity = new EntityItem(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output); + ItemEntity outputEntity = new ItemEntity(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output); tile.getWorld().spawnEntity(outputEntity); @@ -47,12 +47,12 @@ public class AlchemyArrayEffectCrafting extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCraftingNew.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCraftingNew.java index b96c9052..34f2eae3 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCraftingNew.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectCraftingNew.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.api.impl.recipe.RecipeAlchemyArray; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; @@ -31,7 +31,7 @@ public class AlchemyArrayEffectCraftingNew extends AlchemyArrayEffect { ItemStack output = recipe.getOutput().copy(); - EntityItem outputEntity = new EntityItem(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output); + ItemEntity outputEntity = new ItemEntity(tile.getWorld(), pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, output); tile.getWorld().spawnEntity(outputEntity); @@ -42,12 +42,12 @@ public class AlchemyArrayEffectCraftingNew extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectFurnaceFuel.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectFurnaceFuel.java index 16ce80b1..73d8c090 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectFurnaceFuel.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectFurnaceFuel.java @@ -4,15 +4,15 @@ import java.util.List; import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import net.minecraft.block.Block; -import net.minecraft.block.BlockFurnace; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; +import net.minecraft.block.FurnaceBlock; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.tileentity.FurnaceTileEntity; import net.minecraft.tileentity.TileEntity; -import net.minecraft.tileentity.TileEntityFurnace; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -29,9 +29,9 @@ public class AlchemyArrayEffectFurnaceFuel extends AlchemyArrayEffect { public boolean update(TileEntity tile, int ticksActive) { BlockPos pos = tile.getPos(); World world = tile.getWorld(); - EntityPlayer sacrifice = null; + PlayerEntity sacrifice = null; - for (EnumFacing face : EnumFacing.VALUES) { + for (Direction face : Direction.VALUES) { BlockPos furnacePos = pos.offset(face); Block block = world.getBlockState(furnacePos).getBlock(); if (block != Blocks.FURNACE) //This will only work vanilla furnaces. No others! @@ -40,13 +40,13 @@ public class AlchemyArrayEffectFurnaceFuel extends AlchemyArrayEffect { } TileEntity bottomTile = world.getTileEntity(furnacePos); - if (bottomTile instanceof TileEntityFurnace) { - TileEntityFurnace furnaceTile = (TileEntityFurnace) bottomTile; + if (bottomTile instanceof FurnaceTileEntity) { + FurnaceTileEntity furnaceTile = (FurnaceTileEntity) bottomTile; if (canFurnaceSmelt(furnaceTile) && !furnaceTile.isBurning()) { if (sacrifice == null || sacrifice.isDead) { AxisAlignedBB bb = new AxisAlignedBB(pos).grow(radius); - List playerList = world.getEntitiesWithinAABB(EntityPlayer.class, bb); - for (EntityPlayer player : playerList) { + List playerList = world.getEntitiesWithinAABB(PlayerEntity.class, bb); + for (PlayerEntity player : playerList) { if (!player.isDead) { sacrifice = player; } @@ -70,13 +70,13 @@ public class AlchemyArrayEffectFurnaceFuel extends AlchemyArrayEffect { return false; } - public static boolean addFuelTime(TileEntityFurnace furnaceTile, World world, BlockPos furnacePos, int cookTime) { + public static boolean addFuelTime(FurnaceTileEntity furnaceTile, World world, BlockPos furnacePos, int cookTime) { furnaceTile.setField(0, cookTime); - BlockFurnace.setState(true, world, furnacePos); + FurnaceBlock.setState(true, world, furnacePos); return true; } - public static boolean canFurnaceSmelt(TileEntityFurnace furnaceTile) { + public static boolean canFurnaceSmelt(FurnaceTileEntity furnaceTile) { ItemStack burnStack = furnaceTile.getStackInSlot(0); if (burnStack.isEmpty()) { return false; @@ -103,12 +103,12 @@ public class AlchemyArrayEffectFurnaceFuel extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectLaputa.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectLaputa.java index 1368cb50..ad2de048 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectLaputa.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectLaputa.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.alchemyArray; import java.util.Random; -import net.minecraft.block.state.IBlockState; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.block.BlockState; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -71,7 +71,7 @@ public class AlchemyArrayEffectLaputa extends AlchemyArrayEffect { if (checkIfSphere(radius, i, j, k)) { BlockPos newPos = pos.add(i, j, k); BlockPos offsetPos = newPos.up(teleportHeightOffset); - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); TeleposeEvent event = new TeleposeEvent(world, newPos, world, offsetPos); if (state.getBlockHardness(world, newPos) > 0 && !MinecraftForge.EVENT_BUS.post(event) && Utils.swapLocations(event.initalWorld, event.initialBlockPos, event.finalWorld, event.finalBlockPos)) { @@ -112,7 +112,7 @@ public class AlchemyArrayEffectLaputa extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger("radius", radius); tag.setInteger("teleportHeightOffset", teleportHeightOffset); tag.setInteger(Constants.NBT.X_COORD, currentPos.getX()); @@ -121,7 +121,7 @@ public class AlchemyArrayEffectLaputa extends AlchemyArrayEffect { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { radius = tag.getInteger("radius"); teleportHeightOffset = tag.getInteger("teleportHeightOffset"); currentPos = new BlockPos(tag.getInteger(Constants.NBT.X_COORD), tag.getInteger(Constants.NBT.Y_COORD), tag.getInteger(Constants.NBT.Z_COORD)); diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java index d0b08483..8277ff93 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java @@ -4,30 +4,27 @@ import java.util.ArrayList; import java.util.List; import java.util.Random; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.passive.EntityAnimal; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.SoundCategory; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import net.minecraftforge.fml.common.registry.EntityEntry; import net.minecraftforge.fml.common.registry.EntityRegistry; import WayofTime.bloodmagic.api.impl.BloodMagicAPI; import WayofTime.bloodmagic.api.impl.recipe.RecipeSacrificeCraft; import WayofTime.bloodmagic.ritual.AreaDescriptor; import WayofTime.bloodmagic.util.DamageSourceBloodMagic; -import WayofTime.bloodmagic.util.helper.PurificationHelper; public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { public static final AreaDescriptor itemDescriptor = new AreaDescriptor.Rectangle(new BlockPos(-5, -5, -5), 11); @@ -59,11 +56,11 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { if (ticksActive >= 200) { BlockPos pos = tile.getPos(); - List itemList = world.getEntitiesWithinAABB(EntityItem.class, itemDescriptor.getAABB(pos)); + List itemList = world.getEntitiesWithinAABB(ItemEntity.class, itemDescriptor.getAABB(pos)); List inputList = new ArrayList(); - for (EntityItem entityItem : itemList) { + for (ItemEntity entityItem : itemList) { if (entityItem.isDead || entityItem.getItem().isEmpty()) { continue; } @@ -85,8 +82,8 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { double healthRequired = recipe.getHealthRequired(); double healthAvailable = 0; - List livingEntities = world.getEntitiesWithinAABB(EntityLivingBase.class, mobDescriptor.getAABB(pos)); - for (EntityLivingBase living : livingEntities) { + List livingEntities = world.getEntitiesWithinAABB(LivingEntity.class, mobDescriptor.getAABB(pos)); + for (LivingEntity living : livingEntities) { double health = getEffectiveHealth(living); if (health > 0) { healthAvailable += health; @@ -102,7 +99,7 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { if (craftTime >= REQUIRED_CRAFT_TIME) { if (!world.isRemote) { - for (EntityLivingBase living : livingEntities) { + for (LivingEntity living : livingEntities) { double health = getEffectiveHealth(living); if (healthAvailable > 0 && health > 0) { healthAvailable -= health; @@ -116,7 +113,7 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { } } - for (EntityItem itemEntity : itemList) { + for (ItemEntity itemEntity : itemList) { itemEntity.getItem().setCount(itemEntity.getItem().getCount() - 1); if (itemEntity.getItem().isEmpty()) //TODO: Check container { @@ -124,13 +121,13 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { } } - world.spawnEntity(new EntityItem(world, pos.getX() + 0.5, pos.getY() + 2.5, pos.getZ() + 0.5, recipe.getOutput())); + world.spawnEntity(new ItemEntity(world, pos.getX() + 0.5, pos.getY() + 2.5, pos.getZ() + 0.5, recipe.getOutput())); craftTime = 0; } } else { if (world.isRemote) { Vec3d spawnPosition = new Vec3d(pos.getX() + 0.5, pos.getY() + 2.5, pos.getZ() + 0.5); - for (EntityItem itemEntity : itemList) { + for (ItemEntity itemEntity : itemList) { ItemStack stack = itemEntity.getItem(); double velocityFactor = 0.1; @@ -146,7 +143,7 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { // world.spawnParticle(EnumParticleTypes.ITEM_CRACK, spawnPosition.x, spawnPosition.y, spawnPosition.z, velVec2.x, velVec2.y, velVec2.z, Item.getIdFromItem(stack.getItem()), stack.getMetadata()); } - for (EntityLivingBase living : livingEntities) { + for (LivingEntity living : livingEntities) { double health = getEffectiveHealth(living); if (health <= 0) { continue; @@ -165,14 +162,14 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { } //Future-proofing in case I want to make different mobs give different effective health - public double getEffectiveHealth(EntityLivingBase living) { + public double getEffectiveHealth(LivingEntity living) { if (living == null) return 0; if (!living.isNonBoss()) return 0; - if (living instanceof EntityPlayer) + if (living instanceof PlayerEntity) return 0; if (living.isChild() && !(living instanceof IMob)) @@ -189,12 +186,12 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMovement.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMovement.java index 92728c9d..c626a085 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMovement.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMovement.java @@ -2,11 +2,11 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.iface.IAlchemyArray; import WayofTime.bloodmagic.tile.TileAlchemyArray; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -21,13 +21,13 @@ public class AlchemyArrayEffectMovement extends AlchemyArrayEffect { } @Override - public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) { + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, BlockState state, Entity entity) { double motionY = 0.5; double motionYGlowstoneMod = 0.05; double speed = 1.5; double speedRedstoneMod = 0.15; - EnumFacing direction = array.getRotation(); + Direction direction = array.getRotation(); TileAlchemyArray tileArray = (TileAlchemyArray) array; motionY += motionYGlowstoneMod * (tileArray.getStackInSlot(0).getCount() - 1); @@ -66,12 +66,12 @@ public class AlchemyArrayEffectMovement extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSigil.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSigil.java index beb4ba46..2188ff18 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSigil.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSigil.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.iface.ISigil; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; public class AlchemyArrayEffectSigil extends AlchemyArrayEffect { @@ -23,12 +23,12 @@ public class AlchemyArrayEffectSigil extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSkeletonTurret.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSkeletonTurret.java index d297eb60..170877e6 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSkeletonTurret.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSkeletonTurret.java @@ -2,15 +2,15 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.tile.TileAlchemyArray; import com.google.common.base.Predicate; -import net.minecraft.entity.EntityLiving; +import net.minecraft.entity.MobEntity; import net.minecraft.entity.SharedMonsterAttributes; -import net.minecraft.entity.ai.EntityAIBase; -import net.minecraft.entity.ai.EntityAINearestAttackableTarget; -import net.minecraft.entity.ai.EntityAITasks; -import net.minecraft.entity.ai.EntityAITasks.EntityAITaskEntry; -import net.minecraft.entity.monster.EntityMob; -import net.minecraft.entity.monster.EntitySkeleton; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.ai.goal.GoalSelector; +import net.minecraft.entity.ai.goal.GoalSelector.EntityAITaskEntry; +import net.minecraft.entity.ai.goal.Goal; +import net.minecraft.entity.ai.goal.NearestAttackableTargetGoal; +import net.minecraft.entity.monster.MonsterEntity; +import net.minecraft.entity.monster.SkeletonEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -25,8 +25,8 @@ import java.util.List; * Credits for the initial code go to Crazy Pants of EIO. */ public class AlchemyArrayEffectSkeletonTurret extends AlchemyArrayEffect { - public static Predicate checkSkeleton = input -> !(input instanceof EntitySkeleton); - private EntitySkeleton turret; + public static Predicate checkSkeleton = input -> !(input instanceof SkeletonEntity); + private SkeletonEntity turret; public AlchemyArrayEffectSkeletonTurret(String key) { super(key); @@ -55,9 +55,9 @@ public class AlchemyArrayEffectSkeletonTurret extends AlchemyArrayEffect { World world = tile.getWorld(); - List skeletonsInRange = world.getEntitiesWithinAABB(EntitySkeleton.class, getBounds(pos)); + List skeletonsInRange = world.getEntitiesWithinAABB(SkeletonEntity.class, getBounds(pos)); - for (EntitySkeleton entity : skeletonsInRange) { + for (SkeletonEntity entity : skeletonsInRange) { if (!entity.isDead)// && isMobInFilter(ent)) { modifyAITargetTasks(entity); @@ -87,20 +87,20 @@ public class AlchemyArrayEffectSkeletonTurret extends AlchemyArrayEffect { // e.getEntityData().setBoolean("BM:tracked", true); // } - private boolean modifyAITargetTasks(EntitySkeleton entity) { + private boolean modifyAITargetTasks(SkeletonEntity entity) { cancelCurrentTargetTasks(entity); // entity.setCombatTask(); - entity.targetTasks.addTask(1, new EntityAINearestAttackableTarget(entity, EntityMob.class, 10, true, false, checkSkeleton)); + entity.targetTasks.addTask(1, new NearestAttackableTargetGoal(entity, MonsterEntity.class, 10, true, false, checkSkeleton)); entity.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0); entity.getEntityAttribute(SharedMonsterAttributes.KNOCKBACK_RESISTANCE).setBaseValue(1); return true; } - private void cancelCurrentTargetTasks(EntityLiving entity) { + private void cancelCurrentTargetTasks(MobEntity entity) { Iterator iterator = entity.targetTasks.taskEntries.iterator(); - List currentTasks = new ArrayList<>(); + List currentTasks = new ArrayList<>(); while (iterator.hasNext()) { EntityAITaskEntry entityaitaskentry = iterator.next(); if (entityaitaskentry != null)// && entityaitaskentry.action instanceof EntityAITarget) @@ -115,12 +115,12 @@ public class AlchemyArrayEffectSkeletonTurret extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @@ -129,15 +129,15 @@ public class AlchemyArrayEffectSkeletonTurret extends AlchemyArrayEffect { return new AlchemyArrayEffectSkeletonTurret(key); } - private static class AttractTask extends EntityAIBase { - private EntityLiving mob; + private static class AttractTask extends Goal { + private MobEntity mob; private BlockPos coord; private FakePlayer target; private int updatesSincePathing; private boolean started = false; - private AttractTask(EntityLiving mob, FakePlayer target, BlockPos coord) { + private AttractTask(MobEntity mob, FakePlayer target, BlockPos coord) { this.mob = mob; this.coord = coord; this.target = target; diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSpike.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSpike.java index 57d7f774..47d36731 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSpike.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectSpike.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.alchemyArray; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.DamageSource; import net.minecraft.util.math.BlockPos; @@ -21,19 +21,19 @@ public class AlchemyArrayEffectSpike extends AlchemyArrayEffect { } @Override - public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) { - if (entity instanceof EntityLivingBase) { + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, BlockState state, Entity entity) { + if (entity instanceof LivingEntity) { entity.attackEntityFrom(DamageSource.CACTUS, 2); } } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java index 82b16d12..04fee39c 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectTeleport.java @@ -1,19 +1,19 @@ package WayofTime.bloodmagic.alchemyArray; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.SoundEvents; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.network.play.server.SPacketUpdateHealth; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; +import net.minecraft.util.SoundEvents; +import net.minecraft.network.play.server.SUpdateHealthPacket; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; import net.minecraft.util.SoundCategory; import net.minecraft.util.math.BlockPos; +import net.minecraft.world.ServerWorld; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.iface.IAlchemyArray; @@ -31,13 +31,13 @@ public class AlchemyArrayEffectTeleport extends AlchemyArrayEffect { } @Override - public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) { - EnumFacing direction = array.getRotation(); + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, BlockState state, Entity entity) { + Direction direction = array.getRotation(); teleportEntityInDirection(world, pos, entity, direction); } - public void teleportEntityInDirection(World world, BlockPos currentPos, Entity entity, EnumFacing direction) { + public void teleportEntityInDirection(World world, BlockPos currentPos, Entity entity, Direction direction) { if (entity != null && entity.timeUntilPortal <= 0) { for (int i = 1; i <= MAX_SEARCH; i++) { BlockPos offsetPos = currentPos.offset(direction, i); @@ -50,15 +50,15 @@ public class AlchemyArrayEffectTeleport extends AlchemyArrayEffect { entity.getEntityWorld().playSound(x, y, z, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.0F, 1.0F, false); entity.timeUntilPortal = TELEPORT_DELAY; if (!world.isRemote) { - if (entity instanceof EntityPlayer) { - EntityPlayerMP player = (EntityPlayerMP) entity; + if (entity instanceof PlayerEntity) { + ServerPlayerEntity player = (ServerPlayerEntity) entity; player.setPositionAndUpdate(x + 0.5, y + 0.5, z + 0.5); player.getEntityWorld().updateEntityWithOptionalForce(player, false); - player.connection.sendPacket(new SPacketUpdateHealth(player.getHealth(), player.getFoodStats().getFoodLevel(), player.getFoodStats().getSaturationLevel())); + player.connection.sendPacket(new SUpdateHealthPacket(player.getHealth(), player.getFoodStats().getFoodLevel(), player.getFoodStats().getSaturationLevel())); } else { - WorldServer worldServer = (WorldServer) entity.getEntityWorld(); + ServerWorld worldServer = (ServerWorld) entity.getEntityWorld(); entity.setPosition(x + 0.5, y + 0.5, z + 0.5); worldServer.resetUpdateEntityTick(); @@ -71,12 +71,12 @@ public class AlchemyArrayEffectTeleport extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectUpdraft.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectUpdraft.java index c73d7da1..dfd9f1be 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectUpdraft.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectUpdraft.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.alchemyArray; import WayofTime.bloodmagic.iface.IAlchemyArray; import WayofTime.bloodmagic.tile.TileAlchemyArray; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -20,7 +20,7 @@ public class AlchemyArrayEffectUpdraft extends AlchemyArrayEffect { } @Override - public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, IBlockState state, Entity entity) { + public void onEntityCollidedWithBlock(IAlchemyArray array, World world, BlockPos pos, BlockState state, Entity entity) { double motionY = 1; double motionYGlowstoneMod = 0.1; double motionYFeatherMod = 0.05; @@ -34,12 +34,12 @@ public class AlchemyArrayEffectUpdraft extends AlchemyArrayEffect { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyCircleRenderer.java index 51782a6b..0f24ac37 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyCircleRenderer.java @@ -7,7 +7,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; public class AlchemyCircleRenderer { @@ -86,8 +86,8 @@ public class AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/altar/AltarUtil.java b/src/main/java/WayofTime/bloodmagic/altar/AltarUtil.java index acde6d6d..abbf30c4 100644 --- a/src/main/java/WayofTime/bloodmagic/altar/AltarUtil.java +++ b/src/main/java/WayofTime/bloodmagic/altar/AltarUtil.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.altar; import WayofTime.bloodmagic.api.impl.BloodMagicAPI; import WayofTime.bloodmagic.block.BlockBloodRune; import WayofTime.bloodmagic.tile.TileAltar; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -26,7 +26,7 @@ public class AltarUtil { for (AltarTier tier : AltarTier.values()) { for (AltarComponent component : tier.getAltarComponents()) { BlockPos componentPos = pos.add(component.getOffset()); - IBlockState worldState = world.getBlockState(componentPos); + BlockState worldState = world.getBlockState(componentPos); if (worldState.getBlock() instanceof IAltarComponent) if (((IAltarComponent) worldState.getBlock()).getType(world, worldState, componentPos) == component.getComponent()) @@ -35,7 +35,7 @@ public class AltarUtil { if (component.getComponent() == ComponentType.NOTAIR && worldState.getMaterial() != Material.AIR && !worldState.getMaterial().isLiquid()) continue; - List validStates = BloodMagicAPI.INSTANCE.getComponentStates(component.getComponent()); + List validStates = BloodMagicAPI.INSTANCE.getComponentStates(component.getComponent()); if (!validStates.contains(worldState)) return lastCheck; } @@ -55,7 +55,7 @@ public class AltarUtil { continue; BlockPos componentPos = pos.add(component.getOffset()); - IBlockState state = world.getBlockState(componentPos); + BlockState state = world.getBlockState(componentPos); if (state.getBlock() instanceof BlockBloodRune) upgrades.upgrade(((BlockBloodRune) state.getBlock()).getBloodRune(world, componentPos, state)); } @@ -71,11 +71,11 @@ public class AltarUtil { for (AltarTier tier : AltarTier.values()) { for (AltarComponent component : tier.getAltarComponents()) { BlockPos componentPos = pos.add(component.getOffset()); - IBlockState worldState = world.getBlockState(componentPos); + BlockState worldState = world.getBlockState(componentPos); if (component.getComponent() == ComponentType.NOTAIR && worldState.getMaterial() != Material.AIR && !worldState.getMaterial().isLiquid()) continue; - List validStates = BloodMagicAPI.INSTANCE.getComponentStates(component.getComponent()); + List validStates = BloodMagicAPI.INSTANCE.getComponentStates(component.getComponent()); if (!validStates.contains(worldState)) return Pair.of(componentPos, component.getComponent()); } diff --git a/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java b/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java index 5dda98bc..7d13dc2e 100644 --- a/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java +++ b/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java @@ -16,15 +16,15 @@ import WayofTime.bloodmagic.tile.TileAltar; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.NetworkHelper; import com.google.common.base.Enums; -import net.minecraft.block.BlockRedstoneLight; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; +import net.minecraft.block.RedstoneLampBlock; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fluids.FluidStack; @@ -75,7 +75,7 @@ public class BloodAltar implements IFluidHandler { this.tileAltar = tileAltar; } - public void readFromNBT(NBTTagCompound tagCompound) { + public void readFromNBT(CompoundNBT tagCompound) { if (!tagCompound.hasKey(Constants.NBT.EMPTY)) { FluidStack fluid = FluidStack.loadFluidStackFromNBT(tagCompound); @@ -119,7 +119,7 @@ public class BloodAltar implements IFluidHandler { currentTierDisplayed = Enums.getIfPresent(AltarTier.class, tagCompound.getString(Constants.NBT.ALTAR_CURRENT_TIER_DISPLAYED)).or(AltarTier.ONE); } - public void writeToNBT(NBTTagCompound tagCompound) { + public void writeToNBT(CompoundNBT tagCompound) { if (fluid != null) fluid.writeToNBT(tagCompound); @@ -213,9 +213,9 @@ public class BloodAltar implements IFluidHandler { lockdownDuration--; if (internalCounter % 20 == 0) { - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { BlockPos newPos = pos.offset(facing); - IBlockState block = world.getBlockState(newPos); + BlockState block = world.getBlockState(newPos); block.getBlock().onNeighborChange(world, newPos, pos); } } @@ -244,7 +244,7 @@ public class BloodAltar implements IFluidHandler { if (internalCounter % 100 == 0 && (this.isActive || this.cooldownAfterCrafting <= 0)) { /* Redstone Lamp below altar: Switch Off */ - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); if (state.getValue(BlockAltar.POWERED)) { world.setBlockState(pos, state.cycleProperty(BlockAltar.POWERED), 3); world.notifyNeighborsOfStateChange(pos, RegistrarBloodMagicBlocks.ALTAR, false); @@ -301,16 +301,16 @@ public class BloodAltar implements IFluidHandler { hasOperated = true; - if (internalCounter % 4 == 0 && world instanceof WorldServer) { - WorldServer server = (WorldServer) world; + if (internalCounter % 4 == 0 && world instanceof ServerWorld) { + ServerWorld server = (ServerWorld) world; server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0.2, 0, 0.2, 0); } } else if (!hasOperated && progress > 0) { progress = Math.max(0, progress - (int) (efficiencyMultiplier * drainRate)); - if (internalCounter % 2 == 0 && world instanceof WorldServer) { - WorldServer server = (WorldServer) world; + if (internalCounter % 2 == 0 && world instanceof ServerWorld) { + ServerWorld server = (ServerWorld) world; server.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0.1, 0, 0.1, 0); } } @@ -324,14 +324,14 @@ public class BloodAltar implements IFluidHandler { tileAltar.setInventorySlotContents(0, event.getOutput()); progress = 0; - if (world instanceof WorldServer) { - WorldServer server = (WorldServer) world; + if (world instanceof ServerWorld) { + ServerWorld server = (ServerWorld) world; server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 40, 0.3, 0, 0.3, 0); } /* Redstone Lamp below altar: Switch On */ /* Switches on when crafting finishes */ - if (world.getBlockState(pos.down()).getBlock() instanceof BlockRedstoneLight) { + if (world.getBlockState(pos.down()).getBlock() instanceof RedstoneLampBlock) { world.setBlockState(pos, world.getBlockState(pos).cycleProperty(BlockAltar.POWERED), 3); world.notifyNeighborsOfStateChange(pos, RegistrarBloodMagicBlocks.ALTAR, false); } @@ -357,8 +357,8 @@ public class BloodAltar implements IFluidHandler { int drain = NetworkHelper.getSoulNetwork(binding).add(SoulTicket.block(world, pos, liquidDrained), (int) (orb.getCapacity() * this.orbCapacityMultiplier)); fluid.amount = fluid.amount - drain; - if (drain > 0 && internalCounter % 4 == 0 && world instanceof WorldServer) { - WorldServer server = (WorldServer) world; + if (drain > 0 && internalCounter % 4 == 0 && world instanceof ServerWorld) { + ServerWorld server = (ServerWorld) world; server.spawnParticle(EnumParticleTypes.SPELL_WITCH, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0, 0, 0, 0.001); } } diff --git a/src/main/java/WayofTime/bloodmagic/altar/IAltarComponent.java b/src/main/java/WayofTime/bloodmagic/altar/IAltarComponent.java index 6a96dc66..b1b4635a 100644 --- a/src/main/java/WayofTime/bloodmagic/altar/IAltarComponent.java +++ b/src/main/java/WayofTime/bloodmagic/altar/IAltarComponent.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.altar; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -8,5 +8,5 @@ import javax.annotation.Nullable; public interface IAltarComponent { @Nullable - ComponentType getType(World world, IBlockState state, BlockPos pos); + ComponentType getType(World world, BlockState state, BlockPos pos); } diff --git a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicAPI.java b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicAPI.java index 528f99ab..8401afe0 100644 --- a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicAPI.java +++ b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicAPI.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.altar.ComponentType; import WayofTime.bloodmagic.util.BMLog; import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.Multimap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import javax.annotation.Nonnull; import java.util.List; @@ -17,7 +17,7 @@ public class BloodMagicAPI implements IBloodMagicAPI { private final BloodMagicBlacklist blacklist; private final BloodMagicRecipeRegistrar recipeRegistrar; private final BloodMagicValueManager valueManager; - private final Multimap altarComponents; + private final Multimap altarComponents; public BloodMagicAPI() { this.blacklist = new BloodMagicBlacklist(); @@ -45,7 +45,7 @@ public class BloodMagicAPI implements IBloodMagicAPI { } @Override - public void registerAltarComponent(@Nonnull IBlockState state, @Nonnull String componentType) { + public void registerAltarComponent(@Nonnull BlockState state, @Nonnull String componentType) { ComponentType component = null; for (ComponentType type : ComponentType.VALUES) { if (type.name().equalsIgnoreCase(componentType)) { @@ -61,7 +61,7 @@ public class BloodMagicAPI implements IBloodMagicAPI { } @Override - public void unregisterAltarComponent(@Nonnull IBlockState state, @Nonnull String componentType) { + public void unregisterAltarComponent(@Nonnull BlockState state, @Nonnull String componentType) { ComponentType component = null; for (ComponentType type : ComponentType.VALUES) { if (type.name().equalsIgnoreCase(componentType)) { @@ -77,7 +77,7 @@ public class BloodMagicAPI implements IBloodMagicAPI { } @Nonnull - public List getComponentStates(ComponentType component) { - return (List) altarComponents.get(component); + public List getComponentStates(ComponentType component) { + return (List) altarComponents.get(component); } } diff --git a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicBlacklist.java b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicBlacklist.java index 18029c71..74a668fc 100644 --- a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicBlacklist.java +++ b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicBlacklist.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.util.BMLog; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Sets; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.ResourceLocation; import javax.annotation.Nonnull; @@ -13,10 +13,10 @@ import java.util.Set; public class BloodMagicBlacklist implements IBloodMagicBlacklist { - private final Set teleposer; + private final Set teleposer; private final Set teleposerEntities; - private final Set transposition; - private final Set greenGrove; + private final Set transposition; + private final Set greenGrove; private final Set sacrifice; public BloodMagicBlacklist() { @@ -28,7 +28,7 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { } @Override - public void addTeleposer(@Nonnull IBlockState state) { + public void addTeleposer(@Nonnull BlockState state) { if (!teleposer.contains(state)) { BMLog.API_VERBOSE.info("Blacklist: Added {} to the Teleposer blacklist.", state); teleposer.add(state); @@ -36,7 +36,7 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { } public void addTeleposer(@Nonnull Block block) { - for (IBlockState state : block.getBlockState().getValidStates()) + for (BlockState state : block.getBlockState().getValidStates()) addTeleposer(state); } @@ -49,7 +49,7 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { } @Override - public void addTransposition(@Nonnull IBlockState state) { + public void addTransposition(@Nonnull BlockState state) { if (!transposition.contains(state)) { BMLog.API_VERBOSE.info("Blacklist: Added {} to the Transposition blacklist.", state); transposition.add(state); @@ -57,12 +57,12 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { } public void addTransposition(@Nonnull Block block) { - for (IBlockState state : block.getBlockState().getValidStates()) + for (BlockState state : block.getBlockState().getValidStates()) addTransposition(state); } @Override - public void addGreenGrove(@Nonnull IBlockState state) { + public void addGreenGrove(@Nonnull BlockState state) { if (!greenGrove.contains(state)) { BMLog.API_VERBOSE.info("Blacklist: Added {} to the Green Grove blacklist.", state); greenGrove.add(state); @@ -70,7 +70,7 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { } public void addGreenGrove(@Nonnull Block block) { - for (IBlockState state : block.getBlockState().getValidStates()) + for (BlockState state : block.getBlockState().getValidStates()) addGreenGrove(state); } @@ -84,7 +84,7 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { // Internal use getters - public Set getTeleposer() { + public Set getTeleposer() { return ImmutableSet.copyOf(teleposer); } @@ -92,11 +92,11 @@ public class BloodMagicBlacklist implements IBloodMagicBlacklist { return ImmutableSet.copyOf(teleposerEntities); } - public Set getTransposition() { + public Set getTransposition() { return ImmutableSet.copyOf(transposition); } - public Set getGreenGrove() { + public Set getGreenGrove() { return ImmutableSet.copyOf(greenGrove); } diff --git a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicCorePlugin.java b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicCorePlugin.java index c59bbbe6..5f4bb3d3 100644 --- a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicCorePlugin.java +++ b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicCorePlugin.java @@ -17,7 +17,7 @@ import WayofTime.bloodmagic.incense.EnumTranquilityType; import WayofTime.bloodmagic.incense.TranquilityStack; import WayofTime.bloodmagic.util.StateUtil; import net.minecraft.block.Block; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.common.registry.EntityEntry; import net.minecraftforge.fml.common.registry.ForgeRegistries; diff --git a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicValueManager.java b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicValueManager.java index 5c894574..830db0c3 100644 --- a/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicValueManager.java +++ b/src/main/java/WayofTime/bloodmagic/api/impl/BloodMagicValueManager.java @@ -7,7 +7,7 @@ import WayofTime.bloodmagic.util.BMLog; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Maps; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.ResourceLocation; import javax.annotation.Nonnull; @@ -16,7 +16,7 @@ import java.util.Map; public class BloodMagicValueManager implements IBloodMagicValueManager { private final Map sacrificial; - private final Map tranquility; + private final Map tranquility; public BloodMagicValueManager() { this.sacrificial = Maps.newHashMap(); @@ -30,7 +30,7 @@ public class BloodMagicValueManager implements IBloodMagicValueManager { } @Override - public void setTranquility(@Nonnull IBlockState state, @Nonnull String tranquilityType, double value) { + public void setTranquility(@Nonnull BlockState state, @Nonnull String tranquilityType, double value) { EnumTranquilityType tranquility = null; for (EnumTranquilityType type : EnumTranquilityType.values()) { if (type.name().equalsIgnoreCase(tranquilityType)) { @@ -46,7 +46,7 @@ public class BloodMagicValueManager implements IBloodMagicValueManager { } public void setTranquility(Block block, TranquilityStack tranquilityStack) { - for (IBlockState state : block.getBlockState().getValidStates()) { + for (BlockState state : block.getBlockState().getValidStates()) { BMLog.API_VERBOSE.info("Value Manager: Set tranquility value of {} to {} @ {}", state, tranquilityStack.type, tranquilityStack.value); tranquility.put(state, tranquilityStack); } @@ -56,7 +56,7 @@ public class BloodMagicValueManager implements IBloodMagicValueManager { return ImmutableMap.copyOf(sacrificial); } - public Map getTranquility() { + public Map getTranquility() { return ImmutableMap.copyOf(tranquility); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java index 589c8b16..95ed17c9 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java @@ -7,17 +7,17 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.tile.TileAlchemyArray; import WayofTime.bloodmagic.util.Utils; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Items; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Items; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; @@ -41,12 +41,12 @@ public class BlockAlchemyArray extends Block { } @Override - public void addCollisionBoxToList(IBlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean p_185477_7_) { + public void addCollisionBoxToList(BlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean p_185477_7_) { // No-op } @Override - public void onEntityCollision(World world, BlockPos pos, IBlockState state, Entity entity) { + public void onEntityCollision(World world, BlockPos pos, BlockState state, Entity entity) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileAlchemyArray) { ((TileAlchemyArray) tile).onEntityCollidedWithBlock(state, entity); @@ -54,7 +54,7 @@ public class BlockAlchemyArray extends Block { } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return ARRAY_AABB; } @@ -65,32 +65,32 @@ public class BlockAlchemyArray extends Block { } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.INVISIBLE; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.INVISIBLE; } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { TileAlchemyArray array = (TileAlchemyArray) world.getTileEntity(pos); if (array == null) @@ -135,7 +135,7 @@ public class BlockAlchemyArray extends Block { } @Override - public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { + public ItemStack getPickBlock(BlockState state, RayTraceResult target, World world, BlockPos pos, PlayerEntity player) { return new ItemStack(RegistrarBloodMagicItems.ARCANE_ASHES); } @@ -145,7 +145,7 @@ public class BlockAlchemyArray extends Block { } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileAlchemyArray alchemyArray = (TileAlchemyArray) world.getTileEntity(blockPos); if (alchemyArray != null) alchemyArray.dropItems(); @@ -154,13 +154,13 @@ public class BlockAlchemyArray extends Block { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileAlchemyArray(); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyTable.java b/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyTable.java index c8867b87..2520e983 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyTable.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyTable.java @@ -5,18 +5,18 @@ import WayofTime.bloodmagic.item.block.ItemBlockAlchemyTable; import WayofTime.bloodmagic.tile.TileAlchemyTable; import WayofTime.bloodmagic.util.Constants; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -26,7 +26,7 @@ import javax.annotation.Nullable; public class BlockAlchemyTable extends Block implements IBMBlock { public static final PropertyBool INVISIBLE = PropertyBool.create("invisible"); - public static final PropertyEnum DIRECTION = PropertyEnum.create("direction", EnumFacing.class); + public static final PropertyEnum DIRECTION = PropertyEnum.create("direction", Direction.class); private static final AxisAlignedBB BODY = new AxisAlignedBB(0, 0, 0, 16 / 16F, 13 / 16F, 16 / 16F); public BlockAlchemyTable() { @@ -42,42 +42,42 @@ public class BlockAlchemyTable extends Block implements IBMBlock { // setBlockBounds(0.3F, 0F, 0.3F, 0.72F, 1F, 0.72F); } - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return BODY; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public boolean canRenderInLayer(IBlockState state, BlockRenderLayer layer) { + public boolean canRenderInLayer(BlockState state, BlockRenderLayer layer) { return layer == BlockRenderLayer.CUTOUT_MIPPED || layer == BlockRenderLayer.TRANSLUCENT; } @Override - public IBlockState getStateFromMeta(int meta) { + public BlockState getStateFromMeta(int meta) { return this.getDefaultState(); } @@ -85,12 +85,12 @@ public class BlockAlchemyTable extends Block implements IBMBlock { * Convert the BlockState into the correct metadata value */ @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { return 0; } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess world, BlockPos pos) { + public BlockState getActualState(BlockState state, IBlockAccess world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileAlchemyTable) { return state.withProperty(INVISIBLE, ((TileAlchemyTable) tile).isInvisible()).withProperty(DIRECTION, ((TileAlchemyTable) tile).getDirection()); @@ -105,7 +105,7 @@ public class BlockAlchemyTable extends Block implements IBMBlock { } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { BlockPos position = pos; TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileAlchemyTable) { @@ -124,7 +124,7 @@ public class BlockAlchemyTable extends Block implements IBMBlock { } @Override - public void breakBlock(World world, BlockPos pos, IBlockState blockState) { + public void breakBlock(World world, BlockPos pos, BlockState blockState) { TileAlchemyTable tile = (TileAlchemyTable) world.getTileEntity(pos); if (tile != null && !tile.isSlave()) { tile.dropItems(); @@ -134,18 +134,18 @@ public class BlockAlchemyTable extends Block implements IBMBlock { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileAlchemyTable(); } @Override - public void neighborChanged(IBlockState state, World world, BlockPos pos, Block blockIn, BlockPos fromPos) { + public void neighborChanged(BlockState state, World world, BlockPos pos, Block blockIn, BlockPos fromPos) { TileAlchemyTable tile = (TileAlchemyTable) world.getTileEntity(pos); if (tile != null) { BlockPos connectedPos = tile.getConnectedPos(); @@ -158,7 +158,7 @@ public class BlockAlchemyTable extends Block implements IBMBlock { } @Override - public ItemBlock getItem() { + public BlockItem getItem() { return new ItemBlockAlchemyTable(this); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockAltar.java b/src/main/java/WayofTime/bloodmagic/block/BlockAltar.java index 712adb94..60482da1 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockAltar.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockAltar.java @@ -17,22 +17,22 @@ import WayofTime.bloodmagic.tile.TileAltar; import WayofTime.bloodmagic.util.Utils; import WayofTime.bloodmagic.util.helper.NetworkHelper; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import org.apache.commons.lang3.tuple.Pair; @@ -57,17 +57,17 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl setHarvestLevel("pickaxe", 1); } - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return BODY; } @Override - public boolean hasComparatorInputOverride(IBlockState state) { + public boolean hasComparatorInputOverride(BlockState state) { return true; } @Override - public int getComparatorInputOverride(IBlockState state, World world, BlockPos pos) { + public int getComparatorInputOverride(BlockState state, World world, BlockPos pos) { if (world.isRemote) return 0; @@ -102,32 +102,32 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return true; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { TileAltar altar = (TileAltar) world.getTileEntity(pos); if (altar == null || player.isSneaking()) @@ -150,7 +150,7 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileEntity tile = world.getTileEntity(blockPos); if (tile instanceof TileAltar) ((TileAltar) tile).dropItems(); @@ -159,41 +159,41 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileAltar(); } // IDocumentedBlock @Override - public List getDocumentation(EntityPlayer player, World world, BlockPos pos, IBlockState state) { + public List getDocumentation(PlayerEntity player, World world, BlockPos pos, BlockState state) { List docs = new ArrayList<>(); IBloodAltar altar = ((IBloodAltar) world.getTileEntity(pos)); Pair missingBlock = AltarUtil.getFirstMissingComponent(world, pos, altar.getTier().toInt()); if (missingBlock != null) - docs.add(new TextComponentTranslation("chat.bloodmagic.altar.nextTier", new TextComponentTranslation(missingBlock.getRight().getKey()), Utils.prettifyBlockPosString(missingBlock.getLeft()))); + docs.add(new TranslationTextComponent("chat.bloodmagic.altar.nextTier", new TranslationTextComponent(missingBlock.getRight().getKey()), Utils.prettifyBlockPosString(missingBlock.getLeft()))); return docs; } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } /* Redstone code, taken from BlockLever */ - public int getWeakPower(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side) { + public int getWeakPower(BlockState blockState, IBlockAccess blockAccess, BlockPos pos, Direction side) { return blockState.getValue(POWERED) ? 15 : 0; } - public int getStrongPower(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side) { + public int getStrongPower(BlockState blockState, IBlockAccess blockAccess, BlockPos pos, Direction side) { if (!blockState.getValue(POWERED)) { return 0; } else { @@ -201,15 +201,15 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl } } - public boolean canProvidePower(IBlockState state) { + public boolean canProvidePower(BlockState state) { return true; } - public IBlockState getStateFromMeta(int meta) { + public BlockState getStateFromMeta(int meta) { return this.getDefaultState().withProperty(POWERED, meta > 0); } - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { return state.getValue(POWERED) ? 1 : 0; } @@ -217,7 +217,7 @@ public class BlockAltar extends Block implements IVariantProvider, IDocumentedBl return new BlockStateContainer(this, POWERED); } - public IBlockState getStateForPlacement(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer) { + public BlockState getStateForPlacement(World worldIn, BlockPos pos, Direction facing, float hitX, float hitY, float hitZ, int meta, LivingEntity placer) { return this.getDefaultState().withProperty(POWERED, false); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockBloodLight.java b/src/main/java/WayofTime/bloodmagic/block/BlockBloodLight.java index 99b5a6e2..cfa597dc 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockBloodLight.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockBloodLight.java @@ -3,14 +3,14 @@ package WayofTime.bloodmagic.block; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.client.entity.EntityPlayerSP; +import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.client.particle.ParticleManager; import net.minecraft.item.ItemStack; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -32,13 +32,13 @@ public class BlockBloodLight extends Block { } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return AABB; } @Nullable @Override - public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos) { + public AxisAlignedBB getCollisionBoundingBox(BlockState blockState, IBlockAccess worldIn, BlockPos pos) { return NULL_AABB; } @@ -54,27 +54,27 @@ public class BlockBloodLight extends Block { } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public int getLightValue(IBlockState state) { + public int getLightValue(BlockState state) { return 15; } @@ -90,12 +90,12 @@ public class BlockBloodLight extends Block { @Override @SideOnly(Side.CLIENT) - public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Random rand) { - EntityPlayerSP player = Minecraft.getMinecraft().player; + public void randomDisplayTick(BlockState state, World world, BlockPos pos, Random rand) { + ClientPlayerEntity player = Minecraft.getMinecraft().player; if (rand.nextInt(3) != 0) { world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5D + rand.nextGaussian() / 8, pos.getY() + 0.5D, pos.getZ() + 0.5D + rand.nextGaussian() / 8, 0, 0, 0, 0); - ItemStack heldItem = player.getHeldItem(EnumHand.MAIN_HAND); + ItemStack heldItem = player.getHeldItem(Hand.MAIN_HAND); if (heldItem.isEmpty() || heldItem.getItem() != RegistrarBloodMagicItems.SIGIL_BLOOD_LIGHT) return; diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockBloodRune.java b/src/main/java/WayofTime/bloodmagic/block/BlockBloodRune.java index 538385b8..2f1d3a77 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockBloodRune.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockBloodRune.java @@ -5,9 +5,9 @@ import WayofTime.bloodmagic.block.base.BlockEnum; import WayofTime.bloodmagic.block.enums.BloodRuneType; import WayofTime.bloodmagic.iface.IBloodRune; import WayofTime.bloodmagic.util.helper.TextHelper; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; @@ -32,7 +32,7 @@ public class BlockBloodRune extends BlockEnum implements IBloodRu @Nullable @Override - public BloodRuneType getBloodRune(IBlockAccess world, BlockPos pos, IBlockState state) { + public BloodRuneType getBloodRune(IBlockAccess world, BlockPos pos, BlockState state) { return state.getValue(getProperty()); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockBloodTank.java b/src/main/java/WayofTime/bloodmagic/block/BlockBloodTank.java index 7dfa8ce2..a3bdfd77 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockBloodTank.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockBloodTank.java @@ -6,19 +6,19 @@ import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.item.block.ItemBlockBloodTank; import WayofTime.bloodmagic.tile.TileBloodTank; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.block.BlockRenderType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.NonNullList; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -49,13 +49,13 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return BOX; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override @@ -65,28 +65,28 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public void harvestBlock(World world, EntityPlayer player, BlockPos pos, IBlockState state, @Nullable TileEntity tile, ItemStack stack) { + public void harvestBlock(World world, PlayerEntity player, BlockPos pos, BlockState state, @Nullable TileEntity tile, ItemStack stack) { super.harvestBlock(world, player, pos, state, tile, stack); world.setBlockToAir(pos); } @Override - public boolean removedByPlayer(IBlockState state, World world, BlockPos pos, EntityPlayer player, boolean willHarvest) { + public boolean removedByPlayer(BlockState state, World world, BlockPos pos, PlayerEntity player, boolean willHarvest) { return willHarvest || super.removedByPlayer(state, world, pos, player, willHarvest); } @Override - public boolean onBlockActivated(World world, BlockPos blockPos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos blockPos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { boolean success = FluidUtil.interactWithFluidHandler(player, hand, world, blockPos, side); if (success) { world.checkLight(blockPos); @@ -99,23 +99,23 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public void onBlockHarvested(World worldIn, BlockPos pos, IBlockState state, EntityPlayer player) { + public void onBlockHarvested(World worldIn, BlockPos pos, BlockState state, PlayerEntity player) { if (!player.capabilities.isCreativeMode) this.dropBlockAsItem(worldIn, pos, state, 0); super.onBlockHarvested(worldIn, pos, state, player); } @Override - public void getDrops(NonNullList drops, IBlockAccess world, BlockPos pos, IBlockState blockState, int fortune) { + public void getDrops(NonNullList drops, IBlockAccess world, BlockPos pos, BlockState blockState, int fortune) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileBloodTank) { TileBloodTank bloodTank = (TileBloodTank) tile; ItemStack drop = new ItemStack(this, 1, bloodTank.getBlockMetadata()); - NBTTagCompound fluidTag = new NBTTagCompound(); + CompoundNBT fluidTag = new CompoundNBT(); if (bloodTank.getTank().getFluid() != null) { bloodTank.getTank().getFluid().writeToNBT(fluidTag); - NBTTagCompound dropTag = new NBTTagCompound(); + CompoundNBT dropTag = new CompoundNBT(); dropTag.setTag("Fluid", fluidTag); drop.setTagCompound(dropTag); } @@ -125,11 +125,11 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public void onBlockPlacedBy(World world, BlockPos pos, IBlockState blockState, EntityLivingBase placer, ItemStack stack) { + public void onBlockPlacedBy(World world, BlockPos pos, BlockState blockState, LivingEntity placer, ItemStack stack) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileBloodTank) { TileBloodTank bloodTank = (TileBloodTank) tile; - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (stack.hasTagCompound() && stack.getTagCompound().hasKey("Fluid")) { FluidStack fluidStack = FluidStack.loadFluidStackFromNBT(tag.getCompoundTag("Fluid")); bloodTank.getTank().setFluid(fluidStack); @@ -142,7 +142,7 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public int getLightValue(IBlockState state, IBlockAccess world, BlockPos pos) { + public int getLightValue(BlockState state, IBlockAccess world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileBloodTank) { FluidStack fluidStack = ((TileBloodTank) tile).getTank().getFluid(); @@ -153,17 +153,17 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { + public ItemStack getPickBlock(BlockState state, RayTraceResult target, World world, BlockPos pos, PlayerEntity player) { return new ItemStack(this, 1, getMetaFromState(state)); } @Override - public boolean hasComparatorInputOverride(IBlockState state) { + public boolean hasComparatorInputOverride(BlockState state) { return true; } @Override - public int getComparatorInputOverride(IBlockState state, World world, BlockPos pos) { + public int getComparatorInputOverride(BlockState state, World world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileBloodTank) return ((TileBloodTank) tile).getComparatorOutput(); @@ -171,17 +171,17 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB } @Override - public TileEntity createTileEntity(World worldIn, IBlockState blockState) { + public TileEntity createTileEntity(World worldIn, BlockState blockState) { return new TileBloodTank(getMetaFromState(blockState)); } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Override - public ItemBlock getItem() { + public BlockItem getItem() { return new ItemBlockBloodTank(this); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDecorative.java b/src/main/java/WayofTime/bloodmagic/block/BlockDecorative.java index 12a14983..13c04c99 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDecorative.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDecorative.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.block.base.BlockEnum; import WayofTime.bloodmagic.block.enums.EnumDecorative; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; @@ -23,7 +23,7 @@ public class BlockDecorative extends BlockEnum { } @Override - public void getSubBlocks(CreativeTabs tab, NonNullList subBlocks) { + public void getSubBlocks(ItemGroup tab, NonNullList subBlocks) { for (EnumDecorative type : EnumDecorative.values()) { if (!ConfigHandler.general.enableTierSixEvenThoughThereIsNoContent && (type == EnumDecorative.CRYSTAL_TILE || type == EnumDecorative.CRYSTAL_BRICK)) continue; diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrucible.java b/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrucible.java index 69b59a5a..52df7b4d 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrucible.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrucible.java @@ -8,16 +8,16 @@ import WayofTime.bloodmagic.tile.TileDemonCrucible; import WayofTime.bloodmagic.util.Utils; import com.google.common.collect.Lists; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; @@ -58,7 +58,7 @@ public class BlockDemonCrucible extends Block implements IVariantProvider, IBMBl // setBlockBounds(0.3F, 0F, 0.3F, 0.72F, 1F, 0.72F); } - private static List getCollisionBoxList(IBlockState state) { + private static List getCollisionBoxList(BlockState state) { ArrayList collBox = new ArrayList<>(Arrays.asList(ARMS)); collBox.add(BODY); collBox.addAll(Arrays.asList(FEET)); @@ -66,32 +66,32 @@ public class BlockDemonCrucible extends Block implements IVariantProvider, IBMBl } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return BODY; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack heldItem = player.getHeldItem(hand); TileDemonCrucible crucible = (TileDemonCrucible) world.getTileEntity(pos); @@ -111,7 +111,7 @@ public class BlockDemonCrucible extends Block implements IVariantProvider, IBMBl } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileDemonCrucible tile = (TileDemonCrucible) world.getTileEntity(blockPos); if (tile != null) tile.dropItems(); @@ -120,23 +120,23 @@ public class BlockDemonCrucible extends Block implements IVariantProvider, IBMBl } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileDemonCrucible(); } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } @Override - public RayTraceResult collisionRayTrace(IBlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { + public RayTraceResult collisionRayTrace(BlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { List list = Lists.newArrayList(); @@ -162,7 +162,7 @@ public class BlockDemonCrucible extends Block implements IVariantProvider, IBMBl } @Override - public void addCollisionBoxToList(IBlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { + public void addCollisionBoxToList(BlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { state = this.getActualState(state, worldIn, pos); for (AxisAlignedBB axisalignedbb : getCollisionBoxList(state)) { diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystal.java b/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystal.java index 9463e459..a98e8d43 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystal.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystal.java @@ -10,20 +10,20 @@ import WayofTime.bloodmagic.tile.TileDemonCrystal; import com.google.common.collect.Lists; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; +import net.minecraft.item.ItemGroup; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.NonNullList; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -42,8 +42,8 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid public static final PropertyInteger AGE = PropertyInteger.create("age", 0, 6); public static final PropertyEnum TYPE = PropertyEnum.create("type", EnumDemonWillType.class); - public static final PropertyEnum ATTACHED = PropertyEnum.create("attached", EnumFacing.class); - private static final EnumMap bounds = new EnumMap<>(EnumFacing.class); + public static final PropertyEnum ATTACHED = PropertyEnum.create("attached", Direction.class); + private static final EnumMap bounds = new EnumMap<>(Direction.class); // Bounding / Collision boxes private static final AxisAlignedBB[] UP = { @@ -103,7 +103,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid public BlockDemonCrystal() { super(Material.ROCK); - this.setDefaultState(this.blockState.getBaseState().withProperty(TYPE, EnumDemonWillType.DEFAULT).withProperty(ATTACHED, EnumFacing.UP)); + this.setDefaultState(this.blockState.getBaseState().withProperty(TYPE, EnumDemonWillType.DEFAULT).withProperty(ATTACHED, Direction.UP)); setTranslationKey(BloodMagic.MODID + ".demonCrystal."); setCreativeTab(BloodMagic.TAB_BM); @@ -137,7 +137,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } // collects a sublist from 0 to age for the collision boxes - private static List getCollisionBoxList(IBlockState state) { + private static List getCollisionBoxList(BlockState state) { int age = state.getValue(BlockDemonCrystal.AGE) + 1; switch (state.getValue(BlockDemonCrystal.ATTACHED)) { case DOWN: @@ -157,7 +157,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { TileEntity tile = source.getTileEntity(pos); if (tile != null) state = getActualState(state, tile.getWorld(), pos); @@ -179,7 +179,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { if (!world.isRemote) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileDemonCrystal) { @@ -207,7 +207,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public void getDrops(NonNullList drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune) { + public void getDrops(NonNullList drops, IBlockAccess world, BlockPos pos, BlockState state, int fortune) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileDemonCrystal) { EnumDemonWillType type = state.getValue(TYPE); @@ -218,7 +218,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess world, BlockPos pos) { + public BlockState getActualState(BlockState state, IBlockAccess world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileDemonCrystal) { TileDemonCrystal crystal = (TileDemonCrystal) tile; @@ -229,13 +229,13 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public void neighborChanged(IBlockState state, World world, BlockPos pos, Block blockIn, BlockPos fromPos) { + public void neighborChanged(BlockState state, World world, BlockPos pos, Block blockIn, BlockPos fromPos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileDemonCrystal) { TileDemonCrystal crystal = (TileDemonCrystal) tile; - EnumFacing placement = crystal.getPlacement(); + Direction placement = crystal.getPlacement(); BlockPos offsetPos = pos.offset(placement.getOpposite()); - IBlockState offsetState = world.getBlockState(offsetPos); + BlockState offsetState = world.getBlockState(offsetPos); if (!offsetState.isSideSolid(world, offsetPos, placement)) world.destroyBlock(pos, true); @@ -243,62 +243,62 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public boolean canPlaceBlockOnSide(World world, BlockPos pos, EnumFacing side) { + public boolean canPlaceBlockOnSide(World world, BlockPos pos, Direction side) { BlockPos offsetPos = pos.offset(side.getOpposite()); - IBlockState offsetState = world.getBlockState(offsetPos); + BlockState offsetState = world.getBlockState(offsetPos); return offsetState.isSideSolid(world, offsetPos, side) && this.canPlaceBlockAt(world, pos); } @Override - public void getSubBlocks(CreativeTabs creativeTabs, NonNullList list) { + public void getSubBlocks(ItemGroup creativeTabs, NonNullList list) { for (EnumDemonWillType willType : EnumDemonWillType.values()) list.add(new ItemStack(this, 1, willType.ordinal())); } @Override - public void harvestBlock(World world, EntityPlayer player, BlockPos pos, IBlockState state, @Nullable TileEntity tile, ItemStack stack) { + public void harvestBlock(World world, PlayerEntity player, BlockPos pos, BlockState state, @Nullable TileEntity tile, ItemStack stack) { super.harvestBlock(world, player, pos, state, tile, stack); world.setBlockToAir(pos); } @Override - public boolean removedByPlayer(IBlockState state, World world, BlockPos pos, EntityPlayer player, boolean willHarvest) { + public boolean removedByPlayer(BlockState state, World world, BlockPos pos, PlayerEntity player, boolean willHarvest) { return willHarvest || super.removedByPlayer(state, world, pos, player, false); } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public IBlockState getStateFromMeta(int meta) { + public BlockState getStateFromMeta(int meta) { return this.getDefaultState().withProperty(TYPE, EnumDemonWillType.values()[meta]); } @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { return state.getValue(TYPE).ordinal(); } @@ -309,18 +309,18 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileDemonCrystal(); } @Override - public ItemBlock getItem() { + public BlockItem getItem() { return new ItemBlockDemonCrystal(this); } @@ -331,7 +331,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public RayTraceResult collisionRayTrace(IBlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { + public RayTraceResult collisionRayTrace(BlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { List list = Lists.newArrayList(); @@ -357,7 +357,7 @@ public class BlockDemonCrystal extends Block implements IBMBlock, IVariantProvid } @Override - public void addCollisionBoxToList(IBlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { + public void addCollisionBoxToList(BlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { state = this.getActualState(state, worldIn, pos); for (AxisAlignedBB axisalignedbb : getCollisionBoxList(state)) { diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystallizer.java b/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystallizer.java index b5dd79c5..099f13f6 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystallizer.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDemonCrystallizer.java @@ -4,20 +4,20 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.tile.TileDemonCrystallizer; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; -import net.minecraft.block.BlockContainer; +import net.minecraft.block.BlockState; +import net.minecraft.block.ContainerBlock; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockRenderType; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import javax.annotation.Nonnull; -public class BlockDemonCrystallizer extends BlockContainer implements IVariantProvider, IBMBlock { +public class BlockDemonCrystallizer extends ContainerBlock implements IVariantProvider, IBMBlock { public BlockDemonCrystallizer() { super(Material.ROCK); @@ -31,33 +31,33 @@ public class BlockDemonCrystallizer extends BlockContainer implements IVariantPr } @Override - public boolean isSideSolid(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side) { - return side == EnumFacing.UP; + public boolean isSideSolid(BlockState state, IBlockAccess world, BlockPos pos, Direction side) { + return side == Direction.UP; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override @@ -71,7 +71,7 @@ public class BlockDemonCrystallizer extends BlockContainer implements IVariantPr } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarBase.java b/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarBase.java index 10fb1fa0..9ee5eca8 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarBase.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarBase.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.block.base.BlockEnumPillar; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.IStringSerializable; import javax.annotation.Nonnull; @@ -24,7 +24,7 @@ public class BlockDemonPillarBase & IStringSerializable> exten @Override public void gatherVariants(@Nonnull Int2ObjectMap variants) { - EnumFacing.Axis[] axis = new EnumFacing.Axis[]{EnumFacing.Axis.Y, EnumFacing.Axis.X, EnumFacing.Axis.Z}; + Direction.Axis[] axis = new Direction.Axis[]{Direction.Axis.Y, Direction.Axis.X, Direction.Axis.Z}; for (int i = 0; i < 3; i++) for (int j = 0; j < this.getTypes().length; j++) diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarCapBase.java b/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarCapBase.java index 7621d7ca..ddf7253b 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarCapBase.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDemonPillarCapBase.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.block.base.BlockEnumPillarCap; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.IStringSerializable; import javax.annotation.Nonnull; @@ -24,8 +24,8 @@ public class BlockDemonPillarCapBase & IStringSerializable> ex @Override public void gatherVariants(@Nonnull Int2ObjectMap variants) { - for (int i = 0; i < EnumFacing.values().length; i++) + for (int i = 0; i < Direction.values().length; i++) for (int j = 0; j < this.getTypes().length; j++) - variants.put(i * 2 + j, "facing=" + EnumFacing.values()[i] + ",type=" + this.getTypes()[j]); + variants.put(i * 2 + j, "facing=" + Direction.values()[i] + ",type=" + this.getTypes()[j]); } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDemonPylon.java b/src/main/java/WayofTime/bloodmagic/block/BlockDemonPylon.java index 5fb6a912..e1cca4d9 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDemonPylon.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDemonPylon.java @@ -4,13 +4,13 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.tile.TileDemonPylon; import com.google.common.collect.Lists; -import net.minecraft.block.BlockContainer; +import net.minecraft.block.BlockState; +import net.minecraft.block.ContainerBlock; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.entity.Entity; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; +import net.minecraft.block.BlockRenderType; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; @@ -23,7 +23,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.List; -public class BlockDemonPylon extends BlockContainer implements IBMBlock, IVariantProvider { +public class BlockDemonPylon extends ContainerBlock implements IBMBlock, IVariantProvider { protected static final AxisAlignedBB BODY = new AxisAlignedBB(2 / 16F, 7 / 16F, 2 / 16F, 14 / 16F, 20 / 16F, 14 / 16F); private static final AxisAlignedBB[] FEET = { new AxisAlignedBB(10 / 16F, 0F, 2 / 16F, 14 / 16F, 7 / 16F, 6 / 16F), // NE @@ -45,7 +45,7 @@ public class BlockDemonPylon extends BlockContainer implements IBMBlock, IVarian // setBlockBounds(0.3F, 0F, 0.3F, 0.72F, 1F, 0.72F); } - private static List getCollisionBoxList(IBlockState state) { + private static List getCollisionBoxList(BlockState state) { ArrayList collBox = new ArrayList<>(Arrays.asList(ARMS)); collBox.add(BODY); collBox.addAll(Arrays.asList(FEET)); @@ -53,33 +53,33 @@ public class BlockDemonPylon extends BlockContainer implements IBMBlock, IVarian } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return BODY; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override @@ -88,12 +88,12 @@ public class BlockDemonPylon extends BlockContainer implements IBMBlock, IVarian } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } @Override - public RayTraceResult collisionRayTrace(IBlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { + public RayTraceResult collisionRayTrace(BlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { List list = Lists.newArrayList(); @@ -119,7 +119,7 @@ public class BlockDemonPylon extends BlockContainer implements IBMBlock, IVarian } @Override - public void addCollisionBoxToList(IBlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { + public void addCollisionBoxToList(BlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { state = this.getActualState(state, worldIn, pos); for (AxisAlignedBB axisalignedbb : getCollisionBoxList(state)) { diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockDimensionalPortal.java b/src/main/java/WayofTime/bloodmagic/block/BlockDimensionalPortal.java index 50f69dbc..7c4471d1 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockDimensionalPortal.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockDimensionalPortal.java @@ -8,8 +8,8 @@ import WayofTime.bloodmagic.teleport.PortalLocation; import WayofTime.bloodmagic.teleport.TeleportQueue; import WayofTime.bloodmagic.teleport.Teleports; import WayofTime.bloodmagic.tile.TileDimensionalPortal; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.entity.Entity; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; @@ -39,22 +39,22 @@ public class BlockDimensionalPortal extends BlockInteger { } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public AxisAlignedBB getCollisionBoundingBox(IBlockState state, IBlockAccess world, BlockPos pos) { + public AxisAlignedBB getCollisionBoundingBox(BlockState state, IBlockAccess world, BlockPos pos) { return null; } @@ -67,12 +67,12 @@ public class BlockDimensionalPortal extends BlockInteger { } @Override - public int getLightValue(IBlockState state, IBlockAccess world, BlockPos pos) { + public int getLightValue(BlockState state, IBlockAccess world, BlockPos pos) { return 12; } @Override - public void onEntityCollision(World world, BlockPos pos, IBlockState blockState, Entity entity) { + public void onEntityCollision(World world, BlockPos pos, BlockState blockState, Entity entity) { if (!world.isRemote && world.getTileEntity(pos) instanceof TileDimensionalPortal) { TileDimensionalPortal tile = (TileDimensionalPortal) world.getTileEntity(pos); @@ -109,7 +109,7 @@ public class BlockDimensionalPortal extends BlockInteger { } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess world, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess world, BlockPos pos) { int meta = state.getBlock().getMetaFromState(state); if (meta == 0) { return AABB_0; @@ -135,18 +135,18 @@ public class BlockDimensionalPortal extends BlockInteger { @Override @SideOnly(Side.CLIENT) - public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Random rand) { + public void randomDisplayTick(BlockState state, World world, BlockPos pos, Random rand) { this.spawnParticles(world, pos.getX(), pos.getY(), pos.getZ()); } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileDimensionalPortal(); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockIncenseAltar.java b/src/main/java/WayofTime/bloodmagic/block/BlockIncenseAltar.java index c97d1861..e4c22de3 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockIncenseAltar.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockIncenseAltar.java @@ -4,11 +4,11 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.tile.TileIncenseAltar; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -30,37 +30,37 @@ public class BlockIncenseAltar extends Block implements IVariantProvider, IBMBlo } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return AABB; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileIncenseAltar TileIncenseAltar = (TileIncenseAltar) world.getTileEntity(blockPos); if (TileIncenseAltar != null) TileIncenseAltar.dropItems(); @@ -69,18 +69,18 @@ public class BlockIncenseAltar extends Block implements IVariantProvider, IBMBlo } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileIncenseAltar(); } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockInputRoutingNode.java b/src/main/java/WayofTime/bloodmagic/block/BlockInputRoutingNode.java index 15ed0f5a..7e52286f 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockInputRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockInputRoutingNode.java @@ -3,11 +3,11 @@ package WayofTime.bloodmagic.block; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.tile.routing.TileInputRoutingNode; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -22,7 +22,7 @@ public class BlockInputRoutingNode extends BlockRoutingNode { @Override //TODO: Combine BlockInputRoutingNode and BlockInputRoutingNode so they have the same superclass - public void breakBlock(World world, BlockPos pos, IBlockState state) { + public void breakBlock(World world, BlockPos pos, BlockState state) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileInputRoutingNode) { ((TileInputRoutingNode) tile).removeAllConnections(); @@ -32,7 +32,7 @@ public class BlockInputRoutingNode extends BlockRoutingNode { } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { if (world.getTileEntity(pos) instanceof TileInputRoutingNode) { player.openGui(BloodMagic.instance, Constants.Gui.ROUTING_NODE_GUI, world, pos.getX(), pos.getY(), pos.getZ()); } @@ -41,13 +41,13 @@ public class BlockInputRoutingNode extends BlockRoutingNode { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileInputRoutingNode(); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java b/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java index 70c68a04..ec8f6737 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillar.java @@ -8,13 +8,12 @@ import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; +import net.minecraft.block.BlockRenderType; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; -import net.minecraftforge.common.property.Properties; public class BlockInversionPillar extends BlockEnum { public BlockInversionPillar() { @@ -29,7 +28,7 @@ public class BlockInversionPillar extends BlockEnum { } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileEntity tile = world.getTileEntity(blockPos); if (tile instanceof TileInversionPillar) { TileInversionPillar tilePillar = (TileInversionPillar) world.getTileEntity(blockPos); @@ -40,33 +39,33 @@ public class BlockInversionPillar extends BlockEnum { } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess world, BlockPos pos) { + public BlockState getActualState(BlockState state, IBlockAccess world, BlockPos pos) { return super.getActualState(state, world, pos).withProperty(Properties.StaticProperty, true); } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override @@ -76,12 +75,12 @@ public class BlockInversionPillar extends BlockEnum { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileInversionPillar(state.getValue(getProperty()).getType()); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillarEnd.java b/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillarEnd.java index 0b233797..d373d242 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillarEnd.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockInversionPillarEnd.java @@ -5,10 +5,10 @@ import WayofTime.bloodmagic.block.base.BlockEnum; import WayofTime.bloodmagic.block.enums.EnumInversionCap; import WayofTime.bloodmagic.client.IVariantProvider; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.util.EnumBlockRenderType; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -25,28 +25,28 @@ public class BlockInversionPillarEnd extends BlockEnum impleme } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockItemRoutingNode.java b/src/main/java/WayofTime/bloodmagic/block/BlockItemRoutingNode.java index 805e9d9c..585a11b4 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockItemRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockItemRoutingNode.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.block; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.tile.routing.TileItemRoutingNode; import WayofTime.bloodmagic.tile.routing.TileRoutingNode; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -18,7 +18,7 @@ public class BlockItemRoutingNode extends BlockRoutingNode { } @Override - public void breakBlock(World world, BlockPos pos, IBlockState state) { + public void breakBlock(World world, BlockPos pos, BlockState state) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileRoutingNode) { ((TileRoutingNode) tile).removeAllConnections(); @@ -27,13 +27,13 @@ public class BlockItemRoutingNode extends BlockRoutingNode { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileItemRoutingNode(); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockMasterRoutingNode.java b/src/main/java/WayofTime/bloodmagic/block/BlockMasterRoutingNode.java index c69e9caa..c985563d 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockMasterRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockMasterRoutingNode.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.block; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.tile.routing.TileMasterRoutingNode; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; @@ -20,13 +20,13 @@ public class BlockMasterRoutingNode extends BlockRoutingNode { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileMasterRoutingNode(); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockMimic.java b/src/main/java/WayofTime/bloodmagic/block/BlockMimic.java index 6675b63e..a3e10e77 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockMimic.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockMimic.java @@ -9,19 +9,18 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.tile.TileMimic; import WayofTime.bloodmagic.util.Utils; import WayofTime.bloodmagic.item.block.ItemBlockMimic; -import net.minecraft.block.Block; -import net.minecraft.block.SoundType; +import net.minecraft.block.*; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.block.BlockRenderType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -48,7 +47,7 @@ public class BlockMimic extends BlockEnum implements IAltarComponent @Nullable @Override - public AxisAlignedBB getCollisionBoundingBox(IBlockState state, IBlockAccess world, BlockPos pos) { + public AxisAlignedBB getCollisionBoundingBox(BlockState state, IBlockAccess world, BlockPos pos) { switch (this.getMetaFromState(state)) { case 1: case 2: @@ -60,7 +59,7 @@ public class BlockMimic extends BlockEnum implements IAltarComponent if (mimicBlock == Blocks.AIR) { return FULL_BLOCK_AABB; } - IBlockState mimicState = tileMimic.getReplacedState(); + BlockState mimicState = tileMimic.getReplacedState(); if (mimicBlock != this) { return mimicState.getCollisionBoundingBox(world, pos); } @@ -76,14 +75,14 @@ public class BlockMimic extends BlockEnum implements IAltarComponent @Override @SideOnly(Side.CLIENT) - public AxisAlignedBB getSelectedBoundingBox(IBlockState state, World world, BlockPos pos) { + public AxisAlignedBB getSelectedBoundingBox(BlockState state, World world, BlockPos pos) { TileMimic tileMimic = (TileMimic) world.getTileEntity(pos); if (tileMimic != null && !tileMimic.getStackInSlot(0).isEmpty()) { Block mimicBlock = Block.getBlockFromItem(tileMimic.getStackInSlot(0).getItem()); if (mimicBlock == Blocks.AIR) { return FULL_BLOCK_AABB; } - IBlockState mimicState = tileMimic.getReplacedState(); + BlockState mimicState = tileMimic.getReplacedState(); if (mimicBlock != this) { return mimicState.getSelectedBoundingBox(world, pos); } @@ -93,7 +92,7 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public int getLightOpacity(IBlockState state) { + public int getLightOpacity(BlockState state) { switch (this.getMetaFromState(state)) { case 2: case 4: @@ -104,7 +103,7 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public int getLightValue(IBlockState state) { + public int getLightValue(BlockState state) { switch (this.getMetaFromState(state)) { case 3: return 15; @@ -114,7 +113,7 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { if (state.getBlock() == this) { return super.getMetaFromState(state); } @@ -123,23 +122,23 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { TileMimic mimic = (TileMimic) world.getTileEntity(pos); return mimic != null && mimic.onBlockActivated(world, pos, state, player, hand, player.getHeldItem(hand), side); } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess world, BlockPos pos) { + public BlockState getActualState(BlockState state, IBlockAccess world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileMimic) { TileMimic mimic = (TileMimic) tile; ItemStack stack = mimic.getStackInSlot(0); - if (stack.getItem() instanceof ItemBlock) { - Block block = ((ItemBlock) stack.getItem()).getBlock(); - IBlockState mimicState = mimic.getReplacedState(); + if (stack.getItem() instanceof BlockItem) { + Block block = ((BlockItem) stack.getItem()).getBlock(); + BlockState mimicState = mimic.getReplacedState(); if (block != this) { - if (block.getRenderType(mimicState) == EnumBlockRenderType.ENTITYBLOCK_ANIMATED) { + if (block.getRenderType(mimicState) == BlockRenderType.ENTITYBLOCK_ANIMATED) { return RegistrarBloodMagicBlocks.BLOOD_LIGHT.getDefaultState(); //Small and invisible-ish, basically this is returned in order to not render over the animated block (TESR) } @@ -151,32 +150,32 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean canRenderInLayer(IBlockState state, BlockRenderLayer layer) { + public boolean canRenderInLayer(BlockState state, BlockRenderLayer layer) { return layer == BlockRenderLayer.CUTOUT_MIPPED || layer == BlockRenderLayer.CUTOUT; } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileEntity tile = world.getTileEntity(blockPos); if (tile instanceof TileMimic) { TileMimic TileMimic = (TileMimic) world.getTileEntity(blockPos); @@ -188,12 +187,12 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileMimic(); } @@ -201,13 +200,13 @@ public class BlockMimic extends BlockEnum implements IAltarComponent @Nullable @Override - public ComponentType getType(World world, IBlockState state, BlockPos pos) { + public ComponentType getType(World world, BlockState state, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileMimic) { TileMimic mimic = (TileMimic) tile; ItemStack stack = mimic.getStackInSlot(0); - if (stack.getItem() instanceof ItemBlock) { - Block block = ((ItemBlock) stack.getItem()).getBlock(); + if (stack.getItem() instanceof BlockItem) { + Block block = ((BlockItem) stack.getItem()).getBlock(); if (block instanceof IAltarComponent) { return ((IAltarComponent) block).getType(world, mimic.getReplacedState(), pos); } else { @@ -221,7 +220,7 @@ public class BlockMimic extends BlockEnum implements IAltarComponent } @Override - public ItemBlock getItem() { + public BlockItem getItem() { return new ItemBlockMimic(this); } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockOutputRoutingNode.java b/src/main/java/WayofTime/bloodmagic/block/BlockOutputRoutingNode.java index 204db890..cc4eda8b 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockOutputRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockOutputRoutingNode.java @@ -3,11 +3,11 @@ package WayofTime.bloodmagic.block; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.tile.routing.TileOutputRoutingNode; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -22,7 +22,7 @@ public class BlockOutputRoutingNode extends BlockRoutingNode { @Override //TODO: Combine BlockOutputRoutingNode and BlockInputRoutingNode so they have the same superclass - public void breakBlock(World world, BlockPos pos, IBlockState state) { + public void breakBlock(World world, BlockPos pos, BlockState state) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileOutputRoutingNode) { ((TileOutputRoutingNode) tile).removeAllConnections(); @@ -32,7 +32,7 @@ public class BlockOutputRoutingNode extends BlockRoutingNode { } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { if (world.getTileEntity(pos) instanceof TileOutputRoutingNode) { player.openGui(BloodMagic.instance, Constants.Gui.ROUTING_NODE_GUI, world, pos.getX(), pos.getY(), pos.getZ()); } @@ -41,13 +41,13 @@ public class BlockOutputRoutingNode extends BlockRoutingNode { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileOutputRoutingNode(); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockPath.java b/src/main/java/WayofTime/bloodmagic/block/BlockPath.java index fc60a3b5..97ba5250 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockPath.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockPath.java @@ -5,9 +5,9 @@ import WayofTime.bloodmagic.block.base.BlockEnum; import WayofTime.bloodmagic.block.enums.EnumPath; import WayofTime.bloodmagic.incense.IIncensePath; import WayofTime.bloodmagic.util.helper.TextHelper; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; import net.minecraft.item.ItemStack; @@ -45,7 +45,7 @@ public class BlockPath extends BlockEnum implements IIncensePath { } @Override - public Material getMaterial(IBlockState state) { + public Material getMaterial(BlockState state) { EnumPath path = state.getValue(getProperty()); if (path.equals(EnumPath.WOOD) || path.equals(EnumPath.WOODTILE)) return Material.WOOD; @@ -54,7 +54,7 @@ public class BlockPath extends BlockEnum implements IIncensePath { } @Override - public SoundType getSoundType(IBlockState state, World world, BlockPos pos, @Nullable Entity entity) { + public SoundType getSoundType(BlockState state, World world, BlockPos pos, @Nullable Entity entity) { EnumPath path = state.getValue(getProperty()); if (path.equals(EnumPath.WOOD) || path.equals(EnumPath.WOODTILE)) return SoundType.WOOD; @@ -63,7 +63,7 @@ public class BlockPath extends BlockEnum implements IIncensePath { } @Override - public int getLevelOfPath(World world, BlockPos pos, IBlockState state) { + public int getLevelOfPath(World world, BlockPos pos, BlockState state) { switch (this.getMetaFromState(state)) { case 0: case 1: diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockPhantom.java b/src/main/java/WayofTime/bloodmagic/block/BlockPhantom.java index bfcedb11..81281cbc 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockPhantom.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockPhantom.java @@ -4,12 +4,12 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.tile.TilePhantomBlock; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockRenderType; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; @@ -28,28 +28,28 @@ public class BlockPhantom extends Block implements IVariantProvider { } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override @@ -60,7 +60,7 @@ public class BlockPhantom extends Block implements IVariantProvider { @Override @SideOnly(Side.CLIENT) - public boolean shouldSideBeRendered(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side) { + public boolean shouldSideBeRendered(BlockState state, IBlockAccess world, BlockPos pos, Direction side) { return world.getBlockState(pos.offset(side)) != state || state.getBlock() != this && super.shouldSideBeRendered(state, world, pos, side); } @@ -70,13 +70,13 @@ public class BlockPhantom extends Block implements IVariantProvider { } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TilePhantomBlock(20); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockRitualController.java b/src/main/java/WayofTime/bloodmagic/block/BlockRitualController.java index f6a09218..7c896b63 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockRitualController.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockRitualController.java @@ -13,17 +13,17 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.tile.TileImperfectRitualStone; import WayofTime.bloodmagic.tile.TileMasterRitualStone; import amerifrance.guideapi.api.IGuideLinked; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.Explosion; import net.minecraft.world.World; import net.minecraftforge.common.MinecraftForge; @@ -44,7 +44,7 @@ public class BlockRitualController extends BlockEnum imple } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack heldItem = player.getHeldItem(hand); TileEntity tile = world.getTileEntity(pos); @@ -57,7 +57,7 @@ public class BlockRitualController extends BlockEnum imple if (!key.isEmpty()) { Ritual ritual = BloodMagic.RITUAL_MANAGER.getRitual(key); if (ritual != null) { - EnumFacing direction = RitualHelper.getDirectionOfRitual(world, pos, ritual); + Direction direction = RitualHelper.getDirectionOfRitual(world, pos, ritual); // TODO: Give a message stating that this ritual is not a valid ritual. if (direction != null && RitualHelper.checkValidRitual(world, pos, ritual, direction)) { if (((TileMasterRitualStone) tile).activateRitual(heldItem, player, BloodMagic.RITUAL_MANAGER.getRitual(key))) { @@ -66,17 +66,17 @@ public class BlockRitualController extends BlockEnum imple ((TileMasterRitualStone) tile).setInverted(true); } } else { - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.notValid"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.notValid"), true); } } else { - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.notValid"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.notValid"), true); } } else { - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.notValid"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.notValid"), true); } } } else if (state.getValue(getProperty()) == EnumRitualController.IMPERFECT && tile instanceof TileImperfectRitualStone) { - IBlockState ritualBlock = world.getBlockState(pos.up()); + BlockState ritualBlock = world.getBlockState(pos.up()); ImperfectRitual ritual = BloodMagic.RITUAL_MANAGER.getImperfectRitual(ritualBlock); if (ritual == null) return false; @@ -89,7 +89,7 @@ public class BlockRitualController extends BlockEnum imple } @Override - public void onBlockHarvested(World world, BlockPos pos, IBlockState state, EntityPlayer player) { + public void onBlockHarvested(World world, BlockPos pos, BlockState state, PlayerEntity player) { TileEntity tile = world.getTileEntity(pos); if (getMetaFromState(state) == 0 && tile instanceof TileMasterRitualStone) @@ -105,12 +105,12 @@ public class BlockRitualController extends BlockEnum imple } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return state.getValue(getProperty()) != EnumRitualController.IMPERFECT ? new TileMasterRitualStone() : new TileImperfectRitualStone(); } @@ -118,8 +118,8 @@ public class BlockRitualController extends BlockEnum imple @Override @Nullable - public ResourceLocation getLinkedEntry(World world, BlockPos pos, EntityPlayer player, ItemStack stack) { - IBlockState state = world.getBlockState(pos); + public ResourceLocation getLinkedEntry(World world, BlockPos pos, PlayerEntity player, ItemStack stack) { + BlockState state = world.getBlockState(pos); if (state.getValue(getProperty()).equals(EnumRitualController.MASTER)) { TileMasterRitualStone mrs = (TileMasterRitualStone) world.getTileEntity(pos); if (mrs == null || mrs.getCurrentRitual() == null) diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockRitualStone.java b/src/main/java/WayofTime/bloodmagic/block/BlockRitualStone.java index 432861d3..33ddfd90 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockRitualStone.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockRitualStone.java @@ -8,9 +8,9 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -39,12 +39,12 @@ public class BlockRitualStone extends BlockEnum implements IRitual } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return 0; } @Override - public boolean canSilkHarvest(World world, BlockPos pos, IBlockState state, EntityPlayer player) { + public boolean canSilkHarvest(World world, BlockPos pos, BlockState state, PlayerEntity player) { return false; } @@ -56,7 +56,7 @@ public class BlockRitualStone extends BlockEnum implements IRitual @Override public void setRuneType(World world, BlockPos pos, EnumRuneType runeType) { int meta = runeType.ordinal(); - IBlockState newState = RegistrarBloodMagicBlocks.RITUAL_STONE.getStateFromMeta(meta); + BlockState newState = RegistrarBloodMagicBlocks.RITUAL_STONE.getStateFromMeta(meta); world.setBlockState(pos, newState); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockRoutingNode.java b/src/main/java/WayofTime/bloodmagic/block/BlockRoutingNode.java index bb26cf20..be4adeb1 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockRoutingNode.java @@ -6,15 +6,15 @@ import WayofTime.bloodmagic.tile.routing.TileMasterRoutingNode; import WayofTime.bloodmagic.tile.routing.TileRoutingNode; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -43,47 +43,47 @@ public class BlockRoutingNode extends Block implements IBMBlock, IVariantProvide } @Override - public boolean canConnectRedstone(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side) { + public boolean canConnectRedstone(BlockState state, IBlockAccess world, BlockPos pos, Direction side) { return true; } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return AABB; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public boolean canRenderInLayer(IBlockState state, BlockRenderLayer layer) { + public boolean canRenderInLayer(BlockState state, BlockRenderLayer layer) { return layer == BlockRenderLayer.CUTOUT_MIPPED || layer == BlockRenderLayer.TRANSLUCENT; } @Override - public IBlockState getStateFromMeta(int meta) { + public BlockState getStateFromMeta(int meta) { return this.getDefaultState(); } @@ -91,13 +91,13 @@ public class BlockRoutingNode extends Block implements IBMBlock, IVariantProvide * Convert the BlockState into the correct metadata value */ @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { return 0; } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) { - return state.withProperty(UP, this.shouldConnect(state, worldIn, pos.up(), EnumFacing.DOWN)).withProperty(DOWN, this.shouldConnect(state, worldIn, pos.down(), EnumFacing.UP)).withProperty(NORTH, this.shouldConnect(state, worldIn, pos.north(), EnumFacing.SOUTH)).withProperty(EAST, this.shouldConnect(state, worldIn, pos.east(), EnumFacing.WEST)).withProperty(SOUTH, this.shouldConnect(state, worldIn, pos.south(), EnumFacing.NORTH)).withProperty(WEST, this.shouldConnect(state, worldIn, pos.west(), EnumFacing.EAST)); + public BlockState getActualState(BlockState state, IBlockAccess worldIn, BlockPos pos) { + return state.withProperty(UP, this.shouldConnect(state, worldIn, pos.up(), Direction.DOWN)).withProperty(DOWN, this.shouldConnect(state, worldIn, pos.down(), Direction.UP)).withProperty(NORTH, this.shouldConnect(state, worldIn, pos.north(), Direction.SOUTH)).withProperty(EAST, this.shouldConnect(state, worldIn, pos.east(), Direction.WEST)).withProperty(SOUTH, this.shouldConnect(state, worldIn, pos.south(), Direction.NORTH)).withProperty(WEST, this.shouldConnect(state, worldIn, pos.west(), Direction.EAST)); } @Override @@ -105,14 +105,14 @@ public class BlockRoutingNode extends Block implements IBMBlock, IVariantProvide return new BlockStateContainer(this, UP, DOWN, NORTH, EAST, WEST, SOUTH); } - public boolean shouldConnect(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing attachedSide) { - IBlockState blockState = world.getBlockState(pos); + public boolean shouldConnect(BlockState state, IBlockAccess world, BlockPos pos, Direction attachedSide) { + BlockState blockState = world.getBlockState(pos); Block block = blockState.getBlock(); return block.getMaterial(blockState).isOpaque() && blockState.isFullCube(); } @Override - public void breakBlock(World world, BlockPos pos, IBlockState blockState) { + public void breakBlock(World world, BlockPos pos, BlockState blockState) { if (!world.isRemote) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileRoutingNode) { @@ -126,8 +126,8 @@ public class BlockRoutingNode extends Block implements IBMBlock, IVariantProvide } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockSoulForge.java b/src/main/java/WayofTime/bloodmagic/block/BlockSoulForge.java index d8eb932d..bdfbc5f6 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockSoulForge.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockSoulForge.java @@ -5,15 +5,15 @@ import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.tile.TileSoulForge; import WayofTime.bloodmagic.util.Constants; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.block.BlockRenderType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -36,37 +36,37 @@ public class BlockSoulForge extends Block implements IVariantProvider, IBMBlock } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return AABB; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { if (world.getTileEntity(pos) instanceof TileSoulForge) player.openGui(BloodMagic.instance, Constants.Gui.SOUL_FORGE_GUI, world, pos.getX(), pos.getY(), pos.getZ()); @@ -74,7 +74,7 @@ public class BlockSoulForge extends Block implements IVariantProvider, IBMBlock } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileSoulForge tileSoulForge = (TileSoulForge) world.getTileEntity(blockPos); if (tileSoulForge != null) tileSoulForge.dropItems(); @@ -83,18 +83,18 @@ public class BlockSoulForge extends Block implements IVariantProvider, IBMBlock } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileSoulForge(); } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockSpectral.java b/src/main/java/WayofTime/bloodmagic/block/BlockSpectral.java index c6f8985c..7602a807 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockSpectral.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockSpectral.java @@ -4,13 +4,13 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ConfigHandler; import WayofTime.bloodmagic.tile.TileSpectralBlock; import net.minecraft.block.Block; +import net.minecraft.block.BlockRenderType; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.BlockRenderLayer; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -32,27 +32,27 @@ public class BlockSpectral extends Block { } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { return AABB; } @Override - public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) { + public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) { return false; } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public boolean causesSuffocation(IBlockState state) { + public boolean causesSuffocation(BlockState state) { return false; } @@ -63,18 +63,18 @@ public class BlockSpectral extends Block { } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return ConfigHandler.client.invisibleSpectralBlocks ? EnumBlockRenderType.INVISIBLE : EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return ConfigHandler.client.invisibleSpectralBlocks ? BlockRenderType.INVISIBLE : BlockRenderType.MODEL; } @Override @SideOnly(Side.CLIENT) - public boolean shouldSideBeRendered(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side) { + public boolean shouldSideBeRendered(BlockState state, IBlockAccess world, BlockPos pos, Direction side) { return world.getBlockState(pos.offset(side)) != state || state.getBlock() != this && super.shouldSideBeRendered(state, world, pos, side); } @Override - public void addCollisionBoxToList(IBlockState state, World worldIn, BlockPos pos, AxisAlignedBB mask, List list, Entity collidingEntity, boolean bool) { + public void addCollisionBoxToList(BlockState state, World worldIn, BlockPos pos, AxisAlignedBB mask, List list, Entity collidingEntity, boolean bool) { } @Override @@ -88,18 +88,18 @@ public class BlockSpectral extends Block { } @Override - public boolean isAir(IBlockState state, IBlockAccess world, BlockPos blockPos) { + public boolean isAir(BlockState state, IBlockAccess world, BlockPos blockPos) { return true; } @Override - public boolean hasTileEntity(IBlockState state) { + public boolean hasTileEntity(BlockState state) { return true; } @Nullable @Override - public TileEntity createTileEntity(World world, IBlockState state) { + public TileEntity createTileEntity(World world, BlockState state) { return new TileSpectralBlock(); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockTeleposer.java b/src/main/java/WayofTime/bloodmagic/block/BlockTeleposer.java index 37bad79e..5dac961b 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockTeleposer.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockTeleposer.java @@ -6,20 +6,20 @@ import WayofTime.bloodmagic.command.sub.SubCommandTeleposer; import WayofTime.bloodmagic.item.ItemTelepositionFocus; import WayofTime.bloodmagic.tile.TileTeleposer; import WayofTime.bloodmagic.util.Constants; -import net.minecraft.block.BlockContainer; +import net.minecraft.block.ContainerBlock; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumBlockRenderType; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.block.BlockRenderType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; -public class BlockTeleposer extends BlockContainer implements IVariantProvider, IBMBlock { +public class BlockTeleposer extends ContainerBlock implements IVariantProvider, IBMBlock { public BlockTeleposer() { super(Material.ROCK); @@ -30,12 +30,12 @@ public class BlockTeleposer extends BlockContainer implements IVariantProvider, } @Override - public EnumBlockRenderType getRenderType(IBlockState state) { - return EnumBlockRenderType.MODEL; + public BlockRenderType getRenderType(BlockState state) { + return BlockRenderType.MODEL; } @Override - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack playerItem = player.getHeldItem(hand); if (playerItem.getItem() instanceof ItemTelepositionFocus) @@ -47,7 +47,7 @@ public class BlockTeleposer extends BlockContainer implements IVariantProvider, } @Override - public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) { + public void breakBlock(World world, BlockPos blockPos, BlockState blockState) { TileTeleposer tileTeleposer = (TileTeleposer) world.getTileEntity(blockPos); if (tileTeleposer != null) { tileTeleposer.dropItems(); @@ -63,7 +63,7 @@ public class BlockTeleposer extends BlockContainer implements IVariantProvider, } @Override - public ItemBlock getItem() { - return new ItemBlock(this); + public BlockItem getItem() { + return new BlockItem(this); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/IBMBlock.java b/src/main/java/WayofTime/bloodmagic/block/IBMBlock.java index 7dd5b818..7c4b1e51 100644 --- a/src/main/java/WayofTime/bloodmagic/block/IBMBlock.java +++ b/src/main/java/WayofTime/bloodmagic/block/IBMBlock.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.block; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; public interface IBMBlock { - ItemBlock getItem(); + BlockItem getItem(); } diff --git a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnum.java b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnum.java index 0734740e..79a1fb0b 100644 --- a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnum.java +++ b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnum.java @@ -5,12 +5,12 @@ import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.item.block.base.ItemBlockEnum; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.util.IStringSerializable; import net.minecraft.util.NonNullList; @@ -46,22 +46,22 @@ public class BlockEnum & IStringSerializable> extends Block im } @Override - public IBlockState getStateFromMeta(int meta) { + public BlockState getStateFromMeta(int meta) { return getDefaultState().withProperty(property, types[meta]); } @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { return state.getValue(property).ordinal(); } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return getMetaFromState(state); } @Override - public void getSubBlocks(CreativeTabs tab, NonNullList subBlocks) { + public void getSubBlocks(ItemGroup tab, NonNullList subBlocks) { for (E type : types) subBlocks.add(new ItemStack(this, 1, type.ordinal())); } @@ -71,7 +71,7 @@ public class BlockEnum & IStringSerializable> extends Block im } @Override - public ItemBlock getItem() { + public BlockItem getItem() { return new ItemBlockEnum<>(this); } diff --git a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillar.java b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillar.java index 418c8de7..b85224e7 100644 --- a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillar.java +++ b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillar.java @@ -1,15 +1,15 @@ package WayofTime.bloodmagic.block.base; -import net.minecraft.block.BlockRotatedPillar; +import net.minecraft.block.BlockState; +import net.minecraft.block.RotatedPillarBlock; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.IStringSerializable; import net.minecraft.util.Rotation; import net.minecraft.util.math.BlockPos; @@ -28,25 +28,25 @@ public class BlockEnumPillar & IStringSerializable> extends Bl @Override protected BlockStateContainer createStateContainer() { - return new BlockStateContainer.Builder(this).add(getProperty(), BlockRotatedPillar.AXIS).build(); + return new BlockStateContainer.Builder(this).add(getProperty(), RotatedPillarBlock.AXIS).build(); } @Override - public IBlockState getStateFromMeta(int meta) { - IBlockState state = getBlockState().getBaseState().withProperty(this.getProperty(), getTypes()[meta % 5]); + public BlockState getStateFromMeta(int meta) { + BlockState state = getBlockState().getBaseState().withProperty(this.getProperty(), getTypes()[meta % 5]); switch (meta / 5) { case 0: - state = state.withProperty(BlockRotatedPillar.AXIS, EnumFacing.Axis.Y); + state = state.withProperty(RotatedPillarBlock.AXIS, Direction.Axis.Y); break; case 1: - state = state.withProperty(BlockRotatedPillar.AXIS, EnumFacing.Axis.X); + state = state.withProperty(RotatedPillarBlock.AXIS, Direction.Axis.X); break; case 2: - state = state.withProperty(BlockRotatedPillar.AXIS, EnumFacing.Axis.Z); + state = state.withProperty(RotatedPillarBlock.AXIS, Direction.Axis.Z); break; default: - state.withProperty(BlockRotatedPillar.AXIS, EnumFacing.Axis.Y); + state.withProperty(RotatedPillarBlock.AXIS, Direction.Axis.Y); break; } @@ -54,16 +54,16 @@ public class BlockEnumPillar & IStringSerializable> extends Bl } @Override - public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { + public ItemStack getPickBlock(BlockState state, RayTraceResult target, World world, BlockPos pos, PlayerEntity player) { return new ItemStack(this, 1, damageDropped(state)); } @SuppressWarnings("incomplete-switch") @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { int i = ArrayUtils.indexOf(getTypes(), state.getValue(getProperty())); - switch (state.getValue(BlockRotatedPillar.AXIS)) { + switch (state.getValue(RotatedPillarBlock.AXIS)) { case X: i = i + 5; break; @@ -76,10 +76,10 @@ public class BlockEnumPillar & IStringSerializable> extends Bl } @Override - public boolean rotateBlock(World world, BlockPos pos, EnumFacing axis) { - IBlockState state = world.getBlockState(pos); + public boolean rotateBlock(World world, BlockPos pos, Direction axis) { + BlockState state = world.getBlockState(pos); for (IProperty prop : state.getProperties().keySet()) { - if (prop == BlockRotatedPillar.AXIS) { + if (prop == RotatedPillarBlock.AXIS) { world.setBlockState(pos, state.cycleProperty(prop)); return true; } @@ -88,15 +88,15 @@ public class BlockEnumPillar & IStringSerializable> extends Bl } @Override - public IBlockState withRotation(IBlockState state, Rotation rot) { + public BlockState withRotation(BlockState state, Rotation rot) { switch (rot) { case COUNTERCLOCKWISE_90: case CLOCKWISE_90: - switch (state.getValue(BlockRotatedPillar.AXIS)) { + switch (state.getValue(RotatedPillarBlock.AXIS)) { case X: - return state.withProperty(BlockRotatedPillar.AXIS, EnumFacing.Axis.Z); + return state.withProperty(RotatedPillarBlock.AXIS, Direction.Axis.Z); case Z: - return state.withProperty(BlockRotatedPillar.AXIS, EnumFacing.Axis.X); + return state.withProperty(RotatedPillarBlock.AXIS, Direction.Axis.X); default: return state; } @@ -107,18 +107,18 @@ public class BlockEnumPillar & IStringSerializable> extends Bl } @Override - protected ItemStack getSilkTouchDrop(IBlockState state) { + protected ItemStack getSilkTouchDrop(BlockState state) { return new ItemStack(this, 1, damageDropped(state)); } @Override - public IBlockState getStateForPlacement(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer, EnumHand hand) { - return super.getStateForPlacement(world, pos, facing, hitX, hitY, hitZ, meta, placer, hand).withProperty(BlockRotatedPillar.AXIS, facing.getAxis()); + public BlockState getStateForPlacement(World world, BlockPos pos, Direction facing, float hitX, float hitY, float hitZ, int meta, LivingEntity placer, Hand hand) { + return super.getStateForPlacement(world, pos, facing, hitX, hitY, hitZ, meta, placer, hand).withProperty(RotatedPillarBlock.AXIS, facing.getAxis()); } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return super.getMetaFromState(state); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillarCap.java b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillarCap.java index d4998c28..3d4a02b3 100644 --- a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillarCap.java +++ b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumPillarCap.java @@ -1,11 +1,11 @@ package WayofTime.bloodmagic.block.base; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyDirection; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; @@ -30,44 +30,44 @@ public class BlockEnumPillarCap & IStringSerializable> extends } @Override - public IBlockState getStateFromMeta(int meta) { - IBlockState state = getBlockState().getBaseState().withProperty(this.getProperty(), getTypes()[meta % 2]); - return state.withProperty(FACING, EnumFacing.byIndex(meta / 2)); + public BlockState getStateFromMeta(int meta) { + BlockState state = getBlockState().getBaseState().withProperty(this.getProperty(), getTypes()[meta % 2]); + return state.withProperty(FACING, Direction.byIndex(meta / 2)); } @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { int i = ArrayUtils.indexOf(getTypes(), state.getValue(getProperty())); return i + 2 * state.getValue(FACING).getIndex(); } @Override - public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { + public ItemStack getPickBlock(BlockState state, RayTraceResult target, World world, BlockPos pos, PlayerEntity player) { return new ItemStack(this, 1, damageDropped(state)); } @Override - public IBlockState withRotation(IBlockState state, Rotation rot) { + public BlockState withRotation(BlockState state, Rotation rot) { return state.withProperty(FACING, rot.rotate(state.getValue(FACING))); } @Override - public IBlockState withMirror(IBlockState state, Mirror mirrorIn) { + public BlockState withMirror(BlockState state, Mirror mirrorIn) { return state.withRotation(mirrorIn.toRotation(state.getValue(FACING))); } @Override - protected ItemStack getSilkTouchDrop(IBlockState state) { + protected ItemStack getSilkTouchDrop(BlockState state) { return new ItemStack(this, 1, damageDropped(state)); } @Override - public IBlockState getStateForPlacement(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer, EnumHand hand) { + public BlockState getStateForPlacement(World world, BlockPos pos, Direction facing, float hitX, float hitY, float hitZ, int meta, LivingEntity placer, Hand hand) { return super.getStateForPlacement(world, pos, facing, hitX, hitY, hitZ, meta, placer, hand).withProperty(FACING, facing); } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return super.getMetaFromState(state); } } diff --git a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumStairs.java b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumStairs.java index f34b2e76..b21d89ab 100644 --- a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumStairs.java +++ b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumStairs.java @@ -1,17 +1,17 @@ package WayofTime.bloodmagic.block.base; import com.google.common.collect.Lists; -import net.minecraft.block.BlockHorizontal; -import net.minecraft.block.BlockStairs; -import net.minecraft.block.BlockStairs.EnumHalf; -import net.minecraft.block.BlockStairs.EnumShape; +import net.minecraft.block.BlockState; +import net.minecraft.block.HorizontalBlock; +import net.minecraft.block.StairsBlock; +import net.minecraft.block.StairsBlock.EnumHalf; +import net.minecraft.block.StairsBlock.EnumShape; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyDirection; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.*; import net.minecraft.util.math.AxisAlignedBB; @@ -27,7 +27,7 @@ import javax.annotation.Nullable; import java.util.List; public class BlockEnumStairs & IStringSerializable> extends BlockEnum { - public static final PropertyDirection FACING = BlockHorizontal.FACING; + public static final PropertyDirection FACING = HorizontalBlock.FACING; protected static final AxisAlignedBB AABB_SLAB_TOP = new AxisAlignedBB(0.0D, 0.5D, 0.0D, 1.0D, 1.0D, 1.0D); protected static final AxisAlignedBB AABB_QTR_TOP_WEST = new AxisAlignedBB(0.0D, 0.5D, 0.0D, 0.5D, 1.0D, 1.0D); @@ -58,11 +58,11 @@ public class BlockEnumStairs & IStringSerializable> extends Bl @Override protected BlockStateContainer createStateContainer() { - return new BlockStateContainer.Builder(this).add(getProperty(), FACING, BlockStairs.HALF, BlockStairs.SHAPE).build(); + return new BlockStateContainer.Builder(this).add(getProperty(), FACING, StairsBlock.HALF, StairsBlock.SHAPE).build(); } @Override - public void addCollisionBoxToList(IBlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { + public void addCollisionBoxToList(BlockState state, World worldIn, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entityIn, boolean bool) { state = this.getActualState(state, worldIn, pos); for (AxisAlignedBB axisalignedbb : getCollisionBoxList(state)) { @@ -71,24 +71,24 @@ public class BlockEnumStairs & IStringSerializable> extends Bl } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } @Override - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @Override - public IBlockState getStateForPlacement(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer, EnumHand hand) { - IBlockState state = super.getStateForPlacement(world, pos, facing, hitX, hitY, hitZ, meta, placer, hand); - state = state.withProperty(FACING, placer.getHorizontalFacing()).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.STRAIGHT); - return facing != EnumFacing.DOWN && (facing == EnumFacing.UP || (double) hitY <= 0.5D) ? state.withProperty(BlockStairs.HALF, BlockStairs.EnumHalf.BOTTOM) : state.withProperty(BlockStairs.HALF, BlockStairs.EnumHalf.TOP); + public BlockState getStateForPlacement(World world, BlockPos pos, Direction facing, float hitX, float hitY, float hitZ, int meta, LivingEntity placer, Hand hand) { + BlockState state = super.getStateForPlacement(world, pos, facing, hitX, hitY, hitZ, meta, placer, hand); + state = state.withProperty(FACING, placer.getHorizontalFacing()).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.STRAIGHT); + return facing != Direction.DOWN && (facing == Direction.UP || (double) hitY <= 0.5D) ? state.withProperty(StairsBlock.HALF, StairsBlock.EnumHalf.BOTTOM) : state.withProperty(StairsBlock.HALF, StairsBlock.EnumHalf.TOP); } @Override - public RayTraceResult collisionRayTrace(IBlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { + public RayTraceResult collisionRayTrace(BlockState blockState, World worldIn, BlockPos pos, Vec3d start, Vec3d end) { List list = Lists.newArrayList(); for (AxisAlignedBB axisalignedbb : getCollisionBoxList(this.getActualState(blockState, worldIn, pos))) { @@ -114,18 +114,18 @@ public class BlockEnumStairs & IStringSerializable> extends Bl // Meta looks like: {1|11|1} = {HALF|FACING|TYPE} @Override - public IBlockState getStateFromMeta(int meta) { - IBlockState state = getBlockState().getBaseState().withProperty(BlockStairs.HALF, (meta & 8) > 0 ? BlockStairs.EnumHalf.TOP : BlockStairs.EnumHalf.BOTTOM); - state = state.withProperty(FACING, EnumFacing.byIndex(5 - (meta & 6) / 2)).withProperty(this.getProperty(), getTypes()[meta % 2]); + public BlockState getStateFromMeta(int meta) { + BlockState state = getBlockState().getBaseState().withProperty(StairsBlock.HALF, (meta & 8) > 0 ? StairsBlock.EnumHalf.TOP : StairsBlock.EnumHalf.BOTTOM); + state = state.withProperty(FACING, Direction.byIndex(5 - (meta & 6) / 2)).withProperty(this.getProperty(), getTypes()[meta % 2]); return state; } // Meta looks like: {1|11|1} = {HALF|FACING|TYPE} @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { int i = 0; - if (state.getValue(BlockStairs.HALF) == BlockStairs.EnumHalf.TOP) { + if (state.getValue(StairsBlock.HALF) == StairsBlock.EnumHalf.TOP) { i |= 4; } @@ -134,34 +134,34 @@ public class BlockEnumStairs & IStringSerializable> extends Bl } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) { - return state.withProperty(BlockStairs.SHAPE, getStairsShape(state, worldIn, pos)); + public BlockState getActualState(BlockState state, IBlockAccess worldIn, BlockPos pos) { + return state.withProperty(StairsBlock.SHAPE, getStairsShape(state, worldIn, pos)); } @Override - public IBlockState withRotation(IBlockState state, Rotation rot) { + public BlockState withRotation(BlockState state, Rotation rot) { return state.withProperty(FACING, rot.rotate(state.getValue(FACING))); } @SuppressWarnings("incomplete-switch") @Override - public IBlockState withMirror(IBlockState state, Mirror mirrorIn) { - EnumFacing facing = state.getValue(FACING); - BlockStairs.EnumShape stairShape = state.getValue(BlockStairs.SHAPE); + public BlockState withMirror(BlockState state, Mirror mirrorIn) { + Direction facing = state.getValue(FACING); + StairsBlock.EnumShape stairShape = state.getValue(StairsBlock.SHAPE); switch (mirrorIn) { case LEFT_RIGHT: - if (facing.getAxis() == EnumFacing.Axis.Z) { + if (facing.getAxis() == Direction.Axis.Z) { switch (stairShape) { case OUTER_LEFT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.OUTER_RIGHT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.OUTER_RIGHT); case OUTER_RIGHT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.OUTER_LEFT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.OUTER_LEFT); case INNER_RIGHT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.INNER_LEFT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.INNER_LEFT); case INNER_LEFT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.INNER_RIGHT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.INNER_RIGHT); default: return state.withRotation(Rotation.CLOCKWISE_180); } @@ -170,16 +170,16 @@ public class BlockEnumStairs & IStringSerializable> extends Bl break; case FRONT_BACK: - if (facing.getAxis() == EnumFacing.Axis.X) { + if (facing.getAxis() == Direction.Axis.X) { switch (stairShape) { case OUTER_LEFT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.OUTER_RIGHT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.OUTER_RIGHT); case OUTER_RIGHT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.OUTER_LEFT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.OUTER_LEFT); case INNER_RIGHT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.INNER_RIGHT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.INNER_RIGHT); case INNER_LEFT: - return state.withRotation(Rotation.CLOCKWISE_180).withProperty(BlockStairs.SHAPE, BlockStairs.EnumShape.INNER_LEFT); + return state.withRotation(Rotation.CLOCKWISE_180).withProperty(StairsBlock.SHAPE, StairsBlock.EnumShape.INNER_LEFT); case STRAIGHT: return state.withRotation(Rotation.CLOCKWISE_180); } @@ -190,22 +190,22 @@ public class BlockEnumStairs & IStringSerializable> extends Bl } @Override - protected ItemStack getSilkTouchDrop(IBlockState state) { + protected ItemStack getSilkTouchDrop(BlockState state) { return new ItemStack(this, 1, damageDropped(state)); } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return super.getMetaFromState(state); } @Override - public ItemStack getPickBlock(IBlockState state, RayTraceResult target, World world, BlockPos pos, EntityPlayer player) { + public ItemStack getPickBlock(BlockState state, RayTraceResult target, World world, BlockPos pos, PlayerEntity player) { return new ItemStack(this, 1, damageDropped(state)); } @Override - public boolean doesSideBlockRendering(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing face) { + public boolean doesSideBlockRendering(BlockState state, IBlockAccess world, BlockPos pos, Direction face) { if (ForgeModContainer.disableStairSlabCulling) return super.doesSideBlockRendering(state, world, pos, face); @@ -214,12 +214,12 @@ public class BlockEnumStairs & IStringSerializable> extends Bl state = this.getActualState(state, world, pos); - EnumHalf half = state.getValue(BlockStairs.HALF); - EnumFacing side = state.getValue(FACING); - EnumShape shape = state.getValue(BlockStairs.SHAPE); - if (face == EnumFacing.UP) + EnumHalf half = state.getValue(StairsBlock.HALF); + Direction side = state.getValue(FACING); + EnumShape shape = state.getValue(StairsBlock.SHAPE); + if (face == Direction.UP) return half == EnumHalf.TOP; - if (face == EnumFacing.DOWN) + if (face == Direction.DOWN) return half == EnumHalf.BOTTOM; if (shape == EnumShape.OUTER_LEFT || shape == EnumShape.OUTER_RIGHT) return false; @@ -232,25 +232,25 @@ public class BlockEnumStairs & IStringSerializable> extends Bl return false; } - private static List getCollisionBoxList(IBlockState state) { + private static List getCollisionBoxList(BlockState state) { List list = Lists.newArrayList(); - boolean flag = state.getValue(BlockStairs.HALF) == BlockStairs.EnumHalf.TOP; + boolean flag = state.getValue(StairsBlock.HALF) == StairsBlock.EnumHalf.TOP; list.add(flag ? AABB_SLAB_TOP : AABB_SLAB_BOTTOM); - BlockStairs.EnumShape stairShape = state.getValue(BlockStairs.SHAPE); + StairsBlock.EnumShape stairShape = state.getValue(StairsBlock.SHAPE); - if (stairShape == BlockStairs.EnumShape.STRAIGHT || stairShape == BlockStairs.EnumShape.INNER_LEFT || stairShape == BlockStairs.EnumShape.INNER_RIGHT) { + if (stairShape == StairsBlock.EnumShape.STRAIGHT || stairShape == StairsBlock.EnumShape.INNER_LEFT || stairShape == StairsBlock.EnumShape.INNER_RIGHT) { list.add(getCollQuarterBlock(state)); } - if (stairShape != BlockStairs.EnumShape.STRAIGHT) { + if (stairShape != StairsBlock.EnumShape.STRAIGHT) { list.add(getCollEighthBlock(state)); } return list; } - private static AxisAlignedBB getCollQuarterBlock(IBlockState state) { - boolean flag = state.getValue(BlockStairs.HALF) == BlockStairs.EnumHalf.TOP; + private static AxisAlignedBB getCollQuarterBlock(BlockState state) { + boolean flag = state.getValue(StairsBlock.HALF) == StairsBlock.EnumHalf.TOP; switch (state.getValue(FACING)) { case NORTH: @@ -265,11 +265,11 @@ public class BlockEnumStairs & IStringSerializable> extends Bl } } - private static AxisAlignedBB getCollEighthBlock(IBlockState state) { - EnumFacing facing = state.getValue(FACING); - EnumFacing newFacing; + private static AxisAlignedBB getCollEighthBlock(BlockState state) { + Direction facing = state.getValue(FACING); + Direction newFacing; - switch (state.getValue(BlockStairs.SHAPE)) { + switch (state.getValue(StairsBlock.SHAPE)) { case OUTER_LEFT: default: newFacing = facing; @@ -284,7 +284,7 @@ public class BlockEnumStairs & IStringSerializable> extends Bl newFacing = facing.rotateYCCW(); } - boolean isTop = state.getValue(BlockStairs.HALF) == BlockStairs.EnumHalf.TOP; + boolean isTop = state.getValue(StairsBlock.HALF) == StairsBlock.EnumHalf.TOP; switch (newFacing) { case NORTH: @@ -299,45 +299,45 @@ public class BlockEnumStairs & IStringSerializable> extends Bl } } - private static BlockStairs.EnumShape getStairsShape(IBlockState state, IBlockAccess world, BlockPos pos) { - EnumFacing facing = state.getValue(FACING); - IBlockState offsetState = world.getBlockState(pos.offset(facing)); + private static StairsBlock.EnumShape getStairsShape(BlockState state, IBlockAccess world, BlockPos pos) { + Direction facing = state.getValue(FACING); + BlockState offsetState = world.getBlockState(pos.offset(facing)); - if (isBlockStairs(offsetState) && state.getValue(BlockStairs.HALF) == offsetState.getValue(BlockStairs.HALF)) { - EnumFacing offsetFacing = offsetState.getValue(FACING); + if (isBlockStairs(offsetState) && state.getValue(StairsBlock.HALF) == offsetState.getValue(StairsBlock.HALF)) { + Direction offsetFacing = offsetState.getValue(FACING); if (offsetFacing.getAxis() != state.getValue(FACING).getAxis() && isDifferentStairs(state, world, pos, offsetFacing.getOpposite())) { if (offsetFacing == facing.rotateYCCW()) { - return BlockStairs.EnumShape.OUTER_LEFT; + return StairsBlock.EnumShape.OUTER_LEFT; } - return BlockStairs.EnumShape.OUTER_RIGHT; + return StairsBlock.EnumShape.OUTER_RIGHT; } } - IBlockState oppositeOffsetState = world.getBlockState(pos.offset(facing.getOpposite())); + BlockState oppositeOffsetState = world.getBlockState(pos.offset(facing.getOpposite())); - if (isBlockStairs(oppositeOffsetState) && state.getValue(BlockStairs.HALF) == oppositeOffsetState.getValue(BlockStairs.HALF)) { - EnumFacing oppositeOffsetFacing = oppositeOffsetState.getValue(FACING); + if (isBlockStairs(oppositeOffsetState) && state.getValue(StairsBlock.HALF) == oppositeOffsetState.getValue(StairsBlock.HALF)) { + Direction oppositeOffsetFacing = oppositeOffsetState.getValue(FACING); if (oppositeOffsetFacing.getAxis() != (state.getValue(FACING)).getAxis() && isDifferentStairs(state, world, pos, oppositeOffsetFacing)) { if (oppositeOffsetFacing == facing.rotateYCCW()) { - return BlockStairs.EnumShape.INNER_LEFT; + return StairsBlock.EnumShape.INNER_LEFT; } - return BlockStairs.EnumShape.INNER_RIGHT; + return StairsBlock.EnumShape.INNER_RIGHT; } } - return BlockStairs.EnumShape.STRAIGHT; + return StairsBlock.EnumShape.STRAIGHT; } - private static boolean isDifferentStairs(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing facing) { - IBlockState offsetState = world.getBlockState(pos.offset(facing)); - return !isBlockStairs(offsetState) || offsetState.getValue(FACING) != state.getValue(FACING) || offsetState.getValue(BlockStairs.HALF) != state.getValue(BlockStairs.HALF); + private static boolean isDifferentStairs(BlockState state, IBlockAccess world, BlockPos pos, Direction facing) { + BlockState offsetState = world.getBlockState(pos.offset(facing)); + return !isBlockStairs(offsetState) || offsetState.getValue(FACING) != state.getValue(FACING) || offsetState.getValue(StairsBlock.HALF) != state.getValue(StairsBlock.HALF); } - public static boolean isBlockStairs(IBlockState state) { - return state.getBlock() instanceof BlockStairs || state.getBlock() instanceof BlockEnumStairs; + public static boolean isBlockStairs(BlockState state) { + return state.getBlock() instanceof StairsBlock || state.getBlock() instanceof BlockEnumStairs; } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumWall.java b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumWall.java index 325689e6..60b2523c 100644 --- a/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumWall.java +++ b/src/main/java/WayofTime/bloodmagic/block/base/BlockEnumWall.java @@ -1,14 +1,14 @@ package WayofTime.bloodmagic.block.base; import net.minecraft.block.Block; -import net.minecraft.block.BlockFenceGate; +import net.minecraft.block.BlockState; +import net.minecraft.block.FenceGateBlock; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.IStringSerializable; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -42,18 +42,18 @@ public class BlockEnumWall & IStringSerializable> extends Bloc } @Override - public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { + public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) { state = state.getActualState(source, pos); return AABB_BY_INDEX[getAABBIndex(state)]; } @Override - public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos) { + public AxisAlignedBB getCollisionBoundingBox(BlockState blockState, IBlockAccess worldIn, BlockPos pos) { blockState = blockState.getActualState(worldIn, pos); return CLIP_AABB_BY_INDEX[getAABBIndex(blockState)]; } - public boolean isFullCube(IBlockState state) { + public boolean isFullCube(BlockState state) { return false; } @@ -62,24 +62,24 @@ public class BlockEnumWall & IStringSerializable> extends Bloc } @Override - public boolean isOpaqueCube(IBlockState state) { + public boolean isOpaqueCube(BlockState state) { return false; } private boolean canConnectTo(IBlockAccess worldIn, BlockPos pos) { - IBlockState worldState = worldIn.getBlockState(pos); + BlockState worldState = worldIn.getBlockState(pos); Block block = worldState.getBlock(); - return block != Blocks.BARRIER && (!(block != this && !(block instanceof BlockFenceGate)) || ((worldState.getMaterial().isOpaque() && worldState.isFullCube()) && worldState.getMaterial() != Material.GOURD)); + return block != Blocks.BARRIER && (!(block != this && !(block instanceof FenceGateBlock)) || ((worldState.getMaterial().isOpaque() && worldState.isFullCube()) && worldState.getMaterial() != Material.GOURD)); } @SideOnly(Side.CLIENT) @Override - public boolean shouldSideBeRendered(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side) { - return side != EnumFacing.DOWN || super.shouldSideBeRendered(blockState, blockAccess, pos, side); + public boolean shouldSideBeRendered(BlockState blockState, IBlockAccess blockAccess, BlockPos pos, Direction side) { + return side != Direction.DOWN || super.shouldSideBeRendered(blockState, blockAccess, pos, side); } @Override - public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) { + public BlockState getActualState(BlockState state, IBlockAccess worldIn, BlockPos pos) { boolean canNorth = this.canConnectTo(worldIn, pos.north()); boolean canEast = this.canConnectTo(worldIn, pos.east()); boolean canSouth = this.canConnectTo(worldIn, pos.south()); @@ -89,32 +89,32 @@ public class BlockEnumWall & IStringSerializable> extends Bloc } @Override - protected ItemStack getSilkTouchDrop(IBlockState state) { + protected ItemStack getSilkTouchDrop(BlockState state) { return new ItemStack(this, 1, damageDropped(state)); } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return super.getMetaFromState(state); } - private static int getAABBIndex(IBlockState state) { + private static int getAABBIndex(BlockState state) { int i = 0; if (state.getValue(NORTH)) { - i |= 1 << EnumFacing.NORTH.getHorizontalIndex(); + i |= 1 << Direction.NORTH.getHorizontalIndex(); } if (state.getValue(EAST)) { - i |= 1 << EnumFacing.EAST.getHorizontalIndex(); + i |= 1 << Direction.EAST.getHorizontalIndex(); } if (state.getValue(SOUTH)) { - i |= 1 << EnumFacing.SOUTH.getHorizontalIndex(); + i |= 1 << Direction.SOUTH.getHorizontalIndex(); } if (state.getValue(WEST)) { - i |= 1 << EnumFacing.WEST.getHorizontalIndex(); + i |= 1 << Direction.WEST.getHorizontalIndex(); } return i; diff --git a/src/main/java/WayofTime/bloodmagic/block/base/BlockInteger.java b/src/main/java/WayofTime/bloodmagic/block/base/BlockInteger.java index 3e2a13f9..0427e11a 100644 --- a/src/main/java/WayofTime/bloodmagic/block/base/BlockInteger.java +++ b/src/main/java/WayofTime/bloodmagic/block/base/BlockInteger.java @@ -4,8 +4,8 @@ import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.block.BlockState; +import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; @@ -43,22 +43,22 @@ public class BlockInteger extends Block { } @Override - public IBlockState getStateFromMeta(int meta) { + public BlockState getStateFromMeta(int meta) { return getDefaultState().withProperty(property, meta); } @Override - public int getMetaFromState(IBlockState state) { + public int getMetaFromState(BlockState state) { return state.getValue(property); } @Override - public int damageDropped(IBlockState state) { + public int damageDropped(BlockState state) { return getMetaFromState(state); } @Override - public void getSubBlocks(CreativeTabs tab, NonNullList subBlocks) { + public void getSubBlocks(ItemGroup tab, NonNullList subBlocks) { for (int i = 0; i < maxMeta; i++) subBlocks.add(new ItemStack(this, 1, i)); } diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiAlchemyTable.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiAlchemyTable.java index 3392b3f3..3a203214 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiAlchemyTable.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiAlchemyTable.java @@ -4,20 +4,20 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.tile.TileAlchemyTable; import WayofTime.bloodmagic.tile.container.ContainerAlchemyTable; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.gui.screen.inventory.ContainerScreen; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.entity.player.PlayerInventory; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class GuiAlchemyTable extends GuiContainer { +public class GuiAlchemyTable extends ContainerScreen { public IInventory tileTable; - public GuiAlchemyTable(InventoryPlayer playerInventory, IInventory tileTable) { + public GuiAlchemyTable(PlayerInventory playerInventory, IInventory tileTable) { super(new ContainerAlchemyTable(playerInventory, tileTable)); this.tileTable = tileTable; this.xSize = 176; diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiBloodMagicConfig.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiBloodMagicConfig.java index f96654ca..b4f55629 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiBloodMagicConfig.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiBloodMagicConfig.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.ConfigHandler; import WayofTime.bloodmagic.client.hud.ConfigEntryEditHUD; import com.google.common.collect.Lists; import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.GuiScreen; +import net.minecraft.client.gui.screen.Screen; import net.minecraftforge.common.config.ConfigElement; import net.minecraftforge.fml.client.IModGuiFactory; import net.minecraftforge.fml.client.config.DummyConfigElement; @@ -18,7 +18,7 @@ import java.util.Set; public class GuiBloodMagicConfig extends GuiConfig { - public GuiBloodMagicConfig(GuiScreen parentScreen) { + public GuiBloodMagicConfig(Screen parentScreen) { super(parentScreen, getElements(), BloodMagic.MODID, false, false, BloodMagic.NAME); } @@ -52,7 +52,7 @@ public class GuiBloodMagicConfig extends GuiConfig { } @Override - public GuiScreen createConfigGui(GuiScreen parentScreen) { + public Screen createConfigGui(Screen parentScreen) { return new GuiBloodMagicConfig(parentScreen); } diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiHandler.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiHandler.java index 80705ac1..a942839d 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiHandler.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiHandler.java @@ -9,15 +9,15 @@ import WayofTime.bloodmagic.tile.TileTeleposer; import WayofTime.bloodmagic.tile.container.*; import WayofTime.bloodmagic.tile.routing.TileFilteredRoutingNode; import WayofTime.bloodmagic.tile.routing.TileMasterRoutingNode; -import net.minecraft.client.multiplayer.WorldClient; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.client.world.ClientWorld; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.fml.common.network.IGuiHandler; public class GuiHandler implements IGuiHandler { @Override - public Object getServerGuiElement(int id, EntityPlayer player, World world, int x, int y, int z) { + public Object getServerGuiElement(int id, PlayerEntity player, World world, int x, int y, int z) { BlockPos pos = new BlockPos(x, y, z); switch (id) { @@ -39,8 +39,8 @@ public class GuiHandler implements IGuiHandler { } @Override - public Object getClientGuiElement(int id, EntityPlayer player, World world, int x, int y, int z) { - if (world instanceof WorldClient) { + public Object getClientGuiElement(int id, PlayerEntity player, World world, int x, int y, int z) { + if (world instanceof ClientWorld) { BlockPos pos = new BlockPos(x, y, z); switch (id) { diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiHolding.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiHolding.java index 95fbd50f..d20cb33e 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiHolding.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiHolding.java @@ -6,21 +6,21 @@ import WayofTime.bloodmagic.item.inventory.ContainerHolding; import WayofTime.bloodmagic.item.inventory.InventoryHolding; import WayofTime.bloodmagic.item.sigil.ItemSigilHolding; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.gui.screen.inventory.ContainerScreen; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class GuiHolding extends GuiContainer { +public class GuiHolding extends ContainerScreen { private ResourceLocation texture = new ResourceLocation(BloodMagic.MODID, "gui/SigilHolding.png"); - private EntityPlayer player; + private PlayerEntity player; - public GuiHolding(EntityPlayer player, InventoryHolding inventoryHolding) { + public GuiHolding(PlayerEntity player, InventoryHolding inventoryHolding) { super(new ContainerHolding(player, inventoryHolding)); xSize = 176; ySize = 121; @@ -48,7 +48,7 @@ public class GuiHolding extends GuiContainer { int x = (width - xSize) / 2; int y = (height - ySize) / 2; this.drawTexturedModalRect(x, y, 0, 0, xSize, ySize); - ItemStack held = player.getHeldItem(EnumHand.MAIN_HAND); + ItemStack held = player.getHeldItem(Hand.MAIN_HAND); if (!held.isEmpty() && held.getItem() == RegistrarBloodMagicItems.SIGIL_HOLDING) { GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); this.drawTexturedModalRect(4 + x + 36 * ItemSigilHolding.getCurrentItemOrdinal(player.getHeldItemMainhand()), y + 13, 0, 123, 24, 24); diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiItemRoutingNode.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiItemRoutingNode.java index 2a9d0590..72ffef7b 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiItemRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiItemRoutingNode.java @@ -8,15 +8,15 @@ import WayofTime.bloodmagic.tile.container.ContainerItemRoutingNode; import WayofTime.bloodmagic.tile.routing.TileFilteredRoutingNode; import WayofTime.bloodmagic.util.GhostItemHelper; import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.GuiButton; -import net.minecraft.client.gui.GuiTextField; -import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.gui.screen.inventory.ContainerScreen; +import net.minecraft.client.gui.widget.TextFieldWidget; +import net.minecraft.client.gui.widget.button.Button; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.entity.player.PlayerInventory; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -24,15 +24,15 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.io.IOException; @SideOnly(Side.CLIENT) -public class GuiItemRoutingNode extends GuiContainer { - private GuiTextField textBox; +public class GuiItemRoutingNode extends ContainerScreen { + private TextFieldWidget textBox; private TileFilteredRoutingNode inventory; private ContainerItemRoutingNode container; private int left, top; - public GuiItemRoutingNode(InventoryPlayer playerInventory, IInventory tileRoutingNode) { + public GuiItemRoutingNode(PlayerInventory playerInventory, IInventory tileRoutingNode) { super(new ContainerItemRoutingNode(playerInventory, tileRoutingNode)); this.xSize = 201; this.ySize = 169; @@ -41,7 +41,7 @@ public class GuiItemRoutingNode extends GuiContainer { } private int getCurrentActiveSlotPriority() { - EnumFacing direction = EnumFacing.byIndex(inventory.currentActiveSlot); + Direction direction = Direction.byIndex(inventory.currentActiveSlot); if (direction != null) { return inventory.getPriority(direction); } @@ -56,17 +56,17 @@ public class GuiItemRoutingNode extends GuiContainer { top = (this.height - this.ySize) / 2; this.buttonList.clear(); - this.buttonList.add(new GuiButton(0, left + 176, top + 14, 18, 18, "D")); - this.buttonList.add(new GuiButton(1, left + 176, top + 32, 18, 18, "U")); - this.buttonList.add(new GuiButton(2, left + 176, top + 50, 18, 18, "N")); - this.buttonList.add(new GuiButton(3, left + 176, top + 68, 18, 18, "S")); - this.buttonList.add(new GuiButton(4, left + 176, top + 86, 18, 18, "W")); - this.buttonList.add(new GuiButton(5, left + 176, top + 104, 18, 18, "E")); - this.buttonList.add(new GuiButton(6, left + 160, top + 50, 10, 18, ">")); - this.buttonList.add(new GuiButton(7, left + 132, top + 50, 10, 18, "<")); + this.buttonList.add(new Button(0, left + 176, top + 14, 18, 18, "D")); + this.buttonList.add(new Button(1, left + 176, top + 32, 18, 18, "U")); + this.buttonList.add(new Button(2, left + 176, top + 50, 18, 18, "N")); + this.buttonList.add(new Button(3, left + 176, top + 68, 18, 18, "S")); + this.buttonList.add(new Button(4, left + 176, top + 86, 18, 18, "W")); + this.buttonList.add(new Button(5, left + 176, top + 104, 18, 18, "E")); + this.buttonList.add(new Button(6, left + 160, top + 50, 10, 18, ">")); + this.buttonList.add(new Button(7, left + 132, top + 50, 10, 18, "<")); disableDirectionalButton(inventory.currentActiveSlot); - this.textBox = new GuiTextField(0, this.fontRenderer, left + 94, top + 37, 70, 12); + this.textBox = new TextFieldWidget(0, this.fontRenderer, left + 94, top + 37, 70, 12); this.textBox.setEnableBackgroundDrawing(false); this.textBox.setText(""); } @@ -137,7 +137,7 @@ public class GuiItemRoutingNode extends GuiContainer { * for buttons) */ @Override - protected void actionPerformed(GuiButton button) throws IOException { + protected void actionPerformed(Button button) throws IOException { if (button.enabled) { BloodMagicPacketHandler.INSTANCE.sendToServer(new ItemRouterButtonPacketProcessor(button.id, inventory.getPos(), inventory.getWorld())); if (button.id < 6) { @@ -149,7 +149,7 @@ public class GuiItemRoutingNode extends GuiContainer { } private void enableAllDirectionalButtons() { - for (GuiButton button : this.buttonList) { + for (Button button : this.buttonList) { button.enabled = true; } } diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiMasterRoutingNode.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiMasterRoutingNode.java index c64d1b21..f8693ba3 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiMasterRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiMasterRoutingNode.java @@ -2,18 +2,18 @@ package WayofTime.bloodmagic.client.gui; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.tile.container.ContainerMasterRoutingNode; -import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.gui.screen.inventory.ContainerScreen; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.entity.player.PlayerInventory; import net.minecraft.inventory.IInventory; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class GuiMasterRoutingNode extends GuiContainer { +public class GuiMasterRoutingNode extends ContainerScreen { - public GuiMasterRoutingNode(InventoryPlayer playerInventory, IInventory tileRoutingNode) { + public GuiMasterRoutingNode(PlayerInventory playerInventory, IInventory tileRoutingNode) { super(new ContainerMasterRoutingNode(playerInventory, tileRoutingNode)); this.xSize = 216; this.ySize = 216; diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiSoulForge.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiSoulForge.java index 6a1d85b0..3e890f88 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiSoulForge.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiSoulForge.java @@ -4,19 +4,19 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.tile.TileSoulForge; import WayofTime.bloodmagic.tile.container.ContainerSoulForge; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.gui.screen.inventory.ContainerScreen; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.entity.player.PlayerInventory; import net.minecraft.inventory.IInventory; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class GuiSoulForge extends GuiContainer { +public class GuiSoulForge extends ContainerScreen { public IInventory tileSoulForge; - public GuiSoulForge(InventoryPlayer playerInventory, IInventory tileSoulForge) { + public GuiSoulForge(PlayerInventory playerInventory, IInventory tileSoulForge) { super(new ContainerSoulForge(playerInventory, tileSoulForge)); this.tileSoulForge = tileSoulForge; this.xSize = 176; diff --git a/src/main/java/WayofTime/bloodmagic/client/gui/GuiTeleposer.java b/src/main/java/WayofTime/bloodmagic/client/gui/GuiTeleposer.java index e5db4c67..be9cde2e 100644 --- a/src/main/java/WayofTime/bloodmagic/client/gui/GuiTeleposer.java +++ b/src/main/java/WayofTime/bloodmagic/client/gui/GuiTeleposer.java @@ -3,17 +3,17 @@ package WayofTime.bloodmagic.client.gui; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.tile.container.ContainerTeleposer; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.client.gui.inventory.GuiContainer; +import net.minecraft.client.gui.screen.inventory.ContainerScreen; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.entity.player.PlayerInventory; import net.minecraft.inventory.IInventory; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class GuiTeleposer extends GuiContainer { - public GuiTeleposer(InventoryPlayer playerInventory, IInventory tileTeleposer) { +public class GuiTeleposer extends ContainerScreen { + public GuiTeleposer(PlayerInventory playerInventory, IInventory tileTeleposer) { super(new ContainerTeleposer(playerInventory, tileTeleposer)); } diff --git a/src/main/java/WayofTime/bloodmagic/client/hud/GuiEditHUD.java b/src/main/java/WayofTime/bloodmagic/client/hud/GuiEditHUD.java index 94531576..c14d65c4 100644 --- a/src/main/java/WayofTime/bloodmagic/client/hud/GuiEditHUD.java +++ b/src/main/java/WayofTime/bloodmagic/client/hud/GuiEditHUD.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.client.hud; import WayofTime.bloodmagic.client.hud.element.HUDElement; import com.google.common.collect.Maps; import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.GuiButton; -import net.minecraft.client.gui.GuiScreen; +import net.minecraft.client.gui.screen.Screen; +import net.minecraft.client.gui.widget.button.Button; import net.minecraft.client.gui.ScaledResolution; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.resources.I18n; @@ -17,16 +17,16 @@ import javax.vecmath.Vector2f; import java.awt.Point; import java.util.Map; -public class GuiEditHUD extends GuiScreen { +public class GuiEditHUD extends Screen { private static final int LINE_COLOR = 0x2D2D2D; - private final GuiScreen parent; + private final Screen parent; private final Map currentOverrides = Maps.newHashMap(); private HUDElement dragged; public boolean changes; - public GuiEditHUD(GuiScreen parent) { + public GuiEditHUD(Screen parent) { this.parent = parent; } @@ -102,7 +102,7 @@ public class GuiEditHUD extends GuiScreen { } @Override - protected void actionPerformed(GuiButton button) { + protected void actionPerformed(Button button) { switch (button.id) { case 0: { Minecraft.getMinecraft().displayGuiScreen(parent); diff --git a/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDemonAura.java b/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDemonAura.java index 29c7a889..a039b541 100644 --- a/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDemonAura.java +++ b/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDemonAura.java @@ -8,7 +8,7 @@ import com.google.common.collect.Lists; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.ScaledResolution; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.ResourceLocation; import java.util.List; @@ -32,7 +32,7 @@ public class ElementDemonAura extends HUDElement { @Override public void draw(ScaledResolution resolution, float partialTicks, int drawX, int drawY) { Minecraft minecraft = Minecraft.getMinecraft(); - EntityPlayer player = minecraft.player; + PlayerEntity player = minecraft.player; minecraft.getTextureManager().bindTexture(BAR_LOCATION); GlStateManager.color(1.0F, 1.0F, 1.0F); diff --git a/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDivinedInformation.java b/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDivinedInformation.java index 0d9beb6c..4854f312 100644 --- a/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDivinedInformation.java +++ b/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementDivinedInformation.java @@ -3,10 +3,10 @@ package WayofTime.bloodmagic.client.hud.element; import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.item.sigil.ItemSigilHolding; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import java.util.List; @@ -21,8 +21,8 @@ public abstract class ElementDivinedInformation extends El @Override public boolean shouldRender(Minecraft minecraft) { - EntityPlayer player = Minecraft.getMinecraft().player; - ItemStack sigilStack = player.getHeldItem(EnumHand.MAIN_HAND); + PlayerEntity player = Minecraft.getMinecraft().player; + ItemStack sigilStack = player.getHeldItem(Hand.MAIN_HAND); boolean flag = false; if (simple) { if (sigilStack.getItem() == RegistrarBloodMagicItems.SIGIL_DIVINATION || sigilStack.getItem() == RegistrarBloodMagicItems.SIGIL_SEER) @@ -30,7 +30,7 @@ public abstract class ElementDivinedInformation extends El else flag = isFlagSigilHolding(sigilStack, true); if (!flag) { - sigilStack = player.getHeldItem(EnumHand.OFF_HAND); + sigilStack = player.getHeldItem(Hand.OFF_HAND); if (sigilStack.getItem() == RegistrarBloodMagicItems.SIGIL_DIVINATION || sigilStack.getItem() == RegistrarBloodMagicItems.SIGIL_SEER) flag = true; else flag = isFlagSigilHolding(sigilStack, true); @@ -42,7 +42,7 @@ public abstract class ElementDivinedInformation extends El else flag = isFlagSigilHolding(sigilStack, false); if (!flag) { - sigilStack = player.getHeldItem(EnumHand.OFF_HAND); + sigilStack = player.getHeldItem(Hand.OFF_HAND); if (sigilStack.getItem() == RegistrarBloodMagicItems.SIGIL_SEER) flag = true; else flag = isFlagSigilHolding(sigilStack, false); diff --git a/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementHolding.java b/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementHolding.java index 9206f124..c83e9966 100644 --- a/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementHolding.java +++ b/src/main/java/WayofTime/bloodmagic/client/hud/element/ElementHolding.java @@ -8,7 +8,7 @@ import net.minecraft.client.Minecraft; import net.minecraft.client.gui.ScaledResolution; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.RenderHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; @@ -62,7 +62,7 @@ public class ElementHolding extends HUDElement { return true; } - protected void renderHotbarItem(int x, int y, float partialTicks, EntityPlayer player, ItemStack stack) { + protected void renderHotbarItem(int x, int y, float partialTicks, PlayerEntity player, ItemStack stack) { if (!stack.isEmpty()) { float animation = (float) stack.getAnimationsToGo() - partialTicks; diff --git a/src/main/java/WayofTime/bloodmagic/client/key/IKeybindable.java b/src/main/java/WayofTime/bloodmagic/client/key/IKeybindable.java index c325019f..a7fe5286 100644 --- a/src/main/java/WayofTime/bloodmagic/client/key/IKeybindable.java +++ b/src/main/java/WayofTime/bloodmagic/client/key/IKeybindable.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.client.key; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; public interface IKeybindable { - void onKeyPressed(ItemStack stack, EntityPlayer player, KeyBindings key, boolean showInChat); + void onKeyPressed(ItemStack stack, PlayerEntity player, KeyBindings key, boolean showInChat); } diff --git a/src/main/java/WayofTime/bloodmagic/client/key/KeyBindings.java b/src/main/java/WayofTime/bloodmagic/client/key/KeyBindings.java index 6fa069bd..8d7b86d4 100644 --- a/src/main/java/WayofTime/bloodmagic/client/key/KeyBindings.java +++ b/src/main/java/WayofTime/bloodmagic/client/key/KeyBindings.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.network.BloodMagicPacketHandler; import WayofTime.bloodmagic.network.KeyProcessor; import WayofTime.bloodmagic.util.handler.event.ClientHandler; import net.minecraft.client.Minecraft; -import net.minecraft.client.entity.EntityPlayerSP; +import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.client.settings.KeyBinding; import net.minecraft.item.ItemStack; import net.minecraftforge.client.settings.IKeyConflictContext; @@ -33,7 +33,7 @@ public enum KeyBindings { @SideOnly(Side.CLIENT) @Override public void handleKeybind() { - EntityPlayerSP player = Minecraft.getMinecraft().player; + ClientPlayerEntity player = Minecraft.getMinecraft().player; if (player.getHeldItemMainhand().getItem() instanceof ItemSigilHolding) ClientHandler.cycleSigil(player.getHeldItemMainhand(), player, -1); } @@ -42,7 +42,7 @@ public enum KeyBindings { @SideOnly(Side.CLIENT) @Override public void handleKeybind() { - EntityPlayerSP player = Minecraft.getMinecraft().player; + ClientPlayerEntity player = Minecraft.getMinecraft().player; if (player.getHeldItemMainhand().getItem() instanceof ItemSigilHolding) ClientHandler.cycleSigil(player.getHeldItemMainhand(), player, 1); } diff --git a/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionActivatable.java b/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionActivatable.java index a674b457..bf43d69a 100644 --- a/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionActivatable.java +++ b/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionActivatable.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.client.mesh; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.iface.IActivatable; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; diff --git a/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionMultiWill.java b/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionMultiWill.java index 58f7fc64..0b3a91b9 100644 --- a/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionMultiWill.java +++ b/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionMultiWill.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.iface.IMultiWillTool; import WayofTime.bloodmagic.soul.EnumDemonWillType; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; diff --git a/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionWillGem.java b/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionWillGem.java index a1e3af67..ec857e14 100644 --- a/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionWillGem.java +++ b/src/main/java/WayofTime/bloodmagic/client/mesh/CustomMeshDefinitionWillGem.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.item.soul.ItemSoulGem; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; diff --git a/src/main/java/WayofTime/bloodmagic/client/render/LayerBloodElytra.java b/src/main/java/WayofTime/bloodmagic/client/render/LayerBloodElytra.java index 25a9d228..ca303032 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/LayerBloodElytra.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/LayerBloodElytra.java @@ -3,30 +3,30 @@ package WayofTime.bloodmagic.client.render; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.item.armour.ItemLivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmour; -import net.minecraft.client.entity.AbstractClientPlayer; +import net.minecraft.client.entity.player.AbstractClientPlayerEntity; import net.minecraft.client.model.ModelElytra; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.entity.RenderPlayer; -import net.minecraft.client.renderer.entity.layers.LayerArmorBase; +import net.minecraft.client.renderer.entity.PlayerRenderer; +import net.minecraft.client.renderer.entity.layers.ArmorLayer; import net.minecraft.client.renderer.entity.layers.LayerRenderer; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; -public class LayerBloodElytra implements LayerRenderer { +public class LayerBloodElytra implements LayerRenderer { private static final ResourceLocation TEXTURE_BLOOD_ELYTRA = new ResourceLocation("bloodmagic", "textures/entities/bloodElytra.png"); - private final RenderPlayer renderPlayer; + private final PlayerRenderer renderPlayer; private final ModelElytra modelElytra = new ModelElytra(); - public LayerBloodElytra(RenderPlayer renderPlayer) { + public LayerBloodElytra(PlayerRenderer renderPlayer) { this.renderPlayer = renderPlayer; } @Override - public void doRenderLayer(AbstractClientPlayer clientPlayer, float limbSwing, float limbSwingAmount, float partialTicks, float ageInTicks, float netHeadYaw, float headPitch, float scale) { + public void doRenderLayer(AbstractClientPlayerEntity clientPlayer, float limbSwing, float limbSwingAmount, float partialTicks, float ageInTicks, float netHeadYaw, float headPitch, float scale) { if (LivingArmour.hasFullSet(clientPlayer)) { - ItemStack chestStack = clientPlayer.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = clientPlayer.getItemStackFromSlot(EquipmentSlotType.CHEST); if (ItemLivingArmour.hasUpgrade(BloodMagic.MODID + ".upgrade.elytra", chestStack)) { GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F); GlStateManager.enableBlend(); @@ -39,7 +39,7 @@ public class LayerBloodElytra implements LayerRenderer { modelElytra.render(clientPlayer, limbSwing, limbSwingAmount, ageInTicks, netHeadYaw, headPitch, scale); if (chestStack.isItemEnchanted()) - LayerArmorBase.renderEnchantedGlint(this.renderPlayer, clientPlayer, this.modelElytra, limbSwing, limbSwingAmount, partialTicks, ageInTicks, netHeadYaw, headPitch, scale); + ArmorLayer.renderEnchantedGlint(this.renderPlayer, clientPlayer, this.modelElytra, limbSwing, limbSwingAmount, partialTicks, ageInTicks, netHeadYaw, headPitch, scale); GlStateManager.popMatrix(); } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/AttractorAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/AttractorAlchemyCircleRenderer.java index 348bc98f..057ee09d 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/AttractorAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/AttractorAlchemyCircleRenderer.java @@ -8,7 +8,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; public class AttractorAlchemyCircleRenderer extends AlchemyCircleRenderer { @@ -78,8 +78,8 @@ public class AttractorAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/BindingAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/BindingAlchemyCircleRenderer.java index 191fde6f..6fc89ccb 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/BindingAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/BindingAlchemyCircleRenderer.java @@ -7,7 +7,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; public class BindingAlchemyCircleRenderer extends AlchemyCircleRenderer { @@ -108,7 +108,7 @@ public class BindingAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; + Direction sideHit = Direction.UP; GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); switch (sideHit) { diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/DualAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/DualAlchemyCircleRenderer.java index d6fc3741..ec483fc2 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/DualAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/DualAlchemyCircleRenderer.java @@ -8,7 +8,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; public class DualAlchemyCircleRenderer extends AlchemyCircleRenderer { @@ -64,8 +64,8 @@ public class DualAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/MobSacrificeAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/MobSacrificeAlchemyCircleRenderer.java index 76a98ab3..8c84e8f1 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/MobSacrificeAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/MobSacrificeAlchemyCircleRenderer.java @@ -6,7 +6,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -78,8 +78,8 @@ public class MobSacrificeAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/SingleAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/SingleAlchemyCircleRenderer.java index cafb9b63..26472bb5 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/SingleAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/SingleAlchemyCircleRenderer.java @@ -8,7 +8,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; public class SingleAlchemyCircleRenderer extends AlchemyCircleRenderer { @@ -62,8 +62,8 @@ public class SingleAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/StaticAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/StaticAlchemyCircleRenderer.java index 5153f6b8..36652fc6 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/StaticAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/StaticAlchemyCircleRenderer.java @@ -8,7 +8,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; public class StaticAlchemyCircleRenderer extends AlchemyCircleRenderer { @@ -67,8 +67,8 @@ public class StaticAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/TurretAlchemyCircleRenderer.java b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/TurretAlchemyCircleRenderer.java index b9967d3a..0603abc8 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/TurretAlchemyCircleRenderer.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/alchemyArray/TurretAlchemyCircleRenderer.java @@ -6,7 +6,7 @@ import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -88,8 +88,8 @@ public class TurretAlchemyCircleRenderer extends AlchemyCircleRenderer { GlStateManager.translate(x, y, z); // Specify which face this "circle" is located on - EnumFacing sideHit = EnumFacing.UP; - EnumFacing rotation = tileArray.getRotation(); + Direction sideHit = Direction.UP; + Direction rotation = tileArray.getRotation(); GlStateManager.translate(sideHit.getXOffset() * offsetFromFace, sideHit.getYOffset() * offsetFromFace, sideHit.getZOffset() * offsetFromFace); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAlchemyArray.java index b954ce52..fecc0a15 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAlchemyArray.java @@ -5,10 +5,10 @@ import WayofTime.bloodmagic.api.impl.recipe.RecipeAlchemyArray; import WayofTime.bloodmagic.alchemyArray.AlchemyCircleRenderer; import WayofTime.bloodmagic.core.registry.AlchemyArrayRecipeRegistry; import WayofTime.bloodmagic.tile.TileAlchemyArray; -import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.client.renderer.tileentity.TileEntityRenderer; import net.minecraft.item.ItemStack; -public class RenderAlchemyArray extends TileEntitySpecialRenderer { +public class RenderAlchemyArray extends TileEntityRenderer { @Override public void render(TileAlchemyArray alchemyArray, double x, double y, double z, float partialTicks, int destroyStage, float alpha) { ItemStack inputStack = alchemyArray.getStackInSlot(0); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAltar.java b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAltar.java index 2dba9db8..5b8d2cc4 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAltar.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderAltar.java @@ -6,12 +6,12 @@ import WayofTime.bloodmagic.block.BlockLifeEssence; import WayofTime.bloodmagic.tile.TileAltar; import WayofTime.bloodmagic.util.handler.event.ClientHandler; import net.minecraft.client.Minecraft; -import net.minecraft.client.entity.EntityPlayerSP; +import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.client.renderer.*; -import net.minecraft.client.renderer.block.model.ItemCameraTransforms; +import net.minecraft.client.renderer.model.ItemCameraTransforms; +import net.minecraft.client.renderer.texture.AtlasTexture; import net.minecraft.client.renderer.texture.TextureAtlasSprite; -import net.minecraft.client.renderer.texture.TextureMap; -import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.client.renderer.tileentity.TileEntityRenderer; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; @@ -20,7 +20,7 @@ import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fluids.FluidStack; import org.lwjgl.opengl.GL11; -public class RenderAltar extends TileEntitySpecialRenderer { +public class RenderAltar extends TileEntityRenderer { private static final float MIN_HEIGHT = 0.499f; private static final float MAX_HEIGHT = 0.745f; @@ -58,7 +58,7 @@ public class RenderAltar extends TileEntitySpecialRenderer { int fluidColor = fluid.getColor(fluidStack); - Minecraft.getMinecraft().renderEngine.bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); + Minecraft.getMinecraft().renderEngine.bindTexture(AtlasTexture.LOCATION_BLOCKS_TEXTURE); setGLColorFromInt(fluidColor); double uMin = (double) fluidStillSprite.getMinU(); @@ -78,7 +78,7 @@ public class RenderAltar extends TileEntitySpecialRenderer { } private void renderItem(ItemStack stack) { - RenderItem itemRenderer = Minecraft.getMinecraft().getRenderItem(); + ItemRenderer itemRenderer = Minecraft.getMinecraft().getRenderItem(); if (!stack.isEmpty()) { GlStateManager.translate(0.5, 1, 0.5); GlStateManager.pushMatrix(); @@ -100,7 +100,7 @@ public class RenderAltar extends TileEntitySpecialRenderer { } private void renderHologram(TileAltar altar, AltarTier tier, float partialTicks) { - EntityPlayerSP player = Minecraft.getMinecraft().player; + ClientPlayerEntity player = Minecraft.getMinecraft().player; World world = player.world; if (tier == AltarTier.ONE) diff --git a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderBloodTank.java b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderBloodTank.java index 235fb836..5dd1e340 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderBloodTank.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderBloodTank.java @@ -6,9 +6,9 @@ import net.minecraft.client.renderer.BufferBuilder; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.RenderHelper; import net.minecraft.client.renderer.Tessellator; +import net.minecraft.client.renderer.texture.AtlasTexture; import net.minecraft.client.renderer.texture.TextureAtlasSprite; -import net.minecraft.client.renderer.texture.TextureMap; -import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.client.renderer.tileentity.TileEntityRenderer; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fml.relauncher.Side; @@ -16,7 +16,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import org.lwjgl.opengl.GL11; @SideOnly(Side.CLIENT) -public class RenderBloodTank extends TileEntitySpecialRenderer { +public class RenderBloodTank extends TileEntityRenderer { private static final Minecraft mc = Minecraft.getMinecraft(); @Override @@ -30,7 +30,7 @@ public class RenderBloodTank extends TileEntitySpecialRenderer { GlStateManager.pushMatrix(); - bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); + bindTexture(AtlasTexture.LOCATION_BLOCKS_TEXTURE); renderFluid(bloodTank.getRenderHeight(), renderFluid, x, y, z); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderDemonCrucible.java b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderDemonCrucible.java index 439b9618..a7fceec7 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderDemonCrucible.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderDemonCrucible.java @@ -4,15 +4,15 @@ import WayofTime.bloodmagic.tile.TileDemonCrucible; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.RenderHelper; -import net.minecraft.client.renderer.RenderItem; -import net.minecraft.client.renderer.block.model.ItemCameraTransforms; -import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.client.renderer.ItemRenderer; +import net.minecraft.client.renderer.model.ItemCameraTransforms; +import net.minecraft.client.renderer.tileentity.TileEntityRenderer; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; import net.minecraft.world.World; -public class RenderDemonCrucible extends TileEntitySpecialRenderer { +public class RenderDemonCrucible extends TileEntityRenderer { public static Minecraft mc = Minecraft.getMinecraft(); public static ResourceLocation resource = new ResourceLocation("bloodmagic", "textures/blocks/lifeEssenceStill.png"); public static float minHeight = 0.6497f; @@ -29,10 +29,10 @@ public class RenderDemonCrucible extends TileEntitySpecialRenderer { +public class RenderItemRoutingNode extends TileEntityRenderer { private static final ResourceLocation beamTexture = new ResourceLocation(BloodMagic.MODID, "textures/entities/nodeBeam.png"); private static final Minecraft mc = Minecraft.getMinecraft(); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderMimic.java b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderMimic.java index 8909df07..b4b6f66d 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/block/RenderMimic.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/block/RenderMimic.java @@ -2,13 +2,13 @@ package WayofTime.bloodmagic.client.render.block; import WayofTime.bloodmagic.tile.TileMimic; import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher; -import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer; +import net.minecraft.client.renderer.tileentity.TileEntityRenderer; import net.minecraft.tileentity.TileEntity; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderMimic extends TileEntitySpecialRenderer { +public class RenderMimic extends TileEntityRenderer { public void render(TileMimic mimic, double x, double y, double z, float partialTicks, int destroyStage, float alpha) { if (mimic.getStackInSlot(0) != null) { TileEntity testTile = mimic.mimicedTile; diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/BloodLightRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/BloodLightRenderFactory.java index 1237c0c7..272972c9 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/BloodLightRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/BloodLightRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.projectile.EntityBloodLight; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class BloodLightRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderEntityBloodLight(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedChickenRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedChickenRenderFactory.java index 6429a137..59944834 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedChickenRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedChickenRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntityCorruptedChicken; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class CorruptedChickenRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderCorruptedChicken(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSheepRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSheepRenderFactory.java index 20c9c2c9..35c041ba 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSheepRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSheepRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class CorruptedSheepRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderCorruptedSheep(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSpiderRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSpiderRenderFactory.java index 95debc39..51ced8ba 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSpiderRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedSpiderRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntityCorruptedSpider; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class CorruptedSpiderRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderCorruptedSpider(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedZombieRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedZombieRenderFactory.java index 2e29c50e..3532162d 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedZombieRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/CorruptedZombieRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntityCorruptedZombie; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class CorruptedZombieRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderCorruptedZombie(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/MeteorRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/MeteorRenderFactory.java index 5b57d12d..50c24346 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/MeteorRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/MeteorRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.projectile.EntityMeteor; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class MeteorRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderEntityMeteor(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/MimicRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/MimicRenderFactory.java index bc015688..6fb47c9a 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/MimicRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/MimicRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntityMimic; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class MimicRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderEntityMimic(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedChicken.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedChicken.java index 6db0f642..10c028e3 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedChicken.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedChicken.java @@ -3,18 +3,18 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.client.render.entity.layer.LayerWill; import WayofTime.bloodmagic.client.render.model.ModelCorruptedChicken; import WayofTime.bloodmagic.entity.mob.EntityCorruptedChicken; -import net.minecraft.client.renderer.entity.RenderLiving; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.MobRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.MathHelper; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderCorruptedChicken extends RenderLiving { +public class RenderCorruptedChicken extends MobRenderer { private static final ResourceLocation CHICKEN_TEXTURES = new ResourceLocation("textures/entity/chicken.png"); - public RenderCorruptedChicken(RenderManager renderManagerIn) { + public RenderCorruptedChicken(EntityRendererManager renderManagerIn) { super(renderManagerIn, new ModelCorruptedChicken(0), 0.3f); this.addLayer(new LayerWill<>(this, new ModelCorruptedChicken(1.1f))); } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSheep.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSheep.java index d8024973..744c1e78 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSheep.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSheep.java @@ -6,17 +6,17 @@ import WayofTime.bloodmagic.client.render.entity.layer.LayerWill; import WayofTime.bloodmagic.client.render.model.ModelCorruptedSheep; import WayofTime.bloodmagic.client.render.model.ModelCorruptedSheep2; import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep; -import net.minecraft.client.renderer.entity.RenderLiving; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.MobRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderCorruptedSheep extends RenderLiving { +public class RenderCorruptedSheep extends MobRenderer { private static final ResourceLocation SHEARED_SHEEP_TEXTURES = new ResourceLocation("textures/entity/sheep/sheep.png"); - public RenderCorruptedSheep(RenderManager renderManagerIn) { + public RenderCorruptedSheep(EntityRendererManager renderManagerIn) { super(renderManagerIn, new ModelCorruptedSheep2(0), 0.7F); this.addLayer(new LayerCorruptedSheepWool(this)); this.addLayer(new LayerWill<>(this, new ModelCorruptedSheep(1.1f))); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSpider.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSpider.java index bef6c894..e57c3094 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSpider.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedSpider.java @@ -5,17 +5,17 @@ import WayofTime.bloodmagic.client.render.entity.layer.LayerWill; import WayofTime.bloodmagic.client.render.model.ModelCorruptedSpider; import WayofTime.bloodmagic.entity.mob.EntityCorruptedSpider; import net.minecraft.client.model.ModelSpider; -import net.minecraft.client.renderer.entity.RenderLiving; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.entity.MobRenderer; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderCorruptedSpider extends RenderLiving { +public class RenderCorruptedSpider extends MobRenderer { private static final ResourceLocation SPIDER_TEXTURES = new ResourceLocation("textures/entity/spider/spider.png"); - public RenderCorruptedSpider(RenderManager renderManagerIn) { + public RenderCorruptedSpider(EntityRendererManager renderManagerIn) { super(renderManagerIn, new ModelSpider(), 1.0F); this.addLayer(new LayerCorruptedSpiderEyes(this)); this.addLayer(new LayerWill<>(this, new ModelCorruptedSpider(1.1f))); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedZombie.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedZombie.java index f7ffad16..cc4bfdb3 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedZombie.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderCorruptedZombie.java @@ -4,27 +4,26 @@ import WayofTime.bloodmagic.client.render.entity.layer.LayerWill; import WayofTime.bloodmagic.entity.mob.EntityCorruptedZombie; import net.minecraft.client.model.ModelZombie; import net.minecraft.client.model.ModelZombieVillager; -import net.minecraft.client.renderer.entity.RenderBiped; -import net.minecraft.client.renderer.entity.RenderManager; -import net.minecraft.client.renderer.entity.layers.LayerBipedArmor; -import net.minecraft.client.renderer.entity.layers.LayerCustomHead; -import net.minecraft.client.renderer.entity.layers.LayerHeldItem; -import net.minecraft.client.renderer.entity.layers.LayerRenderer; +import net.minecraft.client.renderer.entity.BipedRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.entity.layers.*; +import net.minecraft.client.renderer.entity.layers.BipedArmorLayer; +import net.minecraft.client.renderer.entity.layers.HeldItemLayer; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderCorruptedZombie extends RenderBiped { +public class RenderCorruptedZombie extends BipedRenderer { private static final ResourceLocation ZOMBIE_TEXTURES = new ResourceLocation("textures/entity/zombie/zombie.png"); private final ModelZombieVillager zombieVillagerModel; - public RenderCorruptedZombie(RenderManager renderManagerIn) { + public RenderCorruptedZombie(EntityRendererManager renderManagerIn) { super(renderManagerIn, new ModelZombie(), 0.5F); LayerRenderer layerrenderer = this.layerRenderers.get(0); this.zombieVillagerModel = new ModelZombieVillager(); - this.addLayer(new LayerHeldItem(this)); - LayerBipedArmor layerbipedarmor = new LayerBipedArmor(this) { + this.addLayer(new HeldItemLayer(this)); + BipedArmorLayer layerbipedarmor = new BipedArmorLayer(this) { protected void initArmor() { this.modelLeggings = new ModelZombie(0.5F, true); this.modelArmor = new ModelZombie(1.0F, true); @@ -32,9 +31,9 @@ public class RenderCorruptedZombie extends RenderBiped { }; this.addLayer(layerbipedarmor); - if (layerrenderer instanceof LayerCustomHead) { + if (layerrenderer instanceof HeadLayer) { layerRenderers.remove(layerrenderer); - this.addLayer(new LayerCustomHead(this.zombieVillagerModel.bipedHead)); + this.addLayer(new HeadLayer(this.zombieVillagerModel.bipedHead)); } this.layerRenderers.remove(layerbipedarmor); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityBloodLight.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityBloodLight.java index 64430836..45214ac1 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityBloodLight.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityBloodLight.java @@ -4,17 +4,17 @@ import WayofTime.bloodmagic.entity.projectile.EntityBloodLight; import WayofTime.bloodmagic.item.types.ComponentTypes; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.RenderItem; -import net.minecraft.client.renderer.block.model.ItemCameraTransforms; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; -import net.minecraft.client.renderer.texture.TextureMap; +import net.minecraft.client.renderer.ItemRenderer; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.model.ItemCameraTransforms; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.texture.AtlasTexture; import net.minecraft.util.ResourceLocation; -public class RenderEntityBloodLight extends Render { - private final RenderItem renderItem = Minecraft.getMinecraft().getRenderItem(); +public class RenderEntityBloodLight extends EntityRenderer { + private final ItemRenderer renderItem = Minecraft.getMinecraft().getRenderItem(); - public RenderEntityBloodLight(RenderManager renderManagerIn) { + public RenderEntityBloodLight(EntityRendererManager renderManagerIn) { super(renderManagerIn); } @@ -25,7 +25,7 @@ public class RenderEntityBloodLight extends Render { GlStateManager.scale(0.5F, 0.5F, 0.5F); GlStateManager.rotate(-this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F); GlStateManager.rotate(this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F); - this.bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); + this.bindTexture(AtlasTexture.LOCATION_BLOCKS_TEXTURE); this.renderItem.renderItem(ComponentTypes.REAGENT_BLOOD_LIGHT.getStack(), ItemCameraTransforms.TransformType.GROUND); GlStateManager.disableRescaleNormal(); GlStateManager.popMatrix(); @@ -33,6 +33,6 @@ public class RenderEntityBloodLight extends Render { } protected ResourceLocation getEntityTexture(EntityBloodLight entity) { - return TextureMap.LOCATION_BLOCKS_TEXTURE; + return AtlasTexture.LOCATION_BLOCKS_TEXTURE; } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMeteor.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMeteor.java index 77c9cdbc..e9752d3d 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMeteor.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMeteor.java @@ -5,18 +5,18 @@ import WayofTime.bloodmagic.client.render.model.ModelMeteor; import WayofTime.bloodmagic.entity.projectile.EntityMeteor; import net.minecraft.client.model.ModelBase; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraft.util.ResourceLocation; -public class RenderEntityMeteor extends Render { +public class RenderEntityMeteor extends EntityRenderer { private static final ResourceLocation TEXTURE = new ResourceLocation(BloodMagic.MODID, "textures/models/Meteor.png"); private static final float SCALE = 1; public ModelBase model = new ModelMeteor(); - public RenderEntityMeteor(RenderManager renderManagerIn) { + public RenderEntityMeteor(EntityRendererManager renderManagerIn) { super(renderManagerIn); } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMimic.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMimic.java index 2612345a..6cde4204 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMimic.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntityMimic.java @@ -5,30 +5,30 @@ import WayofTime.bloodmagic.entity.mob.EntityMimic; import com.mojang.authlib.GameProfile; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.block.model.ItemCameraTransforms; -import net.minecraft.client.renderer.entity.RenderLiving; -import net.minecraft.client.renderer.entity.RenderManager; -import net.minecraft.client.renderer.tileentity.TileEntitySkullRenderer; -import net.minecraft.init.Items; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.model.ItemCameraTransforms; +import net.minecraft.client.renderer.entity.MobRenderer; +import net.minecraft.client.renderer.tileentity.SkullTileEntityRenderer; +import net.minecraft.item.ArmorItem; +import net.minecraft.item.Items; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.Item; -import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.nbt.NBTUtil; -import net.minecraft.tileentity.TileEntitySkull; -import net.minecraft.util.EnumFacing; +import net.minecraft.tileentity.SkullTileEntity; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraft.util.StringUtils; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderEntityMimic extends RenderLiving { +public class RenderEntityMimic extends MobRenderer { private static final ResourceLocation SPIDER_TEXTURES = new ResourceLocation("textures/entity/spider/spider.png"); Minecraft minecraft = Minecraft.getMinecraft(); - public RenderEntityMimic(RenderManager renderManagerIn) { + public RenderEntityMimic(EntityRendererManager renderManagerIn) { super(renderManagerIn, new ModelMimic(), 1.0F); } @@ -61,7 +61,7 @@ public class RenderEntityMimic extends RenderLiving { GameProfile gameprofile = null; if (itemstack.hasTagCompound()) { - NBTTagCompound nbttagcompound = itemstack.getTagCompound(); + CompoundNBT nbttagcompound = itemstack.getTagCompound(); if (nbttagcompound.hasKey("SkullOwner", 10)) { gameprofile = NBTUtil.readGameProfileFromNBT(nbttagcompound.getCompoundTag("SkullOwner")); @@ -69,14 +69,14 @@ public class RenderEntityMimic extends RenderLiving { String s = nbttagcompound.getString("SkullOwner"); if (!StringUtils.isNullOrEmpty(s)) { - gameprofile = TileEntitySkull.updateGameProfile(new GameProfile(null, s)); - nbttagcompound.setTag("SkullOwner", NBTUtil.writeGameProfile(new NBTTagCompound(), gameprofile)); + gameprofile = SkullTileEntity.updateGameProfile(new GameProfile(null, s)); + nbttagcompound.setTag("SkullOwner", NBTUtil.writeGameProfile(new CompoundNBT(), gameprofile)); } } } - TileEntitySkullRenderer.instance.renderSkull(-0.5F, 0.0F, -0.5F, EnumFacing.UP, 180.0F, itemstack.getMetadata(), gameprofile, -1, 0); - } else if (!(item instanceof ItemArmor) || ((ItemArmor) item).getEquipmentSlot() != EntityEquipmentSlot.HEAD) { + SkullTileEntityRenderer.instance.renderSkull(-0.5F, 0.0F, -0.5F, Direction.UP, 180.0F, itemstack.getMetadata(), gameprofile, -1, 0); + } else if (!(item instanceof ArmorItem) || ((ArmorItem) item).getEquipmentSlot() != EquipmentSlotType.HEAD) { GlStateManager.translate(0, 0.5f, 0); GlStateManager.rotate(-(mimic.prevRotationYawHead + partialTicks * (mimic.rotationYawHead - mimic.prevRotationYawHead)) - 180, 0, 1, 0); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySentientArrow.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySentientArrow.java index 3e522850..53721ceb 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySentientArrow.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySentientArrow.java @@ -4,8 +4,8 @@ import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow; import net.minecraft.client.renderer.BufferBuilder; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.Tessellator; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraft.client.renderer.vertex.DefaultVertexFormats; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.MathHelper; @@ -14,14 +14,14 @@ import net.minecraftforge.fml.relauncher.SideOnly; import org.lwjgl.opengl.GL11; @SideOnly(Side.CLIENT) -public class RenderEntitySentientArrow extends Render { +public class RenderEntitySentientArrow extends EntityRenderer { private static final ResourceLocation defaultTexture = new ResourceLocation("bloodmagic:textures/entities/soulArrow.png"); private static final ResourceLocation corrosiveTexture = new ResourceLocation("bloodmagic:textures/entities/soulArrow_corrosive.png"); private static final ResourceLocation vengefulTexture = new ResourceLocation("bloodmagic:textures/entities/soulArrow_vengeful.png"); private static final ResourceLocation destructiveTexture = new ResourceLocation("bloodmagic:textures/entities/soulArrow_destructive.png"); private static final ResourceLocation steadfastTexture = new ResourceLocation("bloodmagic:textures/entities/soulArrow_steadfast.png"); - public RenderEntitySentientArrow(RenderManager renderManagerIn) { + public RenderEntitySentientArrow(EntityRendererManager renderManagerIn) { super(renderManagerIn); } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySoulSnare.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySoulSnare.java index cfe46aed..106ec48e 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySoulSnare.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderEntitySoulSnare.java @@ -4,18 +4,18 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.entity.projectile.EntitySoulSnare; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.RenderItem; -import net.minecraft.client.renderer.block.model.ItemCameraTransforms; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; -import net.minecraft.client.renderer.texture.TextureMap; +import net.minecraft.client.renderer.ItemRenderer; +import net.minecraft.client.renderer.model.ItemCameraTransforms; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.texture.AtlasTexture; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; -public class RenderEntitySoulSnare extends Render { - private final RenderItem renderItem = Minecraft.getMinecraft().getRenderItem(); +public class RenderEntitySoulSnare extends EntityRenderer { + private final ItemRenderer renderItem = Minecraft.getMinecraft().getRenderItem(); - public RenderEntitySoulSnare(RenderManager renderManagerIn) { + public RenderEntitySoulSnare(EntityRendererManager renderManagerIn) { super(renderManagerIn); } @@ -26,7 +26,7 @@ public class RenderEntitySoulSnare extends Render { GlStateManager.scale(0.5F, 0.5F, 0.5F); GlStateManager.rotate(-this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F); GlStateManager.rotate(this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F); - this.bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE); + this.bindTexture(AtlasTexture.LOCATION_BLOCKS_TEXTURE); this.renderItem.renderItem(new ItemStack(RegistrarBloodMagicItems.SOUL_SNARE), ItemCameraTransforms.TransformType.GROUND); GlStateManager.disableRescaleNormal(); GlStateManager.popMatrix(); @@ -34,6 +34,6 @@ public class RenderEntitySoulSnare extends Render { } protected ResourceLocation getEntityTexture(EntitySoulSnare entity) { - return TextureMap.LOCATION_BLOCKS_TEXTURE; + return AtlasTexture.LOCATION_BLOCKS_TEXTURE; } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderSentientSpecter.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderSentientSpecter.java index 4c8ab7fe..1275180d 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderSentientSpecter.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/RenderSentientSpecter.java @@ -3,29 +3,29 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntitySentientSpecter; import net.minecraft.client.model.ModelBiped; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.entity.RenderBiped; -import net.minecraft.client.renderer.entity.RenderManager; -import net.minecraft.client.renderer.entity.layers.LayerArrow; -import net.minecraft.client.renderer.entity.layers.LayerBipedArmor; -import net.minecraft.client.renderer.entity.layers.LayerCustomHead; -import net.minecraft.client.renderer.entity.layers.LayerHeldItem; -import net.minecraft.item.EnumAction; +import net.minecraft.client.renderer.entity.BipedRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.entity.layers.*; +import net.minecraft.client.renderer.entity.layers.BipedArmorLayer; +import net.minecraft.client.renderer.entity.layers.HeadLayer; +import net.minecraft.client.renderer.entity.layers.HeldItemLayer; +import net.minecraft.item.UseAction; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumHandSide; +import net.minecraft.util.HandSide; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) -public class RenderSentientSpecter extends RenderBiped { +public class RenderSentientSpecter extends BipedRenderer { public static final ResourceLocation texture = new ResourceLocation("bloodmagic", "textures/entities/specter.png"); - public RenderSentientSpecter(RenderManager renderManager) { + public RenderSentientSpecter(EntityRendererManager renderManager) { super(renderManager, new ModelBiped(0.0F), 0); - this.addLayer(new LayerBipedArmor(this)); - this.addLayer(new LayerHeldItem(this)); - this.addLayer(new LayerArrow(this)); - this.addLayer(new LayerCustomHead(this.getMainModel().bipedHead)); + this.addLayer(new BipedArmorLayer(this)); + this.addLayer(new HeldItemLayer(this)); + this.addLayer(new ArrowLayer(this)); + this.addLayer(new HeadLayer(this.getMainModel().bipedHead)); } public ModelBiped getMainModel() { @@ -55,11 +55,11 @@ public class RenderSentientSpecter extends RenderBiped { modelbiped$armpose = ModelBiped.ArmPose.ITEM; if (clientPlayer.getItemInUseCount() > 0) { - EnumAction enumaction = itemstack.getItemUseAction(); + UseAction enumaction = itemstack.getItemUseAction(); - if (enumaction == EnumAction.BLOCK) { + if (enumaction == UseAction.BLOCK) { modelbiped$armpose = ModelBiped.ArmPose.BLOCK; - } else if (enumaction == EnumAction.BOW) { + } else if (enumaction == UseAction.BOW) { modelbiped$armpose = ModelBiped.ArmPose.BOW_AND_ARROW; } } @@ -69,15 +69,15 @@ public class RenderSentientSpecter extends RenderBiped { modelbiped$armpose1 = ModelBiped.ArmPose.ITEM; if (clientPlayer.getItemInUseCount() > 0) { - EnumAction enumaction1 = itemstack1.getItemUseAction(); + UseAction enumaction1 = itemstack1.getItemUseAction(); - if (enumaction1 == EnumAction.BLOCK) { + if (enumaction1 == UseAction.BLOCK) { modelbiped$armpose1 = ModelBiped.ArmPose.BLOCK; } } } - if (clientPlayer.getPrimaryHand() == EnumHandSide.RIGHT) { + if (clientPlayer.getPrimaryHand() == HandSide.RIGHT) { modelplayer.rightArmPose = modelbiped$armpose; modelplayer.leftArmPose = modelbiped$armpose1; } else { diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientArrowRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientArrowRenderFactory.java index 49ec7093..15003afb 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientArrowRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientArrowRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class SentientArrowRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderEntitySentientArrow(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientSpecterRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientSpecterRenderFactory.java index 8e92253c..0048ddcb 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientSpecterRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/SentientSpecterRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.mob.EntitySentientSpecter; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class SentientSpecterRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderSentientSpecter(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/SoulSnareRenderFactory.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/SoulSnareRenderFactory.java index 0ced4e40..cada7206 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/SoulSnareRenderFactory.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/SoulSnareRenderFactory.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.client.render.entity; import WayofTime.bloodmagic.entity.projectile.EntitySoulSnare; -import net.minecraft.client.renderer.entity.Render; -import net.minecraft.client.renderer.entity.RenderManager; +import net.minecraft.client.renderer.entity.EntityRenderer; +import net.minecraft.client.renderer.entity.EntityRendererManager; import net.minecraftforge.fml.client.registry.IRenderFactory; public class SoulSnareRenderFactory implements IRenderFactory { @Override - public Render createRenderFor(RenderManager manager) { + public EntityRenderer createRenderFor(EntityRendererManager manager) { return new RenderEntitySoulSnare(manager); } } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/entity/layer/LayerCorruptedSheepWool.java b/src/main/java/WayofTime/bloodmagic/client/render/entity/layer/LayerCorruptedSheepWool.java index 92c55940..e95e027e 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/entity/layer/LayerCorruptedSheepWool.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/entity/layer/LayerCorruptedSheepWool.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.client.render.model.ModelCorruptedSheep; import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep; import net.minecraft.client.renderer.GlStateManager; import net.minecraft.client.renderer.entity.layers.LayerRenderer; -import net.minecraft.item.EnumDyeColor; +import net.minecraft.item.DyeColor; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -27,12 +27,12 @@ public class LayerCorruptedSheepWool implements LayerRenderer implements LayerRenderer { private static final ResourceLocation RAW_TEXTURE = new ResourceLocation("bloodmagic", "textures/entities/overlay/overlay_raw.png"); - private final RenderLiving renderer; + private final MobRenderer renderer; private final ModelBase model; - public LayerWill(RenderLiving rendererIn, ModelBase model) { + public LayerWill(MobRenderer rendererIn, ModelBase model) { this.renderer = rendererIn; this.model = model; } diff --git a/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep.java b/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep.java index a1c27e01..14b72d05 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep; import net.minecraft.client.model.ModelQuadruped; import net.minecraft.client.model.ModelRenderer; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -40,7 +40,7 @@ public class ModelCorruptedSheep extends ModelQuadruped { * float params here are the same second and third as in the * setRotationAngles method. */ - public void setLivingAnimations(EntityLivingBase entitylivingbaseIn, float p_78086_2_, float p_78086_3_, float partialTickTime) { + public void setLivingAnimations(LivingEntity entitylivingbaseIn, float p_78086_2_, float p_78086_3_, float partialTickTime) { super.setLivingAnimations(entitylivingbaseIn, p_78086_2_, p_78086_3_, partialTickTime); this.head.rotationPointY = 6.0F + ((EntityCorruptedSheep) entitylivingbaseIn).getHeadRotationPointY(partialTickTime) * 9.0F; this.headRotationAngleX = ((EntityCorruptedSheep) entitylivingbaseIn).getHeadRotationAngleX(partialTickTime); diff --git a/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep2.java b/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep2.java index fb5d5497..d80c4205 100644 --- a/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep2.java +++ b/src/main/java/WayofTime/bloodmagic/client/render/model/ModelCorruptedSheep2.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep; import net.minecraft.client.model.ModelQuadruped; import net.minecraft.client.model.ModelRenderer; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -27,7 +27,7 @@ public class ModelCorruptedSheep2 extends ModelQuadruped { * float params here are the same second and third as in the * setRotationAngles method. */ - public void setLivingAnimations(EntityLivingBase entitylivingbaseIn, float p_78086_2_, float p_78086_3_, float partialTickTime) { + public void setLivingAnimations(LivingEntity entitylivingbaseIn, float p_78086_2_, float p_78086_3_, float partialTickTime) { super.setLivingAnimations(entitylivingbaseIn, p_78086_2_, p_78086_3_, partialTickTime); this.head.rotationPointY = 6.0F + ((EntityCorruptedSheep) entitylivingbaseIn).getHeadRotationPointY(partialTickTime) * 9.0F; this.headRotationAngleX = ((EntityCorruptedSheep) entitylivingbaseIn).getHeadRotationAngleX(partialTickTime); diff --git a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandBind.java b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandBind.java index 2d99578a..7eedd178 100644 --- a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandBind.java +++ b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandBind.java @@ -5,15 +5,15 @@ import WayofTime.bloodmagic.iface.IBindable; import WayofTime.bloodmagic.util.helper.BindableHelper; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.server.MinecraftServer; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraftforge.server.command.CommandTreeBase; import net.minecraftforge.server.command.CommandTreeHelp; public class SubCommandBind extends CommandTreeBase { - public EntityPlayerMP player; + public ServerPlayerEntity player; public SubCommandBind() { addSubcommand(new CommandTreeHelp(this)); @@ -45,12 +45,12 @@ public class SubCommandBind extends CommandTreeBase { @Override public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { if (args.length == 1 && (args[0].equals("?") || args[0].equals("help"))) { - sender.sendMessage(new TextComponentTranslation(getHelp())); + sender.sendMessage(new TranslationTextComponent(getHelp())); return; } if (sender.getEntityWorld().isRemote) return; - EntityPlayerMP player = args.length < 2 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[0]); + ServerPlayerEntity player = args.length < 2 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[0]); ItemStack held = player.getHeldItemMainhand(); boolean bind = true; if (held.getItem() instanceof IBindable) { @@ -65,22 +65,22 @@ public class SubCommandBind extends CommandTreeBase { player = getPlayer(server, sender, args[0]); if (bind) { if (binding.getOwnerName().equals(player.getName())) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.bind.error.ownerEqualsTarget")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.bind.error.ownerEqualsTarget")); return; } binding = new Binding(player.getGameProfile().getId(), player.getGameProfile().getName()); BindableHelper.applyBinding(held, binding); this.player = player; - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.bind.success", getInfo())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.bind.success", getInfo())); } else { if (binding == null) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.bind.error.notBound")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.bind.error.notBound")); } held.getTagCompound().removeTag("binding"); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.bind.remove.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.bind.remove.success")); } } else - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.bind.error.notBindable")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.bind.error.notBindable")); } diff --git a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandNetwork.java b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandNetwork.java index ff1038c8..230dbf08 100644 --- a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandNetwork.java +++ b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandNetwork.java @@ -7,10 +7,10 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.server.MinecraftServer; -import net.minecraft.util.text.TextComponentString; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.StringTextComponent; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraftforge.server.command.CommandTreeBase; import net.minecraftforge.server.command.CommandTreeHelp; @@ -46,7 +46,7 @@ public class SubCommandNetwork extends CommandTreeBase { abstract class NetworkCommand extends CommandTreeBase { - public EntityPlayerMP player; + public ServerPlayerEntity player; public SoulNetwork network; public String uuid; @@ -64,12 +64,12 @@ public class SubCommandNetwork extends CommandTreeBase { else if (args.length > 1 && Utils.isInteger(args[1])) amount = Integer.parseInt(args[1]); else { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.arg.invalid")); - sender.sendMessage(new TextComponentTranslation(this.getUsage(sender))); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.arg.invalid")); + sender.sendMessage(new TranslationTextComponent(this.getUsage(sender))); return null; } if (amount < 0) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.negative")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.negative")); return null; } return amount; @@ -91,7 +91,7 @@ public class SubCommandNetwork extends CommandTreeBase { @Override public final void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { if (args.length == 1 && (args[0].equals("?") || args[0].equals("help"))) { - sender.sendMessage(new TextComponentTranslation(getHelp())); + sender.sendMessage(new TranslationTextComponent(getHelp())); return; } if (!getName().equals("get")) { @@ -118,14 +118,14 @@ public class SubCommandNetwork extends CommandTreeBase { return; int currE = network.getCurrentEssence(); if (amount > currE) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.network.syphon.amountTooHigh")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.network.syphon.amountTooHigh")); if (currE == 0) return; amount = Math.min(amount, currE); } network.syphonAndDamage(player, SoulTicket.command(sender, this.getName(), amount)); int newE = network.getCurrentEssence(); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.network.syphon.success", currE - newE, player.getDisplayName().getFormattedText())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.network.syphon.success", currE - newE, player.getDisplayName().getFormattedText())); } } @@ -140,7 +140,7 @@ public class SubCommandNetwork extends CommandTreeBase { Integer amount = commandHelperAmount(server, sender, args); if (amount == null) return; - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.network.add.success", network.add(SoulTicket.command(sender, getName(), amount), NetworkHelper.getMaximumForTier(network.getOrbTier())), player.getDisplayName().getFormattedText())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.network.add.success", network.add(SoulTicket.command(sender, getName(), amount), NetworkHelper.getMaximumForTier(network.getOrbTier())), player.getDisplayName().getFormattedText())); } } @@ -156,7 +156,7 @@ public class SubCommandNetwork extends CommandTreeBase { if (amount == null) return; network.setCurrentEssence(amount); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.network.set.success", player.getDisplayName().getFormattedText(), amount)); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.network.set.success", player.getDisplayName().getFormattedText(), amount)); } } @@ -172,7 +172,7 @@ public class SubCommandNetwork extends CommandTreeBase { this.player = args.length < 1 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[0]); this.uuid = PlayerHelper.getUUIDFromPlayer(player).toString(); this.network = NetworkHelper.getSoulNetwork(uuid); - sender.sendMessage(new TextComponentString((player != sender ? player.getDisplayName().getFormattedText() + " " : "" + new TextComponentTranslation("tooltip.bloodmagic.sigil.divination.currentEssence", network.getCurrentEssence()).getFormattedText()))); + sender.sendMessage(new StringTextComponent((player != sender ? player.getDisplayName().getFormattedText() + " " : "" + new TranslationTextComponent("tooltip.bloodmagic.sigil.divination.currentEssence", network.getCurrentEssence()).getFormattedText()))); } } @@ -186,7 +186,7 @@ public class SubCommandNetwork extends CommandTreeBase { @Override public void subExecute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { network.setCurrentEssence(NetworkHelper.getMaximumForTier(network.getOrbTier())); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.network.cap.success", player.getDisplayName().getFormattedText())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.network.cap.success", player.getDisplayName().getFormattedText())); } } @@ -205,7 +205,7 @@ public class SubCommandNetwork extends CommandTreeBase { @Override public void subExecute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { network.setCurrentEssence(Integer.MAX_VALUE); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.network.fill.success", player.getDisplayName().getFormattedText())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.network.fill.success", player.getDisplayName().getFormattedText())); } } @@ -222,7 +222,7 @@ public class SubCommandNetwork extends CommandTreeBase { if (!tickethistory.isEmpty()) for (SoulTicket i : network.getTicketHistory()) sender.sendMessage(i.getDescription()); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success", player.getDisplayName().getFormattedText())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success", player.getDisplayName().getFormattedText())); } } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandOrb.java b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandOrb.java index 816c828b..10b01fb0 100644 --- a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandOrb.java +++ b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandOrb.java @@ -7,9 +7,9 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.server.MinecraftServer; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraftforge.server.command.CommandTreeBase; import net.minecraftforge.server.command.CommandTreeHelp; @@ -37,7 +37,7 @@ public class SubCommandOrb extends CommandTreeBase { abstract class OrbCommand extends CommandTreeBase { - public EntityPlayerMP player; + public ServerPlayerEntity player; public String uuid; public SoulNetwork network; public Object info; @@ -58,7 +58,7 @@ public class SubCommandOrb extends CommandTreeBase { @Override public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { if (args.length == 1 && (args[0].equals("?") || args[0].equals("help"))) { - sender.sendMessage(new TextComponentTranslation(getHelp())); + sender.sendMessage(new TranslationTextComponent(getHelp())); return; } player = args.length < 2 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[0]); @@ -81,7 +81,7 @@ public class SubCommandOrb extends CommandTreeBase { @Override public void subExecute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { super.execute(server, sender, args); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.orb.currenttier", network.getOrbTier())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.orb.currenttier", network.getOrbTier())); } } @@ -109,19 +109,19 @@ public class SubCommandOrb extends CommandTreeBase { else if (args.length == 2 && Utils.isInteger(args[1])) targetTier = Integer.parseInt(args[1]); else { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.arg.invalid")); - sender.sendMessage(new TextComponentTranslation(this.getUsage(sender))); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.arg.invalid")); + sender.sendMessage(new TranslationTextComponent(this.getUsage(sender))); return; } if (targetTier < 0) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.negative")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.negative")); return; } else if (targetTier > maxTier) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.orb.error.tierTooHigh", getInfo())); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.orb.error.tierTooHigh", getInfo())); return; } network.setOrbTier(targetTier); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); } } } diff --git a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandRitual.java b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandRitual.java index b64efcf9..e531cf29 100644 --- a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandRitual.java +++ b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandRitual.java @@ -6,12 +6,12 @@ import WayofTime.bloodmagic.tile.TileMasterRitualStone; import WayofTime.bloodmagic.util.helper.RitualHelper; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.server.MinecraftServer; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.server.command.CommandTreeBase; import net.minecraftforge.server.command.CommandTreeHelp; @@ -69,13 +69,13 @@ public class SubCommandRitual extends CommandTreeBase { @Override public void execute(MinecraftServer server, ICommandSender sender, String... args) throws CommandException { if (args.length == 0) { - sender.sendMessage(new TextComponentTranslation("commands.blooodmagic.ritual.create.noRitual")); + sender.sendMessage(new TranslationTextComponent("commands.blooodmagic.ritual.create.noRitual")); return; } else if (args.length == 2 && (args[1].equals("help") || args[1].equals("?"))) { - sender.sendMessage(new TextComponentTranslation(BloodMagic.RITUAL_MANAGER.getRitual(args[0]).getTranslationKey() + ".info")); + sender.sendMessage(new TranslationTextComponent(BloodMagic.RITUAL_MANAGER.getRitual(args[0]).getTranslationKey() + ".info")); return; } - EntityPlayerMP player = args.length < 3 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[1]); + ServerPlayerEntity player = args.length < 3 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[1]); boolean safe = false; if (args.length > 1 && args.length < 4) { int k = args.length - 1; @@ -89,14 +89,14 @@ public class SubCommandRitual extends CommandTreeBase { BlockPos pos = player.getPosition().down(); World world = player.getEntityWorld(); - EnumFacing direction = player.getHorizontalFacing(); + Direction direction = player.getHorizontalFacing(); if (RitualHelper.createRitual(world, pos, direction, BloodMagic.RITUAL_MANAGER.getRitual(args[0]), safe)) - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); else if (!safe) - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.ritual.create.error.outOfWorldBoundaries")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.ritual.create.error.outOfWorldBoundaries")); else - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.ritaul.create.error.unsafe")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.ritaul.create.error.unsafe")); } @@ -120,7 +120,7 @@ public class SubCommandRitual extends CommandTreeBase { @Override public void execute(MinecraftServer server, ICommandSender sender, String... args) throws CommandException { - EntityPlayerMP player = args.length < 2 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[0]); + ServerPlayerEntity player = args.length < 2 ? getCommandSenderAsPlayer(sender) : getPlayer(server, sender, args[0]); TileMasterRitualStone tile = getMRS(player); boolean safe = false; if (args.length > 0 && args.length < 3) { @@ -132,13 +132,13 @@ public class SubCommandRitual extends CommandTreeBase { } if (tile != null) if (RitualHelper.repairRitualFromRuins(tile, safe)) - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); else if (!safe) - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.ritual.create.error.outOfWorldBoundaries")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.ritual.create.error.outOfWorldBoundaries")); else - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.ritaul.create.error.unsafe")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.ritaul.create.error.unsafe")); else - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.ritual.error.noMRS")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.ritual.error.noMRS")); } } diff --git a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandTeleposer.java b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandTeleposer.java index 8f74b045..3187aeeb 100644 --- a/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandTeleposer.java +++ b/src/main/java/WayofTime/bloodmagic/command/sub/SubCommandTeleposer.java @@ -7,13 +7,13 @@ import WayofTime.bloodmagic.tile.TileTeleposer; import WayofTime.bloodmagic.util.Utils; import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.server.MinecraftServer; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.StringTextComponent; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.server.command.CommandTreeBase; import net.minecraftforge.server.command.CommandTreeHelp; @@ -52,7 +52,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } abstract class TeleposeHelper extends CommandTreeBase { - public EntityPlayer player; + public PlayerEntity player; @Override public String getUsage(ICommandSender sender) { @@ -72,7 +72,7 @@ public class SubCommandTeleposer extends CommandTreeBase { return 2; } - public TileTeleposer[] cleanUpAndCreateArrayFromTeleposerList(EntityPlayer player) { + public TileTeleposer[] cleanUpAndCreateArrayFromTeleposerList(PlayerEntity player) { if (player == null) for (TileTeleposer i : teleposerSet) { if (i == null || i.isInvalid() || i.isEmpty()) { @@ -98,7 +98,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } - public void sendOwnedTeleposerList(ICommandSender sender, EntityPlayer player) { + public void sendOwnedTeleposerList(ICommandSender sender, PlayerEntity player) { teleposerArray = cleanUpAndCreateArrayFromTeleposerList(player); for (int i = 0; i < teleposerArray.length; i++) { ItemStack stack = teleposerArray[i].getStackInSlot(0); @@ -108,9 +108,9 @@ public class SubCommandTeleposer extends CommandTreeBase { String name = binding.getOwnerName(); if (player != null) { if (name.equals(player.getName())) - sender.sendMessage(new TextComponentString(i + new TextComponentTranslation("commands.bloodmagic.teleposer.anddimension").getFormattedText() + teleposerArray[i].getWorld().provider.getDimension() + " " + teleposerArray[i].getPos() + " " + new TextComponentTranslation("commands.bloodmagic.teleposer.focusanddim").getFormattedText() + " " + focus.getWorld(stack).provider.getDimension() + " " + focus.getBlockPos(stack) + " " + new TextComponentTranslation("commands.bloodmagic.teleposer.owner").getFormattedText() + " " + name)); + sender.sendMessage(new StringTextComponent(i + new TranslationTextComponent("commands.bloodmagic.teleposer.anddimension").getFormattedText() + teleposerArray[i].getWorld().provider.getDimension() + " " + teleposerArray[i].getPos() + " " + new TranslationTextComponent("commands.bloodmagic.teleposer.focusanddim").getFormattedText() + " " + focus.getWorld(stack).provider.getDimension() + " " + focus.getBlockPos(stack) + " " + new TranslationTextComponent("commands.bloodmagic.teleposer.owner").getFormattedText() + " " + name)); } else - sender.sendMessage(new TextComponentString(i + new TextComponentTranslation("commands.bloodmagic.teleposer.anddimension").getFormattedText() + teleposerArray[i].getWorld().provider.getDimension() + " " + teleposerArray[i].getPos() + " " + new TextComponentTranslation("commands.bloodmagic.teleposer.focusanddim").getFormattedText() + " " + focus.getWorld(stack).provider.getDimension() + " " + focus.getBlockPos(stack) + " " + new TextComponentTranslation("commands.bloodmagic.teleposer.owner").getFormattedText() + " " + name)); + sender.sendMessage(new StringTextComponent(i + new TranslationTextComponent("commands.bloodmagic.teleposer.anddimension").getFormattedText() + teleposerArray[i].getWorld().provider.getDimension() + " " + teleposerArray[i].getPos() + " " + new TranslationTextComponent("commands.bloodmagic.teleposer.focusanddim").getFormattedText() + " " + focus.getWorld(stack).provider.getDimension() + " " + focus.getBlockPos(stack) + " " + new TranslationTextComponent("commands.bloodmagic.teleposer.owner").getFormattedText() + " " + name)); } } } @@ -126,12 +126,12 @@ public class SubCommandTeleposer extends CommandTreeBase { else if (args.length > 1 && Utils.isInteger(args[1])) teleposerID = Integer.parseInt(args[1]); else { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.arg.invalid")); - sender.sendMessage(new TextComponentTranslation(this.getUsage(sender))); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.arg.invalid")); + sender.sendMessage(new TranslationTextComponent(this.getUsage(sender))); return null; } if (teleposerID < 0) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.negative")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.negative")); return null; } return teleposerID; @@ -140,7 +140,7 @@ public class SubCommandTeleposer extends CommandTreeBase { @Override public final void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { if (args.length == 1 && args[0].equals("?") || args[0].equals("help")) { - sender.sendMessage(new TextComponentTranslation(getHelp())); + sender.sendMessage(new TranslationTextComponent(getHelp())); return; } if (!(getName().equals("rmrf") || getName().equals("remove"))) { @@ -179,7 +179,7 @@ public class SubCommandTeleposer extends CommandTreeBase { sendOwnedTeleposerList(sender, null); else if (!sender.getEntityWorld().isRemote) { if (teleposerID > teleposerArray.length) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.error.outofbounds")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.error.outofbounds")); return; } TileTeleposer brunhilde = teleposerArray[teleposerID]; // every teleposer is a brunhilde! @@ -192,7 +192,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } else return; - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); } } @@ -210,7 +210,7 @@ public class SubCommandTeleposer extends CommandTreeBase { sendOwnedTeleposerList(sender, null); else if (!sender.getEntityWorld().isRemote) { if (teleposerID > teleposerArray.length) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.outofbounds")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.outofbounds")); return; } TileTeleposer brunhilde = teleposerArray[teleposerID]; // every teleposer is a brunhilde! @@ -225,7 +225,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } else return; - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); } } @@ -242,7 +242,7 @@ public class SubCommandTeleposer extends CommandTreeBase { sendOwnedTeleposerList(sender, null); else if (!sender.getEntityWorld().isRemote) { if (teleposerID > teleposerArray.length) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.outofbounds")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.outofbounds")); return; } TileTeleposer brunhilde = teleposerArray[teleposerID]; // every teleposer is a brunhilde! @@ -253,7 +253,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } else return; - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); } } @@ -270,7 +270,7 @@ public class SubCommandTeleposer extends CommandTreeBase { sendOwnedTeleposerList(sender, null); else if (!sender.getEntityWorld().isRemote) { if (teleposerID > teleposerArray.length) { - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.outofbounds")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.outofbounds")); return; } TileTeleposer brunhilde = teleposerArray[teleposerID]; // every teleposer is a brunhilde! @@ -298,7 +298,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } else return; - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); } } @@ -322,7 +322,7 @@ public class SubCommandTeleposer extends CommandTreeBase { } cleanUpAndCreateArrayFromTeleposerList(null); - sender.sendMessage(new TextComponentTranslation("commands.bloodmagic.success")); + sender.sendMessage(new TranslationTextComponent("commands.bloodmagic.success")); } } diff --git a/src/main/java/WayofTime/bloodmagic/compat/guideapi/GuideBloodMagic.java b/src/main/java/WayofTime/bloodmagic/compat/guideapi/GuideBloodMagic.java index e1ba4eee..fadb82ea 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/guideapi/GuideBloodMagic.java +++ b/src/main/java/WayofTime/bloodmagic/compat/guideapi/GuideBloodMagic.java @@ -12,7 +12,7 @@ import amerifrance.guideapi.api.GuideBook; import amerifrance.guideapi.api.IGuideBook; import amerifrance.guideapi.api.impl.Book; import amerifrance.guideapi.category.CategoryItemStack; -import net.minecraft.init.Items; +import net.minecraft.item.Items; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.IRecipe; import net.minecraft.util.ResourceLocation; diff --git a/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageAltarRecipe.java b/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageAltarRecipe.java index eca0eff2..2d661567 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageAltarRecipe.java +++ b/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageAltarRecipe.java @@ -9,9 +9,9 @@ import amerifrance.guideapi.api.impl.abstraction.CategoryAbstract; import amerifrance.guideapi.api.impl.abstraction.EntryAbstract; import amerifrance.guideapi.api.util.GuiHelper; import amerifrance.guideapi.gui.GuiBase; +import net.minecraft.block.Blocks; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; -import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; diff --git a/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageTartaricForgeRecipe.java b/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageTartaricForgeRecipe.java index a26dd233..64302417 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageTartaricForgeRecipe.java +++ b/src/main/java/WayofTime/bloodmagic/compat/guideapi/page/PageTartaricForgeRecipe.java @@ -9,9 +9,9 @@ import amerifrance.guideapi.api.impl.abstraction.CategoryAbstract; import amerifrance.guideapi.api.impl.abstraction.EntryAbstract; import amerifrance.guideapi.api.util.GuiHelper; import amerifrance.guideapi.gui.GuiBase; +import net.minecraft.block.Blocks; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; -import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; diff --git a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderAlchemyArray.java index abfe0957..95109a73 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderAlchemyArray.java @@ -8,9 +8,9 @@ import WayofTime.bloodmagic.util.helper.TextHelper; import mcp.mobius.waila.api.IWailaConfigHandler; import mcp.mobius.waila.api.IWailaDataAccessor; import mcp.mobius.waila.api.IWailaDataProvider; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.TextFormatting; @@ -45,7 +45,7 @@ public class DataProviderAlchemyArray implements IWailaDataProvider { @Nonnull @Override - public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, BlockPos pos) { + public CompoundNBT getNBTData(ServerPlayerEntity player, TileEntity te, CompoundNBT tag, World world, BlockPos pos) { TileAlchemyArray alchemyArray = (TileAlchemyArray) te; if (!alchemyArray.getStackInSlot(0).isEmpty()) tag.setString("reagent", alchemyArray.getStackInSlot(0).getDisplayName()); diff --git a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodAltar.java b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodAltar.java index 1614bee5..d144fb3f 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodAltar.java +++ b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodAltar.java @@ -9,10 +9,10 @@ import WayofTime.bloodmagic.util.helper.TextHelper; import mcp.mobius.waila.api.IWailaConfigHandler; import mcp.mobius.waila.api.IWailaDataAccessor; import mcp.mobius.waila.api.IWailaDataProvider; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -36,7 +36,7 @@ public class DataProviderBloodAltar implements IWailaDataProvider { return currenttip; if (accessor.getNBTData().hasKey("altar")) { - NBTTagCompound altarData = accessor.getNBTData().getCompoundTag("altar"); + CompoundNBT altarData = accessor.getNBTData().getCompoundTag("altar"); currenttip.add(TextHelper.localizeEffect("tooltip.bloodmagic.sigil.seer.currentAltarTier", altarData.getInteger("tier"))); currenttip.add(TextHelper.localizeEffect("tooltip.bloodmagic.sigil.seer.currentAltarCapacity", altarData.getInteger("capacity"))); currenttip.add(TextHelper.localizeEffect("tooltip.bloodmagic.sigil.seer.currentEssence", altarData.getInteger("stored"))); @@ -52,7 +52,7 @@ public class DataProviderBloodAltar implements IWailaDataProvider { @Nonnull @Override - public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, BlockPos pos) { + public CompoundNBT getNBTData(ServerPlayerEntity player, TileEntity te, CompoundNBT tag, World world, BlockPos pos) { TileAltar altar = (TileAltar) te; boolean hasSigil = false; @@ -78,7 +78,7 @@ public class DataProviderBloodAltar implements IWailaDataProvider { if (!hasSeer && !hasSigil) return tag; - NBTTagCompound altarData = new NBTTagCompound(); + CompoundNBT altarData = new CompoundNBT(); altarData.setInteger("tier", altar.getTier().toInt()); altarData.setInteger("capacity", altar.getCapacity()); altarData.setInteger("stored", altar.getCurrentBlood()); @@ -92,7 +92,7 @@ public class DataProviderBloodAltar implements IWailaDataProvider { return tag; } - public static boolean hasStack(ItemStack stack, EntityPlayer player) { + public static boolean hasStack(ItemStack stack, PlayerEntity player) { for (ItemStack inventoryStack : player.inventory.mainInventory) if (inventoryStack != null && inventoryStack.isItemEqual(stack)) return true; @@ -100,7 +100,7 @@ public class DataProviderBloodAltar implements IWailaDataProvider { return false; } - private static boolean holdingSeerSigil(EntityPlayer player) { + private static boolean holdingSeerSigil(PlayerEntity player) { if (player.getHeldItemMainhand().getItem() == RegistrarBloodMagicItems.SIGIL_SEER) return true; @@ -110,7 +110,7 @@ public class DataProviderBloodAltar implements IWailaDataProvider { return false; } - private static boolean holdingDivinationSigil(EntityPlayer player) { + private static boolean holdingDivinationSigil(PlayerEntity player) { if (player.getHeldItemMainhand().getItem() instanceof ItemSigilDivination) return true; diff --git a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodTank.java b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodTank.java index b664531c..ed35e77b 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodTank.java +++ b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderBloodTank.java @@ -6,9 +6,9 @@ import WayofTime.bloodmagic.util.helper.TextHelper; import mcp.mobius.waila.api.IWailaConfigHandler; import mcp.mobius.waila.api.IWailaDataAccessor; import mcp.mobius.waila.api.IWailaDataProvider; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -40,12 +40,12 @@ public class DataProviderBloodTank implements IWailaDataProvider { @Nonnull @Override - public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, BlockPos pos) { + public CompoundNBT getNBTData(ServerPlayerEntity player, TileEntity te, CompoundNBT tag, World world, BlockPos pos) { TileBloodTank tank = (TileBloodTank) te; tag.setInteger("tier", tank.getBlockMetadata() + 1); tag.setInteger("capacity", tank.capacity); if (tank.getTank().getFluid() != null) - tag.setTag("fluid", tank.getTank().getFluid().writeToNBT(new NBTTagCompound())); + tag.setTag("fluid", tank.getTank().getFluid().writeToNBT(new CompoundNBT())); return tag; } } diff --git a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderMimic.java b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderMimic.java index e4bf0264..43d11f75 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderMimic.java +++ b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderMimic.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.tile.TileMimic; import mcp.mobius.waila.api.IWailaConfigHandler; import mcp.mobius.waila.api.IWailaDataAccessor; import mcp.mobius.waila.api.IWailaDataProvider; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; @@ -24,7 +24,7 @@ public class DataProviderMimic implements IWailaDataProvider { @Override public ItemStack getWailaStack(IWailaDataAccessor accessor, IWailaConfigHandler config) { if (accessor.getNBTData().hasKey("mimiced")) { - NBTTagCompound mimiced = accessor.getNBTData().getCompoundTag("mimiced"); + CompoundNBT mimiced = accessor.getNBTData().getCompoundTag("mimiced"); Item item = ForgeRegistries.ITEMS.getValue(new ResourceLocation(mimiced.getString("id"))); int meta = mimiced.getInteger("data"); ItemStack ret = new ItemStack(item, 1, meta); @@ -39,14 +39,14 @@ public class DataProviderMimic implements IWailaDataProvider { @Nonnull @Override - public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, BlockPos pos) { + public CompoundNBT getNBTData(ServerPlayerEntity player, TileEntity te, CompoundNBT tag, World world, BlockPos pos) { TileMimic mimic = (TileMimic) te; ItemStack mimiced = mimic.getStackInSlot(0); if (!mimiced.isEmpty()) { - NBTTagCompound item = new NBTTagCompound(); + CompoundNBT item = new CompoundNBT(); item.setString("id", mimiced.getItem().getRegistryName().toString()); item.setInteger("data", mimiced.getMetadata()); - NBTTagCompound shareTag = mimiced.getItem().getNBTShareTag(mimiced); + CompoundNBT shareTag = mimiced.getItem().getNBTShareTag(mimiced); if (shareTag != null) item.setTag("nbt", shareTag); diff --git a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderRitualController.java b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderRitualController.java index da4d5b21..4cf4ca0b 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderRitualController.java +++ b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderRitualController.java @@ -9,9 +9,9 @@ import WayofTime.bloodmagic.util.helper.TextHelper; import mcp.mobius.waila.api.IWailaConfigHandler; import mcp.mobius.waila.api.IWailaDataAccessor; import mcp.mobius.waila.api.IWailaDataProvider; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -29,7 +29,7 @@ public class DataProviderRitualController implements IWailaDataProvider { if (!config.getConfig(Constants.Compat.WAILA_CONFIG_RITUAL)) return currenttip; - NBTTagCompound tag = accessor.getNBTData(); + CompoundNBT tag = accessor.getNBTData(); if (tag.getBoolean("master")) { if (tag.hasKey("ritual")) { currenttip.add(TextHelper.localizeEffect(tag.getString("ritual"))); @@ -53,7 +53,7 @@ public class DataProviderRitualController implements IWailaDataProvider { @Nonnull @Override - public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, BlockPos pos) { + public CompoundNBT getNBTData(ServerPlayerEntity player, TileEntity te, CompoundNBT tag, World world, BlockPos pos) { if (te instanceof TileMasterRitualStone) { TileMasterRitualStone mrs = (TileMasterRitualStone) te; diff --git a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderTeleposer.java b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderTeleposer.java index 8f21ea90..d30b65d4 100644 --- a/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderTeleposer.java +++ b/src/main/java/WayofTime/bloodmagic/compat/waila/provider/DataProviderTeleposer.java @@ -7,9 +7,9 @@ import WayofTime.bloodmagic.util.helper.TextHelper; import mcp.mobius.waila.api.IWailaConfigHandler; import mcp.mobius.waila.api.IWailaDataAccessor; import mcp.mobius.waila.api.IWailaDataProvider; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.nbt.NBTUtil; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; @@ -31,7 +31,7 @@ public class DataProviderTeleposer implements IWailaDataProvider { return currenttip; if (accessor.getNBTData().hasKey("focus")) { - NBTTagCompound focusData = accessor.getNBTData().getCompoundTag("focus"); + CompoundNBT focusData = accessor.getNBTData().getCompoundTag("focus"); BlockPos boundPos = NBTUtil.getPosFromTag(focusData.getCompoundTag("pos")); int boundDim = focusData.getInteger("dim"); String dimName = WordUtils.capitalizeFully(DimensionManager.getProviderType(boundDim).getName().replace("_", " ")); @@ -43,12 +43,12 @@ public class DataProviderTeleposer implements IWailaDataProvider { } @Override - public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, BlockPos pos) { + public CompoundNBT getNBTData(ServerPlayerEntity player, TileEntity te, CompoundNBT tag, World world, BlockPos pos) { TileTeleposer teleposer = (TileTeleposer) te; ItemStack contained = teleposer.getStackInSlot(0); if (!contained.isEmpty() && contained.hasTagCompound()) { ItemTelepositionFocus focus = (ItemTelepositionFocus) contained.getItem(); - NBTTagCompound focusData = new NBTTagCompound(); + CompoundNBT focusData = new CompoundNBT(); focusData.setTag("pos", NBTUtil.createPosTag(focus.getBlockPos(contained))); focusData.setInteger("dim", contained.getTagCompound().getInteger(Constants.NBT.DIMENSION_ID)); tag.setTag("focus", focusData); diff --git a/src/main/java/WayofTime/bloodmagic/compress/StorageBlockCraftingManager.java b/src/main/java/WayofTime/bloodmagic/compress/StorageBlockCraftingManager.java index 71b6120e..4b61f7e0 100644 --- a/src/main/java/WayofTime/bloodmagic/compress/StorageBlockCraftingManager.java +++ b/src/main/java/WayofTime/bloodmagic/compress/StorageBlockCraftingManager.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.compress; import WayofTime.bloodmagic.util.BMLog; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.Container; -import net.minecraft.inventory.InventoryCrafting; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.CraftingInventory; +import net.minecraft.inventory.container.Container; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.CraftingManager; @@ -15,21 +15,21 @@ import java.util.Set; public class StorageBlockCraftingManager { private static final StorageBlockCraftingManager instance = new StorageBlockCraftingManager(); - private static InventoryCrafting[] inventoryCrafting = { - new InventoryCrafting(new Container() { - public boolean canInteractWith(EntityPlayer player) { + private static CraftingInventory[] inventoryCrafting = { + new CraftingInventory(new Container() { + public boolean canInteractWith(PlayerEntity player) { return false; } }, 3, 3), - new InventoryCrafting(new Container() { - public boolean canInteractWith(EntityPlayer player) { + new CraftingInventory(new Container() { + public boolean canInteractWith(PlayerEntity player) { return false; } }, 2, 2), - new InventoryCrafting(new Container() { - public boolean canInteractWith(EntityPlayer player) { + new CraftingInventory(new Container() { + public boolean canInteractWith(PlayerEntity player) { return false; } }, @@ -56,7 +56,7 @@ public class StorageBlockCraftingManager { if (craftingManagerSB.blacklist.contains(stack)) { return ItemStack.EMPTY; } - InventoryCrafting inventory = inventoryCrafting[3 - gridSize]; + CraftingInventory inventory = inventoryCrafting[3 - gridSize]; for (int i = 0; i < inventory.getSizeInventory(); i++) { inventory.setInventorySlotContents(i, stack); } @@ -74,7 +74,7 @@ public class StorageBlockCraftingManager { return ItemStack.EMPTY; } - public static ItemStack getNNRecipeOutput(InventoryCrafting inventory, World world) { + public static ItemStack getNNRecipeOutput(CraftingInventory inventory, World world) { IRecipe checkForNull = CraftingManager.findMatchingRecipe(inventory, world); if (checkForNull != null) { return checkForNull.getRecipeOutput(); @@ -102,11 +102,11 @@ public class StorageBlockCraftingManager { BMLog.DEBUG.info("Total number of compression recipes: " + this.recipes.size()); } - public ItemStack findMatchingRecipe(InventoryCrafting craftingInventory, World world) { + public ItemStack findMatchingRecipe(CraftingInventory craftingInventory, World world) { return this.findMatchingRecipe(craftingInventory, world, this.recipes); } - private ItemStack findMatchingRecipe(InventoryCrafting craftingInventory, World world, HashSet list) { + private ItemStack findMatchingRecipe(CraftingInventory craftingInventory, World world, HashSet list) { int i = 0; ItemStack itemstack = ItemStack.EMPTY; ItemStack itemstack1 = ItemStack.EMPTY; diff --git a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagic.java b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagic.java index fb6269d2..e5aaa84a 100644 --- a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagic.java +++ b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagic.java @@ -10,9 +10,9 @@ import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow; import WayofTime.bloodmagic.entity.projectile.EntitySoulSnare; import WayofTime.bloodmagic.orb.BloodOrb; import WayofTime.bloodmagic.potion.PotionBloodMagic; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.init.MobEffects; -import net.minecraft.potion.Potion; +import net.minecraft.client.renderer.model.ModelResourceLocation; +import net.minecraft.potion.Effect; +import net.minecraft.potion.Effects; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.event.ModelRegistryEvent; import net.minecraftforge.client.model.ModelLoader; @@ -45,23 +45,23 @@ public class RegistrarBloodMagic { @GameRegistry.ObjectHolder("transcendent") public static final BloodOrb ORB_TRANSCENDENT = ORB_DEF; - public static final Potion BOOST = MobEffects.HASTE; - public static final Potion WHIRLWIND = MobEffects.HASTE; - public static final Potion PLANAR_BINDING = MobEffects.HASTE; - public static final Potion SOUL_SNARE = MobEffects.HASTE; - public static final Potion SOUL_FRAY = MobEffects.HASTE; - public static final Potion FIRE_FUSE = MobEffects.HASTE; - public static final Potion CONSTRICT = MobEffects.HASTE; - public static final Potion PLANT_LEECH = MobEffects.HASTE; - public static final Potion DEAFNESS = MobEffects.HASTE; - public static final Potion BOUNCE = MobEffects.HASTE; - public static final Potion CLING = MobEffects.HASTE; - public static final Potion SACRIFICIAL_LAMB = MobEffects.HASTE; - public static final Potion FLIGHT = MobEffects.HASTE; - public static final Potion GROUNDED = MobEffects.HASTE; - public static final Potion HEAVY_HEART = MobEffects.HASTE; - public static final Potion SUSPENDED = MobEffects.HASTE; - public static final Potion FEATHERED = MobEffects.HASTE; + public static final Effect BOOST = Effects.HASTE; + public static final Effect WHIRLWIND = Effects.HASTE; + public static final Effect PLANAR_BINDING = Effects.HASTE; + public static final Effect SOUL_SNARE = Effects.HASTE; + public static final Effect SOUL_FRAY = Effects.HASTE; + public static final Effect FIRE_FUSE = Effects.HASTE; + public static final Effect CONSTRICT = Effects.HASTE; + public static final Effect PLANT_LEECH = Effects.HASTE; + public static final Effect DEAFNESS = Effects.HASTE; + public static final Effect BOUNCE = Effects.HASTE; + public static final Effect CLING = Effects.HASTE; + public static final Effect SACRIFICIAL_LAMB = Effects.HASTE; + public static final Effect FLIGHT = Effects.HASTE; + public static final Effect GROUNDED = Effects.HASTE; + public static final Effect HEAVY_HEART = Effects.HASTE; + public static final Effect SUSPENDED = Effects.HASTE; + public static final Effect FEATHERED = Effects.HASTE; public static IForgeRegistry BLOOD_ORBS = null; @@ -83,7 +83,7 @@ public class RegistrarBloodMagic { } @SubscribeEvent - public static void registerPotions(RegistryEvent.Register event) { + public static void registerPotions(RegistryEvent.Register event) { event.getRegistry().registerAll( new PotionBloodMagic("Boost", false, 0xFFFFFF, 0, 0).setRegistryName("boost"), new PotionBloodMagic("Whirlwind", false, 0xFFFFFF, 0, 0).setRegistryName("whirlwind"), diff --git a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicBlocks.java b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicBlocks.java index 7838a879..62815e21 100644 --- a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicBlocks.java +++ b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicBlocks.java @@ -10,11 +10,11 @@ import WayofTime.bloodmagic.tile.routing.TileMasterRoutingNode; import WayofTime.bloodmagic.tile.routing.TileOutputRoutingNode; import com.google.common.collect.Lists; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.client.renderer.block.statemap.StateMapperBase; -import net.minecraft.init.Blocks; import net.minecraftforge.client.event.ModelRegistryEvent; import net.minecraftforge.client.model.ModelLoader; import net.minecraftforge.event.RegistryEvent; @@ -134,7 +134,7 @@ public class RegistrarBloodMagicBlocks { public static void registerModels(ModelRegistryEvent event) { ModelLoader.setCustomStateMapper(LIFE_ESSENCE, new StateMapperBase() { @Override - protected ModelResourceLocation getModelResourceLocation(IBlockState state) { + protected ModelResourceLocation getModelResourceLocation(BlockState state) { return new ModelResourceLocation(state.getBlock().getRegistryName(), "fluid"); } }); diff --git a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicItems.java b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicItems.java index 0938c425..c4421b41 100644 --- a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicItems.java +++ b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicItems.java @@ -23,9 +23,9 @@ import com.google.common.collect.Lists; import com.google.common.collect.Sets; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.init.Items; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.client.renderer.model.ModelResourceLocation; +import net.minecraft.item.Items; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.Item; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.event.ModelRegistryEvent; @@ -182,14 +182,14 @@ public class RegistrarBloodMagicItems { new ItemTelepositionFocus().setRegistryName("teleposition_focus"), new ItemExperienceBook().setRegistryName("experience_tome"), new ItemEnum.Variant<>(ShardType.class, "blood_shard").setRegistryName("blood_shard"), - new ItemLivingArmour(EntityEquipmentSlot.HEAD).setRegistryName("living_armour_helmet"), - new ItemLivingArmour(EntityEquipmentSlot.CHEST).setRegistryName("living_armour_chest"), - new ItemLivingArmour(EntityEquipmentSlot.LEGS).setRegistryName("living_armour_leggings"), - new ItemLivingArmour(EntityEquipmentSlot.FEET).setRegistryName("living_armour_boots"), - new ItemSentientArmour(EntityEquipmentSlot.HEAD).setRegistryName("sentient_armour_helmet"), - new ItemSentientArmour(EntityEquipmentSlot.CHEST).setRegistryName("sentient_armour_chest"), - new ItemSentientArmour(EntityEquipmentSlot.LEGS).setRegistryName("sentient_armour_leggings"), - new ItemSentientArmour(EntityEquipmentSlot.FEET).setRegistryName("sentient_armour_boots"), + new ItemLivingArmour(EquipmentSlotType.HEAD).setRegistryName("living_armour_helmet"), + new ItemLivingArmour(EquipmentSlotType.CHEST).setRegistryName("living_armour_chest"), + new ItemLivingArmour(EquipmentSlotType.LEGS).setRegistryName("living_armour_leggings"), + new ItemLivingArmour(EquipmentSlotType.FEET).setRegistryName("living_armour_boots"), + new ItemSentientArmour(EquipmentSlotType.HEAD).setRegistryName("sentient_armour_helmet"), + new ItemSentientArmour(EquipmentSlotType.CHEST).setRegistryName("sentient_armour_chest"), + new ItemSentientArmour(EquipmentSlotType.LEGS).setRegistryName("sentient_armour_leggings"), + new ItemSentientArmour(EquipmentSlotType.FEET).setRegistryName("sentient_armour_boots"), new ItemAltarMaker().setRegistryName("altar_maker"), new ItemUpgradeTome().setRegistryName("upgrade_tome"), new ItemUpgradeTrainer().setRegistryName("upgrade_trainer"), diff --git a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicRecipes.java b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicRecipes.java index d967e0b8..1b4cbdd3 100644 --- a/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicRecipes.java +++ b/src/main/java/WayofTime/bloodmagic/core/RegistrarBloodMagicRecipes.java @@ -15,9 +15,9 @@ import WayofTime.bloodmagic.ritual.EnumRuneType; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.util.PluginUtil; import com.google.common.collect.Sets; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; -import net.minecraft.init.PotionTypes; +import net.minecraft.block.Blocks; +import net.minecraft.item.Items; +import net.minecraft.potion.Potions; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.IRecipe; import net.minecraft.item.crafting.Ingredient; @@ -114,7 +114,7 @@ public class RegistrarBloodMagicRecipes { registrar.addAlchemyTable(ComponentTypes.SALTPETER.getStack(4), 0, 100, 0, ComponentTypes.PLANT_OIL.getStack(), ComponentTypes.PLANT_OIL.getStack(), "dustCoal"); registrar.addAlchemyTable(new ItemStack(Items.GUNPOWDER, 3), 0, 100, 0, "dustSaltpeter", "dustSulfur", new ItemStack(Items.COAL, 1, 1)); registrar.addAlchemyTable(ComponentTypes.SAND_COAL.getStack(4), 100, 100, 1, new ItemStack(Items.COAL, 1, 0), new ItemStack(Items.COAL, 1, 0), Items.FLINT); - registrar.addAlchemyTable(ItemCuttingFluid.FluidType.BASIC.getStack(), 1000, 400, 1, "dustCoal", "gunpowder", Items.REDSTONE, Items.SUGAR, ComponentTypes.PLANT_OIL.getStack(), PotionUtils.addPotionToItemStack(new ItemStack(Items.POTIONITEM), PotionTypes.WATER)); + registrar.addAlchemyTable(ItemCuttingFluid.FluidType.BASIC.getStack(), 1000, 400, 1, "dustCoal", "gunpowder", Items.REDSTONE, Items.SUGAR, ComponentTypes.PLANT_OIL.getStack(), PotionUtils.addPotionToItemStack(new ItemStack(Items.POTIONITEM), Potions.WATER)); registrar.addAlchemyTable(ComponentTypes.SAND_IRON.getStack(2), 400, 200, 1, "oreIron", ItemCuttingFluid.FluidType.BASIC.getStack()); registrar.addAlchemyTable(ComponentTypes.SAND_GOLD.getStack(2), 400, 200, 1, "oreGold", ItemCuttingFluid.FluidType.BASIC.getStack()); registrar.addAlchemyTable(new ItemStack(Items.REDSTONE, 8), 400, 200, 1, "oreRedstone", ItemCuttingFluid.FluidType.BASIC.getStack()); @@ -127,7 +127,7 @@ public class RegistrarBloodMagicRecipes { registrar.addAlchemyTable(ComponentTypes.NEURO_TOXIN.getStack(), 1000, 100, 2, new ItemStack(Items.FISH, 1, 3)); registrar.addAlchemyTable(ComponentTypes.ANTISEPTIC.getStack(2), 1000, 200, 2, ComponentTypes.PLANT_OIL.getStack(), "nuggetGold", "cropWheat", Items.SUGAR, Blocks.BROWN_MUSHROOM, Blocks.RED_MUSHROOM); registrar.addAlchemyTable(ItemLivingArmourPointsUpgrade.UpgradeType.DRAFT_ANGELUS.getStack(), 20000, 400, 3, ComponentTypes.NEURO_TOXIN.getStack(), ComponentTypes.ANTISEPTIC.getStack(), "dustGold", Items.FERMENTED_SPIDER_EYE, new ItemStack(RegistrarBloodMagicItems.BLOOD_SHARD, 1, 0), Items.GHAST_TEAR); - registrar.addAlchemyTable(new ItemStack(RegistrarBloodMagicItems.POTION_FLASK), 1000, 200, 2, PotionUtils.addPotionToItemStack(new ItemStack(Items.POTIONITEM), PotionTypes.WATER), "cropNetherWart", "dustRedstone", "dustGlowstone"); + registrar.addAlchemyTable(new ItemStack(RegistrarBloodMagicItems.POTION_FLASK), 1000, 200, 2, PotionUtils.addPotionToItemStack(new ItemStack(Items.POTIONITEM), Potions.WATER), "cropNetherWart", "dustRedstone", "dustGlowstone"); registrar.addAlchemyTable(ComponentTypes.CATALYST_LENGTH_1.getStack(), 1000, 100, 2, "gunpowder", "cropNetherWart", "gemLapis"); registrar.addAlchemyTable(ComponentTypes.CATALYST_POWER_1.getStack(), 1000, 100, 2, "gunpowder", "cropNetherWart", "dustRedstone"); diff --git a/src/main/java/WayofTime/bloodmagic/core/data/BMWorldSavedData.java b/src/main/java/WayofTime/bloodmagic/core/data/BMWorldSavedData.java index 70338a16..c7de2d48 100644 --- a/src/main/java/WayofTime/bloodmagic/core/data/BMWorldSavedData.java +++ b/src/main/java/WayofTime/bloodmagic/core/data/BMWorldSavedData.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.core.data; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; import net.minecraft.world.storage.WorldSavedData; import java.util.HashMap; @@ -23,7 +23,7 @@ public class BMWorldSavedData extends WorldSavedData { this(ID); } - public SoulNetwork getNetwork(EntityPlayer player) { + public SoulNetwork getNetwork(PlayerEntity player) { return getNetwork(PlayerHelper.getUUIDFromPlayer(player)); } @@ -34,11 +34,11 @@ public class BMWorldSavedData extends WorldSavedData { } @Override - public void readFromNBT(NBTTagCompound tagCompound) { - NBTTagList networkData = tagCompound.getTagList("networkData", 10); + public void readFromNBT(CompoundNBT tagCompound) { + ListNBT networkData = tagCompound.getTagList("networkData", 10); for (int i = 0; i < networkData.tagCount(); i++) { - NBTTagCompound data = networkData.getCompoundTagAt(i); + CompoundNBT data = networkData.getCompoundTagAt(i); SoulNetwork network = SoulNetwork.fromNBT(data); network.setParent(this); soulNetworks.put(network.getPlayerId(), network); @@ -46,8 +46,8 @@ public class BMWorldSavedData extends WorldSavedData { } @Override - public NBTTagCompound writeToNBT(NBTTagCompound tagCompound) { - NBTTagList networkData = new NBTTagList(); + public CompoundNBT writeToNBT(CompoundNBT tagCompound) { + ListNBT networkData = new ListNBT(); for (SoulNetwork soulNetwork : soulNetworks.values()) networkData.appendTag(soulNetwork.serializeNBT()); diff --git a/src/main/java/WayofTime/bloodmagic/core/data/Binding.java b/src/main/java/WayofTime/bloodmagic/core/data/Binding.java index 671f6a1b..4d107cef 100644 --- a/src/main/java/WayofTime/bloodmagic/core/data/Binding.java +++ b/src/main/java/WayofTime/bloodmagic/core/data/Binding.java @@ -1,15 +1,15 @@ package WayofTime.bloodmagic.core.data; import net.minecraft.item.ItemStack; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.nbt.NBTBase; -import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTUtil; import net.minecraftforge.common.util.INBTSerializable; import javax.annotation.Nullable; import java.util.UUID; -public class Binding implements INBTSerializable { +public class Binding implements INBTSerializable { private UUID uuid; private String name; @@ -24,15 +24,15 @@ public class Binding implements INBTSerializable { } @Override - public NBTTagCompound serializeNBT() { - NBTTagCompound tag = new NBTTagCompound(); + public CompoundNBT serializeNBT() { + CompoundNBT tag = new CompoundNBT(); tag.setTag("id", NBTUtil.createUUIDTag(uuid)); tag.setString("name", name); return tag; } @Override - public void deserializeNBT(NBTTagCompound nbt) { + public void deserializeNBT(CompoundNBT nbt) { this.uuid = NBTUtil.getUUIDFromTag(nbt.getCompoundTag("id")); this.name = nbt.getString("name"); } @@ -65,7 +65,7 @@ public class Binding implements INBTSerializable { return null; Binding binding = new Binding(); - binding.deserializeNBT((NBTTagCompound) bindingTag); + binding.deserializeNBT((CompoundNBT) bindingTag); return binding; } diff --git a/src/main/java/WayofTime/bloodmagic/core/data/SoulNetwork.java b/src/main/java/WayofTime/bloodmagic/core/data/SoulNetwork.java index 4ba15109..e4eacb8f 100644 --- a/src/main/java/WayofTime/bloodmagic/core/data/SoulNetwork.java +++ b/src/main/java/WayofTime/bloodmagic/core/data/SoulNetwork.java @@ -7,10 +7,10 @@ import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import WayofTime.bloodmagic.util.helper.PlayerHelper; import com.google.common.collect.EvictingQueue; import com.google.common.collect.ImmutableList; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.common.util.INBTSerializable; @@ -19,11 +19,11 @@ import java.util.List; import java.util.Queue; import java.util.UUID; -public class SoulNetwork implements INBTSerializable { +public class SoulNetwork implements INBTSerializable { private final Queue ticketHistory; private BMWorldSavedData parent; - private EntityPlayer cachedPlayer; + private PlayerEntity cachedPlayer; private UUID playerId; private int currentEssence; private int orbTier; @@ -104,7 +104,7 @@ public class SoulNetwork implements INBTSerializable { return syphon(new SoulTicket(amount)); } - public BooleanResult syphonAndDamage(EntityPlayer user, SoulTicket ticket) { + public BooleanResult syphonAndDamage(PlayerEntity user, SoulTicket ticket) { if (user.getEntityWorld().isRemote) return BooleanResult.newResult(false, 0); @@ -127,16 +127,16 @@ public class SoulNetwork implements INBTSerializable { } /** - * @deprecated Use {@link #syphonAndDamage(EntityPlayer, SoulTicket)} instead. + * @deprecated Use {@link #syphonAndDamage(PlayerEntity, SoulTicket)} instead. */ @Deprecated - public boolean syphonAndDamage(EntityPlayer user, int amount) { + public boolean syphonAndDamage(PlayerEntity user, int amount) { return syphonAndDamage(user, new SoulTicket(amount)).isSuccess(); } public void causeNausea() { if (getPlayer() != null) - getPlayer().addPotionEffect(new PotionEffect(MobEffects.NAUSEA, 99)); + getPlayer().addPotionEffect(new EffectInstance(Effects.NAUSEA, 99)); } /** @@ -147,7 +147,7 @@ public class SoulNetwork implements INBTSerializable { causeNausea(); } - public void hurtPlayer(EntityPlayer user, float syphon) { + public void hurtPlayer(PlayerEntity user, float syphon) { if (user != null) { if (syphon < 100 && syphon > 0) { if (!user.capabilities.isCreativeMode) { @@ -174,7 +174,7 @@ public class SoulNetwork implements INBTSerializable { } @Nullable - public EntityPlayer getPlayer() { + public PlayerEntity getPlayer() { if (cachedPlayer == null) cachedPlayer = PlayerHelper.getPlayerFromUUID(playerId); @@ -191,7 +191,7 @@ public class SoulNetwork implements INBTSerializable { return this; } - public EntityPlayer getCachedPlayer() { + public PlayerEntity getCachedPlayer() { return cachedPlayer; } @@ -226,8 +226,8 @@ public class SoulNetwork implements INBTSerializable { // INBTSerializable @Override - public NBTTagCompound serializeNBT() { - NBTTagCompound tagCompound = new NBTTagCompound(); + public CompoundNBT serializeNBT() { + CompoundNBT tagCompound = new CompoundNBT(); tagCompound.setString("playerId", getPlayerId().toString()); tagCompound.setInteger("currentEssence", getCurrentEssence()); tagCompound.setInteger("orbTier", getOrbTier()); @@ -235,13 +235,13 @@ public class SoulNetwork implements INBTSerializable { } @Override - public void deserializeNBT(NBTTagCompound nbt) { + public void deserializeNBT(CompoundNBT nbt) { this.playerId = UUID.fromString(nbt.getString("playerId")); this.currentEssence = nbt.getInteger("currentEssence"); this.orbTier = nbt.getInteger("orbTier"); } - public static SoulNetwork fromNBT(NBTTagCompound tagCompound) { + public static SoulNetwork fromNBT(CompoundNBT tagCompound) { SoulNetwork soulNetwork = new SoulNetwork(); soulNetwork.deserializeNBT(tagCompound); return soulNetwork; diff --git a/src/main/java/WayofTime/bloodmagic/core/data/SoulTicket.java b/src/main/java/WayofTime/bloodmagic/core/data/SoulTicket.java index 6d209dd5..5c04038b 100644 --- a/src/main/java/WayofTime/bloodmagic/core/data/SoulTicket.java +++ b/src/main/java/WayofTime/bloodmagic/core/data/SoulTicket.java @@ -5,12 +5,12 @@ import net.minecraft.entity.Entity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; public class SoulTicket { - private static final ITextComponent EMPTY = new TextComponentString(""); + private static final ITextComponent EMPTY = new StringTextComponent(""); private final ITextComponent description; private final int amount; @@ -40,32 +40,32 @@ public class SoulTicket { * @return A description in the format block|dimensionID|pos */ public static SoulTicket block(World world, BlockPos pos, int amount) { - return new SoulTicket(new TextComponentString("block|" + world.provider.getDimension() + "|" + pos.toLong()), amount); + return new SoulTicket(new StringTextComponent("block|" + world.provider.getDimension() + "|" + pos.toLong()), amount); } /** * @return A description in the format item|item registry name|dimensionID|entityName|entityPos */ public static SoulTicket item(ItemStack itemStack, World world, Entity entity, int amount) { - return new SoulTicket(new TextComponentString("item|" + itemStack.getItem().getRegistryName() + "|" + world.provider.getDimension() + "|" + entity.getPersistentID()), amount); + return new SoulTicket(new StringTextComponent("item|" + itemStack.getItem().getRegistryName() + "|" + world.provider.getDimension() + "|" + entity.getPersistentID()), amount); } /** * @return A description in the format item|item registry name|dimensionID|pos */ public static SoulTicket item(ItemStack itemStack, World world, BlockPos pos, int amount) { - return new SoulTicket(new TextComponentString("item|" + itemStack.getItem().getRegistryName() + "|" + world.provider.getDimension() + "|" + pos.toLong()), amount); + return new SoulTicket(new StringTextComponent("item|" + itemStack.getItem().getRegistryName() + "|" + world.provider.getDimension() + "|" + pos.toLong()), amount); } /** * @return A description in the format item|item registry name|dimensionID */ public static SoulTicket item(ItemStack itemStack, int amount) { - return new SoulTicket(new TextComponentString("item|" + itemStack.getItem().getRegistryName()), amount); + return new SoulTicket(new StringTextComponent("item|" + itemStack.getItem().getRegistryName()), amount); } public static SoulTicket command(ICommandSender sender, String command, int amount) { - return new SoulTicket(new TextComponentString("command|" + command + "|" + sender.getName()), amount); + return new SoulTicket(new StringTextComponent("command|" + command + "|" + sender.getName()), amount); } // TODO maybe make it check the amount?? diff --git a/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrb.java b/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrb.java index c61289d9..aab60d48 100644 --- a/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrb.java +++ b/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrb.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.core.registry.OrbRegistry; import it.unimi.dsi.fastutil.ints.IntArrayList; import it.unimi.dsi.fastutil.ints.IntComparators; import it.unimi.dsi.fastutil.ints.IntList; -import net.minecraft.client.util.RecipeItemHelper; +import net.minecraft.item.crafting.RecipeItemHelper; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.Ingredient; import net.minecraft.util.NonNullList; diff --git a/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrbFactory.java b/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrbFactory.java index bd7060ee..4c6ab978 100644 --- a/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrbFactory.java +++ b/src/main/java/WayofTime/bloodmagic/core/recipe/IngredientBloodOrbFactory.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.core.recipe; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import com.google.gson.JsonObject; import net.minecraft.item.crafting.Ingredient; -import net.minecraft.util.JsonUtils; +import net.minecraft.util.JSONUtils; import net.minecraft.util.ResourceLocation; import net.minecraftforge.common.crafting.IIngredientFactory; import net.minecraftforge.common.crafting.JsonContext; @@ -15,7 +15,7 @@ public class IngredientBloodOrbFactory implements IIngredientFactory { @Nonnull @Override public Ingredient parse(JsonContext context, JsonObject json) { - ResourceLocation orb = new ResourceLocation(JsonUtils.getString(json, "orb")); + ResourceLocation orb = new ResourceLocation(JSONUtils.getString(json, "orb")); return new IngredientBloodOrb(RegistrarBloodMagic.BLOOD_ORBS.getValue(orb)); } } diff --git a/src/main/java/WayofTime/bloodmagic/core/registry/OrbRegistry.java b/src/main/java/WayofTime/bloodmagic/core/registry/OrbRegistry.java index 81267670..497d90fc 100644 --- a/src/main/java/WayofTime/bloodmagic/core/registry/OrbRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/core/registry/OrbRegistry.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.orb.BloodOrb; import com.google.common.collect.ArrayListMultimap; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraftforge.fml.common.registry.GameRegistry; import java.util.ArrayList; @@ -50,7 +50,7 @@ public class OrbRegistry { public static ItemStack getOrbStack(BloodOrb orb) { ItemStack ret = new ItemStack(ORB_ITEM); - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); tag.setString("orb", orb.getRegistryName().toString()); ret.setTagCompound(tag); return ret; diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackRangedBow.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackRangedBow.java index f6eb575c..c776b47a 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackRangedBow.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackRangedBow.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityDemonBase; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; -import net.minecraft.item.ItemBow; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; +import net.minecraft.item.BowItem; +import net.minecraft.util.Hand; -public class EntityAIAttackRangedBow extends EntityAIBase { +public class EntityAIAttackRangedBow extends Goal { private final EntityDemonBase entity; private final double moveSpeedAmp; private final float maxAttackDistance; @@ -37,7 +37,7 @@ public class EntityAIAttackRangedBow extends EntityAIBase { } protected boolean isBowInMainhand() { - return this.entity.getHeldItemMainhand().getItem() instanceof ItemBow; + return this.entity.getHeldItemMainhand().getItem() instanceof BowItem; } /** @@ -68,7 +68,7 @@ public class EntityAIAttackRangedBow extends EntityAIBase { * Updates the task */ public void updateTask() { - EntityLivingBase entitylivingbase = this.entity.getAttackTarget(); + LivingEntity entitylivingbase = this.entity.getAttackTarget(); if (entitylivingbase != null) { double d0 = this.entity.getDistanceSq(entitylivingbase.posX, entitylivingbase.getEntityBoundingBox().minY, entitylivingbase.posZ); @@ -126,12 +126,12 @@ public class EntityAIAttackRangedBow extends EntityAIBase { if (i >= 20) { this.entity.resetActiveHand(); - this.entity.attackEntityWithRangedAttack(entitylivingbase, ItemBow.getArrowVelocity(i)); + this.entity.attackEntityWithRangedAttack(entitylivingbase, BowItem.getArrowVelocity(i)); this.attackTime = this.attackCooldown; } } } else if (--this.attackTime <= 0 && this.seeTime >= -60) { - this.entity.setActiveHand(EnumHand.MAIN_HAND); + this.entity.setActiveHand(Hand.MAIN_HAND); } } } diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackStealthMelee.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackStealthMelee.java index 0a2df18c..08ecf2d4 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackStealthMelee.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIAttackStealthMelee.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityCorruptedChicken; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.pathfinding.Path; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.world.World; -public class EntityAIAttackStealthMelee extends EntityAIBase { +public class EntityAIAttackStealthMelee extends Goal { protected final int attackInterval = 20; protected EntityCorruptedChicken chicken; /** @@ -50,7 +50,7 @@ public class EntityAIAttackStealthMelee extends EntityAIBase { return false; } - EntityLivingBase entitylivingbase = this.chicken.getAttackTarget(); + LivingEntity entitylivingbase = this.chicken.getAttackTarget(); if (entitylivingbase == null) { return false; @@ -85,7 +85,7 @@ public class EntityAIAttackStealthMelee extends EntityAIBase { @Override public void updateTask() { - EntityLivingBase entitylivingbase = this.chicken.getAttackTarget(); + LivingEntity entitylivingbase = this.chicken.getAttackTarget(); this.chicken.getLookHelper().setLookPositionWithEntity(entitylivingbase, 30.0F, 30.0F); double d0 = this.chicken.getDistanceSq(entitylivingbase.posX, entitylivingbase.getEntityBoundingBox().minY, entitylivingbase.posZ); --this.delayCounter; @@ -124,19 +124,19 @@ public class EntityAIAttackStealthMelee extends EntityAIBase { this.attackEntity(entitylivingbase, d0); } - protected void attackEntity(EntityLivingBase attacked, double distance) { + protected void attackEntity(LivingEntity attacked, double distance) { double d0 = this.getAttackReachSqr(attacked); if (distance <= d0 && this.attackTick <= 0) { this.attackTick = 20; - this.chicken.swingArm(EnumHand.MAIN_HAND); + this.chicken.swingArm(Hand.MAIN_HAND); this.chicken.attackEntityAsMob(attacked); chicken.attackStateMachine = 2; } } - protected double getAttackReachSqr(EntityLivingBase attackTarget) { + protected double getAttackReachSqr(LivingEntity attackTarget) { return (double) (this.chicken.width * 2.0F * this.chicken.width * 2.0F + attackTarget.width); } } diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIEatAndCorruptBlock.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIEatAndCorruptBlock.java index a7718a6b..0f6d167a 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIEatAndCorruptBlock.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIEatAndCorruptBlock.java @@ -3,12 +3,12 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityAspectedDemonBase; import WayofTime.bloodmagic.inversion.CorruptionHandler; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.block.BlockState; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; -public class EntityAIEatAndCorruptBlock extends EntityAIBase { +public class EntityAIEatAndCorruptBlock extends Goal { /** * The entity owner of this AITask */ @@ -36,7 +36,7 @@ public class EntityAIEatAndCorruptBlock extends EntityAIBase { return false; } else { BlockPos pos = new BlockPos(this.grassEaterEntity.posX, this.grassEaterEntity.posY, this.grassEaterEntity.posZ).down(); - IBlockState offsetState = world.getBlockState(pos); + BlockState offsetState = world.getBlockState(pos); Block offsetBlock = offsetState.getBlock(); return CorruptionHandler.isBlockCorruptible(world, grassEaterEntity.getType(), pos, offsetState, offsetBlock); } @@ -82,7 +82,7 @@ public class EntityAIEatAndCorruptBlock extends EntityAIBase { BlockPos blockpos = new BlockPos(this.grassEaterEntity.posX, this.grassEaterEntity.posY, this.grassEaterEntity.posZ); BlockPos offsetPos = blockpos.down(); - IBlockState offsetState = world.getBlockState(offsetPos); + BlockState offsetState = world.getBlockState(offsetPos); Block offsetBlock = offsetState.getBlock(); if (CorruptionHandler.isBlockCorruptible(world, grassEaterEntity.getType(), offsetPos, offsetState, offsetBlock)) { diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIFollowOwner.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIFollowOwner.java index cd82198d..6fe42c3b 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIFollowOwner.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIFollowOwner.java @@ -2,26 +2,26 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityDemonBase; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.pathfinding.PathNavigate; -import net.minecraft.pathfinding.PathNavigateGround; +import net.minecraft.block.BlockState; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.pathfinding.GroundPathNavigator; +import net.minecraft.pathfinding.PathNavigator; import net.minecraft.pathfinding.PathNodeType; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; -public class EntityAIFollowOwner extends EntityAIBase { +public class EntityAIFollowOwner extends Goal { World theWorld; float maxDist; float minDist; private EntityDemonBase thePet; - private EntityLivingBase theOwner; + private LivingEntity theOwner; private double followSpeed; - private PathNavigate petPathfinder; + private PathNavigator petPathfinder; private int timeToRecalcPath; private float oldWaterCost; @@ -34,7 +34,7 @@ public class EntityAIFollowOwner extends EntityAIBase { this.maxDist = maxDistIn; this.setMutexBits(3); - if (!(thePetIn.getNavigator() instanceof PathNavigateGround)) { + if (!(thePetIn.getNavigator() instanceof GroundPathNavigator)) { throw new IllegalArgumentException("Unsupported mob type for FollowOwnerGoal"); } } @@ -43,11 +43,11 @@ public class EntityAIFollowOwner extends EntityAIBase { * Returns whether the EntityAIBase should begin execution. */ public boolean shouldExecute() { - EntityLivingBase entitylivingbase = this.thePet.getOwner(); + LivingEntity entitylivingbase = this.thePet.getOwner(); if (entitylivingbase == null) { return false; - } else if (entitylivingbase instanceof EntityPlayer && ((EntityPlayer) entitylivingbase).isSpectator()) { + } else if (entitylivingbase instanceof PlayerEntity && ((PlayerEntity) entitylivingbase).isSpectator()) { return false; } else if (this.thePet.isStationary()) { return false; @@ -85,7 +85,7 @@ public class EntityAIFollowOwner extends EntityAIBase { } private boolean isEmptyBlock(BlockPos pos) { - IBlockState iblockstate = this.theWorld.getBlockState(pos); + BlockState iblockstate = this.theWorld.getBlockState(pos); Block block = iblockstate.getBlock(); return block == Blocks.AIR || !iblockstate.isFullCube(); } diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIGrabEffectsFromOwner.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIGrabEffectsFromOwner.java index 3b42eec1..83092001 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIGrabEffectsFromOwner.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIGrabEffectsFromOwner.java @@ -2,25 +2,25 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntitySentientSpecter; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.pathfinding.PathNavigate; -import net.minecraft.pathfinding.PathNavigateGround; +import net.minecraft.block.BlockState; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.pathfinding.PathNavigator; +import net.minecraft.pathfinding.GroundPathNavigator; import net.minecraft.pathfinding.PathNodeType; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; -public class EntityAIGrabEffectsFromOwner extends EntityAIBase { +public class EntityAIGrabEffectsFromOwner extends Goal { World theWorld; float minDist; private EntitySentientSpecter thePet; - private EntityLivingBase theOwner; + private LivingEntity theOwner; private double followSpeed; - private PathNavigate petPathfinder; + private PathNavigator petPathfinder; private int timeToRecalcPath; private float oldWaterCost; @@ -36,7 +36,7 @@ public class EntityAIGrabEffectsFromOwner extends EntityAIBase { this.minDist = minDistIn; this.setMutexBits(3); - if (!(thePetIn.getNavigator() instanceof PathNavigateGround)) { + if (!(thePetIn.getNavigator() instanceof GroundPathNavigator)) { throw new IllegalArgumentException("Unsupported mob type for FollowOwnerGoal"); } } @@ -45,11 +45,11 @@ public class EntityAIGrabEffectsFromOwner extends EntityAIBase { * Returns whether the EntityAIBase should begin execution. */ public boolean shouldExecute() { - EntityLivingBase entitylivingbase = this.thePet.getOwner(); + LivingEntity entitylivingbase = this.thePet.getOwner(); if (entitylivingbase == null) { return false; - } else if (entitylivingbase instanceof EntityPlayer && ((EntityPlayer) entitylivingbase).isSpectator()) { + } else if (entitylivingbase instanceof PlayerEntity && ((PlayerEntity) entitylivingbase).isSpectator()) { return false; } else if (this.thePet.isStationary()) { return false; @@ -90,7 +90,7 @@ public class EntityAIGrabEffectsFromOwner extends EntityAIBase { } private boolean isEmptyBlock(BlockPos pos) { - IBlockState iblockstate = this.theWorld.getBlockState(pos); + BlockState iblockstate = this.theWorld.getBlockState(pos); Block block = iblockstate.getBlock(); return block == Blocks.AIR || !iblockstate.isFullCube(); } diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIHurtByTargetIgnoreTamed.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIHurtByTargetIgnoreTamed.java index 371ed1be..44690ec5 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIHurtByTargetIgnoreTamed.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIHurtByTargetIgnoreTamed.java @@ -1,19 +1,19 @@ package WayofTime.bloodmagic.entity.ai; -import net.minecraft.entity.EntityCreature; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.CreatureEntity; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.IEntityOwnable; -import net.minecraft.entity.ai.EntityAIHurtByTarget; +import net.minecraft.entity.ai.goal.HurtByTargetGoal; import java.util.UUID; -public class EntityAIHurtByTargetIgnoreTamed extends EntityAIHurtByTarget { - public EntityAIHurtByTargetIgnoreTamed(EntityCreature creatureIn, boolean entityCallsForHelpIn, Class... targetClassesIn) { +public class EntityAIHurtByTargetIgnoreTamed extends HurtByTargetGoal { + public EntityAIHurtByTargetIgnoreTamed(CreatureEntity creatureIn, boolean entityCallsForHelpIn, Class... targetClassesIn) { super(creatureIn, true, targetClassesIn); } @Override - public boolean isSuitableTarget(EntityLivingBase target, boolean includeInvincibles) { + public boolean isSuitableTarget(LivingEntity target, boolean includeInvincibles) { if (this.taskOwner instanceof IEntityOwnable && target instanceof IEntityOwnable) { UUID thisId = ((IEntityOwnable) this.taskOwner).getOwnerId(); UUID targetId = ((IEntityOwnable) target).getOwnerId(); diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIMimicReform.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIMimicReform.java index cf35ee3b..787dcaec 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIMimicReform.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIMimicReform.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityMimic; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.util.math.BlockPos; -public class EntityAIMimicReform extends EntityAIBase { +public class EntityAIMimicReform extends Goal { private final EntityMimic theEntity; public EntityAIMimicReform(EntityMimic creatureIn) { diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtByTarget.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtByTarget.java index 42bfb5fa..371c3b4c 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtByTarget.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtByTarget.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityDemonBase; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAITarget; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.TargetGoal; -public class EntityAIOwnerHurtByTarget extends EntityAITarget { +public class EntityAIOwnerHurtByTarget extends TargetGoal { EntityDemonBase theDefendingTameable; - EntityLivingBase theOwnerAttacker; + LivingEntity theOwnerAttacker; private int timestamp; public EntityAIOwnerHurtByTarget(EntityDemonBase theDefendingTameableIn) { @@ -22,7 +22,7 @@ public class EntityAIOwnerHurtByTarget extends EntityAITarget { if (!this.theDefendingTameable.isTamed()) { return false; } else { - EntityLivingBase owner = this.theDefendingTameable.getOwner(); + LivingEntity owner = this.theDefendingTameable.getOwner(); if (owner == null) { return false; @@ -39,7 +39,7 @@ public class EntityAIOwnerHurtByTarget extends EntityAITarget { */ public void startExecuting() { this.taskOwner.setAttackTarget(this.theOwnerAttacker); - EntityLivingBase owner = this.theDefendingTameable.getOwner(); + LivingEntity owner = this.theDefendingTameable.getOwner(); if (owner != null) { this.timestamp = owner.getRevengeTimer(); diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtTarget.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtTarget.java index 20ee7204..61433ccd 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtTarget.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIOwnerHurtTarget.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityDemonBase; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAITarget; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.TargetGoal; -public class EntityAIOwnerHurtTarget extends EntityAITarget { +public class EntityAIOwnerHurtTarget extends TargetGoal { EntityDemonBase theEntityDemonBase; - EntityLivingBase theTarget; + LivingEntity theTarget; private int timestamp; public EntityAIOwnerHurtTarget(EntityDemonBase theEntityDemonBaseIn) { @@ -22,7 +22,7 @@ public class EntityAIOwnerHurtTarget extends EntityAITarget { if (!this.theEntityDemonBase.isTamed()) { return false; } else { - EntityLivingBase entitylivingbase = this.theEntityDemonBase.getOwner(); + LivingEntity entitylivingbase = this.theEntityDemonBase.getOwner(); if (entitylivingbase == null) { return false; @@ -39,7 +39,7 @@ public class EntityAIOwnerHurtTarget extends EntityAITarget { */ public void startExecuting() { this.taskOwner.setAttackTarget(this.theTarget); - EntityLivingBase entitylivingbase = this.theEntityDemonBase.getOwner(); + LivingEntity entitylivingbase = this.theEntityDemonBase.getOwner(); if (entitylivingbase != null) { this.timestamp = entitylivingbase.getLastAttackedEntityTime(); diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIPickUpAlly.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIPickUpAlly.java index eb69d601..77e9f9d9 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIPickUpAlly.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIPickUpAlly.java @@ -2,15 +2,15 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityAspectedDemonBase; import WayofTime.bloodmagic.util.BMLog; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.pathfinding.Path; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.world.World; import java.util.List; -public class EntityAIPickUpAlly extends EntityAIBase { +public class EntityAIPickUpAlly extends Goal { protected final int attackInterval = 20; protected EntityAspectedDemonBase entity; /** @@ -39,7 +39,7 @@ public class EntityAIPickUpAlly extends EntityAIBase { private int failedPathFindingPenalty = 0; private boolean canPenalize = false; - private EntityLivingBase pickupTarget = null; + private LivingEntity pickupTarget = null; public EntityAIPickUpAlly(EntityAspectedDemonBase creature, double speedIn, boolean useLongMemory) { this.entity = creature; @@ -58,8 +58,8 @@ public class EntityAIPickUpAlly extends EntityAIBase { } AxisAlignedBB bb = new AxisAlignedBB(entity.posX - 0.5, entity.posY - 0.5, entity.posZ - 0.5, entity.posX + 0.5, entity.posY + 0.5, entity.posZ + 0.5).grow(5); - List list = this.entity.getEntityWorld().getEntitiesWithinAABB(EntityLivingBase.class, bb, new EntityAspectedDemonBase.WillTypePredicate(entity.getType())); - for (EntityLivingBase testEntity : list) { + List list = this.entity.getEntityWorld().getEntitiesWithinAABB(LivingEntity.class, bb, new EntityAspectedDemonBase.WillTypePredicate(entity.getType())); + for (LivingEntity testEntity : list) { if (testEntity != this.entity) { Path path = this.entity.getNavigator().getPathToEntityLiving(testEntity); if (path != null) { @@ -100,7 +100,7 @@ public class EntityAIPickUpAlly extends EntityAIBase { * Updates the task */ public void updateTask() { - EntityLivingBase entitylivingbase = this.pickupTarget; + LivingEntity entitylivingbase = this.pickupTarget; this.entity.getLookHelper().setLookPositionWithEntity(entitylivingbase, 30.0F, 30.0F); double d0 = this.entity.getDistanceSq(entitylivingbase.posX, entitylivingbase.getEntityBoundingBox().minY, entitylivingbase.posZ); --this.delayCounter; @@ -139,7 +139,7 @@ public class EntityAIPickUpAlly extends EntityAIBase { this.pickUpEntity(entitylivingbase, d0); } - protected void pickUpEntity(EntityLivingBase potentialPickup, double distance) { + protected void pickUpEntity(LivingEntity potentialPickup, double distance) { double d0 = this.getAttackReachSqr(potentialPickup); if (distance <= d0 && this.attackTick <= 0 && !potentialPickup.isRiding()) { @@ -148,7 +148,7 @@ public class EntityAIPickUpAlly extends EntityAIBase { } } - protected double getAttackReachSqr(EntityLivingBase attackTarget) { + protected double getAttackReachSqr(LivingEntity attackTarget) { return (double) (this.entity.width * 2.0F * this.entity.width * 2.0F + attackTarget.width); } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIProtectAlly.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIProtectAlly.java index d831c487..5f7b7981 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIProtectAlly.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIProtectAlly.java @@ -2,14 +2,14 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityAspectedDemonBase; import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.world.World; import java.util.List; -public class EntityAIProtectAlly extends EntityAIBase { +public class EntityAIProtectAlly extends Goal { /** * The entity owner of this AITask */ @@ -39,8 +39,8 @@ public class EntityAIProtectAlly extends EntityAIBase { @Override public boolean shouldExecute() { AxisAlignedBB bb = new AxisAlignedBB(entity.posX - 0.5, entity.posY - 0.5, entity.posZ - 0.5, entity.posX + 0.5, entity.posY + 0.5, entity.posZ + 0.5).grow(5); - List list = world.getEntitiesWithinAABB(EntityLivingBase.class, bb, new EntityAspectedDemonBase.WillTypePredicate(entity.getType())); - for (EntityLivingBase testEntity : list) { + List list = world.getEntitiesWithinAABB(LivingEntity.class, bb, new EntityAspectedDemonBase.WillTypePredicate(entity.getType())); + for (LivingEntity testEntity : list) { if (testEntity != this.entity) { if (this.entity.canProtectAlly(testEntity)) { return true; @@ -85,8 +85,8 @@ public class EntityAIProtectAlly extends EntityAIBase { this.castTimer = Math.max(0, this.castTimer - 1); if (castTimer == 0) { AxisAlignedBB bb = new AxisAlignedBB(entity.posX - 0.5, entity.posY - 0.5, entity.posZ - 0.5, entity.posX + 0.5, entity.posY + 0.5, entity.posZ + 0.5).grow(5); - List list = world.getEntitiesWithinAABB(EntityLivingBase.class, bb, new EntityAspectedDemonBase.WillTypePredicate(entity.getType())); - for (EntityLivingBase testEntity : list) { + List list = world.getEntitiesWithinAABB(LivingEntity.class, bb, new EntityAspectedDemonBase.WillTypePredicate(entity.getType())); + for (LivingEntity testEntity : list) { if (testEntity != this.entity) { if (this.entity.applyProtectionToAlly(testEntity)) { return; diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIRetreatToHeal.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIRetreatToHeal.java index a2468fbe..76d47389 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIRetreatToHeal.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIRetreatToHeal.java @@ -4,16 +4,16 @@ import WayofTime.bloodmagic.entity.mob.EntityDemonBase; import com.google.common.base.Predicate; import com.google.common.base.Predicates; import net.minecraft.entity.Entity; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.entity.ai.RandomPositionGenerator; import net.minecraft.pathfinding.Path; -import net.minecraft.pathfinding.PathNavigate; -import net.minecraft.util.EntitySelectors; +import net.minecraft.pathfinding.PathNavigator; +import net.minecraft.util.EntityPredicates; import net.minecraft.util.math.Vec3d; import java.util.List; -public class EntityAIRetreatToHeal extends EntityAIBase { +public class EntityAIRetreatToHeal extends Goal { private final Predicate canBeSeenSelector; /** * The entity we are attached to @@ -31,7 +31,7 @@ public class EntityAIRetreatToHeal extends EntityAIBase { /** * The PathNavigate of our entity */ - private PathNavigate entityPathNavigate; + private PathNavigator entityPathNavigate; private Class classToAvoid; private Predicate avoidTargetSelector; @@ -61,7 +61,7 @@ public class EntityAIRetreatToHeal extends EntityAIBase { } //This part almost doesn't matter - List list = this.theEntity.getEntityWorld().getEntitiesWithinAABB(this.classToAvoid, this.theEntity.getEntityBoundingBox().expand((double) this.avoidDistance, 3.0D, (double) this.avoidDistance), Predicates.and(EntitySelectors.CAN_AI_TARGET, this.canBeSeenSelector, this.avoidTargetSelector)); + List list = this.theEntity.getEntityWorld().getEntitiesWithinAABB(this.classToAvoid, this.theEntity.getEntityBoundingBox().expand((double) this.avoidDistance, 3.0D, (double) this.avoidDistance), Predicates.and(EntityPredicates.CAN_AI_TARGET, this.canBeSeenSelector, this.avoidTargetSelector)); if (list.isEmpty()) { return true; //No entities nearby, so I can freely heal diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthRetreat.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthRetreat.java index 51600496..43d4e275 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthRetreat.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthRetreat.java @@ -1,21 +1,21 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityCorruptedChicken; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.entity.ai.RandomPositionGenerator; import net.minecraft.pathfinding.Path; -import net.minecraft.pathfinding.PathNavigate; +import net.minecraft.pathfinding.PathNavigator; import net.minecraft.util.math.Vec3d; -public class EntityAIStealthRetreat extends EntityAIBase { +public class EntityAIStealthRetreat extends Goal { private final double farSpeed; private final double nearSpeed; private final float avoidDistance; /** * The PathNavigate of our entity */ - private final PathNavigate entityPathNavigate; + private final PathNavigator entityPathNavigate; /** * The entity we are attached to */ @@ -38,7 +38,7 @@ public class EntityAIStealthRetreat extends EntityAIBase { @Override public boolean shouldExecute() { if (this.entity.attackStateMachine == 2) { - EntityLivingBase attacked = this.entity.getAttackTarget(); + LivingEntity attacked = this.entity.getAttackTarget(); if (attacked == null) { return false; } diff --git a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthTowardsTarget.java b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthTowardsTarget.java index 74dd9ba6..7e25dd39 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthTowardsTarget.java +++ b/src/main/java/WayofTime/bloodmagic/entity/ai/EntityAIStealthTowardsTarget.java @@ -1,13 +1,13 @@ package WayofTime.bloodmagic.entity.ai; import WayofTime.bloodmagic.entity.mob.EntityCorruptedChicken; -import net.minecraft.entity.EntityCreature; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIBase; +import net.minecraft.entity.CreatureEntity; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; import net.minecraft.entity.ai.RandomPositionGenerator; import net.minecraft.util.math.Vec3d; -public class EntityAIStealthTowardsTarget extends EntityAIBase { +public class EntityAIStealthTowardsTarget extends Goal { private final EntityCorruptedChicken entity; private final double speed; private double xPosition; @@ -27,10 +27,10 @@ public class EntityAIStealthTowardsTarget extends EntityAIBase { return false; } - EntityLivingBase target = this.entity.getAttackTarget(); + LivingEntity target = this.entity.getAttackTarget(); Vec3d vec3d = null; - if (target instanceof EntityCreature) { - vec3d = RandomPositionGenerator.findRandomTarget((EntityCreature) target, 10, 7); + if (target instanceof CreatureEntity) { + vec3d = RandomPositionGenerator.findRandomTarget((CreatureEntity) target, 10, 7); } else { vec3d = RandomPositionGenerator.findRandomTarget(this.entity, 10, 7); } @@ -61,10 +61,10 @@ public class EntityAIStealthTowardsTarget extends EntityAIBase { this.entity.cloak(); if (this.entity.getNavigator().noPath()) { - EntityLivingBase target = this.entity.getAttackTarget(); + LivingEntity target = this.entity.getAttackTarget(); Vec3d vec3d; - if (target instanceof EntityCreature) { - vec3d = RandomPositionGenerator.findRandomTarget((EntityCreature) target, 10, 7); + if (target instanceof CreatureEntity) { + vec3d = RandomPositionGenerator.findRandomTarget((CreatureEntity) target, 10, 7); } else { vec3d = RandomPositionGenerator.findRandomTarget(this.entity, 10, 7); } diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityAspectedDemonBase.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityAspectedDemonBase.java index 47f9cf1d..d47c1e68 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityAspectedDemonBase.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityAspectedDemonBase.java @@ -4,9 +4,9 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.gson.Serializers; import com.google.common.base.Predicate; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.EntityDataManager; import net.minecraft.util.DamageSource; @@ -182,14 +182,14 @@ public abstract class EntityAspectedDemonBase extends EntityDemonBase { } @Override - public void writeEntityToNBT(NBTTagCompound tag) { + public void writeEntityToNBT(CompoundNBT tag) { super.writeEntityToNBT(tag); tag.setString(Constants.NBT.WILL_TYPE, this.getType().toString()); } @Override - public void readEntityFromNBT(NBTTagCompound tag) { + public void readEntityFromNBT(CompoundNBT tag) { super.readEntityFromNBT(tag); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { @@ -200,7 +200,7 @@ public abstract class EntityAspectedDemonBase extends EntityDemonBase { } //Returns true if the inputted mob is on the same team. - public static class WillTypePredicate implements Predicate { + public static class WillTypePredicate implements Predicate { private final EnumDemonWillType type; public WillTypePredicate(EnumDemonWillType type) { @@ -209,7 +209,7 @@ public abstract class EntityAspectedDemonBase extends EntityDemonBase { //Returns true if this mob is the same type. @Override - public boolean apply(EntityLivingBase input) { + public boolean apply(LivingEntity input) { if (input instanceof EntityAspectedDemonBase) { if (((EntityAspectedDemonBase) input).getType() == type) { return true; @@ -220,7 +220,7 @@ public abstract class EntityAspectedDemonBase extends EntityDemonBase { } } - public class TeamAttackPredicate implements Predicate { + public class TeamAttackPredicate implements Predicate { private final EntityAspectedDemonBase demon; public TeamAttackPredicate(EntityAspectedDemonBase demon) { @@ -229,7 +229,7 @@ public abstract class EntityAspectedDemonBase extends EntityDemonBase { //Returns true if this mob can attack the inputted mob. @Override - public boolean apply(EntityLivingBase input) { + public boolean apply(LivingEntity input) { if (input instanceof EntityAspectedDemonBase) { if (((EntityAspectedDemonBase) input).getType() == demon.getType()) { return false; diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedChicken.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedChicken.java index 450bb4f9..1ea7e265 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedChicken.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedChicken.java @@ -6,15 +6,15 @@ import WayofTime.bloodmagic.entity.ai.EntityAIStealthRetreat; import WayofTime.bloodmagic.entity.ai.EntityAIStealthTowardsTarget; import net.minecraft.block.Block; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.*; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Items; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.*; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Items; +import net.minecraft.potion.Effects; +import net.minecraft.util.SoundEvents; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.pathfinding.PathNodeType; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; @@ -55,16 +55,16 @@ public class EntityCorruptedChicken extends EntityAspectedDemonBase { } protected void initEntityAI() { - this.tasks.addTask(0, new EntityAISwimming(this)); + this.tasks.addTask(0, new SwimGoal(this)); // this.tasks.addTask(1, new EntityAIPanic(this, 1.4D)); this.tasks.addTask(attackPriority, new EntityAIStealthTowardsTarget(this, 1)); this.tasks.addTask(attackPriority, new EntityAIStealthRetreat(this, 6.0F, 1.4D, 1.4D)); - this.tasks.addTask(5, new EntityAIWander(this, 1.0D)); - this.tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F)); - this.tasks.addTask(7, new EntityAILookIdle(this)); + this.tasks.addTask(5, new RandomWalkingGoal(this, 1.0D)); + this.tasks.addTask(6, new LookAtGoal(this, PlayerEntity.class, 6.0F)); + this.tasks.addTask(7, new LookRandomlyGoal(this)); - this.targetTasks.addTask(1, new EntityAINearestAttackableTarget<>(this, EntityPlayer.class, true)); - this.targetTasks.addTask(2, new EntityAINearestAttackableTarget<>(this, EntityLivingBase.class, 10, true, false, new EntityAspectedDemonBase.TeamAttackPredicate(this))); + this.targetTasks.addTask(1, new NearestAttackableTargetGoal<>(this, PlayerEntity.class, true)); + this.targetTasks.addTask(2, new NearestAttackableTargetGoal<>(this, LivingEntity.class, 10, true, false, new EntityAspectedDemonBase.TeamAttackPredicate(this))); } @Override @@ -78,7 +78,7 @@ public class EntityCorruptedChicken extends EntityAspectedDemonBase { } public void cloak() { - this.addPotionEffect(new PotionEffect(MobEffects.INVISIBILITY, 50, 0, false, false)); + this.addPotionEffect(new EffectInstance(Effects.INVISIBILITY, 50, 0, false, false)); } @Override @@ -172,7 +172,7 @@ public class EntityCorruptedChicken extends EntityAspectedDemonBase { } @Override - public void readEntityFromNBT(NBTTagCompound compound) { + public void readEntityFromNBT(CompoundNBT compound) { super.readEntityFromNBT(compound); if (compound.hasKey("EggLayTime")) { @@ -181,7 +181,7 @@ public class EntityCorruptedChicken extends EntityAspectedDemonBase { } @Override - public void writeEntityToNBT(NBTTagCompound compound) { + public void writeEntityToNBT(CompoundNBT compound) { super.writeEntityToNBT(compound); compound.setInteger("EggLayTime", this.timeUntilNextEgg); } @@ -195,8 +195,8 @@ public class EntityCorruptedChicken extends EntityAspectedDemonBase { float f3 = 0.0F; passenger.setPosition(this.posX + (double) (0.1F * f), this.posY + (double) (this.height * 0.5F) + passenger.getYOffset() + 0.0D, this.posZ - (double) (0.1F * f1)); - if (passenger instanceof EntityLivingBase) { - ((EntityLivingBase) passenger).renderYawOffset = this.renderYawOffset; + if (passenger instanceof LivingEntity) { + ((LivingEntity) passenger).renderYawOffset = this.renderYawOffset; } } } diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSheep.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSheep.java index bd12e3e9..621b1a63 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSheep.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSheep.java @@ -5,21 +5,21 @@ import WayofTime.bloodmagic.entity.ai.EntityAIEatAndCorruptBlock; import WayofTime.bloodmagic.entity.ai.EntityAIProtectAlly; import com.google.common.collect.Maps; import net.minecraft.block.Block; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.IEntityLivingData; -import net.minecraft.entity.ai.*; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; -import net.minecraft.item.EnumDyeColor; +import net.minecraft.entity.ILivingEntityData; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.*; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.item.DyeColor; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; +import net.minecraft.util.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; @@ -38,26 +38,26 @@ import java.util.Random; public class EntityCorruptedSheep extends EntityAspectedDemonBase implements IShearable { private static final DataParameter DYE_COLOR = EntityDataManager.createKey(EntityCorruptedSheep.class, DataSerializers.BYTE); - private static final Map DYE_TO_RGB = Maps.newEnumMap(EnumDyeColor.class); + private static final Map DYE_TO_RGB = Maps.newEnumMap(DyeColor.class); public static int maxProtectionCooldown = 90 * 20; //90 second cooldown static { - DYE_TO_RGB.put(EnumDyeColor.WHITE, new float[]{1.0F, 1.0F, 1.0F}); - DYE_TO_RGB.put(EnumDyeColor.ORANGE, new float[]{0.85F, 0.5F, 0.2F}); - DYE_TO_RGB.put(EnumDyeColor.MAGENTA, new float[]{0.7F, 0.3F, 0.85F}); - DYE_TO_RGB.put(EnumDyeColor.LIGHT_BLUE, new float[]{0.4F, 0.6F, 0.85F}); - DYE_TO_RGB.put(EnumDyeColor.YELLOW, new float[]{0.9F, 0.9F, 0.2F}); - DYE_TO_RGB.put(EnumDyeColor.LIME, new float[]{0.5F, 0.8F, 0.1F}); - DYE_TO_RGB.put(EnumDyeColor.PINK, new float[]{0.95F, 0.5F, 0.65F}); - DYE_TO_RGB.put(EnumDyeColor.GRAY, new float[]{0.3F, 0.3F, 0.3F}); - DYE_TO_RGB.put(EnumDyeColor.SILVER, new float[]{0.6F, 0.6F, 0.6F}); - DYE_TO_RGB.put(EnumDyeColor.CYAN, new float[]{0.3F, 0.5F, 0.6F}); - DYE_TO_RGB.put(EnumDyeColor.PURPLE, new float[]{0.5F, 0.25F, 0.7F}); - DYE_TO_RGB.put(EnumDyeColor.BLUE, new float[]{0.2F, 0.3F, 0.7F}); - DYE_TO_RGB.put(EnumDyeColor.BROWN, new float[]{0.4F, 0.3F, 0.2F}); - DYE_TO_RGB.put(EnumDyeColor.GREEN, new float[]{0.4F, 0.5F, 0.2F}); - DYE_TO_RGB.put(EnumDyeColor.RED, new float[]{0.6F, 0.2F, 0.2F}); - DYE_TO_RGB.put(EnumDyeColor.BLACK, new float[]{0.1F, 0.1F, 0.1F}); + DYE_TO_RGB.put(DyeColor.WHITE, new float[]{1.0F, 1.0F, 1.0F}); + DYE_TO_RGB.put(DyeColor.ORANGE, new float[]{0.85F, 0.5F, 0.2F}); + DYE_TO_RGB.put(DyeColor.MAGENTA, new float[]{0.7F, 0.3F, 0.85F}); + DYE_TO_RGB.put(DyeColor.LIGHT_BLUE, new float[]{0.4F, 0.6F, 0.85F}); + DYE_TO_RGB.put(DyeColor.YELLOW, new float[]{0.9F, 0.9F, 0.2F}); + DYE_TO_RGB.put(DyeColor.LIME, new float[]{0.5F, 0.8F, 0.1F}); + DYE_TO_RGB.put(DyeColor.PINK, new float[]{0.95F, 0.5F, 0.65F}); + DYE_TO_RGB.put(DyeColor.GRAY, new float[]{0.3F, 0.3F, 0.3F}); + DYE_TO_RGB.put(DyeColor.SILVER, new float[]{0.6F, 0.6F, 0.6F}); + DYE_TO_RGB.put(DyeColor.CYAN, new float[]{0.3F, 0.5F, 0.6F}); + DYE_TO_RGB.put(DyeColor.PURPLE, new float[]{0.5F, 0.25F, 0.7F}); + DYE_TO_RGB.put(DyeColor.BLUE, new float[]{0.2F, 0.3F, 0.7F}); + DYE_TO_RGB.put(DyeColor.BROWN, new float[]{0.4F, 0.3F, 0.2F}); + DYE_TO_RGB.put(DyeColor.GREEN, new float[]{0.4F, 0.5F, 0.2F}); + DYE_TO_RGB.put(DyeColor.RED, new float[]{0.6F, 0.2F, 0.2F}); + DYE_TO_RGB.put(DyeColor.BLACK, new float[]{0.1F, 0.1F, 0.1F}); } private final int attackPriority = 3; @@ -70,7 +70,7 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh private int castTimer = 0; private EntityAIEatAndCorruptBlock entityAIEatGrass; private EntityAIProtectAlly entityAIProtectAlly; - private EntityAIAttackMelee aiAttackOnCollide; + private MeleeAttackGoal aiAttackOnCollide; public EntityCorruptedSheep(World world) { this(world, EnumDemonWillType.DEFAULT); @@ -87,15 +87,15 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh this.entityAIEatGrass = new EntityAIEatAndCorruptBlock(this); this.entityAIProtectAlly = new EntityAIProtectAlly(this); - this.tasks.addTask(0, new EntityAISwimming(this)); + this.tasks.addTask(0, new SwimGoal(this)); this.tasks.addTask(2, entityAIProtectAlly); this.tasks.addTask(5, this.entityAIEatGrass); - this.tasks.addTask(6, new EntityAIWander(this, 1.0D)); - this.tasks.addTask(7, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F)); - this.tasks.addTask(8, new EntityAILookIdle(this)); + this.tasks.addTask(6, new RandomWalkingGoal(this, 1.0D)); + this.tasks.addTask(7, new LookAtGoal(this, PlayerEntity.class, 6.0F)); + this.tasks.addTask(8, new LookRandomlyGoal(this)); - this.targetTasks.addTask(1, new EntityAINearestAttackableTarget<>(this, EntityPlayer.class, true)); - this.targetTasks.addTask(2, new EntityAINearestAttackableTarget<>(this, EntityLivingBase.class, 10, true, false, new EntityAspectedDemonBase.TeamAttackPredicate(this))); + this.targetTasks.addTask(1, new NearestAttackableTargetGoal<>(this, PlayerEntity.class, true)); + this.targetTasks.addTask(2, new NearestAttackableTargetGoal<>(this, LivingEntity.class, 10, true, false, new EntityAspectedDemonBase.TeamAttackPredicate(this))); } @Override @@ -104,7 +104,7 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh this.tasks.removeTask(aiAttackOnCollide); } - aiAttackOnCollide = new EntityAIAttackMelee(this, this.getBaseSprintModifier(getType()), false); + aiAttackOnCollide = new MeleeAttackGoal(this, this.getBaseSprintModifier(getType()), false); this.tasks.addTask(attackPriority, aiAttackOnCollide); } @@ -130,13 +130,13 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh super.onLivingUpdate(); } - public boolean canProtectAlly(EntityLivingBase entity) { - return this.protectionCooldown <= 0 && entity.getHealth() < entity.getMaxHealth() && !entity.isPotionActive(MobEffects.RESISTANCE); + public boolean canProtectAlly(LivingEntity entity) { + return this.protectionCooldown <= 0 && entity.getHealth() < entity.getMaxHealth() && !entity.isPotionActive(Effects.RESISTANCE); } - public boolean applyProtectionToAlly(EntityLivingBase entity) { + public boolean applyProtectionToAlly(LivingEntity entity) { if (canProtectAlly(entity)) { - entity.addPotionEffect(new PotionEffect(MobEffects.RESISTANCE, 20 * 20, 3)); + entity.addPotionEffect(new EffectInstance(Effects.RESISTANCE, 20 * 20, 3)); this.protectionCooldown = maxProtectionCooldown; } @@ -212,7 +212,7 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh } @Override - public void writeEntityToNBT(NBTTagCompound tag) { + public void writeEntityToNBT(CompoundNBT tag) { super.writeEntityToNBT(tag); tag.setBoolean("Sheared", this.getSheared()); tag.setByte("Color", (byte) this.getFleeceColor().getMetadata()); @@ -220,10 +220,10 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh } @Override - public void readEntityFromNBT(NBTTagCompound tag) { + public void readEntityFromNBT(CompoundNBT tag) { super.readEntityFromNBT(tag); this.setSheared(tag.getBoolean("Sheared")); - this.setFleeceColor(EnumDyeColor.byMetadata(tag.getByte("Color"))); + this.setFleeceColor(DyeColor.byMetadata(tag.getByte("Color"))); this.protectionCooldown = tag.getInteger("protection"); } @@ -255,14 +255,14 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh /** * Gets the wool color of this sheep. */ - public EnumDyeColor getFleeceColor() { - return EnumDyeColor.byMetadata(this.dataManager.get(DYE_COLOR) & 15); + public DyeColor getFleeceColor() { + return DyeColor.byMetadata(this.dataManager.get(DYE_COLOR) & 15); } /** * Sets the wool color of this sheep */ - public void setFleeceColor(EnumDyeColor color) { + public void setFleeceColor(DyeColor color) { byte b0 = this.dataManager.get(DYE_COLOR); this.dataManager.set(DYE_COLOR, (byte) (b0 & 240 | color.getMetadata() & 15)); } @@ -307,7 +307,7 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh * from nbt. Mainly used for initializing attributes and inventory */ @Override - public IEntityLivingData onInitialSpawn(DifficultyInstance difficulty, @Nullable IEntityLivingData livingdata) { + public ILivingEntityData onInitialSpawn(DifficultyInstance difficulty, @Nullable ILivingEntityData livingdata) { livingdata = super.onInitialSpawn(difficulty, livingdata); this.setFleeceColor(getRandomSheepColor(this.getEntityWorld().rand)); return livingdata; @@ -340,15 +340,15 @@ public class EntityCorruptedSheep extends EntityAspectedDemonBase implements ISh return castTimer; } - public static float[] getDyeRgb(EnumDyeColor dyeColor) { + public static float[] getDyeRgb(DyeColor dyeColor) { return DYE_TO_RGB.get(dyeColor); } /** * Chooses a "vanilla" sheep color based on the provided random. */ - public static EnumDyeColor getRandomSheepColor(Random random) { + public static DyeColor getRandomSheepColor(Random random) { int i = random.nextInt(100); - return i < 5 ? EnumDyeColor.BLACK : (i < 10 ? EnumDyeColor.GRAY : (i < 15 ? EnumDyeColor.SILVER : (i < 18 ? EnumDyeColor.BROWN : (random.nextInt(500) == 0 ? EnumDyeColor.PINK : EnumDyeColor.WHITE)))); + return i < 5 ? DyeColor.BLACK : (i < 10 ? DyeColor.GRAY : (i < 15 ? DyeColor.SILVER : (i < 18 ? DyeColor.BROWN : (random.nextInt(500) == 0 ? DyeColor.PINK : DyeColor.WHITE)))); } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSpider.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSpider.java index 589f6e72..1a35bddd 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSpider.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedSpider.java @@ -3,18 +3,18 @@ package WayofTime.bloodmagic.entity.mob; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.entity.ai.EntityAIPickUpAlly; import net.minecraft.block.Block; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.EnumCreatureAttribute; -import net.minecraft.entity.ai.*; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.ai.goal.*; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.pathfinding.ClimberPathNavigator; +import net.minecraft.pathfinding.PathNavigator; +import net.minecraft.potion.Effects; +import net.minecraft.util.SoundEvents; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; -import net.minecraft.pathfinding.PathNavigate; -import net.minecraft.pathfinding.PathNavigateClimber; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -34,17 +34,17 @@ public class EntityCorruptedSpider extends EntityAspectedDemonBase { } protected void initEntityAI() { - this.tasks.addTask(1, new EntityAISwimming(this)); - this.tasks.addTask(3, new EntityAILeapAtTarget(this, 0.4F)); + this.tasks.addTask(1, new SwimGoal(this)); + this.tasks.addTask(3, new LeapAtTargetGoal(this, 0.4F)); this.tasks.addTask(3, new EntityAIPickUpAlly(this, 1, true)); this.tasks.addTask(4, new EntityCorruptedSpider.AISpiderAttack(this)); - this.tasks.addTask(5, new EntityAIWander(this, 0.8D)); - this.tasks.addTask(6, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F)); - this.tasks.addTask(6, new EntityAILookIdle(this)); - this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false)); + this.tasks.addTask(5, new RandomWalkingGoal(this, 0.8D)); + this.tasks.addTask(6, new LookAtGoal(this, PlayerEntity.class, 8.0F)); + this.tasks.addTask(6, new LookRandomlyGoal(this)); + this.targetTasks.addTask(1, new HurtByTargetGoal(this, false)); - this.targetTasks.addTask(1, new EntityAINearestAttackableTarget<>(this, EntityPlayer.class, true)); - this.targetTasks.addTask(2, new EntityAINearestAttackableTarget<>(this, EntityLivingBase.class, 10, true, false, new EntityAspectedDemonBase.TeamAttackPredicate(this))); + this.targetTasks.addTask(1, new NearestAttackableTargetGoal<>(this, PlayerEntity.class, true)); + this.targetTasks.addTask(2, new NearestAttackableTargetGoal<>(this, LivingEntity.class, 10, true, false, new EntityAspectedDemonBase.TeamAttackPredicate(this))); } @Override @@ -78,8 +78,8 @@ public class EntityCorruptedSpider extends EntityAspectedDemonBase { } @Override - protected PathNavigate createNavigator(World worldIn) { - return new PathNavigateClimber(this, worldIn); + protected PathNavigator createNavigator(World worldIn) { + return new ClimberPathNavigator(this, worldIn); } @Override @@ -137,8 +137,8 @@ public class EntityCorruptedSpider extends EntityAspectedDemonBase { } @Override - public boolean isPotionApplicable(PotionEffect potioneffectIn) { - return potioneffectIn.getPotion() != MobEffects.POISON && super.isPotionApplicable(potioneffectIn); + public boolean isPotionApplicable(EffectInstance potioneffectIn) { + return potioneffectIn.getPotion() != Effects.POISON && super.isPotionApplicable(potioneffectIn); } public boolean isBesideClimbableBlock() { @@ -162,7 +162,7 @@ public class EntityCorruptedSpider extends EntityAspectedDemonBase { return 0.65F; } - static class AISpiderAttack extends EntityAIAttackMelee { + static class AISpiderAttack extends MeleeAttackGoal { public AISpiderAttack(EntityCorruptedSpider spider) { super(spider, 1.0D, true); } @@ -181,12 +181,12 @@ public class EntityCorruptedSpider extends EntityAspectedDemonBase { } } - protected double getAttackReachSqr(EntityLivingBase attackTarget) { + protected double getAttackReachSqr(LivingEntity attackTarget) { return (double) (4.0F + attackTarget.width); } } - static class AISpiderTarget extends EntityAINearestAttackableTarget { + static class AISpiderTarget extends NearestAttackableTargetGoal { public AISpiderTarget(EntityCorruptedSpider spider, Class classTarget) { super(spider, classTarget, true); } diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedZombie.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedZombie.java index f9927f48..cae520a3 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedZombie.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityCorruptedZombie.java @@ -4,27 +4,27 @@ import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.entity.ai.EntityAIAttackRangedBow; import net.minecraft.block.Block; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; -import net.minecraft.entity.ai.*; -import net.minecraft.entity.monster.EntityCreeper; -import net.minecraft.entity.monster.EntityGhast; -import net.minecraft.entity.monster.EntityIronGolem; -import net.minecraft.entity.monster.EntityPigZombie; -import net.minecraft.entity.passive.EntityVillager; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.SoundEvents; -import net.minecraft.item.ItemBow; +import net.minecraft.entity.ai.goal.*; +import net.minecraft.entity.monster.CreeperEntity; +import net.minecraft.entity.monster.GhastEntity; +import net.minecraft.entity.monster.ZombiePigmanEntity; +import net.minecraft.entity.passive.IronGolemEntity; +import net.minecraft.entity.merchant.villager.VillagerEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BowItem; +import net.minecraft.util.SoundEvents; import net.minecraft.item.ItemStack; import net.minecraft.util.DamageSource; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; public class EntityCorruptedZombie extends EntityAspectedDemonBase { private final EntityAIAttackRangedBow aiArrowAttack = new EntityAIAttackRangedBow(this, 1.0D, 20, 15.0F); - private final EntityAIAttackMelee aiAttackOnCollide = new EntityAIAttackMelee(this, 1.0D, false); + private final MeleeAttackGoal aiAttackOnCollide = new MeleeAttackGoal(this, 1.0D, false); private final int attackPriority = 3; @@ -32,18 +32,18 @@ public class EntityCorruptedZombie extends EntityAspectedDemonBase { super(worldIn); this.setSize(0.6F, 1.95F); // ((PathNavigateGround) getNavigator()).setCanSwim(false); - this.tasks.addTask(0, new EntityAISwimming(this)); + this.tasks.addTask(0, new SwimGoal(this)); this.tasks.addTask(attackPriority, aiAttackOnCollide); - this.tasks.addTask(5, new EntityAIMoveTowardsRestriction(this, 1.0D)); - this.tasks.addTask(7, new EntityAIWander(this, 1.0D)); - this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F)); - this.tasks.addTask(8, new EntityAILookIdle(this)); + this.tasks.addTask(5, new MoveTowardsRestrictionGoal(this, 1.0D)); + this.tasks.addTask(7, new RandomWalkingGoal(this, 1.0D)); + this.tasks.addTask(8, new LookAtGoal(this, PlayerEntity.class, 8.0F)); + this.tasks.addTask(8, new LookRandomlyGoal(this)); - this.tasks.addTask(6, new EntityAIMoveThroughVillage(this, 1.0D, false)); - this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, true, EntityPigZombie.class)); - this.targetTasks.addTask(2, new EntityAINearestAttackableTarget<>(this, EntityPlayer.class, true)); - this.targetTasks.addTask(3, new EntityAINearestAttackableTarget<>(this, EntityVillager.class, false)); - this.targetTasks.addTask(3, new EntityAINearestAttackableTarget<>(this, EntityIronGolem.class, true)); + this.tasks.addTask(6, new MoveThroughVillageGoal(this, 1.0D, false)); + this.targetTasks.addTask(1, new HurtByTargetGoal(this, true, ZombiePigmanEntity.class)); + this.targetTasks.addTask(2, new NearestAttackableTargetGoal<>(this, PlayerEntity.class, true)); + this.targetTasks.addTask(3, new NearestAttackableTargetGoal<>(this, VillagerEntity.class, false)); + this.targetTasks.addTask(3, new NearestAttackableTargetGoal<>(this, IronGolemEntity.class, true)); this.setCombatTask(); // this.targetTasks.addTask(8, new EntityAINearestAttackableTarget(this, EntityMob.class, 10, true, false, new TargetPredicate(this))); @@ -66,10 +66,10 @@ public class EntityCorruptedZombie extends EntityAspectedDemonBase { this.tasks.removeTask(this.aiArrowAttack); ItemStack itemstack = this.getHeldItemMainhand(); - if (!itemstack.isEmpty() && itemstack.getItem() instanceof ItemBow) { + if (!itemstack.isEmpty() && itemstack.getItem() instanceof BowItem) { int i = 20; - if (this.getEntityWorld().getDifficulty() != EnumDifficulty.HARD) { + if (this.getEntityWorld().getDifficulty() != Difficulty.HARD) { i = 40; } @@ -146,8 +146,8 @@ public class EntityCorruptedZombie extends EntityAspectedDemonBase { //TODO: Change to fit the given AI @Override - public boolean shouldAttackEntity(EntityLivingBase attacker, EntityLivingBase owner) { - return !(attacker instanceof EntityCreeper) && !(attacker instanceof EntityGhast) && super.shouldAttackEntity(attacker, owner); + public boolean shouldAttackEntity(LivingEntity attacker, LivingEntity owner) { + return !(attacker instanceof CreeperEntity) && !(attacker instanceof GhastEntity) && super.shouldAttackEntity(attacker, owner); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityDemonBase.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityDemonBase.java index b82cfc8d..5f0d0245 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityDemonBase.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityDemonBase.java @@ -5,21 +5,21 @@ import com.google.common.base.Predicate; import net.minecraft.block.Block; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.*; -import net.minecraft.entity.monster.EntityCreeper; -import net.minecraft.entity.monster.EntityGhast; -import net.minecraft.entity.monster.EntityMob; -import net.minecraft.entity.passive.EntityHorse; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Items; -import net.minecraft.init.SoundEvents; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemAxe; +import net.minecraft.entity.monster.CreeperEntity; +import net.minecraft.entity.monster.GhastEntity; +import net.minecraft.entity.monster.MonsterEntity; +import net.minecraft.entity.passive.horse.HorseEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Items; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.util.SoundEvents; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.AxeItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; -import net.minecraft.potion.PotionEffect; import net.minecraft.server.management.PreYggdrasilConverter; import net.minecraft.util.DamageSource; import net.minecraft.util.EnumParticleTypes; @@ -28,12 +28,12 @@ import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.world.Explosion; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import javax.annotation.Nullable; import java.util.UUID; -public class EntityDemonBase extends EntityCreature implements IEntityOwnable { +public class EntityDemonBase extends CreatureEntity implements IEntityOwnable { protected static final DataParameter TAMED = EntityDataManager.createKey(EntityDemonBase.class, DataSerializers.BYTE); protected static final DataParameter> OWNER_UNIQUE_ID = EntityDataManager.createKey(EntityDemonBase.class, DataSerializers.OPTIONAL_UNIQUE_ID); @@ -59,7 +59,7 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } @Override - public boolean isPotionApplicable(PotionEffect effect) { + public boolean isPotionApplicable(EffectInstance effect) { return super.isPotionApplicable(effect); } @@ -83,8 +83,8 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { float f = (float) this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).getAttributeValue(); int i = 0; - if (attackedEntity instanceof EntityLivingBase) { - f += EnchantmentHelper.getModifierForCreature(this.getHeldItemMainhand(), ((EntityLivingBase) attackedEntity).getCreatureAttribute()); + if (attackedEntity instanceof LivingEntity) { + f += EnchantmentHelper.getModifierForCreature(this.getHeldItemMainhand(), ((LivingEntity) attackedEntity).getCreatureAttribute()); i += EnchantmentHelper.getKnockbackModifier(this); } @@ -92,7 +92,7 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { if (flag) { if (i > 0) { - ((EntityLivingBase) attackedEntity).knockBack(this, (float) i * 0.5F, (double) MathHelper.sin(this.rotationYaw * 0.017453292F), (double) (-MathHelper.cos(this.rotationYaw * 0.017453292F))); + ((LivingEntity) attackedEntity).knockBack(this, (float) i * 0.5F, (double) MathHelper.sin(this.rotationYaw * 0.017453292F), (double) (-MathHelper.cos(this.rotationYaw * 0.017453292F))); this.motionX *= 0.6D; this.motionZ *= 0.6D; } @@ -103,12 +103,12 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { attackedEntity.setFire(j * 4); } - if (attackedEntity instanceof EntityPlayer) { - EntityPlayer entityplayer = (EntityPlayer) attackedEntity; + if (attackedEntity instanceof PlayerEntity) { + PlayerEntity entityplayer = (PlayerEntity) attackedEntity; ItemStack itemstack = this.getHeldItemMainhand(); ItemStack itemstack1 = entityplayer.isHandActive() ? entityplayer.getActiveItemStack() : ItemStack.EMPTY; - if (!itemstack.isEmpty() && !itemstack1.isEmpty() && itemstack.getItem() instanceof ItemAxe && itemstack1.getItem() == Items.SHIELD) { + if (!itemstack.isEmpty() && !itemstack1.isEmpty() && itemstack.getItem() instanceof AxeItem && itemstack1.getItem() == Items.SHIELD) { float f1 = 0.25F + (float) EnchantmentHelper.getEfficiencyModifier(this) * 0.05F; if (this.rand.nextFloat() < f1) { @@ -125,10 +125,10 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } @Override - public void setItemStackToSlot(EntityEquipmentSlot slotIn, ItemStack stack) { + public void setItemStackToSlot(EquipmentSlotType slotIn, ItemStack stack) { super.setItemStackToSlot(slotIn, stack); - if (!this.getEntityWorld().isRemote && slotIn == EntityEquipmentSlot.MAINHAND) { + if (!this.getEntityWorld().isRemote && slotIn == EquipmentSlotType.MAINHAND) { this.setCombatTask(); } } @@ -144,8 +144,8 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { public void performEmergencyHeal(double toHeal) { this.heal((float) toHeal); - if (getEntityWorld() instanceof WorldServer) { - WorldServer server = (WorldServer) getEntityWorld(); + if (getEntityWorld() instanceof ServerWorld) { + ServerWorld server = (ServerWorld) getEntityWorld(); server.spawnParticle(EnumParticleTypes.HEART, this.posX + (double) (this.rand.nextFloat() * this.width * 2.0F) - (double) this.width, this.posY + 0.5D + (double) (this.rand.nextFloat() * this.height), this.posZ + (double) (this.rand.nextFloat() * this.width * 2.0F) - (double) this.width, 7, 0.2, 0.2, 0.2, 0); } } @@ -160,7 +160,7 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } @Override - public void writeEntityToNBT(NBTTagCompound tag) { + public void writeEntityToNBT(CompoundNBT tag) { super.writeEntityToNBT(tag); if (this.getOwnerId() == null) { @@ -172,7 +172,7 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } @Override - public void readEntityFromNBT(NBTTagCompound tag) { + public void readEntityFromNBT(CompoundNBT tag) { super.readEntityFromNBT(tag); String s; @@ -197,8 +197,8 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } //TODO: Change to fit the given AI - public boolean shouldAttackEntity(EntityLivingBase attacker, EntityLivingBase owner) { - if (!(attacker instanceof EntityCreeper) && !(attacker instanceof EntityGhast)) { + public boolean shouldAttackEntity(LivingEntity attacker, LivingEntity owner) { + if (!(attacker instanceof CreeperEntity) && !(attacker instanceof GhastEntity)) { if (attacker instanceof IEntityOwnable) { IEntityOwnable entityOwnable = (IEntityOwnable) attacker; @@ -207,13 +207,13 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } } - return !(attacker instanceof EntityPlayer && owner instanceof EntityPlayer && !((EntityPlayer) owner).canAttackPlayer((EntityPlayer) attacker)) && (!(attacker instanceof EntityHorse) || !((EntityHorse) attacker).isTame()); + return !(attacker instanceof PlayerEntity && owner instanceof PlayerEntity && !((PlayerEntity) owner).canAttackPlayer((PlayerEntity) attacker)) && (!(attacker instanceof HorseEntity) || !((HorseEntity) attacker).isTame()); } else { return false; } } - public void attackEntityWithRangedAttack(EntityLivingBase target, float velocity) { + public void attackEntityWithRangedAttack(LivingEntity target, float velocity) { } @@ -276,7 +276,7 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } @Override - public EntityLivingBase getOwner() { + public LivingEntity getOwner() { try { UUID uuid = this.getOwnerId(); return uuid == null ? null : this.getEntityWorld().getPlayerEntityByUUID(uuid); @@ -285,11 +285,11 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } } - public void setOwner(EntityPlayer player) { + public void setOwner(PlayerEntity player) { setOwnerId(player.getUniqueID()); } - public class TargetPredicate implements Predicate { + public class TargetPredicate implements Predicate { EntityDemonBase entity; public TargetPredicate(EntityDemonBase entity) { @@ -297,7 +297,7 @@ public class EntityDemonBase extends EntityCreature implements IEntityOwnable { } @Override - public boolean apply(EntityMob input) { + public boolean apply(MonsterEntity input) { return entity.shouldAttackEntity(input, this.entity.getOwner()); } } diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityMimic.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityMimic.java index 54e39197..41361017 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntityMimic.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntityMimic.java @@ -6,30 +6,30 @@ import WayofTime.bloodmagic.entity.ai.EntityAIMimicReform; import WayofTime.bloodmagic.tile.TileMimic; import WayofTime.bloodmagic.util.StateUtil; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.block.BlockState; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.EnumCreatureAttribute; import net.minecraft.entity.SharedMonsterAttributes; -import net.minecraft.entity.ai.*; -import net.minecraft.entity.monster.EntityIronGolem; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.ai.goal.*; +import net.minecraft.entity.passive.IronGolemEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.pathfinding.ClimberPathNavigator; +import net.minecraft.pathfinding.PathNavigator; +import net.minecraft.potion.Effects; +import net.minecraft.util.SoundEvents; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; -import net.minecraft.pathfinding.PathNavigate; -import net.minecraft.pathfinding.PathNavigateClimber; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.DamageSource; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; public class EntityMimic extends EntityDemonBase { @@ -39,31 +39,31 @@ public class EntityMimic extends EntityDemonBase { private static final DataParameter CLIMBING = EntityDataManager.createKey(EntityMimic.class, DataSerializers.BYTE); public boolean dropItemsOnBreak = true; - public NBTTagCompound tileTag = new NBTTagCompound(); + public CompoundNBT tileTag = new CompoundNBT(); public int metaOfReplacedBlock = 0; - public IBlockState stateOfReplacedBlock = Blocks.AIR.getDefaultState(); + public BlockState stateOfReplacedBlock = Blocks.AIR.getDefaultState(); public int playerCheckRadius = 5; public EntityMimic(World worldIn) { super(worldIn); this.setSize(0.9F, 0.9F); - this.tasks.addTask(1, new EntityAISwimming(this)); - this.tasks.addTask(3, new EntityAILeapAtTarget(this, 0.4F)); + this.tasks.addTask(1, new SwimGoal(this)); + this.tasks.addTask(3, new LeapAtTargetGoal(this, 0.4F)); this.tasks.addTask(4, new EntityMimic.AISpiderAttack(this)); - this.tasks.addTask(5, new EntityAIMoveTowardsRestriction(this, 1)); - this.tasks.addTask(6, new EntityAIWander(this, 0.8D)); - this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F)); - this.tasks.addTask(8, new EntityAILookIdle(this)); + this.tasks.addTask(5, new MoveTowardsRestrictionGoal(this, 1)); + this.tasks.addTask(6, new RandomWalkingGoal(this, 0.8D)); + this.tasks.addTask(8, new LookAtGoal(this, PlayerEntity.class, 8.0F)); + this.tasks.addTask(8, new LookRandomlyGoal(this)); this.tasks.addTask(7, new EntityAIMimicReform(this)); - this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false)); - this.targetTasks.addTask(2, new EntityMimic.AISpiderTarget(this, EntityPlayer.class)); - this.targetTasks.addTask(3, new EntityMimic.AISpiderTarget(this, EntityIronGolem.class)); + this.targetTasks.addTask(1, new HurtByTargetGoal(this, false)); + this.targetTasks.addTask(2, new EntityMimic.AISpiderTarget(this, PlayerEntity.class)); + this.targetTasks.addTask(3, new EntityMimic.AISpiderTarget(this, IronGolemEntity.class)); } @Override - public void writeEntityToNBT(NBTTagCompound tag) { + public void writeEntityToNBT(CompoundNBT tag) { super.writeEntityToNBT(tag); tag.setBoolean("dropItemsOnBreak", dropItemsOnBreak); @@ -74,7 +74,7 @@ public class EntityMimic extends EntityDemonBase { } @Override - public void readEntityFromNBT(NBTTagCompound tag) { + public void readEntityFromNBT(CompoundNBT tag) { super.readEntityFromNBT(tag); dropItemsOnBreak = tag.getBoolean("dropItemsOnBreak"); @@ -85,11 +85,11 @@ public class EntityMimic extends EntityDemonBase { } public ItemStack getMimicItemStack() { - return this.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + return this.getItemStackFromSlot(EquipmentSlotType.CHEST); } public void setMimicItemStack(ItemStack stack) { - this.setItemStackToSlot(EntityEquipmentSlot.CHEST, stack); + this.setItemStackToSlot(EquipmentSlotType.CHEST, stack); } public boolean spawnHeldBlockOnDeath(World world, BlockPos pos) { @@ -98,7 +98,7 @@ public class EntityMimic extends EntityDemonBase { public boolean spawnMimicBlockAtPosition(World world, BlockPos pos) { if (world.isAirBlock(pos)) { - IBlockState mimicState = RegistrarBloodMagicBlocks.MIMIC.getStateFromMeta(BlockMimic.sentientMimicMeta); + BlockState mimicState = RegistrarBloodMagicBlocks.MIMIC.getStateFromMeta(BlockMimic.sentientMimicMeta); world.setBlockState(pos, mimicState, 3); TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileMimic) { @@ -116,7 +116,7 @@ public class EntityMimic extends EntityDemonBase { return false; } - public void initializeMimic(ItemStack heldStack, NBTTagCompound tileTag, boolean dropItemsOnBreak, IBlockState stateOfReplacedBlock, int playerCheckRadius, BlockPos homePosition) { + public void initializeMimic(ItemStack heldStack, CompoundNBT tileTag, boolean dropItemsOnBreak, BlockState stateOfReplacedBlock, int playerCheckRadius, BlockPos homePosition) { this.setMimicItemStack(heldStack); this.tileTag = tileTag; this.dropItemsOnBreak = dropItemsOnBreak; @@ -195,8 +195,8 @@ public class EntityMimic extends EntityDemonBase { * Returns new PathNavigateGround instance */ @Override - protected PathNavigate createNavigator(World worldIn) { - return new PathNavigateClimber(this, worldIn); + protected PathNavigator createNavigator(World worldIn) { + return new ClimberPathNavigator(this, worldIn); } @Override @@ -211,7 +211,7 @@ public class EntityMimic extends EntityDemonBase { */ @Override public void onUpdate() { - if (!this.getEntityWorld().isRemote && this.getEntityWorld().getDifficulty() == EnumDifficulty.PEACEFUL) { + if (!this.getEntityWorld().isRemote && this.getEntityWorld().getDifficulty() == Difficulty.PEACEFUL) { if (reformIntoMimicBlock(this.getPosition())) { this.setDead(); } @@ -276,8 +276,8 @@ public class EntityMimic extends EntityDemonBase { } @Override - public boolean isPotionApplicable(PotionEffect potioneffectIn) { - return potioneffectIn.getPotion() != MobEffects.POISON && super.isPotionApplicable(potioneffectIn); + public boolean isPotionApplicable(EffectInstance potioneffectIn) { + return potioneffectIn.getPotion() != Effects.POISON && super.isPotionApplicable(potioneffectIn); } /** @@ -308,18 +308,18 @@ public class EntityMimic extends EntityDemonBase { return 0.65F; } - static class AISpiderAttack extends EntityAIAttackMelee { + static class AISpiderAttack extends MeleeAttackGoal { public AISpiderAttack(EntityMimic spider) { super(spider, 1.0D, true); } @Override - protected double getAttackReachSqr(EntityLivingBase attackTarget) { + protected double getAttackReachSqr(LivingEntity attackTarget) { return (double) (4.0F + attackTarget.width); } } - static class AISpiderTarget extends EntityAINearestAttackableTarget { + static class AISpiderTarget extends NearestAttackableTargetGoal { public AISpiderTarget(EntityMimic spider, Class classTarget) { super(spider, classTarget, true); } diff --git a/src/main/java/WayofTime/bloodmagic/entity/mob/EntitySentientSpecter.java b/src/main/java/WayofTime/bloodmagic/entity/mob/EntitySentientSpecter.java index 321f3d30..6ec43ae9 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/mob/EntitySentientSpecter.java +++ b/src/main/java/WayofTime/bloodmagic/entity/mob/EntitySentientSpecter.java @@ -12,35 +12,32 @@ import WayofTime.bloodmagic.entity.ai.EntityAIOwnerHurtTarget; import WayofTime.bloodmagic.item.soul.ItemSentientBow; import net.minecraft.block.Block; import net.minecraft.enchantment.EnchantmentHelper; -import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityCreature; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.SharedMonsterAttributes; -import net.minecraft.entity.ai.*; -import net.minecraft.entity.monster.EntityCreeper; -import net.minecraft.entity.monster.EntityGhast; -import net.minecraft.entity.monster.EntityMob; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.projectile.EntityTippedArrow; -import net.minecraft.init.Enchantments; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemBow; +import net.minecraft.entity.*; +import net.minecraft.entity.CreatureEntity; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.*; +import net.minecraft.entity.monster.CreeperEntity; +import net.minecraft.entity.monster.GhastEntity; +import net.minecraft.entity.monster.MonsterEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.ArrowEntity; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; +import net.minecraft.util.*; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.BowItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.DamageSource; -import net.minecraft.util.EnumHand; +import net.minecraft.potion.Effect; +import net.minecraft.util.Hand; import net.minecraft.util.EnumParticleTypes; -import net.minecraft.util.SoundEvent; +import net.minecraft.util.SoundEvents; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; -import net.minecraft.world.EnumDifficulty; -import net.minecraft.world.Explosion; -import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.*; +import net.minecraft.world.Difficulty; +import net.minecraft.world.ServerWorld; import java.util.ArrayList; import java.util.List; @@ -48,7 +45,7 @@ import java.util.Locale; public class EntitySentientSpecter extends EntityDemonBase { private final EntityAIAttackRangedBow aiArrowAttack = new EntityAIAttackRangedBow(this, 1.0D, 20, 15.0F); - private final EntityAIAttackMelee aiAttackOnCollide = new EntityAIAttackMelee(this, 1.0D, false); + private final MeleeAttackGoal aiAttackOnCollide = new MeleeAttackGoal(this, 1.0D, false); private final int attackPriority = 3; protected EnumDemonWillType type = EnumDemonWillType.DESTRUCTIVE; protected boolean wasGivenSentientArmour = false; @@ -57,18 +54,18 @@ public class EntitySentientSpecter extends EntityDemonBase { super(worldIn); this.setSize(0.6F, 1.95F); // ((PathNavigateGround) getNavigator()).setCanSwim(false); - this.tasks.addTask(0, new EntityAISwimming(this)); - this.tasks.addTask(2, new EntityAIRetreatToHeal<>(this, EntityCreature.class, 6.0F, 1.0D, 1.2D)); + this.tasks.addTask(0, new SwimGoal(this)); + this.tasks.addTask(2, new EntityAIRetreatToHeal<>(this, CreatureEntity.class, 6.0F, 1.0D, 1.2D)); this.tasks.addTask(attackPriority, aiAttackOnCollide); this.tasks.addTask(4, new EntityAIGrabEffectsFromOwner(this, 2.0D, 1.0F)); this.tasks.addTask(5, new EntityAIFollowOwner(this, 1.0D, 10.0F, 2.0F)); - this.tasks.addTask(6, new EntityAIWander(this, 1.0D)); - this.tasks.addTask(7, new EntityAIWatchClosest(this, EntityPlayer.class, 6.0F)); - this.tasks.addTask(8, new EntityAILookIdle(this)); + this.tasks.addTask(6, new RandomWalkingGoal(this, 1.0D)); + this.tasks.addTask(7, new LookAtGoal(this, PlayerEntity.class, 6.0F)); + this.tasks.addTask(8, new LookRandomlyGoal(this)); this.targetTasks.addTask(1, new EntityAIOwnerHurtByTarget(this)); this.targetTasks.addTask(2, new EntityAIOwnerHurtTarget(this)); - this.targetTasks.addTask(3, new EntityAINearestAttackableTarget<>(this, EntityMob.class, true)); + this.targetTasks.addTask(3, new NearestAttackableTargetGoal<>(this, MonsterEntity.class, true)); this.targetTasks.addTask(4, new EntityAIHurtByTargetIgnoreTamed(this, false)); @@ -91,10 +88,10 @@ public class EntitySentientSpecter extends EntityDemonBase { this.tasks.removeTask(this.aiArrowAttack); ItemStack itemstack = this.getHeldItemMainhand(); - if (!itemstack.isEmpty() && itemstack.getItem() instanceof ItemBow) { + if (!itemstack.isEmpty() && itemstack.getItem() instanceof BowItem) { int i = 20; - if (this.getEntityWorld().getDifficulty() != EnumDifficulty.HARD) { + if (this.getEntityWorld().getDifficulty() != Difficulty.HARD) { i = 40; } @@ -107,23 +104,23 @@ public class EntitySentientSpecter extends EntityDemonBase { } @Override - public boolean isPotionApplicable(PotionEffect effect) { - Potion potion = effect.getPotion(); + public boolean isPotionApplicable(EffectInstance effect) { + Effect potion = effect.getPotion(); //Specter cannot be healed by normal means - return !(potion == MobEffects.REGENERATION || potion == MobEffects.INSTANT_HEALTH) && super.isPotionApplicable(effect); + return !(potion == Effects.REGENERATION || potion == Effects.INSTANT_HEALTH) && super.isPotionApplicable(effect); } - public boolean canStealEffectFromOwner(EntityLivingBase owner, PotionEffect effect) { + public boolean canStealEffectFromOwner(LivingEntity owner, EffectInstance effect) { return effect.getPotion().isBadEffect() && this.type == EnumDemonWillType.CORROSIVE; } - public boolean canStealEffectFromOwner(EntityLivingBase owner) { + public boolean canStealEffectFromOwner(LivingEntity owner) { if (this.type != EnumDemonWillType.CORROSIVE) { return false; } - for (PotionEffect eff : owner.getActivePotionEffects()) { + for (EffectInstance eff : owner.getActivePotionEffects()) { if (canStealEffectFromOwner(owner, eff)) { return true; } @@ -132,23 +129,23 @@ public class EntitySentientSpecter extends EntityDemonBase { return false; } - public boolean stealEffectsFromOwner(EntityLivingBase owner) { + public boolean stealEffectsFromOwner(LivingEntity owner) { if (this.type != EnumDemonWillType.CORROSIVE) { return false; } boolean hasStolenEffect = false; - List removedEffects = new ArrayList<>(); + List removedEffects = new ArrayList<>(); - for (PotionEffect eff : owner.getActivePotionEffects()) { + for (EffectInstance eff : owner.getActivePotionEffects()) { if (canStealEffectFromOwner(owner, eff)) { removedEffects.add(eff); hasStolenEffect = true; } } - for (PotionEffect eff : removedEffects) { + for (EffectInstance eff : removedEffects) { owner.removePotionEffect(eff.getPotion()); this.addPotionEffect(eff); } @@ -156,16 +153,16 @@ public class EntitySentientSpecter extends EntityDemonBase { return hasStolenEffect; } - public boolean applyNegativeEffectsToAttacked(EntityLivingBase attackedEntity, float percentTransmitted) { + public boolean applyNegativeEffectsToAttacked(LivingEntity attackedEntity, float percentTransmitted) { boolean hasProvidedEffect = false; - List removedEffects = new ArrayList<>(); - for (PotionEffect eff : this.getActivePotionEffects()) { + List removedEffects = new ArrayList<>(); + for (EffectInstance eff : this.getActivePotionEffects()) { if (eff.getPotion().isBadEffect() && attackedEntity.isPotionApplicable(eff)) { if (!attackedEntity.isPotionActive(eff.getPotion())) { removedEffects.add(eff); hasProvidedEffect = true; } else { - PotionEffect activeEffect = attackedEntity.getActivePotionEffect(eff.getPotion()); + EffectInstance activeEffect = attackedEntity.getActivePotionEffect(eff.getPotion()); if (activeEffect.getAmplifier() < eff.getAmplifier() || activeEffect.getDuration() < eff.getDuration() * percentTransmitted) { removedEffects.add(eff); hasProvidedEffect = true; @@ -174,21 +171,21 @@ public class EntitySentientSpecter extends EntityDemonBase { } } - for (PotionEffect eff : removedEffects) { + for (EffectInstance eff : removedEffects) { if (!attackedEntity.isPotionActive(eff.getPotion())) { - PotionEffect newEffect = new PotionEffect(eff.getPotion(), (int) (eff.getDuration() * percentTransmitted), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); + EffectInstance newEffect = new EffectInstance(eff.getPotion(), (int) (eff.getDuration() * percentTransmitted), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); attackedEntity.addPotionEffect(newEffect); - PotionEffect newSentientEffect = new PotionEffect(eff.getPotion(), (int) (eff.getDuration() * (1 - percentTransmitted)), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); + EffectInstance newSentientEffect = new EffectInstance(eff.getPotion(), (int) (eff.getDuration() * (1 - percentTransmitted)), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); this.removePotionEffect(eff.getPotion()); this.addPotionEffect(newSentientEffect); } else { - PotionEffect activeEffect = attackedEntity.getActivePotionEffect(eff.getPotion()); + EffectInstance activeEffect = attackedEntity.getActivePotionEffect(eff.getPotion()); - PotionEffect newEffect = new PotionEffect(eff.getPotion(), (int) (eff.getDuration() * percentTransmitted), eff.getAmplifier(), activeEffect.getIsAmbient(), activeEffect.doesShowParticles()); + EffectInstance newEffect = new EffectInstance(eff.getPotion(), (int) (eff.getDuration() * percentTransmitted), eff.getAmplifier(), activeEffect.getIsAmbient(), activeEffect.doesShowParticles()); attackedEntity.addPotionEffect(newEffect); - PotionEffect newSentientEffect = new PotionEffect(eff.getPotion(), (int) (eff.getDuration() * (1 - percentTransmitted)), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); + EffectInstance newSentientEffect = new EffectInstance(eff.getPotion(), (int) (eff.getDuration() * (1 - percentTransmitted)), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); this.removePotionEffect(eff.getPotion()); this.addPotionEffect(newSentientEffect); } @@ -197,25 +194,25 @@ public class EntitySentientSpecter extends EntityDemonBase { return hasProvidedEffect; } - public List getPotionEffectsForArrowRemovingDuration(float percentTransmitted) { - List arrowEffects = new ArrayList<>(); + public List getPotionEffectsForArrowRemovingDuration(float percentTransmitted) { + List arrowEffects = new ArrayList<>(); if (type != EnumDemonWillType.CORROSIVE) { return arrowEffects; } - List removedEffects = new ArrayList<>(); - for (PotionEffect eff : this.getActivePotionEffects()) { + List removedEffects = new ArrayList<>(); + for (EffectInstance eff : this.getActivePotionEffects()) { if (eff.getPotion().isBadEffect()) { removedEffects.add(eff); } } - for (PotionEffect eff : removedEffects) { - PotionEffect newEffect = new PotionEffect(eff.getPotion(), (int) (eff.getDuration() * percentTransmitted), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); + for (EffectInstance eff : removedEffects) { + EffectInstance newEffect = new EffectInstance(eff.getPotion(), (int) (eff.getDuration() * percentTransmitted), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); arrowEffects.add(newEffect); - PotionEffect newSentientEffect = new PotionEffect(eff.getPotion(), (int) (eff.getDuration() * (1 - percentTransmitted)), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); + EffectInstance newSentientEffect = new EffectInstance(eff.getPotion(), (int) (eff.getDuration() * (1 - percentTransmitted)), eff.getAmplifier(), eff.getIsAmbient(), eff.doesShowParticles()); this.removePotionEffect(eff.getPotion()); this.addPotionEffect(newSentientEffect); } @@ -236,9 +233,9 @@ public class EntitySentientSpecter extends EntityDemonBase { boolean flag = super.attackEntityAsMob(attackedEntity); if (flag) { - if (this.type == EnumDemonWillType.CORROSIVE && attackedEntity instanceof EntityLivingBase) { + if (this.type == EnumDemonWillType.CORROSIVE && attackedEntity instanceof LivingEntity) { // ((EntityLivingBase) attackedEntity).addPotionEffect(new PotionEffect(MobEffects.WITHER, 200)); - applyNegativeEffectsToAttacked((EntityLivingBase) attackedEntity, 1); + applyNegativeEffectsToAttacked((LivingEntity) attackedEntity, 1); } return true; @@ -264,7 +261,7 @@ public class EntitySentientSpecter extends EntityDemonBase { @Override public boolean absorbExplosion(Explosion explosion) { if (this.type == EnumDemonWillType.DESTRUCTIVE) { - this.addPotionEffect(new PotionEffect(MobEffects.STRENGTH, 600, 1)); + this.addPotionEffect(new EffectInstance(Effects.STRENGTH, 600, 1)); explosion.doExplosionB(true); @@ -275,9 +272,9 @@ public class EntitySentientSpecter extends EntityDemonBase { } @Override - public boolean processInteract(EntityPlayer player, EnumHand hand) { + public boolean processInteract(PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); - if (this.isTamed() && player.equals(this.getOwner()) && hand == EnumHand.MAIN_HAND) { + if (this.isTamed() && player.equals(this.getOwner()) && hand == Hand.MAIN_HAND) { if (stack.isEmpty() && player.isSneaking()) //Should return to the entity { if (!getEntityWorld().isRemote) { @@ -309,8 +306,8 @@ public class EntitySentientSpecter extends EntityDemonBase { public void performEmergencyHeal(double toHeal) { this.heal((float) toHeal); - if (getEntityWorld() instanceof WorldServer) { - WorldServer server = (WorldServer) getEntityWorld(); + if (getEntityWorld() instanceof ServerWorld) { + ServerWorld server = (ServerWorld) getEntityWorld(); server.spawnParticle(EnumParticleTypes.HEART, this.posX + (double) (this.rand.nextFloat() * this.width * 2.0F) - (double) this.width, this.posY + 0.5D + (double) (this.rand.nextFloat() * this.height), this.posZ + (double) (this.rand.nextFloat() * this.width * 2.0F) - (double) this.width, 7, 0.2, 0.2, 0.2, 0); } } @@ -358,7 +355,7 @@ public class EntitySentientSpecter extends EntityDemonBase { } @Override - public void writeEntityToNBT(NBTTagCompound tag) { + public void writeEntityToNBT(CompoundNBT tag) { super.writeEntityToNBT(tag); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); @@ -367,7 +364,7 @@ public class EntitySentientSpecter extends EntityDemonBase { } @Override - public void readEntityFromNBT(NBTTagCompound tag) { + public void readEntityFromNBT(CompoundNBT tag) { super.readEntityFromNBT(tag); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { @@ -383,21 +380,21 @@ public class EntitySentientSpecter extends EntityDemonBase { //TODO: Change to fit the given AI @Override - public boolean shouldAttackEntity(EntityLivingBase attacker, EntityLivingBase owner) { - if (!(attacker instanceof EntityCreeper) && !(attacker instanceof EntityGhast)) { + public boolean shouldAttackEntity(LivingEntity attacker, LivingEntity owner) { + if (!(attacker instanceof CreeperEntity) && !(attacker instanceof GhastEntity)) { return super.shouldAttackEntity(attacker, owner); } return false; } @Override - public void attackEntityWithRangedAttack(EntityLivingBase target, float velocity) { - ItemStack heldStack = this.getItemStackFromSlot(EntityEquipmentSlot.MAINHAND); + public void attackEntityWithRangedAttack(LivingEntity target, float velocity) { + ItemStack heldStack = this.getItemStackFromSlot(EquipmentSlotType.MAINHAND); if (!heldStack.isEmpty() && heldStack.getItem() == RegistrarBloodMagicItems.SENTIENT_BOW) { - EntityTippedArrow arrowEntity = ((ItemSentientBow) heldStack.getItem()).getArrowEntity(getEntityWorld(), heldStack, target, this, velocity); + ArrowEntity arrowEntity = ((ItemSentientBow) heldStack.getItem()).getArrowEntity(getEntityWorld(), heldStack, target, this, velocity); if (arrowEntity != null) { - List effects = getPotionEffectsForArrowRemovingDuration(0.2f); - for (PotionEffect eff : effects) { + List effects = getPotionEffectsForArrowRemovingDuration(0.2f); + for (EffectInstance eff : effects) { arrowEntity.addEffect(eff); } @@ -405,7 +402,7 @@ public class EntitySentientSpecter extends EntityDemonBase { this.getEntityWorld().spawnEntity(arrowEntity); } } else { - EntityTippedArrow entitytippedarrow = new EntityTippedArrow(this.getEntityWorld(), this); //TODO: Change to an arrow created by the Sentient Bow + ArrowEntity entitytippedarrow = new ArrowEntity(this.getEntityWorld(), this); //TODO: Change to an arrow created by the Sentient Bow double d0 = target.posX - this.posX; double d1 = target.getEntityBoundingBox().minY + (double) (target.height / 3.0F) - entitytippedarrow.posY; double d2 = target.posZ - this.posZ; @@ -432,7 +429,7 @@ public class EntitySentientSpecter extends EntityDemonBase { if (true) //TODO: Add potion effects to the arrows { - entitytippedarrow.addEffect(new PotionEffect(MobEffects.SLOWNESS, 600)); + entitytippedarrow.addEffect(new EffectInstance(Effects.SLOWNESS, 600)); } this.playSound(SoundEvents.ENTITY_SKELETON_SHOOT, 1.0F, 1.0F / (this.getRNG().nextFloat() * 0.4F + 0.8F)); diff --git a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityBloodLight.java b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityBloodLight.java index 5e2e4e43..1ed0d6ef 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityBloodLight.java +++ b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityBloodLight.java @@ -3,13 +3,13 @@ package WayofTime.bloodmagic.entity.projectile; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import io.netty.buffer.ByteBuf; +import net.minecraft.block.Blocks; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.projectile.EntityThrowable; -import net.minecraft.init.Blocks; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.projectile.ThrowableEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.DamageSource; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.util.math.RayTraceResult; @@ -17,8 +17,8 @@ import net.minecraft.world.World; import net.minecraftforge.fml.common.registry.IEntityAdditionalSpawnData; import net.minecraftforge.fml.common.registry.IThrowableEntity; -public class EntityBloodLight extends EntityThrowable implements IThrowableEntity, IEntityAdditionalSpawnData { - public EntityLivingBase shootingEntity; +public class EntityBloodLight extends ThrowableEntity implements IThrowableEntity, IEntityAdditionalSpawnData { + public LivingEntity shootingEntity; protected int ticksInAir = 0; protected int maxTicksInAir = 600; @@ -33,7 +33,7 @@ public class EntityBloodLight extends EntityThrowable implements IThrowableEntit this.setPosition(x, y, z); } - public EntityBloodLight(World world, EntityLivingBase player) { + public EntityBloodLight(World world, LivingEntity player) { super(world, player); shootingEntity = player; float par3 = 0.8F; @@ -91,7 +91,7 @@ public class EntityBloodLight extends EntityThrowable implements IThrowableEntit this.onImpact(mop.entityHit); } else if (mop.typeOfHit == RayTraceResult.Type.BLOCK) { - EnumFacing sideHit = mop.sideHit; + Direction sideHit = mop.sideHit; BlockPos blockPos = mop.getBlockPos().offset(sideHit); if (getEntityWorld().isAirBlock(blockPos)) { @@ -107,8 +107,8 @@ public class EntityBloodLight extends EntityThrowable implements IThrowableEntit shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); this.setDead(); } else { - if (mop instanceof EntityLivingBase) { - ((EntityLivingBase) mop).setRevengeTarget(shootingEntity); + if (mop instanceof LivingEntity) { + ((LivingEntity) mop).setRevengeTarget(shootingEntity); doDamage(1, mop); } } @@ -140,14 +140,14 @@ public class EntityBloodLight extends EntityThrowable implements IThrowableEntit } @Override - public void writeEntityToNBT(NBTTagCompound nbt) { + public void writeEntityToNBT(CompoundNBT nbt) { super.writeEntityToNBT(nbt); nbt.setInteger(Constants.NBT.PROJECTILE_TICKS_IN_AIR, ticksInAir); nbt.setInteger(Constants.NBT.PROJECTILE_MAX_TICKS_IN_AIR, maxTicksInAir); } @Override - public void readEntityFromNBT(NBTTagCompound nbt) { + public void readEntityFromNBT(CompoundNBT nbt) { super.readEntityFromNBT(nbt); ticksInAir = nbt.getInteger(Constants.NBT.PROJECTILE_TICKS_IN_AIR); maxTicksInAir = nbt.getInteger(Constants.NBT.PROJECTILE_MAX_TICKS_IN_AIR); @@ -165,7 +165,7 @@ public class EntityBloodLight extends EntityThrowable implements IThrowableEntit @Override public void setThrower(Entity entity) { - if (entity instanceof EntityLivingBase) - this.shootingEntity = (EntityLivingBase) entity; + if (entity instanceof LivingEntity) + this.shootingEntity = (LivingEntity) entity; } } diff --git a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityMeteor.java b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityMeteor.java index 4c701ace..7fd8ae60 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityMeteor.java +++ b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntityMeteor.java @@ -3,18 +3,18 @@ package WayofTime.bloodmagic.entity.projectile; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.meteor.MeteorRegistry; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.projectile.EntityThrowable; -import net.minecraft.init.Blocks; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.projectile.ThrowableEntity; +import net.minecraft.block.Blocks; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.DamageSource; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; import net.minecraftforge.fml.common.registry.IThrowableEntity; -public class EntityMeteor extends EntityThrowable implements IThrowableEntity { +public class EntityMeteor extends ThrowableEntity implements IThrowableEntity { public ItemStack meteorStack = ItemStack.EMPTY; protected int ticksInAir = 0; protected int maxTicksInAir = 600; @@ -63,7 +63,7 @@ public class EntityMeteor extends EntityThrowable implements IThrowableEntity { } protected void onImpact(Entity mop) { - if (mop instanceof EntityLivingBase) { + if (mop instanceof LivingEntity) { doDamage(100, mop); } @@ -86,7 +86,7 @@ public class EntityMeteor extends EntityThrowable implements IThrowableEntity { } @Override - public void writeEntityToNBT(NBTTagCompound nbt) { + public void writeEntityToNBT(CompoundNBT nbt) { super.writeEntityToNBT(nbt); nbt.setInteger(Constants.NBT.PROJECTILE_TICKS_IN_AIR, ticksInAir); nbt.setInteger(Constants.NBT.PROJECTILE_MAX_TICKS_IN_AIR, maxTicksInAir); @@ -100,7 +100,7 @@ public class EntityMeteor extends EntityThrowable implements IThrowableEntity { } @Override - public void readEntityFromNBT(NBTTagCompound nbt) { + public void readEntityFromNBT(CompoundNBT nbt) { super.readEntityFromNBT(nbt); ticksInAir = nbt.getInteger(Constants.NBT.PROJECTILE_TICKS_IN_AIR); maxTicksInAir = nbt.getInteger(Constants.NBT.PROJECTILE_MAX_TICKS_IN_AIR); diff --git a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySentientArrow.java b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySentientArrow.java index fe91c8ac..6fc72e52 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySentientArrow.java +++ b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySentientArrow.java @@ -3,23 +3,21 @@ package WayofTime.bloodmagic.entity.projectile; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.soul.PlayerDemonWillHandler; import WayofTime.bloodmagic.util.Constants; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.projectile.EntityArrow; -import net.minecraft.entity.projectile.EntityTippedArrow; -import net.minecraft.init.Items; -import net.minecraft.init.MobEffects; -import net.minecraft.init.PotionTypes; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.AbstractArrowEntity; +import net.minecraft.entity.projectile.ArrowEntity; +import net.minecraft.item.Items; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.*; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.potion.Effects; +import net.minecraft.potion.EffectInstance; import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; -import net.minecraft.potion.PotionType; -import net.minecraft.potion.PotionUtils; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.math.AxisAlignedBB; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; import java.lang.invoke.MethodHandle; @@ -28,13 +26,13 @@ import java.lang.reflect.Method; import java.util.List; import java.util.Locale; -public class EntitySentientArrow extends EntityTippedArrow { - public PotionType potion = PotionTypes.EMPTY; +public class EntitySentientArrow extends ArrowEntity { + public Potion potion = Potions.EMPTY; public double reimbursedAmountOnHit = 0; public EnumDemonWillType type = EnumDemonWillType.DEFAULT; public int currentLevel = 0; public ItemStack itemStack; - public Class specialArrowClass; + public Class specialArrowClass; public float[] destructiveExplosionRadius = {0.5f, 1, 1.5f, 2, 2.5f, 3, 3.5f}; public int[] poisonDuration = {50, 100, 150, 80, 120, 160, 200}; public int[] poisonLevel = {0, 0, 0, 1, 1, 1, 1}; @@ -42,7 +40,7 @@ public class EntitySentientArrow extends EntityTippedArrow { public int[] levitationLevel = {0, 0, 0, 1, 1, 1, 2}; public int[] slownessDuration = {40, 60, 100, 150, 200, 250, 300}; public int[] slownessLevel = {0, 0, 0, 1, 1, 1, 2}; - public EntityArrow specialEntity; + public AbstractArrowEntity specialEntity; public MethodHandle specialHitMH; public Method specialHit; @@ -54,14 +52,14 @@ public class EntitySentientArrow extends EntityTippedArrow { super(worldIn, x, y, z); } - public EntitySentientArrow(World worldIn, EntityLivingBase shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel) { + public EntitySentientArrow(World worldIn, LivingEntity shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel) { super(worldIn, shooter); this.reimbursedAmountOnHit = reimburseAmount; this.type = type; this.currentLevel = currentLevel; } - public EntitySentientArrow(World worldIn, EntityLivingBase shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel, PotionType potion) { + public EntitySentientArrow(World worldIn, LivingEntity shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel, Potion potion) { super(worldIn, shooter); this.reimbursedAmountOnHit = reimburseAmount; this.type = type; @@ -69,7 +67,7 @@ public class EntitySentientArrow extends EntityTippedArrow { this.potion = potion; } - public EntitySentientArrow(World worldIn, EntityLivingBase shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel, ItemStack itemStack) { + public EntitySentientArrow(World worldIn, LivingEntity shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel, ItemStack itemStack) { super(worldIn, shooter); this.reimbursedAmountOnHit = reimburseAmount; this.type = type; @@ -77,7 +75,7 @@ public class EntitySentientArrow extends EntityTippedArrow { this.potion = PotionUtils.getPotionFromItem(itemStack); } - public EntitySentientArrow(World worldIn, EntityLivingBase shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel, EntityArrow specialArrow) { + public EntitySentientArrow(World worldIn, LivingEntity shooter, EnumDemonWillType type, double reimburseAmount, int currentLevel, AbstractArrowEntity specialArrow) { super(worldIn, shooter); this.reimbursedAmountOnHit = reimburseAmount; this.type = type; @@ -86,35 +84,35 @@ public class EntitySentientArrow extends EntityTippedArrow { this.specialArrowClass = specialArrow.getClass(); } - public void reimbursePlayer(EntityLivingBase hitEntity, float damage) { - if (this.shootingEntity instanceof EntityPlayer) { - if (hitEntity.getEntityWorld().getDifficulty() != EnumDifficulty.PEACEFUL && !(hitEntity instanceof IMob)) { + public void reimbursePlayer(LivingEntity hitEntity, float damage) { + if (this.shootingEntity instanceof PlayerEntity) { + if (hitEntity.getEntityWorld().getDifficulty() != Difficulty.PEACEFUL && !(hitEntity instanceof IMob)) { return; } - PlayerDemonWillHandler.addDemonWill(type, (EntityPlayer) this.shootingEntity, reimbursedAmountOnHit * damage / 20f); + PlayerDemonWillHandler.addDemonWill(type, (PlayerEntity) this.shootingEntity, reimbursedAmountOnHit * damage / 20f); } } @Override - protected void arrowHit(EntityLivingBase living) { + protected void arrowHit(LivingEntity living) { int amp = -1; switch (type) { case CORROSIVE: if (this.potion != null) - for (PotionEffect i : this.potion.getEffects()) { + for (EffectInstance i : this.potion.getEffects()) { if (i.getEffectName().equals("poison")) { amp = i.getAmplifier(); continue; } - living.addPotionEffect(new PotionEffect(i.getPotion(), i.getDuration(), i.getAmplifier())); + living.addPotionEffect(new EffectInstance(i.getPotion(), i.getDuration(), i.getAmplifier())); } - living.addPotionEffect(new PotionEffect(MobEffects.POISON, currentLevel >= 0 ? (amp > -1 && poisonLevel[currentLevel] != amp) ? poisonDuration[currentLevel] / 2 : poisonDuration[currentLevel] : 0, currentLevel >= 0 ? (amp > -1) ? Math.max(poisonLevel[currentLevel], amp) + 1 : poisonLevel[currentLevel] : 0)); + living.addPotionEffect(new EffectInstance(Effects.POISON, currentLevel >= 0 ? (amp > -1 && poisonLevel[currentLevel] != amp) ? poisonDuration[currentLevel] / 2 : poisonDuration[currentLevel] : 0, currentLevel >= 0 ? (amp > -1) ? Math.max(poisonLevel[currentLevel], amp) + 1 : poisonLevel[currentLevel] : 0)); break; case DEFAULT: if (this.potion != null) - for (PotionEffect i : this.potion.getEffects()) { - living.addPotionEffect(new PotionEffect(i.getPotion(), i.getDuration(), i.getAmplifier())); + for (EffectInstance i : this.potion.getEffects()) { + living.addPotionEffect(new EffectInstance(i.getPotion(), i.getDuration(), i.getAmplifier())); } break; case DESTRUCTIVE: @@ -123,32 +121,32 @@ public class EntitySentientArrow extends EntityTippedArrow { break; case STEADFAST: if (this.potion != null) - for (PotionEffect i : this.potion.getEffects()) { + for (EffectInstance i : this.potion.getEffects()) { if (i.getEffectName().equals("levitation")) { amp = i.getAmplifier(); continue; } - living.addPotionEffect(new PotionEffect(i.getPotion(), i.getDuration(), i.getAmplifier())); + living.addPotionEffect(new EffectInstance(i.getPotion(), i.getDuration(), i.getAmplifier())); } - living.addPotionEffect(new PotionEffect(MobEffects.LEVITATION, currentLevel >= 0 ? (amp > -1 && levitationLevel[currentLevel] != amp) ? levitationDuration[currentLevel] / 2 : levitationDuration[currentLevel] : 0, currentLevel >= 0 ? (amp > -1) ? Math.max(levitationLevel[currentLevel], amp) + 1 : levitationLevel[currentLevel] : 0)); + living.addPotionEffect(new EffectInstance(Effects.LEVITATION, currentLevel >= 0 ? (amp > -1 && levitationLevel[currentLevel] != amp) ? levitationDuration[currentLevel] / 2 : levitationDuration[currentLevel] : 0, currentLevel >= 0 ? (amp > -1) ? Math.max(levitationLevel[currentLevel], amp) + 1 : levitationLevel[currentLevel] : 0)); break; case VENGEFUL: if (this.potion != null) - for (PotionEffect i : this.potion.getEffects()) { + for (EffectInstance i : this.potion.getEffects()) { if (i.getEffectName().equals("slowness")) { amp = i.getAmplifier(); continue; } - living.addPotionEffect(new PotionEffect(i.getPotion(), i.getDuration(), i.getAmplifier())); + living.addPotionEffect(new EffectInstance(i.getPotion(), i.getDuration(), i.getAmplifier())); } - living.addPotionEffect(new PotionEffect(MobEffects.SLOWNESS, currentLevel >= 0 ? (amp > -1 && slownessLevel[currentLevel] != amp) ? slownessDuration[currentLevel] / 2 : slownessDuration[currentLevel] : 0, currentLevel >= 0 ? (amp > -1) ? Math.max(slownessLevel[currentLevel], amp) + 1 : slownessLevel[currentLevel] : 0)); + living.addPotionEffect(new EffectInstance(Effects.SLOWNESS, currentLevel >= 0 ? (amp > -1 && slownessLevel[currentLevel] != amp) ? slownessDuration[currentLevel] / 2 : slownessDuration[currentLevel] : 0, currentLevel >= 0 ? (amp > -1) ? Math.max(slownessLevel[currentLevel], amp) + 1 : slownessLevel[currentLevel] : 0)); break; default: break; } if (this.specialArrowClass != null) { try { - this.specialHit = this.specialArrowClass.getMethod("arrowHit", EntityLivingBase.class); + this.specialHit = this.specialArrowClass.getMethod("arrowHit", LivingEntity.class); this.specialHitMH = MethodHandles.lookup().unreflect(this.specialHit).bindTo(this.specialEntity); } catch (IllegalAccessException e) { e.printStackTrace(); @@ -220,14 +218,14 @@ public class EntitySentientArrow extends EntityTippedArrow { } //TODO: Potion splash (for destructive will fired tipped arrows) currently does not have a visual effect. - private void createPotionFromArrow(EntityLivingBase living) { + private void createPotionFromArrow(LivingEntity living) { if (this.potion != null) { float radius = currentLevel >= 0 ? destructiveExplosionRadius[currentLevel] : 0; AxisAlignedBB axisalignedbb = this.getEntityBoundingBox().grow(radius * 2, radius, radius * 2); - List list = this.world.getEntitiesWithinAABB(EntityLivingBase.class, axisalignedbb); + List list = this.world.getEntitiesWithinAABB(LivingEntity.class, axisalignedbb); if (!list.isEmpty()) { - for (EntityLivingBase entitylivingbase : list) { + for (LivingEntity entitylivingbase : list) { if (entitylivingbase.canBeHitWithPotion()) { double d0 = this.getDistanceSq(entitylivingbase); @@ -238,8 +236,8 @@ public class EntitySentientArrow extends EntityTippedArrow { d1 = 1.0D; } - for (PotionEffect potioneffect : this.potion.getEffects()) { - Potion potion = potioneffect.getPotion(); + for (EffectInstance potioneffect : this.potion.getEffects()) { + Effect potion = potioneffect.getPotion(); if (potion.isInstant()) { potion.affectEntity(this, this.shootingEntity, entitylivingbase, potioneffect.getAmplifier(), d1); @@ -247,7 +245,7 @@ public class EntitySentientArrow extends EntityTippedArrow { int i = (int) (d1 * (double) potioneffect.getDuration() + 0.5D); if (i > 20) { - entitylivingbase.addPotionEffect(new PotionEffect(potion, i, potioneffect.getAmplifier(), potioneffect.getIsAmbient(), potioneffect.doesShowParticles())); + entitylivingbase.addPotionEffect(new EffectInstance(potion, i, potioneffect.getAmplifier(), potioneffect.getIsAmbient(), potioneffect.doesShowParticles())); } } } @@ -259,7 +257,7 @@ public class EntitySentientArrow extends EntityTippedArrow { } @Override - public void writeEntityToNBT(NBTTagCompound tag) { + public void writeEntityToNBT(CompoundNBT tag) { super.writeEntityToNBT(tag); tag.setDouble("reimbursement", reimbursedAmountOnHit); @@ -268,7 +266,7 @@ public class EntitySentientArrow extends EntityTippedArrow { } @Override - public void readEntityFromNBT(NBTTagCompound tag) { + public void readEntityFromNBT(CompoundNBT tag) { super.readEntityFromNBT(tag); reimbursedAmountOnHit = tag.getDouble("reimbursement"); diff --git a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySoulSnare.java b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySoulSnare.java index f0a5ef66..5fc9ff13 100644 --- a/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySoulSnare.java +++ b/src/main/java/WayofTime/bloodmagic/entity/projectile/EntitySoulSnare.java @@ -1,21 +1,21 @@ package WayofTime.bloodmagic.entity.projectile; import WayofTime.bloodmagic.core.RegistrarBloodMagic; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.projectile.EntityThrowable; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.projectile.ThrowableEntity; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.DamageSource; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; -public class EntitySoulSnare extends EntityThrowable { +public class EntitySoulSnare extends ThrowableEntity { public EntitySoulSnare(World worldIn) { super(worldIn); } - public EntitySoulSnare(World worldIn, EntityLivingBase throwerIn) { + public EntitySoulSnare(World worldIn, LivingEntity throwerIn) { super(worldIn, throwerIn); } @@ -28,9 +28,9 @@ public class EntitySoulSnare extends EntityThrowable { if (result.entityHit == this.getThrower() || this.ticksExisted < 2 || getEntityWorld().isRemote) return; - if (result.entityHit instanceof EntityLivingBase) { + if (result.entityHit instanceof LivingEntity) { if (result.entityHit.getEntityWorld().rand.nextDouble() < 0.25) - ((EntityLivingBase) result.entityHit).addPotionEffect(new PotionEffect(RegistrarBloodMagic.SOUL_SNARE, 300, 0)); + ((LivingEntity) result.entityHit).addPotionEffect(new EffectInstance(RegistrarBloodMagic.SOUL_SNARE, 300, 0)); result.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.getThrower()), (float) 0); } diff --git a/src/main/java/WayofTime/bloodmagic/event/BoundToolEvent.java b/src/main/java/WayofTime/bloodmagic/event/BoundToolEvent.java index 66c70ea9..68a94aa6 100644 --- a/src/main/java/WayofTime/bloodmagic/event/BoundToolEvent.java +++ b/src/main/java/WayofTime/bloodmagic/event/BoundToolEvent.java @@ -1,14 +1,14 @@ package WayofTime.bloodmagic.event; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.eventhandler.Cancelable; import net.minecraftforge.fml.common.eventhandler.Event; public class BoundToolEvent extends Event { - public EntityPlayer player; + public PlayerEntity player; - public BoundToolEvent(EntityPlayer player) { + public BoundToolEvent(PlayerEntity player) { this.player = player; } @@ -23,7 +23,7 @@ public class BoundToolEvent extends Event { public static class Charge extends BoundToolEvent { public ItemStack result; - public Charge(EntityPlayer player, ItemStack result) { + public Charge(PlayerEntity player, ItemStack result) { super(player); this.result = result; } @@ -41,7 +41,7 @@ public class BoundToolEvent extends Event { public final ItemStack boundTool; public int charge; - public Release(EntityPlayer player, ItemStack boundTool, int charge) { + public Release(PlayerEntity player, ItemStack boundTool, int charge) { super(player); this.boundTool = boundTool; this.charge = charge; diff --git a/src/main/java/WayofTime/bloodmagic/event/ItemBindEvent.java b/src/main/java/WayofTime/bloodmagic/event/ItemBindEvent.java index e5cf73c5..ec613007 100644 --- a/src/main/java/WayofTime/bloodmagic/event/ItemBindEvent.java +++ b/src/main/java/WayofTime/bloodmagic/event/ItemBindEvent.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.event; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.eventhandler.Cancelable; import net.minecraftforge.fml.common.eventhandler.Event; @@ -8,7 +8,7 @@ import net.minecraftforge.fml.common.eventhandler.Event; @Cancelable public class ItemBindEvent extends Event { - private final EntityPlayer player; + private final PlayerEntity player; private final ItemStack itemStack; /** @@ -20,12 +20,12 @@ public class ItemBindEvent extends Event { *

* This event is {@link Cancelable}.
*/ - public ItemBindEvent(EntityPlayer player, ItemStack itemStack) { + public ItemBindEvent(PlayerEntity player, ItemStack itemStack) { this.player = player; this.itemStack = itemStack; } - public EntityPlayer getNewOwner() { + public PlayerEntity getNewOwner() { return player; } diff --git a/src/main/java/WayofTime/bloodmagic/event/RitualEvent.java b/src/main/java/WayofTime/bloodmagic/event/RitualEvent.java index 08d94f85..2a5d5536 100644 --- a/src/main/java/WayofTime/bloodmagic/event/RitualEvent.java +++ b/src/main/java/WayofTime/bloodmagic/event/RitualEvent.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.ritual.IMasterRitualStone; import WayofTime.bloodmagic.ritual.Ritual; import WayofTime.bloodmagic.ritual.imperfect.IImperfectRitualStone; import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.world.World; import net.minecraftforge.fml.common.eventhandler.Cancelable; @@ -40,16 +40,16 @@ public class RitualEvent extends Event { * This event is called when a ritual is activated. If cancelled, it will * not activate. *

- * {@link WayofTime.bloodmagic.tile.TileMasterRitualStone#activateRitual(ItemStack, EntityPlayer, Ritual)} + * {@link WayofTime.bloodmagic.tile.TileMasterRitualStone#activateRitual(ItemStack, PlayerEntity, Ritual)} */ @Cancelable public static class RitualActivatedEvent extends RitualEvent { - private final EntityPlayer player; + private final PlayerEntity player; private final ItemStack crystalStack; private final int crystalTier; - public RitualActivatedEvent(IMasterRitualStone mrs, UUID ownerId, Ritual ritual, EntityPlayer player, ItemStack activationCrystal, int crystalTier) { + public RitualActivatedEvent(IMasterRitualStone mrs, UUID ownerId, Ritual ritual, PlayerEntity player, ItemStack activationCrystal, int crystalTier) { super(mrs, ownerId, ritual); this.player = player; @@ -57,7 +57,7 @@ public class RitualEvent extends Event { this.crystalTier = crystalTier; } - public EntityPlayer getPlayer() { + public PlayerEntity getPlayer() { return player; } @@ -109,10 +109,10 @@ public class RitualEvent extends Event { public static class ImperfectRitualActivatedEvent extends Event { private final IImperfectRitualStone ims; - private final EntityPlayer activator; + private final PlayerEntity activator; private final ImperfectRitual imperfectRitual; - public ImperfectRitualActivatedEvent(IImperfectRitualStone ims, EntityPlayer activator, ImperfectRitual imperfectRitual) { + public ImperfectRitualActivatedEvent(IImperfectRitualStone ims, PlayerEntity activator, ImperfectRitual imperfectRitual) { this.ims = ims; this.activator = activator; this.imperfectRitual = imperfectRitual; @@ -122,7 +122,7 @@ public class RitualEvent extends Event { return ims; } - public EntityPlayer getActivator() { + public PlayerEntity getActivator() { return activator; } diff --git a/src/main/java/WayofTime/bloodmagic/event/SacrificeKnifeUsedEvent.java b/src/main/java/WayofTime/bloodmagic/event/SacrificeKnifeUsedEvent.java index 982166b7..0893883f 100644 --- a/src/main/java/WayofTime/bloodmagic/event/SacrificeKnifeUsedEvent.java +++ b/src/main/java/WayofTime/bloodmagic/event/SacrificeKnifeUsedEvent.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.event; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraftforge.fml.common.eventhandler.Cancelable; import net.minecraftforge.fml.common.eventhandler.Event; @Cancelable public class SacrificeKnifeUsedEvent extends Event { - public final EntityPlayer player; + public final PlayerEntity player; public final int healthDrained; public int lpAdded; public boolean shouldDrainHealth; @@ -25,7 +25,7 @@ public class SacrificeKnifeUsedEvent extends Event { *

* This event is {@link Cancelable}.
*/ - public SacrificeKnifeUsedEvent(EntityPlayer player, boolean shouldDrainHealth, boolean shouldFillAltar, int hp, int lpAdded) { + public SacrificeKnifeUsedEvent(PlayerEntity player, boolean shouldDrainHealth, boolean shouldFillAltar, int hp, int lpAdded) { this.player = player; this.shouldDrainHealth = shouldDrainHealth; this.shouldFillAltar = shouldFillAltar; diff --git a/src/main/java/WayofTime/bloodmagic/event/SoulNetworkEvent.java b/src/main/java/WayofTime/bloodmagic/event/SoulNetworkEvent.java index 560b19a5..0aae8212 100644 --- a/src/main/java/WayofTime/bloodmagic/event/SoulNetworkEvent.java +++ b/src/main/java/WayofTime/bloodmagic/event/SoulNetworkEvent.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.event; import WayofTime.bloodmagic.core.data.SoulNetwork; import WayofTime.bloodmagic.core.data.SoulTicket; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.eventhandler.Cancelable; import net.minecraftforge.fml.common.eventhandler.Event; @@ -63,15 +63,15 @@ public class SoulNetworkEvent extends Event { public static class User extends Syphon { - private final EntityPlayer user; + private final PlayerEntity user; - public User(SoulNetwork network, SoulTicket ticket, EntityPlayer user) { + public User(SoulNetwork network, SoulTicket ticket, PlayerEntity user) { super(network, ticket); this.user = user; } - public EntityPlayer getUser() { + public PlayerEntity getUser() { return user; } } diff --git a/src/main/java/WayofTime/bloodmagic/event/TeleposeEvent.java b/src/main/java/WayofTime/bloodmagic/event/TeleposeEvent.java index 856c9917..527f9e19 100644 --- a/src/main/java/WayofTime/bloodmagic/event/TeleposeEvent.java +++ b/src/main/java/WayofTime/bloodmagic/event/TeleposeEvent.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.event; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; @@ -17,11 +17,11 @@ import net.minecraftforge.fml.common.eventhandler.Event; public class TeleposeEvent extends Event { public final World initalWorld; public final BlockPos initialBlockPos; - public final IBlockState initialState; + public final BlockState initialState; public final World finalWorld; public final BlockPos finalBlockPos; - public final IBlockState finalState; + public final BlockState finalState; public TeleposeEvent(World initialWorld, BlockPos initialBlockPos, World finalWorld, BlockPos finalBlockPos) { this.initalWorld = initialWorld; diff --git a/src/main/java/WayofTime/bloodmagic/fakePlayer/FakeNetHandlerPlayServer.java b/src/main/java/WayofTime/bloodmagic/fakePlayer/FakeNetHandlerPlayServer.java index eb33e3fe..92508702 100644 --- a/src/main/java/WayofTime/bloodmagic/fakePlayer/FakeNetHandlerPlayServer.java +++ b/src/main/java/WayofTime/bloodmagic/fakePlayer/FakeNetHandlerPlayServer.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.fakePlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.network.EnumPacketDirection; -import net.minecraft.network.NetHandlerPlayServer; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.network.IPacket; +import net.minecraft.network.PacketDirection; +import net.minecraft.network.play.ServerPlayNetHandler; import net.minecraft.network.NetworkManager; -import net.minecraft.network.Packet; import net.minecraft.network.play.client.*; -import net.minecraft.network.play.server.SPacketPlayerPosLook; +import net.minecraft.network.play.server.SPlayerPositionLookPacket; import net.minecraft.util.text.ITextComponent; import net.minecraftforge.fml.common.FMLCommonHandler; @@ -15,9 +15,9 @@ import java.util.Set; /** * All credits for this go to CrazyPants, from EIO */ -public class FakeNetHandlerPlayServer extends NetHandlerPlayServer { - public FakeNetHandlerPlayServer(EntityPlayerMP p_i1530_3_) { - super(FMLCommonHandler.instance().getMinecraftServerInstance(), new net.minecraft.network.NetworkManager(EnumPacketDirection.CLIENTBOUND), p_i1530_3_); +public class FakeNetHandlerPlayServer extends ServerPlayNetHandler { + public FakeNetHandlerPlayServer(ServerPlayerEntity p_i1530_3_) { + super(FMLCommonHandler.instance().getMinecraftServerInstance(), new net.minecraft.network.NetworkManager(PacketDirection.CLIENTBOUND), p_i1530_3_); } @Override @@ -34,39 +34,39 @@ public class FakeNetHandlerPlayServer extends NetHandlerPlayServer { } @Override - public void processVehicleMove(CPacketVehicleMove packetIn) { + public void processVehicleMove(CMoveVehiclePacket packetIn) { } @Override - public void processConfirmTeleport(CPacketConfirmTeleport packetIn) { + public void processConfirmTeleport(CConfirmTeleportPacket packetIn) { } @Override - public void setPlayerLocation(double x, double y, double z, float yaw, float pitch, Set relativeSet) { + public void setPlayerLocation(double x, double y, double z, float yaw, float pitch, Set relativeSet) { } @Override - public void processTryUseItemOnBlock(CPacketPlayerTryUseItemOnBlock packetIn) { + public void processTryUseItemOnBlock(CPlayerTryUseItemOnBlockPacket packetIn) { } @Override - public void processTryUseItem(CPacketPlayerTryUseItem packetIn) { + public void processTryUseItem(CPlayerTryUseItemPacket packetIn) { } @Override - public void processSteerBoat(CPacketSteerBoat packetIn) { + public void processSteerBoat(CSteerBoatPacket packetIn) { } @Override - public void processCustomPayload(CPacketCustomPayload packetIn) { + public void processCustomPayload(CCustomPayloadPacket packetIn) { } @Override - public void processInput(CPacketInput p_147358_1_) { + public void processInput(CInputPacket p_147358_1_) { } @Override - public void processPlayer(CPacketPlayer p_147347_1_) { + public void processPlayer(CPlayerPacket p_147347_1_) { } @Override @@ -74,7 +74,7 @@ public class FakeNetHandlerPlayServer extends NetHandlerPlayServer { } @Override - public void processPlayerDigging(CPacketPlayerDigging p_147345_1_) { + public void processPlayerDigging(CPlayerDiggingPacket p_147345_1_) { } @Override @@ -82,79 +82,79 @@ public class FakeNetHandlerPlayServer extends NetHandlerPlayServer { } @Override - public void sendPacket(Packet p_147359_1_) { + public void sendPacket(IPacket p_147359_1_) { } @Override - public void processHeldItemChange(CPacketHeldItemChange p_147355_1_) { + public void processHeldItemChange(CHeldItemChangePacket p_147355_1_) { } @Override - public void processChatMessage(CPacketChatMessage p_147354_1_) { + public void processChatMessage(CChatMessagePacket p_147354_1_) { } @Override - public void handleAnimation(CPacketAnimation packetIn) { + public void handleAnimation(CAnimateHandPacket packetIn) { } @Override - public void processEntityAction(CPacketEntityAction p_147357_1_) { + public void processEntityAction(CEntityActionPacket p_147357_1_) { } @Override - public void processUseEntity(CPacketUseEntity p_147340_1_) { + public void processUseEntity(CUseEntityPacket p_147340_1_) { } @Override - public void processClientStatus(CPacketClientStatus p_147342_1_) { + public void processClientStatus(CClientStatusPacket p_147342_1_) { } @Override - public void processCloseWindow(CPacketCloseWindow p_147356_1_) { + public void processCloseWindow(CCloseWindowPacket p_147356_1_) { } @Override - public void processClickWindow(CPacketClickWindow p_147351_1_) { + public void processClickWindow(CClickWindowPacket p_147351_1_) { } @Override - public void processEnchantItem(CPacketEnchantItem p_147338_1_) { + public void processEnchantItem(CEnchantItemPacket p_147338_1_) { } @Override - public void processCreativeInventoryAction(CPacketCreativeInventoryAction p_147344_1_) { + public void processCreativeInventoryAction(CCreativeInventoryActionPacket p_147344_1_) { } @Override - public void processConfirmTransaction(CPacketConfirmTransaction p_147339_1_) { + public void processConfirmTransaction(CConfirmTransactionPacket p_147339_1_) { } @Override - public void processUpdateSign(CPacketUpdateSign p_147343_1_) { + public void processUpdateSign(CUpdateSignPacket p_147343_1_) { } @Override - public void processKeepAlive(CPacketKeepAlive p_147353_1_) { + public void processKeepAlive(CKeepAlivePacket p_147353_1_) { } @Override - public void processPlayerAbilities(CPacketPlayerAbilities p_147348_1_) { + public void processPlayerAbilities(CPlayerAbilitiesPacket p_147348_1_) { } @Override - public void processTabComplete(CPacketTabComplete p_147341_1_) { + public void processTabComplete(CTabCompletePacket p_147341_1_) { } @Override - public void processClientSettings(CPacketClientSettings p_147352_1_) { + public void processClientSettings(CClientSettingsPacket p_147352_1_) { } @Override - public void handleSpectate(CPacketSpectate packetIn) { + public void handleSpectate(CSpectatePacket packetIn) { } @Override - public void handleResourcePackStatus(CPacketResourcePackStatus packetIn) { + public void handleResourcePackStatus(CResourcePackStatusPacket packetIn) { } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/fakePlayer/FakePlayerBM.java b/src/main/java/WayofTime/bloodmagic/fakePlayer/FakePlayerBM.java index 03fc7b83..e8436777 100644 --- a/src/main/java/WayofTime/bloodmagic/fakePlayer/FakePlayerBM.java +++ b/src/main/java/WayofTime/bloodmagic/fakePlayer/FakePlayerBM.java @@ -2,10 +2,10 @@ package WayofTime.bloodmagic.fakePlayer; import com.mojang.authlib.GameProfile; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import net.minecraftforge.common.util.FakePlayer; import net.minecraftforge.fml.common.FMLCommonHandler; @@ -17,7 +17,7 @@ import javax.annotation.Nullable; @SuppressWarnings("EntityConstructor") public class FakePlayerBM extends FakePlayer { - public FakePlayerBM(WorldServer world, GameProfile name) { + public FakePlayerBM(ServerWorld world, GameProfile name) { super(world, name); } @@ -30,15 +30,15 @@ public class FakePlayerBM extends FakePlayer { } @Override - protected void onNewPotionEffect(PotionEffect p_70670_1_) { + protected void onNewPotionEffect(EffectInstance p_70670_1_) { } @Override - protected void onChangedPotionEffect(PotionEffect effect, boolean p_70695_2_) { + protected void onChangedPotionEffect(EffectInstance effect, boolean p_70695_2_) { } @Override - protected void onFinishedPotionEffect(PotionEffect effect) { + protected void onFinishedPotionEffect(EffectInstance effect) { } protected void playEquipSound(@Nullable ItemStack stack) { diff --git a/src/main/java/WayofTime/bloodmagic/gson/Serializers.java b/src/main/java/WayofTime/bloodmagic/gson/Serializers.java index 1f940d2e..543c3e38 100644 --- a/src/main/java/WayofTime/bloodmagic/gson/Serializers.java +++ b/src/main/java/WayofTime/bloodmagic/gson/Serializers.java @@ -5,9 +5,9 @@ import com.google.gson.*; import net.minecraft.item.ItemStack; import net.minecraft.network.PacketBuffer; import net.minecraft.network.datasync.DataParameter; -import net.minecraft.network.datasync.DataSerializer; +import net.minecraft.network.datasync.IDataSerializer; import net.minecraft.network.datasync.DataSerializers; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.common.registry.ForgeRegistries; @@ -15,7 +15,7 @@ import java.lang.reflect.Type; public class Serializers { // Data serializers - public static final DataSerializer WILL_TYPE_SERIALIZER = new DataSerializer() { + public static final IDataSerializer WILL_TYPE_SERIALIZER = new IDataSerializer() { @Override public void write(PacketBuffer buf, EnumDemonWillType value) { buf.writeEnumValue(value); @@ -38,15 +38,15 @@ public class Serializers { }; // Serializers - public static final SerializerBase FACING_SERIALIZER = new SerializerBase() { + public static final SerializerBase FACING_SERIALIZER = new SerializerBase() { @Override - public Class getType() { - return EnumFacing.class; + public Class getType() { + return Direction.class; } @Override - public EnumFacing deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { - return EnumFacing.byName(json.getAsString()); + public Direction deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { + return Direction.byName(json.getAsString()); } }; public static final SerializerBase RESOURCELOCATION_SERIALIZER = new SerializerBase() { diff --git a/src/main/java/WayofTime/bloodmagic/iface/IActivatable.java b/src/main/java/WayofTime/bloodmagic/iface/IActivatable.java index e5ee95e9..f5435580 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/IActivatable.java +++ b/src/main/java/WayofTime/bloodmagic/iface/IActivatable.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.iface; import WayofTime.bloodmagic.util.Constants; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import javax.annotation.Nonnull; @@ -16,7 +16,7 @@ public interface IActivatable { default ItemStack setActivatedState(ItemStack stack, boolean activated) { if (!stack.isEmpty()) { if (!stack.hasTagCompound()) - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); stack.getTagCompound().setBoolean(Constants.NBT.ACTIVATED, activated); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/IAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/iface/IAlchemyArray.java index f8026ce3..4b3321c6 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/IAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/iface/IAlchemyArray.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.iface; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IAlchemyArray { - EnumFacing getRotation(); + Direction getRotation(); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/IBindable.java b/src/main/java/WayofTime/bloodmagic/iface/IBindable.java index cc2dad03..6253c37b 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/IBindable.java +++ b/src/main/java/WayofTime/bloodmagic/iface/IBindable.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.iface; import WayofTime.bloodmagic.core.data.Binding; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import javax.annotation.Nullable; @@ -32,7 +32,7 @@ public interface IBindable { * @param stack - The ItemStack to attempt binding * @return If binding was successful. */ - default boolean onBind(EntityPlayer player, ItemStack stack) { + default boolean onBind(PlayerEntity player, ItemStack stack) { return true; } } diff --git a/src/main/java/WayofTime/bloodmagic/iface/IBloodRune.java b/src/main/java/WayofTime/bloodmagic/iface/IBloodRune.java index 39863d68..51ae4323 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/IBloodRune.java +++ b/src/main/java/WayofTime/bloodmagic/iface/IBloodRune.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.iface; import WayofTime.bloodmagic.block.enums.BloodRuneType; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; @@ -11,5 +11,5 @@ import javax.annotation.Nullable; public interface IBloodRune { @Nullable - BloodRuneType getBloodRune(IBlockAccess world, BlockPos pos, IBlockState state); + BloodRuneType getBloodRune(IBlockAccess world, BlockPos pos, BlockState state); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/IDemonWillViewer.java b/src/main/java/WayofTime/bloodmagic/iface/IDemonWillViewer.java index 10c58212..2647c6f6 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/IDemonWillViewer.java +++ b/src/main/java/WayofTime/bloodmagic/iface/IDemonWillViewer.java @@ -1,11 +1,11 @@ package WayofTime.bloodmagic.iface; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.world.World; public interface IDemonWillViewer { - boolean canSeeDemonWillAura(World world, ItemStack stack, EntityPlayer player); + boolean canSeeDemonWillAura(World world, ItemStack stack, PlayerEntity player); - int getDemonWillAuraResolution(World world, ItemStack stack, EntityPlayer player); + int getDemonWillAuraResolution(World world, ItemStack stack, PlayerEntity player); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/IDocumentedBlock.java b/src/main/java/WayofTime/bloodmagic/iface/IDocumentedBlock.java index 7a991bab..5038d0a0 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/IDocumentedBlock.java +++ b/src/main/java/WayofTime/bloodmagic/iface/IDocumentedBlock.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.iface; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; import net.minecraft.world.World; @@ -28,5 +28,5 @@ public interface IDocumentedBlock { * Provide an empty list if there is no available documentation. */ @Nonnull - List getDocumentation(EntityPlayer player, World world, BlockPos pos, IBlockState state); + List getDocumentation(PlayerEntity player, World world, BlockPos pos, BlockState state); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/ISentientSwordEffectProvider.java b/src/main/java/WayofTime/bloodmagic/iface/ISentientSwordEffectProvider.java index db74ba4a..e620478f 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/ISentientSwordEffectProvider.java +++ b/src/main/java/WayofTime/bloodmagic/iface/ISentientSwordEffectProvider.java @@ -1,11 +1,11 @@ package WayofTime.bloodmagic.iface; import WayofTime.bloodmagic.soul.EnumDemonWillType; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.item.ItemStack; public interface ISentientSwordEffectProvider { - boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, EntityLivingBase attacker, EntityLivingBase target); + boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, LivingEntity attacker, LivingEntity target); boolean providesEffectForWill(EnumDemonWillType type); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/ISentientTool.java b/src/main/java/WayofTime/bloodmagic/iface/ISentientTool.java index 3f9693ab..a36935e2 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/ISentientTool.java +++ b/src/main/java/WayofTime/bloodmagic/iface/ISentientTool.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.iface; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; public interface ISentientTool { - boolean spawnSentientEntityOnDrop(ItemStack droppedStack, EntityPlayer player); + boolean spawnSentientEntityOnDrop(ItemStack droppedStack, PlayerEntity player); } diff --git a/src/main/java/WayofTime/bloodmagic/iface/ISigil.java b/src/main/java/WayofTime/bloodmagic/iface/ISigil.java index 017df5c1..683fdf3c 100644 --- a/src/main/java/WayofTime/bloodmagic/iface/ISigil.java +++ b/src/main/java/WayofTime/bloodmagic/iface/ISigil.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.iface; import WayofTime.bloodmagic.item.sigil.ItemSigil; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -24,6 +24,6 @@ public interface ISigil { interface Holding { @Nonnull - ItemStack getHeldItem(ItemStack holdingStack, EntityPlayer player); + ItemStack getHeldItem(ItemStack holdingStack, PlayerEntity player); } } diff --git a/src/main/java/WayofTime/bloodmagic/incense/IIncensePath.java b/src/main/java/WayofTime/bloodmagic/incense/IIncensePath.java index fa747980..77efdb42 100644 --- a/src/main/java/WayofTime/bloodmagic/incense/IIncensePath.java +++ b/src/main/java/WayofTime/bloodmagic/incense/IIncensePath.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.incense; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -10,5 +10,5 @@ public interface IIncensePath { * still functioning. 0 represents a block that can work when it is two * blocks horizontally away from the altar. */ - int getLevelOfPath(World world, BlockPos pos, IBlockState state); + int getLevelOfPath(World world, BlockPos pos, BlockState state); } diff --git a/src/main/java/WayofTime/bloodmagic/incense/ITranquilityHandler.java b/src/main/java/WayofTime/bloodmagic/incense/ITranquilityHandler.java index 6f4cef45..af9e425c 100644 --- a/src/main/java/WayofTime/bloodmagic/incense/ITranquilityHandler.java +++ b/src/main/java/WayofTime/bloodmagic/incense/ITranquilityHandler.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.incense; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; public interface ITranquilityHandler { - TranquilityStack getTranquilityOfBlock(World world, BlockPos pos, Block block, IBlockState state); + TranquilityStack getTranquilityOfBlock(World world, BlockPos pos, Block block, BlockState state); } diff --git a/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarComponent.java b/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarComponent.java index b9ef76f0..ebdd88ca 100644 --- a/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarComponent.java +++ b/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarComponent.java @@ -1,33 +1,33 @@ package WayofTime.bloodmagic.incense; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockState; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; public class IncenseAltarComponent { public final BlockPos offsetPos; public final Block block; - public final IBlockState state; + public final BlockState state; - public IncenseAltarComponent(BlockPos offsetPos, Block block, IBlockState state) { + public IncenseAltarComponent(BlockPos offsetPos, Block block, BlockState state) { this.offsetPos = offsetPos; this.block = block; this.state = state; } - public boolean doesBlockMatch(Block block, IBlockState state) { + public boolean doesBlockMatch(Block block, BlockState state) { return this.block == block && block.getMetaFromState(state) == this.block.getMetaFromState(this.state); } /** * Base rotation is north. */ - public BlockPos getOffset(EnumFacing rotation) { + public BlockPos getOffset(Direction rotation) { return new BlockPos(this.getX(rotation), offsetPos.getY(), this.getZ(rotation)); } - public int getX(EnumFacing direction) { + public int getX(Direction direction) { switch (direction) { case EAST: return -this.offsetPos.getZ(); @@ -40,7 +40,7 @@ public class IncenseAltarComponent { } } - public int getZ(EnumFacing direction) { + public int getZ(Direction direction) { switch (direction) { case EAST: return this.offsetPos.getX(); diff --git a/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarHandler.java b/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarHandler.java index f41928c1..ad8a1659 100644 --- a/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarHandler.java +++ b/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarHandler.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.incense; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockState; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -28,7 +28,7 @@ public class IncenseAltarHandler { } } - public static void registerIncenseComponent(int altarLevel, BlockPos offsetPos, Block block, IBlockState state) { + public static void registerIncenseComponent(int altarLevel, BlockPos offsetPos, Block block, BlockState state) { registerIncenseComponent(altarLevel, new IncenseAltarComponent(offsetPos, block, state)); } @@ -42,8 +42,8 @@ public class IncenseAltarHandler { } else { boolean hasAllComponentsThisTier = true; for (IncenseAltarComponent component : incenseComponentMap.get(i)) { - BlockPos offsetPos = pos.add(component.getOffset(EnumFacing.NORTH)); - IBlockState state = world.getBlockState(offsetPos); + BlockPos offsetPos = pos.add(component.getOffset(Direction.NORTH)); + BlockState state = world.getBlockState(offsetPos); Block block = state.getBlock(); if (component.doesBlockMatch(block, state)) { hasAllComponentsThisTier = false; diff --git a/src/main/java/WayofTime/bloodmagic/incense/IncenseTranquilityRegistry.java b/src/main/java/WayofTime/bloodmagic/incense/IncenseTranquilityRegistry.java index e291bbf9..8273d848 100644 --- a/src/main/java/WayofTime/bloodmagic/incense/IncenseTranquilityRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/incense/IncenseTranquilityRegistry.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.incense; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -15,7 +15,7 @@ public class IncenseTranquilityRegistry { handlerList.add(handler); } - public static TranquilityStack getTranquilityOfBlock(World world, BlockPos pos, Block block, IBlockState state) { + public static TranquilityStack getTranquilityOfBlock(World world, BlockPos pos, Block block, BlockState state) { for (ITranquilityHandler handler : handlerList) { TranquilityStack tranq = handler.getTranquilityOfBlock(world, pos, block, state); if (tranq != null) { diff --git a/src/main/java/WayofTime/bloodmagic/inversion/CorruptionHandler.java b/src/main/java/WayofTime/bloodmagic/inversion/CorruptionHandler.java index 1e916933..baad0d7b 100644 --- a/src/main/java/WayofTime/bloodmagic/inversion/CorruptionHandler.java +++ b/src/main/java/WayofTime/bloodmagic/inversion/CorruptionHandler.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.inversion; import WayofTime.bloodmagic.soul.EnumDemonWillType; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import org.apache.commons.lang3.tuple.Pair; @@ -11,36 +11,36 @@ import java.util.HashMap; import java.util.Map; public class CorruptionHandler { - public static Map, Map> corruptBlockMap = new HashMap<>(); + public static Map, Map> corruptBlockMap = new HashMap<>(); - public static void registerBlockCorruption(EnumDemonWillType type, Block block, int meta, IBlockState corruptedState) { + public static void registerBlockCorruption(EnumDemonWillType type, Block block, int meta, BlockState corruptedState) { Pair pair = Pair.of(block, meta); if (corruptBlockMap.containsKey(pair)) { - Map stateMap = corruptBlockMap.get(pair); + Map stateMap = corruptBlockMap.get(pair); stateMap.put(type, corruptedState); } else { - Map stateMap = new HashMap<>(); + Map stateMap = new HashMap<>(); stateMap.put(type, corruptedState); corruptBlockMap.put(pair, stateMap); } } - public static boolean isBlockCorruptible(World world, EnumDemonWillType type, BlockPos pos, IBlockState state, Block block) { + public static boolean isBlockCorruptible(World world, EnumDemonWillType type, BlockPos pos, BlockState state, Block block) { int meta = block.getMetaFromState(state); Pair pair = Pair.of(block, meta); if (corruptBlockMap.containsKey(pair)) { - Map stateMap = corruptBlockMap.get(pair); + Map stateMap = corruptBlockMap.get(pair); return stateMap.containsKey(type); } return false; } - public static boolean corruptBlock(World world, EnumDemonWillType type, BlockPos pos, IBlockState state, Block block) { + public static boolean corruptBlock(World world, EnumDemonWillType type, BlockPos pos, BlockState state, Block block) { int meta = block.getMetaFromState(state); Pair pair = Pair.of(block, meta); if (corruptBlockMap.containsKey(pair)) { - Map stateMap = corruptBlockMap.get(pair); + Map stateMap = corruptBlockMap.get(pair); if (stateMap.containsKey(type)) { return world.setBlockState(pos, stateMap.get(type)); } @@ -75,7 +75,7 @@ public class CorruptionHandler { } BlockPos offsetPos = centerPos.add(i, j, k); - IBlockState offsetState = world.getBlockState(offsetPos); + BlockState offsetState = world.getBlockState(offsetPos); Block offsetBlock = offsetState.getBlock(); corruptBlock(world, type, offsetPos, offsetState, offsetBlock); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemAltarMaker.java b/src/main/java/WayofTime/bloodmagic/item/ItemAltarMaker.java index 9800cce6..8ed4f7b7 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemAltarMaker.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemAltarMaker.java @@ -10,17 +10,17 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.NumeralHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -48,13 +48,13 @@ public class ItemAltarMaker extends Item implements IAltarManipulator, IVariantP } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (world.isRemote) return super.onItemRightClick(world, player, hand); if (!player.capabilities.isCreativeMode) { - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.altarMaker.creativeOnly"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.altarMaker.creativeOnly"), true); return super.onItemRightClick(world, player, hand); } @@ -67,7 +67,7 @@ public class ItemAltarMaker extends Item implements IAltarManipulator, IVariantP stack.getTagCompound().setInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER, stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER) + 1); setTierToBuild(AltarTier.values()[stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER)]); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.altarMaker.setTier", NumeralHelper.toRoman(stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER) + 1)), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.altarMaker.setTier", NumeralHelper.toRoman(stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER) + 1)), true); return super.onItemRightClick(world, player, hand); } @@ -75,9 +75,9 @@ public class ItemAltarMaker extends Item implements IAltarManipulator, IVariantP if (rayTrace == null || rayTrace.typeOfHit != RayTraceResult.Type.BLOCK) return super.onItemRightClick(world, player, hand); - IBlockState state = world.getBlockState(rayTrace.getBlockPos()); + BlockState state = world.getBlockState(rayTrace.getBlockPos()); if (state.getBlock() instanceof BlockAltar) { - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.altarMaker.building", NumeralHelper.toRoman(tierToBuild.toInt())), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.altarMaker.building", NumeralHelper.toRoman(tierToBuild.toInt())), true); buildAltar(world, rayTrace.getBlockPos()); world.notifyBlockUpdate(rayTrace.getBlockPos(), state, state, 3); @@ -115,14 +115,14 @@ public class ItemAltarMaker extends Item implements IAltarManipulator, IVariantP ((IBloodAltar) world.getTileEntity(pos)).checkTier(); } - public String destroyAltar(EntityPlayer player) { + public String destroyAltar(PlayerEntity player) { World world = player.getEntityWorld(); if (world.isRemote) return ""; RayTraceResult rayTrace = rayTrace(world, player, false); BlockPos pos = rayTrace.getBlockPos(); - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); AltarTier altarTier = AltarUtil.getTier(world, pos); if (altarTier.equals(AltarTier.ONE)) diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemArcaneAshes.java b/src/main/java/WayofTime/bloodmagic/item/ItemArcaneAshes.java index 12524c89..df8f3037 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemArcaneAshes.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemArcaneAshes.java @@ -7,13 +7,13 @@ import WayofTime.bloodmagic.tile.TileAlchemyArray; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; @@ -36,13 +36,13 @@ public class ItemArcaneAshes extends Item implements IVariantProvider { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos blockPos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos blockPos, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); BlockPos newPos = blockPos.offset(side); if (world.isAirBlock(newPos)) { if (!world.isRemote) { - EnumFacing rotation = EnumFacing.fromAngle(player.getRotationYawHead()); + Direction rotation = Direction.fromAngle(player.getRotationYawHead()); world.setBlockState(newPos, RegistrarBloodMagicBlocks.ALCHEMY_ARRAY.getDefaultState()); TileEntity tile = world.getTileEntity(newPos); if (tile instanceof TileAlchemyArray) { @@ -52,10 +52,10 @@ public class ItemArcaneAshes extends Item implements IVariantProvider { stack.damageItem(1, player); } - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBindableBase.java b/src/main/java/WayofTime/bloodmagic/item/ItemBindableBase.java index fa5d84e8..fb39ec76 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBindableBase.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBindableBase.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.iface.IBindable; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -29,6 +29,6 @@ public class ItemBindableBase extends Item implements IBindable { Binding binding = getBinding(stack); if (binding != null) - tooltip.add(new TextComponentTranslation("tooltip.bloodmagic.currentOwner", binding.getOwnerName()).getFormattedText()); + tooltip.add(new TranslationTextComponent("tooltip.bloodmagic.currentOwner", binding.getOwnerName()).getFormattedText()); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBloodOrb.java b/src/main/java/WayofTime/bloodmagic/item/ItemBloodOrb.java index 71d20e33..a343b514 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBloodOrb.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBloodOrb.java @@ -9,11 +9,11 @@ import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemGroup; +import net.minecraft.util.SoundEvents; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.*; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; @@ -39,13 +39,13 @@ public class ItemBloodOrb extends ItemBindableBase implements IBloodOrb { } @Override - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; for (BloodOrb orb : RegistrarBloodMagic.BLOOD_ORBS) { ItemStack orbStack = new ItemStack(this); - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); tag.setString("orb", orb.getRegistryName().toString()); orbStack.setTagCompound(tag); list.add(orbStack); @@ -53,12 +53,12 @@ public class ItemBloodOrb extends ItemBindableBase implements IBloodOrb { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); BloodOrb orb = getOrb(stack); if (orb == null) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); if (world == null) return super.onItemRightClick(world, player, hand); diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBoundAxe.java b/src/main/java/WayofTime/bloodmagic/item/ItemBoundAxe.java index 903ce710..934a4efd 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBoundAxe.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBoundAxe.java @@ -9,17 +9,17 @@ import com.google.common.collect.HashMultiset; import com.google.common.collect.Multimap; import com.google.common.collect.Sets; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.enchantment.EnchantmentHelper; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.Enchantments; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -40,17 +40,17 @@ public class ItemBoundAxe extends ItemBoundTool implements IMeshProvider { } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { return true; } @Override - public boolean onBlockDestroyed(ItemStack stack, World world, IBlockState block, BlockPos pos, EntityLivingBase entityLiving) { + public boolean onBlockDestroyed(ItemStack stack, World world, BlockState block, BlockPos pos, LivingEntity entityLiving) { return true; } @Override - protected void onBoundRelease(ItemStack stack, World world, EntityPlayer player, int charge) { + protected void onBoundRelease(ItemStack stack, World world, PlayerEntity player, int charge) { if (world.isRemote) return; @@ -67,7 +67,7 @@ public class ItemBoundAxe extends ItemBoundTool implements IMeshProvider { for (int j = 0; j <= 2 * range; j++) { for (int k = -range; k <= range; k++) { BlockPos blockPos = playerPos.add(i, j, k); - IBlockState blockState = world.getBlockState(blockPos); + BlockState blockState = world.getBlockState(blockPos); if (world.isAirBlock(blockPos)) continue; @@ -89,9 +89,9 @@ public class ItemBoundAxe extends ItemBoundTool implements IMeshProvider { } @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot equipmentSlot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType equipmentSlot, ItemStack stack) { Multimap multimap = super.getItemAttributeModifiers(equipmentSlot); - if (equipmentSlot == EntityEquipmentSlot.MAINHAND) { + if (equipmentSlot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getActivated(stack) ? 11 : 2, 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Tool modifier", -3.0, 0)); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBoundPickaxe.java b/src/main/java/WayofTime/bloodmagic/item/ItemBoundPickaxe.java index 4b422e55..9c648e11 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBoundPickaxe.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBoundPickaxe.java @@ -7,17 +7,17 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import com.google.common.collect.Multimap; import com.google.common.collect.Sets; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.enchantment.EnchantmentHelper; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.Enchantments; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -38,24 +38,24 @@ public class ItemBoundPickaxe extends ItemBoundTool implements IMeshProvider { } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { return true; } @Override - public boolean onBlockDestroyed(ItemStack stack, World world, IBlockState block, BlockPos pos, EntityLivingBase entityLiving) { + public boolean onBlockDestroyed(ItemStack stack, World world, BlockState block, BlockPos pos, LivingEntity entityLiving) { return true; } @Override - public boolean canHarvestBlock(IBlockState blockIn) { + public boolean canHarvestBlock(BlockState blockIn) { return blockIn == Blocks.OBSIDIAN ? this.toolMaterial.getHarvestLevel() == 3 : (blockIn != Blocks.DIAMOND_BLOCK && blockIn != Blocks.DIAMOND_ORE ? (blockIn != Blocks.EMERALD_ORE && blockIn != Blocks.EMERALD_BLOCK ? (blockIn != Blocks.GOLD_BLOCK && blockIn != Blocks.GOLD_ORE ? (blockIn != Blocks.IRON_BLOCK && blockIn != Blocks.IRON_ORE ? (blockIn != Blocks.LAPIS_BLOCK && blockIn != Blocks.LAPIS_ORE ? (blockIn != Blocks.REDSTONE_ORE && blockIn != Blocks.LIT_REDSTONE_ORE ? (blockIn.getMaterial() == Material.ROCK || (blockIn.getMaterial() == Material.IRON || blockIn.getMaterial() == Material.ANVIL)) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 1) : this.toolMaterial.getHarvestLevel() >= 1) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 2) : this.toolMaterial.getHarvestLevel() >= 2); } @Override - public float getDestroySpeed(ItemStack stack, IBlockState state) { + public float getDestroySpeed(ItemStack stack, BlockState state) { if (!getActivated(stack)) return 1.0F; @@ -63,7 +63,7 @@ public class ItemBoundPickaxe extends ItemBoundTool implements IMeshProvider { } @Override - protected void onBoundRelease(ItemStack stack, World world, EntityPlayer player, int charge) { + protected void onBoundRelease(ItemStack stack, World world, PlayerEntity player, int charge) { if (world.isRemote) return; @@ -78,7 +78,7 @@ public class ItemBoundPickaxe extends ItemBoundTool implements IMeshProvider { for (int j = 0; j <= 2 * range; j++) { for (int k = -range; k <= range; k++) { BlockPos blockPos = playerPos.add(i, j, k); - IBlockState blockState = world.getBlockState(blockPos); + BlockState blockState = world.getBlockState(blockPos); if (world.isAirBlock(blockPos)) continue; @@ -100,9 +100,9 @@ public class ItemBoundPickaxe extends ItemBoundTool implements IMeshProvider { } @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot equipmentSlot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType equipmentSlot, ItemStack stack) { Multimap multimap = super.getItemAttributeModifiers(equipmentSlot); - if (equipmentSlot == EntityEquipmentSlot.MAINHAND) { + if (equipmentSlot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getActivated(stack) ? 5 : 2, 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Tool modifier", -2.5, 0)); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBoundShovel.java b/src/main/java/WayofTime/bloodmagic/item/ItemBoundShovel.java index ec4b630e..1606f0e5 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBoundShovel.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBoundShovel.java @@ -9,17 +9,17 @@ import com.google.common.collect.HashMultiset; import com.google.common.collect.Multimap; import com.google.common.collect.Sets; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.enchantment.EnchantmentHelper; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.Enchantments; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -40,17 +40,17 @@ public class ItemBoundShovel extends ItemBoundTool implements IMeshProvider { } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { return true; } @Override - public boolean onBlockDestroyed(ItemStack stack, World world, IBlockState block, BlockPos pos, EntityLivingBase entityLiving) { + public boolean onBlockDestroyed(ItemStack stack, World world, BlockState block, BlockPos pos, LivingEntity entityLiving) { return true; } @Override - protected void onBoundRelease(ItemStack stack, World world, EntityPlayer player, int charge) { + protected void onBoundRelease(ItemStack stack, World world, PlayerEntity player, int charge) { if (world.isRemote) return; int fortuneLvl = EnchantmentHelper.getEnchantmentLevel(Enchantments.FORTUNE, stack); @@ -67,7 +67,7 @@ public class ItemBoundShovel extends ItemBoundTool implements IMeshProvider { for (int j = 0; j <= 2 * range; j++) { for (int k = -range; k <= range; k++) { BlockPos blockPos = playerPos.add(i, j, k); - IBlockState blockState = world.getBlockState(blockPos); + BlockState blockState = world.getBlockState(blockPos); if (world.isAirBlock(blockPos)) continue; @@ -90,9 +90,9 @@ public class ItemBoundShovel extends ItemBoundTool implements IMeshProvider { } @Override - public Multimap getItemAttributeModifiers(EntityEquipmentSlot equipmentSlot) { + public Multimap getItemAttributeModifiers(EquipmentSlotType equipmentSlot) { Multimap multimap = super.getItemAttributeModifiers(equipmentSlot); - if (equipmentSlot == EntityEquipmentSlot.MAINHAND) { + if (equipmentSlot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", 5, 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Tool modifier", -2.5, 0)); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBoundSword.java b/src/main/java/WayofTime/bloodmagic/item/ItemBoundSword.java index 935395da..d3536283 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBoundSword.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBoundSword.java @@ -13,16 +13,16 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.ItemGroup; import net.minecraft.entity.*; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; import net.minecraft.item.ItemStack; -import net.minecraft.item.ItemSword; +import net.minecraft.item.SwordItem; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -32,7 +32,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.util.List; import java.util.function.Consumer; -public class ItemBoundSword extends ItemSword implements IBindable, IActivatable, IMeshProvider { +public class ItemBoundSword extends SwordItem implements IBindable, IActivatable, IMeshProvider { public ItemBoundSword() { super(RegistrarBloodMagicItems.BOUND_TOOL_MATERIAL); @@ -41,7 +41,7 @@ public class ItemBoundSword extends ItemSword implements IBindable, IActivatable } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (player.isSneaking()) setActivatedState(stack, !getActivated(stack)); @@ -67,17 +67,17 @@ public class ItemBoundSword extends ItemSword implements IBindable, IActivatable return; } - if (entity instanceof EntityPlayer && getActivated(stack) && world.getTotalWorldTime() % 80 == 0) - NetworkHelper.getSoulNetwork(binding).syphonAndDamage((EntityPlayer) entity, SoulTicket.item(stack, world, entity, 20)); + if (entity instanceof PlayerEntity && getActivated(stack) && world.getTotalWorldTime() % 80 == 0) + NetworkHelper.getSoulNetwork(binding).syphonAndDamage((PlayerEntity) entity, SoulTicket.item(stack, world, entity, 20)); } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { return true; } @Override - public boolean onBlockDestroyed(ItemStack stack, World world, IBlockState block, BlockPos pos, EntityLivingBase entityLiving) { + public boolean onBlockDestroyed(ItemStack stack, World world, BlockState block, BlockPos pos, LivingEntity entityLiving) { return true; } @@ -88,7 +88,7 @@ public class ItemBoundSword extends ItemSword implements IBindable, IActivatable @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs tab, NonNullList subItems) { + public void getSubItems(ItemGroup tab, NonNullList subItems) { if (!isInCreativeTab(tab)) return; @@ -112,9 +112,9 @@ public class ItemBoundSword extends ItemSword implements IBindable, IActivatable } @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot equipmentSlot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType equipmentSlot, ItemStack stack) { Multimap multimap = HashMultimap.create(); - if (equipmentSlot == EntityEquipmentSlot.MAINHAND) { + if (equipmentSlot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getActivated(stack) ? 8 : 2, 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Weapon modifier", -2.4, 0)); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemBoundTool.java b/src/main/java/WayofTime/bloodmagic/item/ItemBoundTool.java index 4031565f..83bedf2d 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemBoundTool.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemBoundTool.java @@ -14,21 +14,18 @@ import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Multimap; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.*; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.EnumAction; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraft.item.ItemTool; +import net.minecraft.item.ToolItem; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.NonNullList; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -42,7 +39,7 @@ import java.util.List; import java.util.Map; import java.util.Set; -public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { +public class ItemBoundTool extends ToolItem implements IBindable, IActivatable { public final int chargeTime = 30; protected final String tooltipBase; private final String name; @@ -60,7 +57,7 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { } @Override - public float getDestroySpeed(ItemStack stack, IBlockState state) { + public float getDestroySpeed(ItemStack stack, BlockState state) { return getActivated(stack) ? toolMaterial.getEfficiency() : 1.0F; } @@ -70,7 +67,7 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { } @Override - public void getSubItems(CreativeTabs tab, NonNullList subItems) { + public void getSubItems(ItemGroup tab, NonNullList subItems) { if (!isInCreativeTab(tab)) return; @@ -85,15 +82,15 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { return; } - if (entity instanceof EntityPlayer && getActivated(stack) && isSelected && getBeingHeldDown(stack) && stack == ((EntityPlayer) entity).getActiveItemStack()) { - EntityPlayer player = (EntityPlayer) entity; + if (entity instanceof PlayerEntity && getActivated(stack) && isSelected && getBeingHeldDown(stack) && stack == ((PlayerEntity) entity).getActiveItemStack()) { + PlayerEntity player = (PlayerEntity) entity; setHeldDownCount(stack, Math.min(player.getItemInUseCount(), chargeTime)); } else if (!isSelected) { setBeingHeldDown(stack, false); } - if (entity instanceof EntityPlayer && getActivated(stack) && world.getTotalWorldTime() % 80 == 0) - NetworkHelper.getSoulNetwork(binding).syphonAndDamage((EntityPlayer) entity, SoulTicket.item(stack, world, entity, 20)); + if (entity instanceof PlayerEntity && getActivated(stack) && world.getTotalWorldTime() % 80 == 0) + NetworkHelper.getSoulNetwork(binding).syphonAndDamage((PlayerEntity) entity, SoulTicket.item(stack, world, entity, 20)); } protected int getHeldDownCount(ItemStack stack) { @@ -119,7 +116,7 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (player.isSneaking()) setActivatedState(stack, !getActivated(stack)); @@ -127,19 +124,19 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { if (!player.isSneaking() && getActivated(stack)) { BoundToolEvent.Charge event = new BoundToolEvent.Charge(player, stack); if (MinecraftForge.EVENT_BUS.post(event)) - return new ActionResult<>(EnumActionResult.FAIL, event.result); + return new ActionResult<>(ActionResultType.FAIL, event.result); player.setActiveHand(hand); - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } return super.onItemRightClick(world, player, hand); } @Override - public void onPlayerStoppedUsing(ItemStack stack, World worldIn, EntityLivingBase entityLiving, int timeLeft) { - if (entityLiving instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entityLiving; + public void onPlayerStoppedUsing(ItemStack stack, World worldIn, LivingEntity entityLiving, int timeLeft) { + if (entityLiving instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entityLiving; if (!player.isSneaking() && getActivated(stack)) { int i = this.getMaxItemUseDuration(stack) - timeLeft; BoundToolEvent.Release event = new BoundToolEvent.Release(player, stack, i); @@ -154,12 +151,12 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { } } - protected void onBoundRelease(ItemStack stack, World world, EntityPlayer player, int charge) { + protected void onBoundRelease(ItemStack stack, World world, PlayerEntity player, int charge) { } @Override - public ItemStack onItemUseFinish(ItemStack stack, World world, EntityLivingBase entityLiving) { + public ItemStack onItemUseFinish(ItemStack stack, World world, LivingEntity entityLiving) { return stack; } @@ -169,8 +166,8 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { } @Override - public EnumAction getItemUseAction(ItemStack stack) { - return EnumAction.BOW; + public UseAction getItemUseAction(ItemStack stack) { + return UseAction.BOW; } @Override @@ -201,7 +198,7 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { return ImmutableSet.of(name); } - public Multimap getItemAttributeModifiers(EntityEquipmentSlot equipmentSlot) { + public Multimap getItemAttributeModifiers(EquipmentSlotType equipmentSlot) { return ArrayListMultimap.create(); // No-op } @@ -235,7 +232,7 @@ public class ItemBoundTool extends ItemTool implements IBindable, IActivatable { return chargeTime; } - protected void sharedHarvest(ItemStack stack, World world, EntityPlayer player, BlockPos blockPos, IBlockState blockState, boolean silkTouch, int fortuneLvl) { + protected void sharedHarvest(ItemStack stack, World world, PlayerEntity player, BlockPos blockPos, BlockState blockState, boolean silkTouch, int fortuneLvl) { if (blockState.getBlockHardness(world, blockPos) != -1.0F) { float strengthVsBlock = getDestroySpeed(stack, blockState); diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemDaggerOfSacrifice.java b/src/main/java/WayofTime/bloodmagic/item/ItemDaggerOfSacrifice.java index 919a3039..3d4f6c19 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemDaggerOfSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemDaggerOfSacrifice.java @@ -7,12 +7,12 @@ import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import WayofTime.bloodmagic.util.helper.PlayerSacrificeHelper; import WayofTime.bloodmagic.util.helper.PurificationHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.passive.EntityAnimal; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.passive.AnimalEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.util.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.SoundCategory; @@ -32,17 +32,17 @@ public class ItemDaggerOfSacrifice extends Item implements IVariantProvider { } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { if (attacker instanceof FakePlayer) return false; - if (target == null || attacker == null || attacker.getEntityWorld().isRemote || (attacker instanceof EntityPlayer && !(attacker instanceof EntityPlayerMP))) + if (target == null || attacker == null || attacker.getEntityWorld().isRemote || (attacker instanceof PlayerEntity && !(attacker instanceof ServerPlayerEntity))) return false; if (!target.isNonBoss()) return false; - if (target instanceof EntityPlayer) + if (target instanceof PlayerEntity) return false; if (target.isChild() && !(target instanceof IMob)) @@ -60,8 +60,8 @@ public class ItemDaggerOfSacrifice extends Item implements IVariantProvider { return false; int lifeEssence = (int) (lifeEssenceRatio * target.getHealth()); - if (target instanceof EntityAnimal) { - lifeEssence = (int) (lifeEssence * (1 + PurificationHelper.getCurrentPurity((EntityAnimal) target))); + if (target instanceof AnimalEntity) { + lifeEssence = (int) (lifeEssence * (1 + PurificationHelper.getCurrentPurity((AnimalEntity) target))); } if (target.isChild()) { diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemDemonWillGauge.java b/src/main/java/WayofTime/bloodmagic/item/ItemDemonWillGauge.java index a2649334..e26e7d49 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemDemonWillGauge.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemDemonWillGauge.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.iface.IDemonWillViewer; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.world.World; @@ -36,12 +36,12 @@ public class ItemDemonWillGauge extends Item implements IVariantProvider, IDemon } @Override - public boolean canSeeDemonWillAura(World world, ItemStack stack, EntityPlayer player) { + public boolean canSeeDemonWillAura(World world, ItemStack stack, PlayerEntity player) { return true; } @Override - public int getDemonWillAuraResolution(World world, ItemStack stack, EntityPlayer player) { + public int getDemonWillAuraResolution(World world, ItemStack stack, PlayerEntity player) { return 100; } } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemEnum.java b/src/main/java/WayofTime/bloodmagic/item/ItemEnum.java index 1881a7d6..bec6de84 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemEnum.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemEnum.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.item.types.ISubItem; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.ItemGroup; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; @@ -33,7 +33,7 @@ public class ItemEnum & ISubItem> extends Item { @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs tab, NonNullList subItems) { + public void getSubItems(ItemGroup tab, NonNullList subItems) { if (!isInCreativeTab(tab)) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemExperienceBook.java b/src/main/java/WayofTime/bloodmagic/item/ItemExperienceBook.java index 381d817c..3ca9e276 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemExperienceBook.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemExperienceBook.java @@ -7,14 +7,14 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.util.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -50,7 +50,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (!world.isRemote) { if (player.isSneaking()) @@ -59,7 +59,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { giveOneLevelExpToPlayer(stack, player); } - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } @Override @@ -67,7 +67,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { variants.put(0, "type=experiencetome"); } - public void giveOneLevelExpToPlayer(ItemStack stack, EntityPlayer player) { + public void giveOneLevelExpToPlayer(ItemStack stack, PlayerEntity player) { float progress = player.experience; int expToNext = getExperienceForNextLevel(player.experienceLevel); @@ -90,7 +90,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { } } - public void absorbOneLevelExpFromPlayer(ItemStack stack, EntityPlayer player) { + public void absorbOneLevelExpFromPlayer(ItemStack stack, PlayerEntity player) { float progress = player.experience; if (progress > 0) { @@ -107,11 +107,11 @@ public class ItemExperienceBook extends Item implements IVariantProvider { } // Credits to Ender IO for some of the experience code, although now modified slightly for my convenience. - public static int getPlayerXP(EntityPlayer player) { + public static int getPlayerXP(PlayerEntity player) { return (int) (getExperienceForLevel(player.experienceLevel) + (player.experience * player.xpBarCap())); } - public static void addPlayerXP(EntityPlayer player, int amount) { + public static void addPlayerXP(PlayerEntity player, int amount) { int experience = Math.max(0, getPlayerXP(player) + amount); player.experienceTotal = experience; player.experienceLevel = getLevelForExperience(experience); @@ -122,7 +122,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { public static void setStoredExperience(ItemStack stack, double exp) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("experience", exp); } @@ -130,7 +130,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { public static double getStoredExperience(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("experience"); } @@ -164,7 +164,7 @@ public class ItemExperienceBook extends Item implements IVariantProvider { return res; } - public static double getExperienceAcquiredToNext(EntityPlayer player) { + public static double getExperienceAcquiredToNext(PlayerEntity player) { return player.experience * player.xpBarCap(); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemInscriptionTool.java b/src/main/java/WayofTime/bloodmagic/item/ItemInscriptionTool.java index 6f4bb703..26f900c8 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemInscriptionTool.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemInscriptionTool.java @@ -8,15 +8,15 @@ import WayofTime.bloodmagic.ritual.EnumRuneType; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemGroup; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.NonNullList; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; @@ -37,7 +37,7 @@ public class ItemInscriptionTool extends ItemEnum.Variant implemen @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; @@ -46,7 +46,7 @@ public class ItemInscriptionTool extends ItemEnum.Variant implemen continue; ItemStack stack = new ItemStack(this, 1, runeType.ordinal()); - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); tag.setInteger(Constants.NBT.USES, 10); stack.setTagCompound(tag); list.add(stack); @@ -54,9 +54,9 @@ public class ItemInscriptionTool extends ItemEnum.Variant implemen } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); if (state.getBlock() instanceof BlockRitualStone && !((BlockRitualStone) state.getBlock()).isRuneType(world, pos, getItemType(stack))) { stack = NBTHelper.checkNBT(stack); @@ -68,10 +68,10 @@ public class ItemInscriptionTool extends ItemEnum.Variant implemen if (uses <= 0) player.inventory.setInventorySlotContents(player.inventory.currentItem, ItemStack.EMPTY); } - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemLavaCrystal.java b/src/main/java/WayofTime/bloodmagic/item/ItemLavaCrystal.java index f4144990..78ebbe37 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemLavaCrystal.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemLavaCrystal.java @@ -8,20 +8,19 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.advancements.CriteriaTriggers; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; +import net.minecraft.block.Blocks; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; +import net.minecraft.util.*; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTBase; -import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTUtil; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.SoundCategory; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -61,9 +60,9 @@ public class ItemLavaCrystal extends ItemBindableBase implements IVariantProvide if (NetworkHelper.syphonFromContainer(stack, SoulTicket.item(stack, 25))) return 200; else { - EntityPlayer player = PlayerHelper.getPlayerFromUUID(binding.getOwnerId()); + PlayerEntity player = PlayerHelper.getPlayerFromUUID(binding.getOwnerId()); if (player != null) - player.addPotionEffect(new PotionEffect(MobEffects.NAUSEA, 99)); + player.addPotionEffect(new EffectInstance(Effects.NAUSEA, 99)); } return -1; @@ -79,28 +78,28 @@ public class ItemLavaCrystal extends ItemBindableBase implements IVariantProvide if (bindingTag == null || bindingTag.getId() != 10 || bindingTag.isEmpty()) // Make sure it's both a tag compound and that it has actual data. return null; - NBTTagCompound nbt = (NBTTagCompound) bindingTag; + CompoundNBT nbt = (CompoundNBT) bindingTag; return new Binding(NBTUtil.getUUIDFromTag(nbt.getCompoundTag("id")), nbt.getString("name")); } @Override - public EnumActionResult onItemUse(EntityPlayer player, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World worldIn, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { pos = pos.offset(facing); ItemStack itemstack = player.getHeldItem(hand); if (!player.canPlayerEdit(pos, facing, itemstack)) - return EnumActionResult.FAIL; + return ActionResultType.FAIL; if (worldIn.isAirBlock(pos) && NetworkHelper.getSoulNetwork(getBinding(player.getHeldItem(hand))).syphonAndDamage(player, SoulTicket.item(player.getHeldItem(hand), 100)).isSuccess()) { worldIn.playSound(player, pos, SoundEvents.ITEM_FIRECHARGE_USE, SoundCategory.BLOCKS, 1.0F, itemRand.nextFloat() * 0.4F + 0.8F); worldIn.setBlockState(pos, Blocks.FIRE.getDefaultState(), 11); } else - return EnumActionResult.FAIL; + return ActionResultType.FAIL; - if (player instanceof EntityPlayerMP) - CriteriaTriggers.PLACED_BLOCK.trigger((EntityPlayerMP) player, pos, itemstack); + if (player instanceof ServerPlayerEntity) + CriteriaTriggers.PLACED_BLOCK.trigger((ServerPlayerEntity) player, pos, itemstack); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemPotionFlask.java b/src/main/java/WayofTime/bloodmagic/item/ItemPotionFlask.java index 098a2b62..b97c9313 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemPotionFlask.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemPotionFlask.java @@ -6,15 +6,15 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.SoundEvents; -import net.minecraft.item.EnumAction; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.UseAction; +import net.minecraft.potion.EffectInstance; +import net.minecraft.util.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionUtils; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; @@ -36,8 +36,8 @@ public class ItemPotionFlask extends Item implements IMeshProvider { } @Override - public ItemStack onItemUseFinish(ItemStack stack, World world, EntityLivingBase entityLiving) { - EntityPlayer player = entityLiving instanceof EntityPlayer ? (EntityPlayer) entityLiving : null; + public ItemStack onItemUseFinish(ItemStack stack, World world, LivingEntity entityLiving) { + PlayerEntity player = entityLiving instanceof PlayerEntity ? (PlayerEntity) entityLiving : null; int remainingUses = stack.getMaxDamage() - stack.getItemDamage(); if (remainingUses <= 0) { @@ -51,8 +51,8 @@ public class ItemPotionFlask extends Item implements IMeshProvider { } if (!world.isRemote) { - for (PotionEffect potioneffect : PotionUtils.getEffectsFromStack(stack)) { - entityLiving.addPotionEffect(new PotionEffect(potioneffect)); + for (EffectInstance potioneffect : PotionUtils.getEffectsFromStack(stack)) { + entityLiving.addPotionEffect(new EffectInstance(potioneffect)); } } @@ -65,8 +65,8 @@ public class ItemPotionFlask extends Item implements IMeshProvider { } @Override - public EnumAction getItemUseAction(ItemStack stack) { - return EnumAction.DRINK; + public UseAction getItemUseAction(ItemStack stack) { + return UseAction.DRINK; } @Override @@ -75,34 +75,34 @@ public class ItemPotionFlask extends Item implements IMeshProvider { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); int remainingUses = stack.getMaxDamage() - stack.getItemDamage(); if (remainingUses > 0 || !stack.hasTagCompound() || !stack.getTagCompound().hasKey("empty")) - return EnumActionResult.PASS; + return ActionResultType.PASS; RayTraceResult trace = rayTrace(world, player, true); if (trace.typeOfHit == RayTraceResult.Type.BLOCK && world.getBlockState(trace.getBlockPos()).getMaterial() == Material.WATER) { world.playSound(player, player.posX, player.posY, player.posZ, SoundEvents.ITEM_BOTTLE_FILL, SoundCategory.NEUTRAL, 1.0F, 1.0F); player.setHeldItem(hand, new ItemStack(this)); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } return super.onItemUse(player, world, pos, hand, facing, hitX, hitY, hitZ); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); int remainingUses = stack.getMaxDamage() - stack.getItemDamage(); if (remainingUses <= 0) { NBTHelper.checkNBT(stack); stack.getTagCompound().setBoolean("empty", true); - return new ActionResult<>(EnumActionResult.PASS, stack); + return new ActionResult<>(ActionResultType.PASS, stack); } player.setActiveHand(hand); - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemRitualDismantler.java b/src/main/java/WayofTime/bloodmagic/item/ItemRitualDismantler.java index f79d8bc1..af90c890 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemRitualDismantler.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemRitualDismantler.java @@ -12,13 +12,13 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.RitualHelper; import com.google.common.collect.Lists; import net.minecraft.block.Block; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.items.ItemHandlerHelper; @@ -33,14 +33,14 @@ public class ItemRitualDismantler extends Item implements IVariantProvider { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { Block block = world.getBlockState(pos).getBlock(); TileEntity tileEntity = world.getTileEntity(pos); ItemStack stack = player.getHeldItem(hand); if (tileEntity instanceof TileMasterRitualStone) { TileMasterRitualStone masterRitualStone = (TileMasterRitualStone) tileEntity; - EnumFacing direction = masterRitualStone.getDirection(); + Direction direction = masterRitualStone.getDirection(); String ritualName = RitualHelper.getValidRitual(world, pos); masterRitualStone.setActive(false); @@ -49,7 +49,7 @@ public class ItemRitualDismantler extends Item implements IVariantProvider { world.setBlockToAir(pos); ItemHandlerHelper.giveItemToPlayer(player, new ItemStack(RegistrarBloodMagicBlocks.RITUAL_CONTROLLER)); NetworkHelper.getSoulNetwork(player).syphon(SoulTicket.item(stack, 100)); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } Ritual ritual = BloodMagic.RITUAL_MANAGER.getRitual(ritualName); @@ -64,15 +64,15 @@ public class ItemRitualDismantler extends Item implements IVariantProvider { } NetworkHelper.getSoulNetwork(player).syphon(SoulTicket.item(stack, 200)); // smallest Ritual has 4 stones - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } else if (player.isSneaking() && block instanceof BlockRitualStone) { block.removedByPlayer(world.getBlockState(pos), world, pos, player, false); ItemHandlerHelper.giveItemToPlayer(player, new ItemStack(RegistrarBloodMagicBlocks.RITUAL_STONE)); NetworkHelper.getSoulNetwork(player).syphon(SoulTicket.item(stack, 50)); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemRitualDiviner.java b/src/main/java/WayofTime/bloodmagic/item/ItemRitualDiviner.java index 05601f00..6f2e534a 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemRitualDiviner.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemRitualDiviner.java @@ -17,20 +17,20 @@ import com.google.common.base.Strings; import com.google.common.collect.Lists; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemGroup; import net.minecraft.item.Item; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -71,7 +71,7 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; @@ -80,24 +80,24 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); if (player.isSneaking()) { if (world.isRemote) { trySetDisplayedRitual(stack, world, pos); } - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } else if (addRuneToRitual(stack, world, pos, player)) { if (world.isRemote) { spawnParticles(world, pos.up(), 15); } - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; // TODO: Have the diviner automagically build the ritual } - return EnumActionResult.PASS; + return ActionResultType.PASS; } /** @@ -109,13 +109,13 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { * @param player - The Player attempting to place the ritual * @return - True if a rune was successfully added */ - public boolean addRuneToRitual(ItemStack stack, World world, BlockPos pos, EntityPlayer player) { + public boolean addRuneToRitual(ItemStack stack, World world, BlockPos pos, PlayerEntity player) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileMasterRitualStone) { Ritual ritual = BloodMagic.RITUAL_MANAGER.getRitual(this.getCurrentRitual(stack)); if (ritual != null) { - EnumFacing direction = getDirection(stack); + Direction direction = getDirection(stack); List components = Lists.newArrayList(); ritual.gatherComponents(components::add); for (RitualComponent component : components) { @@ -124,7 +124,7 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { } BlockPos offset = component.getOffset(direction); BlockPos newPos = pos.add(offset); - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); Block block = state.getBlock(); if (RitualHelper.isRune(world, newPos)) { if (RitualHelper.isRuneType(world, newPos, component.getRuneType())) { @@ -141,7 +141,7 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { return false; } int meta = component.getRuneType().ordinal(); - IBlockState newState = RegistrarBloodMagicBlocks.RITUAL_STONE.getStateFromMeta(meta); + BlockState newState = RegistrarBloodMagicBlocks.RITUAL_STONE.getStateFromMeta(meta); world.setBlockState(newPos, newState); return true; } else { @@ -164,7 +164,7 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { TileMasterRitualStone masterRitualStone = (TileMasterRitualStone) tile; if (ritual != null) { - EnumFacing direction = getDirection(itemStack); + Direction direction = getDirection(itemStack); ClientHandler.setRitualHolo(masterRitualStone, ritual, direction, true); } } @@ -176,7 +176,7 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { } // TODO: Make this work for any IRitualStone - public boolean consumeStone(ItemStack stack, World world, EntityPlayer player) { + public boolean consumeStone(ItemStack stack, World world, PlayerEntity player) { if (player.capabilities.isCreativeMode) { return true; } @@ -188,8 +188,8 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { continue; } Item item = newStack.getItem(); - if (item instanceof ItemBlock) { - Block block = ((ItemBlock) item).getBlock(); + if (item instanceof BlockItem) { + Block block = ((BlockItem) item).getBlock(); if (block == RegistrarBloodMagicBlocks.RITUAL_STONE) { newStack.shrink(1); return true; @@ -293,11 +293,11 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); RayTraceResult ray = this.rayTrace(world, player, false); if (ray != null && ray.typeOfHit == RayTraceResult.Type.BLOCK) { - return new ActionResult<>(EnumActionResult.PASS, stack); + return new ActionResult<>(ActionResultType.PASS, stack); } if (player.isSneaking()) { @@ -305,16 +305,16 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { cycleRitual(stack, player, false); } - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } - return new ActionResult<>(EnumActionResult.PASS, stack); + return new ActionResult<>(ActionResultType.PASS, stack); } @Override - public boolean onEntitySwing(EntityLivingBase entityLiving, ItemStack stack) { - if (!entityLiving.world.isRemote && entityLiving instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entityLiving; + public boolean onEntitySwing(LivingEntity entityLiving, ItemStack stack) { + if (!entityLiving.world.isRemote && entityLiving instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entityLiving; RayTraceResult ray = this.rayTrace(player.getEntityWorld(), player, false); if (ray != null && ray.typeOfHit == RayTraceResult.Type.BLOCK) { @@ -340,64 +340,64 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { variants.put(2, "type=dawn"); } - public void cycleDirection(ItemStack stack, EntityPlayer player) { - EnumFacing direction = getDirection(stack); - EnumFacing newDirection; + public void cycleDirection(ItemStack stack, PlayerEntity player) { + Direction direction = getDirection(stack); + Direction newDirection; switch (direction) { case NORTH: - newDirection = EnumFacing.EAST; + newDirection = Direction.EAST; break; case EAST: - newDirection = EnumFacing.SOUTH; + newDirection = Direction.SOUTH; break; case SOUTH: - newDirection = EnumFacing.WEST; + newDirection = Direction.WEST; break; case WEST: - newDirection = EnumFacing.NORTH; + newDirection = Direction.NORTH; break; default: - newDirection = EnumFacing.NORTH; + newDirection = Direction.NORTH; } setDirection(stack, newDirection); notifyDirectionChange(newDirection, player); } - public void notifyDirectionChange(EnumFacing direction, EntityPlayer player) { - player.sendStatusMessage(new TextComponentTranslation(tooltipBase + "currentDirection", Utils.toFancyCasing(direction.name())), true); + public void notifyDirectionChange(Direction direction, PlayerEntity player) { + player.sendStatusMessage(new TranslationTextComponent(tooltipBase + "currentDirection", Utils.toFancyCasing(direction.name())), true); } - public void setDirection(ItemStack stack, EnumFacing direction) { + public void setDirection(ItemStack stack, Direction direction) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setInteger(Constants.NBT.DIRECTION, direction.getIndex()); } - public EnumFacing getDirection(ItemStack stack) { + public Direction getDirection(ItemStack stack) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); - return EnumFacing.NORTH; + stack.setTagCompound(new CompoundNBT()); + return Direction.NORTH; } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); int dir = tag.getInteger(Constants.NBT.DIRECTION); if (dir == 0) { - return EnumFacing.NORTH; + return Direction.NORTH; } - return EnumFacing.VALUES[tag.getInteger(Constants.NBT.DIRECTION)]; + return Direction.VALUES[tag.getInteger(Constants.NBT.DIRECTION)]; } /** * Cycles the ritual forward or backward */ - public void cycleRitual(ItemStack stack, EntityPlayer player, boolean reverse) { + public void cycleRitual(ItemStack stack, PlayerEntity player, boolean reverse) { String key = getCurrentRitual(stack); List rituals = BloodMagic.RITUAL_MANAGER.getSortedRituals(); if (reverse) @@ -450,29 +450,29 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { return true; } - public void notifyRitualChange(String key, EntityPlayer player) { + public void notifyRitualChange(String key, PlayerEntity player) { Ritual ritual = BloodMagic.RITUAL_MANAGER.getRitual(key); if (ritual != null) { - player.sendStatusMessage(new TextComponentTranslation(ritual.getTranslationKey()), true); + player.sendStatusMessage(new TranslationTextComponent(ritual.getTranslationKey()), true); } } public void setCurrentRitual(ItemStack stack, String key) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString("current_ritual", key); } public String getCurrentRitual(ItemStack stack) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getString("current_ritual"); } @@ -495,7 +495,7 @@ public class ItemRitualDiviner extends Item implements IVariantProvider { } public static void spawnParticles(World worldIn, BlockPos pos, int amount) { - IBlockState state = worldIn.getBlockState(pos); + BlockState state = worldIn.getBlockState(pos); Block block = worldIn.getBlockState(pos).getBlock(); if (block.isAir(state, worldIn, pos)) { diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemRitualReader.java b/src/main/java/WayofTime/bloodmagic/item/ItemRitualReader.java index 6358762a..ae919cb9 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemRitualReader.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemRitualReader.java @@ -14,15 +14,15 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -66,11 +66,11 @@ public class ItemRitualReader extends Item implements IVariantProvider { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); RayTraceResult ray = this.rayTrace(world, player, false); if (ray != null && ray.typeOfHit == RayTraceResult.Type.BLOCK) { - return new ActionResult<>(EnumActionResult.PASS, stack); + return new ActionResult<>(ActionResultType.PASS, stack); } if (player.isSneaking()) { @@ -78,14 +78,14 @@ public class ItemRitualReader extends Item implements IVariantProvider { cycleReader(stack, player); } - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } - return new ActionResult<>(EnumActionResult.PASS, stack); + return new ActionResult<>(ActionResultType.PASS, stack); } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); if (!world.isRemote) { EnumRitualReaderState state = this.getState(stack); @@ -103,7 +103,7 @@ public class ItemRitualReader extends Item implements IVariantProvider { break; case SET_AREA: - if (player.isSneaking() && player.getHeldItem(EnumHand.OFF_HAND).getItem() instanceof ItemBloodOrb) { + if (player.isSneaking() && player.getHeldItem(Hand.OFF_HAND).getItem() instanceof ItemBloodOrb) { Ritual ritual = master.getCurrentRitual(); for (String range : ritual.getListOfRanges()) { AreaDescriptor aabb = ritual.getBlockRange(range); @@ -144,7 +144,7 @@ public class ItemRitualReader extends Item implements IVariantProvider { break; } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } else { if (state == EnumRitualReaderState.SET_AREA) { BlockPos masterPos = this.getMasterBlockPos(stack); @@ -153,7 +153,7 @@ public class ItemRitualReader extends Item implements IVariantProvider { if (containedPos.equals(BlockPos.ORIGIN)) { BlockPos pos1 = pos.subtract(masterPos); this.setBlockPos(stack, pos1); - player.sendStatusMessage(new TextComponentTranslation("ritual.bloodmagic.blockRange.firstBlock"), true); + player.sendStatusMessage(new TranslationTextComponent("ritual.bloodmagic.blockRange.firstBlock"), true); } else { tile = world.getTileEntity(masterPos); if (tile instanceof IMasterRitualStone) { @@ -173,16 +173,16 @@ public class ItemRitualReader extends Item implements IVariantProvider { switch (master.setBlockRangeByBounds(player, range, containedPos, pos2)) { case SUCCESS: - player.sendStatusMessage(new TextComponentTranslation("ritual.bloodmagic.blockRange.success"), true); + player.sendStatusMessage(new TranslationTextComponent("ritual.bloodmagic.blockRange.success"), true); break; case NOT_WITHIN_BOUNDARIES: - player.sendStatusMessage(new TextComponentTranslation("ritual.bloodmagic.blockRange.tooFar", maxVerticalRange, maxHorizontalRange), false); + player.sendStatusMessage(new TranslationTextComponent("ritual.bloodmagic.blockRange.tooFar", maxVerticalRange, maxHorizontalRange), false); break; case VOLUME_TOO_LARGE: - player.sendStatusMessage(new TextComponentTranslation("ritual.bloodmagic.blockRange.tooBig", maxVolume), false); + player.sendStatusMessage(new TranslationTextComponent("ritual.bloodmagic.blockRange.tooBig", maxVolume), false); break; default: - player.sendStatusMessage(new TextComponentTranslation("ritual.bloodmagic.blockRange.noRange"), false); + player.sendStatusMessage(new TranslationTextComponent("ritual.bloodmagic.blockRange.noRange"), false); break; } } @@ -203,7 +203,7 @@ public class ItemRitualReader extends Item implements IVariantProvider { public ItemStack setBlockPos(ItemStack stack, BlockPos pos) { stack = NBTHelper.checkNBT(stack); - NBTTagCompound itemTag = stack.getTagCompound(); + CompoundNBT itemTag = stack.getTagCompound(); itemTag.setInteger(Constants.NBT.X_COORD, pos.getX()); itemTag.setInteger(Constants.NBT.Y_COORD, pos.getY()); itemTag.setInteger(Constants.NBT.Z_COORD, pos.getZ()); @@ -217,7 +217,7 @@ public class ItemRitualReader extends Item implements IVariantProvider { public ItemStack setMasterBlockPos(ItemStack stack, BlockPos pos) { stack = NBTHelper.checkNBT(stack); - NBTTagCompound itemTag = stack.getTagCompound(); + CompoundNBT itemTag = stack.getTagCompound(); itemTag.setInteger(Constants.NBT.X_COORD + "master", pos.getX()); itemTag.setInteger(Constants.NBT.Y_COORD + "master", pos.getY()); itemTag.setInteger(Constants.NBT.Z_COORD + "master", pos.getZ()); @@ -227,7 +227,7 @@ public class ItemRitualReader extends Item implements IVariantProvider { public String getCurrentBlockRange(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getString("range"); } @@ -235,12 +235,12 @@ public class ItemRitualReader extends Item implements IVariantProvider { public void setCurrentBlockRange(ItemStack stack, String range) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString("range", range); } - public void cycleReader(ItemStack stack, EntityPlayer player) { + public void cycleReader(ItemStack stack, PlayerEntity player) { EnumRitualReaderState prevState = getState(stack); int val = prevState.ordinal(); int nextVal = val + 1 >= EnumRitualReaderState.values().length ? 0 : val + 1; @@ -250,25 +250,25 @@ public class ItemRitualReader extends Item implements IVariantProvider { notifyPlayerOfStateChange(nextState, player); } - public void notifyPlayerOfStateChange(EnumRitualReaderState state, EntityPlayer player) { - ChatUtil.sendNoSpam(player, new TextComponentTranslation(tooltipBase + "currentState", new TextComponentTranslation(tooltipBase + state.toString().toLowerCase()))); + public void notifyPlayerOfStateChange(EnumRitualReaderState state, PlayerEntity player) { + ChatUtil.sendNoSpam(player, new TranslationTextComponent(tooltipBase + "currentState", new TranslationTextComponent(tooltipBase + state.toString().toLowerCase()))); } public void setState(ItemStack stack, EnumRitualReaderState state) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setInteger(Constants.NBT.RITUAL_READER, state.ordinal()); } public EnumRitualReaderState getState(ItemStack stack) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); return EnumRitualReaderState.INFORMATION; } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return EnumRitualReaderState.values()[tag.getInteger(Constants.NBT.RITUAL_READER)]; } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java b/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java index 62632247..657724c0 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemSacrificialDagger.java @@ -10,13 +10,13 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import WayofTime.bloodmagic.util.helper.*; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.SoundEvents; -import net.minecraft.item.EnumAction; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.util.SoundEvents; +import net.minecraft.item.UseAction; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.*; @@ -51,10 +51,10 @@ public class ItemSacrificialDagger extends ItemEnum onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (PlayerHelper.isFakePlayer(player)) return super.onItemRightClick(world, player, hand); if (this.canUseForSacrifice(stack)) { player.setActiveHand(hand); - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } int lpAdded = ConfigHandler.values.sacrificialDaggerConversion * 2; @@ -131,19 +131,19 @@ public class ItemSacrificialDagger extends ItemEnum 0); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java b/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java index 9dc458f5..a3088076 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemSanguineBook.java @@ -12,20 +12,19 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.NumeralHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.*; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.util.text.TextFormatting; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; @@ -44,11 +43,11 @@ public class ItemSanguineBook extends Item implements IVariantProvider, IAltarMa } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { if (world.isRemote) return super.onItemUse(player, world, pos, hand, facing, hitX, hitY, hitZ); - IBlockState hitState = world.getBlockState(pos); + BlockState hitState = world.getBlockState(pos); if (player.isSneaking()) { if (hitState.getBlock() instanceof IDocumentedBlock) { trySetDisplayedTier(world, pos); @@ -65,7 +64,7 @@ public class ItemSanguineBook extends Item implements IVariantProvider, IAltarMa } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (world.isRemote) return super.onItemRightClick(world, player, hand); @@ -80,7 +79,7 @@ public class ItemSanguineBook extends Item implements IVariantProvider, IAltarMa stack.getTagCompound().setInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER, stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER) + 1); currentDisplayedTier = AltarTier.values()[stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER)]; - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.altarMaker.setTier", NumeralHelper.toRoman(stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER) + 1)), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.altarMaker.setTier", NumeralHelper.toRoman(stack.getTagCompound().getInteger(Constants.NBT.ALTARMAKER_CURRENT_TIER) + 1)), true); return super.onItemRightClick(world, player, hand); } diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemTelepositionFocus.java b/src/main/java/WayofTime/bloodmagic/item/ItemTelepositionFocus.java index 1cce2154..4f45001a 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemTelepositionFocus.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemTelepositionFocus.java @@ -8,11 +8,11 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.item.types.ISubItem; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; @@ -34,7 +34,7 @@ public class ItemTelepositionFocus extends ItemEnum.Variant onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { if (player.isSneaking()) { RayTraceResult mop = rayTrace(world, player, false); @@ -59,7 +59,7 @@ public class ItemTelepositionFocus extends ItemEnum.Variant onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (world.isRemote) { return super.onItemRightClick(world, player, hand); @@ -48,7 +48,7 @@ public class ItemUpgradeTome extends Item implements IVariantProvider { return super.onItemRightClick(world, player, hand); } - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); if (chestStack.getItem() instanceof ItemLivingArmour) { LivingArmour armour = ItemLivingArmour.getLivingArmourFromStack(chestStack); if (armour == null) { @@ -78,7 +78,7 @@ public class ItemUpgradeTome extends Item implements IVariantProvider { @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemUpgradeTrainer.java b/src/main/java/WayofTime/bloodmagic/item/ItemUpgradeTrainer.java index f37785d1..aad3bc39 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemUpgradeTrainer.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemUpgradeTrainer.java @@ -9,7 +9,7 @@ import WayofTime.bloodmagic.util.helper.ItemHelper.LivingUpgrades; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.ItemGroup; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; @@ -34,7 +34,7 @@ public class ItemUpgradeTrainer extends Item implements IUpgradeTrainer, IVarian @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/alchemy/ItemCuttingFluid.java b/src/main/java/WayofTime/bloodmagic/item/alchemy/ItemCuttingFluid.java index c53c6da0..1c450ccf 100644 --- a/src/main/java/WayofTime/bloodmagic/item/alchemy/ItemCuttingFluid.java +++ b/src/main/java/WayofTime/bloodmagic/item/alchemy/ItemCuttingFluid.java @@ -8,7 +8,7 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -36,14 +36,14 @@ public class ItemCuttingFluid extends ItemEnum.Variant onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand hand) { + public ActionResult onItemRightClick(World worldIn, PlayerEntity playerIn, Hand hand) { playerIn.setActiveHand(hand); - return new ActionResult<>(EnumActionResult.SUCCESS, playerIn.getHeldItem(hand)); + return new ActionResult<>(ActionResultType.SUCCESS, playerIn.getHeldItem(hand)); } @Override - public ItemStack onItemUseFinish(ItemStack stack, World worldIn, EntityLivingBase entityLiving) { - if (!(entityLiving instanceof EntityPlayer)) + public ItemStack onItemUseFinish(ItemStack stack, World worldIn, LivingEntity entityLiving) { + if (!(entityLiving instanceof PlayerEntity)) return super.onItemUseFinish(stack, worldIn, entityLiving); - EntityPlayer player = (EntityPlayer) entityLiving; + PlayerEntity player = (PlayerEntity) entityLiving; if (!player.capabilities.isCreativeMode) stack.shrink(1); if (!worldIn.isRemote) { - player.addPotionEffect(new PotionEffect(MobEffects.WITHER, 300, 5)); - player.addPotionEffect(new PotionEffect(MobEffects.POISON, 300, 5)); - player.addPotionEffect(new PotionEffect(MobEffects.REGENERATION, 400, 1)); + player.addPotionEffect(new EffectInstance(Effects.WITHER, 300, 5)); + player.addPotionEffect(new EffectInstance(Effects.POISON, 300, 5)); + player.addPotionEffect(new EffectInstance(Effects.REGENERATION, 400, 1)); if (LivingArmour.hasFullSet(player)) { ItemStack chestStack = Iterables.toArray(player.getArmorInventoryList(), ItemStack.class)[2]; @@ -81,8 +81,8 @@ public class ItemLivingArmourPointsUpgrade extends ItemEnum.Variant FLAGS = null; - public ItemLivingArmour(EntityEquipmentSlot armorType) { - super(ItemArmor.ArmorMaterial.IRON, 0, armorType); + public ItemLivingArmour(EquipmentSlotType armorType) { + super(ArmorItem.ArmorMaterial.IRON, 0, armorType); setTranslationKey(BloodMagic.MODID + ".livingArmour."); // setMaxDamage(250); setMaxDamage((int) (getMaxDamage() * 1.5)); @@ -69,14 +69,14 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } @Override - public void onCreated(ItemStack stack, World world, EntityPlayer player) { + public void onCreated(ItemStack stack, World world, PlayerEntity player) { if (stack != null && !world.isRemote && stack.getItem() == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST) { Utils.setUUID(stack); } } @Override - public String getArmorTexture(ItemStack stack, Entity entity, EntityEquipmentSlot slot, String type) { + public String getArmorTexture(ItemStack stack, Entity entity, EquipmentSlotType slot, String type) { if (this == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST || this == RegistrarBloodMagicItems.LIVING_ARMOUR_HELMET || this == RegistrarBloodMagicItems.LIVING_ARMOUR_BOOTS) { return "bloodmagic:models/armor/livingArmour_layer_1.png"; } @@ -106,7 +106,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } @Override - public ArmorProperties getProperties(EntityLivingBase player, ItemStack stack, DamageSource source, double damage, int slot) { + public ArmorProperties getProperties(LivingEntity player, ItemStack stack, DamageSource source, double damage, int slot) { double armourReduction = 0.0; double damageAmount = 0.25; @@ -133,9 +133,9 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP if (this == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST) { armourReduction = 0.24 / 0.64; // This values puts it at iron level - ItemStack helmet = player.getItemStackFromSlot(EntityEquipmentSlot.HEAD); - ItemStack leggings = player.getItemStackFromSlot(EntityEquipmentSlot.LEGS); - ItemStack boots = player.getItemStackFromSlot(EntityEquipmentSlot.FEET); + ItemStack helmet = player.getItemStackFromSlot(EquipmentSlotType.HEAD); + ItemStack leggings = player.getItemStackFromSlot(EquipmentSlotType.LEGS); + ItemStack boots = player.getItemStackFromSlot(EquipmentSlotType.FEET); if (helmet.isEmpty() || leggings.isEmpty() || boots.isEmpty()) { damageAmount *= (armourReduction); @@ -178,7 +178,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } @Override - public int getArmorDisplay(EntityPlayer player, ItemStack armor, int slot) { + public int getArmorDisplay(PlayerEntity player, ItemStack armor, int slot) { if (armor.getItem() == RegistrarBloodMagicItems.LIVING_ARMOUR_HELMET) { return 3; } @@ -199,7 +199,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } @Override - public void damageArmor(EntityLivingBase entity, ItemStack stack, DamageSource source, int damage, int slot) { + public void damageArmor(LivingEntity entity, ItemStack stack, DamageSource source, int damage, int slot) { if (this == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST) { int preDamage = stack.getItemDamage(); if (source.isUnblockable()) { @@ -208,8 +208,8 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP if (damage > this.getMaxDamage(stack) - this.getDamage(stack)) { //TODO: Syphon a load of LP. - if (entity.getEntityWorld().isRemote && entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + if (entity.getEntityWorld().isRemote && entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; SoulNetwork network = NetworkHelper.getSoulNetwork(player); network.syphonAndDamage(player, SoulTicket.item(stack, entity.getEntityWorld(), entity, damage * 100)); } @@ -220,8 +220,8 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP stack.damageItem(damage, entity); int receivedDamage = stack.getItemDamage() - preDamage; - if (entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + if (entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; if (LivingArmour.hasFullSet(player)) { LivingArmour armour = ItemLivingArmour.getLivingArmour(stack); if (armour != null) { @@ -277,13 +277,13 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } @Override - public void onArmorTick(World world, EntityPlayer player, ItemStack stack) { + public void onArmorTick(World world, PlayerEntity player, ItemStack stack) { super.onArmorTick(world, player, stack); if (world.isRemote && this == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST) { - if (player instanceof EntityPlayerSP) //Sanity check + if (player instanceof ClientPlayerEntity) //Sanity check { - EntityPlayerSP spPlayer = (EntityPlayerSP) player; + ClientPlayerEntity spPlayer = (ClientPlayerEntity) player; if (FLAGS == null) { try { @@ -295,7 +295,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP if (FLAGS != null) { if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgradeFromNBT(BloodMagic.MODID + ".upgrade.elytra", chestStack); if (upgrade instanceof LivingArmourUpgradeElytra) { if (spPlayer.movementInput.jump && !spPlayer.onGround && spPlayer.motionY < 0.0D && !spPlayer.capabilities.isFlying) { @@ -333,8 +333,8 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack) { - if (this == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST && isEnabled(stack) && slot == EntityEquipmentSlot.CHEST) { + public Multimap getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) { + if (this == RegistrarBloodMagicItems.LIVING_ARMOUR_CHEST && isEnabled(stack) && slot == EquipmentSlotType.CHEST) { LivingArmour armour = ItemLivingArmour.getLivingArmourFromStack(stack); return armour.getAttributeModifiers(); @@ -377,7 +377,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP } public void setLivingArmour(ItemStack stack, LivingArmour armour, boolean forceWrite) { - NBTTagCompound livingTag = new NBTTagCompound(); + CompoundNBT livingTag = new CompoundNBT(); if (!forceWrite) { livingTag = getArmourTag(stack); @@ -389,43 +389,43 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP setArmourTag(stack, livingTag); } - public void setArmourTag(ItemStack stack, NBTTagCompound livingTag) { + public void setArmourTag(ItemStack stack, CompoundNBT livingTag) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setTag(Constants.NBT.LIVING_ARMOUR, livingTag); } public void setIsEnabled(ItemStack stack, boolean bool) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setBoolean("enabled", bool); } public boolean isEnabled(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getBoolean("enabled"); } public void setIsElytra(ItemStack stack, boolean bool) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setBoolean("elytra", bool); } public boolean isElytra(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getBoolean("elytra"); } @Nullable public static LivingArmour getLivingArmourFromStack(ItemStack stack) { - NBTTagCompound livingTag = getArmourTag(stack); + CompoundNBT livingTag = getArmourTag(stack); LivingArmour livingArmour = new LivingArmour(); livingArmour.readFromNBT(livingTag); @@ -433,12 +433,12 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP return livingArmour; } - public static NBTTagCompound getArmourTag(ItemStack stack) { + public static CompoundNBT getArmourTag(ItemStack stack) { if (!stack.hasTagCompound()) { - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getCompoundTag(Constants.NBT.LIVING_ARMOUR); } diff --git a/src/main/java/WayofTime/bloodmagic/item/armour/ItemSentientArmour.java b/src/main/java/WayofTime/bloodmagic/item/armour/ItemSentientArmour.java index 35261f98..de559ee6 100644 --- a/src/main/java/WayofTime/bloodmagic/item/armour/ItemSentientArmour.java +++ b/src/main/java/WayofTime/bloodmagic/item/armour/ItemSentientArmour.java @@ -11,20 +11,20 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.enchantment.Enchantment; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemArmor; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; +import net.minecraft.item.ArmorItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.DamageSource; import net.minecraft.util.NonNullList; import net.minecraft.util.ResourceLocation; @@ -38,7 +38,7 @@ import java.util.Map; import java.util.UUID; import java.util.function.Consumer; -public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMeshProvider, IMultiWillTool { +public class ItemSentientArmour extends ArmorItem implements ISpecialArmor, IMeshProvider, IMultiWillTool { public static String[] names = {"helmet", "chest", "legs", "boots"}; public static double[] willBracket = new double[]{30, 200, 600, 1500, 4000, 6000, 8000, 16000}; @@ -54,15 +54,15 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public static double[] speedBonus = new double[]{0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4}; - public ItemSentientArmour(EntityEquipmentSlot armorType) { - super(ItemArmor.ArmorMaterial.IRON, 0, armorType); + public ItemSentientArmour(EquipmentSlotType armorType) { + super(ArmorItem.ArmorMaterial.IRON, 0, armorType); setTranslationKey(BloodMagic.MODID + ".sentientArmour."); setMaxDamage(250); setCreativeTab(BloodMagic.TAB_BM); } @Override - public String getArmorTexture(ItemStack stack, Entity entity, EntityEquipmentSlot slot, String type) { + public String getArmorTexture(ItemStack stack, Entity entity, EquipmentSlotType slot, String type) { if (this == RegistrarBloodMagicItems.SENTIENT_ARMOUR_CHEST || this == RegistrarBloodMagicItems.SENTIENT_ARMOUR_HELMET || this == RegistrarBloodMagicItems.SENTIENT_ARMOUR_BOOTS) { switch (this.getCurrentType(stack)) { case DEFAULT: @@ -99,16 +99,16 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } @Override - public void onArmorTick(World world, EntityPlayer player, ItemStack stack) { - if (this.armorType == EntityEquipmentSlot.CHEST) { + public void onArmorTick(World world, PlayerEntity player, ItemStack stack) { + if (this.armorType == EquipmentSlotType.CHEST) { EnumDemonWillType type = this.getCurrentType(stack); switch (type) { case CORROSIVE: - if (player.isPotionActive(MobEffects.POISON)) { - player.removeActivePotionEffect(MobEffects.POISON); + if (player.isPotionActive(Effects.POISON)) { + player.removeActivePotionEffect(Effects.POISON); } - if (player.isPotionActive(MobEffects.WITHER)) { - player.removeActivePotionEffect(MobEffects.WITHER); + if (player.isPotionActive(Effects.WITHER)) { + player.removeActivePotionEffect(Effects.WITHER); } break; default: @@ -116,14 +116,14 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } } - public void onPlayerAttacked(ItemStack stack, DamageSource source, EntityPlayer attackedPlayer) { - if (source.getTrueSource() instanceof EntityLivingBase) { - EntityLivingBase attacker = (EntityLivingBase) source.getTrueSource(); + public void onPlayerAttacked(ItemStack stack, DamageSource source, PlayerEntity attackedPlayer) { + if (source.getTrueSource() instanceof LivingEntity) { + LivingEntity attacker = (LivingEntity) source.getTrueSource(); EnumDemonWillType type = this.getCurrentType(stack); switch (type) { case CORROSIVE: if (!source.isProjectile()) { - attacker.addPotionEffect(new PotionEffect(MobEffects.POISON, 100)); //TODO: customize duration + attacker.addPotionEffect(new EffectInstance(Effects.POISON, 100)); //TODO: customize duration } break; case DEFAULT: @@ -139,7 +139,7 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } @Override - public ArmorProperties getProperties(EntityLivingBase player, ItemStack stack, DamageSource source, double damage, int slot) { + public ArmorProperties getProperties(LivingEntity player, ItemStack stack, DamageSource source, double damage, int slot) { double armourReduction = 0.0; double damageAmount = 0.25; @@ -166,9 +166,9 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes if (this == RegistrarBloodMagicItems.SENTIENT_ARMOUR_CHEST) { armourReduction = 0.24 / 0.64; // This values puts it at iron level - ItemStack helmet = player.getItemStackFromSlot(EntityEquipmentSlot.HEAD); - ItemStack leggings = player.getItemStackFromSlot(EntityEquipmentSlot.LEGS); - ItemStack boots = player.getItemStackFromSlot(EntityEquipmentSlot.FEET); + ItemStack helmet = player.getItemStackFromSlot(EquipmentSlotType.HEAD); + ItemStack leggings = player.getItemStackFromSlot(EquipmentSlotType.LEGS); + ItemStack boots = player.getItemStackFromSlot(EquipmentSlotType.FEET); if (helmet.isEmpty() || leggings.isEmpty() || boots.isEmpty()) { damageAmount *= (armourReduction); @@ -201,7 +201,7 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } @Override - public int getArmorDisplay(EntityPlayer player, ItemStack armor, int slot) { + public int getArmorDisplay(PlayerEntity player, ItemStack armor, int slot) { if (armor.getItem() == RegistrarBloodMagicItems.SENTIENT_ARMOUR_HELMET) { return 3; } @@ -222,9 +222,9 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } @Override - public void damageArmor(EntityLivingBase entity, ItemStack stack, DamageSource source, int damage, int slot) { - if (entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + public void damageArmor(LivingEntity entity, ItemStack stack, DamageSource source, int damage, int slot) { + if (entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; EnumDemonWillType type = getCurrentType(stack); @@ -241,28 +241,28 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public double getCostModifier(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("costModifier"); } public void setCostModifier(ItemStack stack, double modifier) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("costModifier", modifier); } public double getArmourModifier(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("armourModifier"); } public void setArmourModifier(ItemStack stack, double modifier) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("armourModifier", modifier); } @@ -272,7 +272,7 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes return super.getTranslationKey(stack) + names[3 - armorType.getIndex()]; } - public void revertArmour(EntityPlayer player, ItemStack itemStack) { + public void revertArmour(PlayerEntity player, ItemStack itemStack) { ItemStack stack = this.getContainedArmourStack(itemStack); player.setItemStackToSlot(armorType, stack); } @@ -312,9 +312,9 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) { Multimap multimap = HashMultimap.create(); - if (slot == EntityEquipmentSlot.CHEST) { + if (slot == EquipmentSlotType.CHEST) { multimap.put(SharedMonsterAttributes.MAX_HEALTH.getName(), new AttributeModifier(new UUID(0, 318145), "Armor modifier", this.getHealthBonus(stack), 0)); multimap.put(SharedMonsterAttributes.KNOCKBACK_RESISTANCE.getName(), new AttributeModifier(new UUID(0, 8145), "Armor modifier", this.getKnockbackResistance(stack), 0)); multimap.put(SharedMonsterAttributes.MOVEMENT_SPEED.getName(), new AttributeModifier(new UUID(0, 94021), "Armor modifier", this.getSpeedBoost(stack), 2)); @@ -329,12 +329,12 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes return; } - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); previousArmour.writeToNBT(tag); - NBTTagCompound omegaTag = newArmour.getTagCompound(); + CompoundNBT omegaTag = newArmour.getTagCompound(); if (omegaTag == null) { - omegaTag = new NBTTagCompound(); + omegaTag = new CompoundNBT(); newArmour.setTagCompound(omegaTag); } @@ -344,12 +344,12 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } public ItemStack getContainedArmourStack(ItemStack newArmour) { - NBTTagCompound omegaTag = newArmour.getTagCompound(); + CompoundNBT omegaTag = newArmour.getTagCompound(); if (omegaTag == null) { return null; } - NBTTagCompound tag = omegaTag.getCompoundTag("armour"); + CompoundNBT tag = omegaTag.getCompoundTag("armour"); return new ItemStack(tag); } @@ -366,7 +366,7 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public EnumDemonWillType getCurrentType(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -378,7 +378,7 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public void setCurrentType(EnumDemonWillType type, ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); } @@ -391,7 +391,7 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes this.setCostModifier(armourStack, recurringCost); this.setCurrentType(type, armourStack); - if (this.armorType == EntityEquipmentSlot.CHEST) { + if (this.armorType == EquipmentSlotType.CHEST) { this.setArmourModifier(armourStack, getArmourModifier(type, willBracket)); this.setHealthBonus(armourStack, this.getHealthModifier(type, willBracket)); this.setKnockbackResistance(armourStack, getKnockbackModifier(type, willBracket)); @@ -459,14 +459,14 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public double getHealthBonus(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_HEALTH); } public void setHealthBonus(ItemStack stack, double hp) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_HEALTH, hp); } @@ -474,14 +474,14 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public double getKnockbackResistance(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("knockback"); } public void setKnockbackResistance(ItemStack stack, double kb) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("knockback", kb); } @@ -489,14 +489,14 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public double getSpeedBoost(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("speed"); } public void setSpeedBoost(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("speed", speed); } @@ -504,14 +504,14 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public double getDamageBoost(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("damage"); } public void setDamageBoost(ItemStack stack, double damage) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("damage", damage); } @@ -519,19 +519,19 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes public double getAttackSpeedBoost(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("attackSpeed"); } public void setAttackSpeedBoost(ItemStack stack, double attackSpeed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("attackSpeed", attackSpeed); } - public static void revertAllArmour(EntityPlayer player) { + public static void revertAllArmour(PlayerEntity player) { NonNullList armourInventory = player.inventory.armorInventory; for (ItemStack stack : armourInventory) { if (stack != null && stack.getItem() instanceof ItemSentientArmour) { @@ -540,15 +540,15 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes } } - public static boolean convertPlayerArmour(EnumDemonWillType type, double will, EntityPlayer player) { + public static boolean convertPlayerArmour(EnumDemonWillType type, double will, PlayerEntity player) { if (!canSustainArmour(type, will)) { return false; } - ItemStack helmetStack = player.getItemStackFromSlot(EntityEquipmentSlot.HEAD); - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); - ItemStack leggingsStack = player.getItemStackFromSlot(EntityEquipmentSlot.LEGS); - ItemStack bootsStack = player.getItemStackFromSlot(EntityEquipmentSlot.FEET); + ItemStack helmetStack = player.getItemStackFromSlot(EquipmentSlotType.HEAD); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); + ItemStack leggingsStack = player.getItemStackFromSlot(EquipmentSlotType.LEGS); + ItemStack bootsStack = player.getItemStackFromSlot(EquipmentSlotType.FEET); { ItemStack omegaHelmetStack = ((ItemSentientArmour) RegistrarBloodMagicItems.SENTIENT_ARMOUR_HELMET).getSubstituteStack(type, will, helmetStack); @@ -556,10 +556,10 @@ public class ItemSentientArmour extends ItemArmor implements ISpecialArmor, IMes ItemStack omegaLeggingsStack = ((ItemSentientArmour) RegistrarBloodMagicItems.SENTIENT_ARMOUR_LEGGINGS).getSubstituteStack(type, will, leggingsStack); ItemStack omegaBootsStack = ((ItemSentientArmour) RegistrarBloodMagicItems.SENTIENT_ARMOUR_BOOTS).getSubstituteStack(type, will, bootsStack); - player.setItemStackToSlot(EntityEquipmentSlot.HEAD, omegaHelmetStack); - player.setItemStackToSlot(EntityEquipmentSlot.CHEST, omegaChestStack); - player.setItemStackToSlot(EntityEquipmentSlot.LEGS, omegaLeggingsStack); - player.setItemStackToSlot(EntityEquipmentSlot.FEET, omegaBootsStack); + player.setItemStackToSlot(EquipmentSlotType.HEAD, omegaHelmetStack); + player.setItemStackToSlot(EquipmentSlotType.CHEST, omegaChestStack); + player.setItemStackToSlot(EquipmentSlotType.LEGS, omegaLeggingsStack); + player.setItemStackToSlot(EquipmentSlotType.FEET, omegaBootsStack); return true; } diff --git a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockAlchemyTable.java b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockAlchemyTable.java index 25cc5b0b..9715a33d 100644 --- a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockAlchemyTable.java +++ b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockAlchemyTable.java @@ -4,24 +4,24 @@ import WayofTime.bloodmagic.client.IVariantProvider; import WayofTime.bloodmagic.tile.TileAlchemyTable; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; -public class ItemBlockAlchemyTable extends ItemBlock implements IVariantProvider { +public class ItemBlockAlchemyTable extends BlockItem implements IVariantProvider { public ItemBlockAlchemyTable(Block block) { super(block); } @Override - public boolean placeBlockAt(ItemStack stack, EntityPlayer player, World world, BlockPos pos, EnumFacing side, float hitX, float hitY, float hitZ, IBlockState newState) { + public boolean placeBlockAt(ItemStack stack, PlayerEntity player, World world, BlockPos pos, Direction side, float hitX, float hitY, float hitZ, BlockState newState) { float yaw = player.rotationYaw; - EnumFacing direction = EnumFacing.fromAngle(yaw); + Direction direction = Direction.fromAngle(yaw); if (direction.getYOffset() != 0) { return false; @@ -41,7 +41,7 @@ public class ItemBlockAlchemyTable extends ItemBlock implements IVariantProvider return false; } - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); if (state.getBlock() == this.block) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileAlchemyTable) { diff --git a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockBloodTank.java b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockBloodTank.java index f614ed34..f0e80c1d 100644 --- a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockBloodTank.java +++ b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockBloodTank.java @@ -5,10 +5,10 @@ import WayofTime.bloodmagic.tile.TileBloodTank; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.block.Block; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.NonNullList; import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; @@ -21,7 +21,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.util.List; -public class ItemBlockBloodTank extends ItemBlock { +public class ItemBlockBloodTank extends BlockItem { public ItemBlockBloodTank(Block block) { super(block); @@ -58,7 +58,7 @@ public class ItemBlockBloodTank extends ItemBlock { @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; @@ -72,7 +72,7 @@ public class ItemBlockBloodTank extends ItemBlock { } @Override - public ICapabilityProvider initCapabilities(ItemStack stack, NBTTagCompound nbt) { + public ICapabilityProvider initCapabilities(ItemStack stack, CompoundNBT nbt) { return new FluidHandlerItemStack(stack, getCapacity(stack)); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockDemonCrystal.java b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockDemonCrystal.java index 0d72a4a5..7aed772a 100644 --- a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockDemonCrystal.java +++ b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockDemonCrystal.java @@ -3,18 +3,18 @@ package WayofTime.bloodmagic.item.block; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.tile.TileDemonCrystal; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import java.util.Locale; -public class ItemBlockDemonCrystal extends ItemBlock { +public class ItemBlockDemonCrystal extends BlockItem { public ItemBlockDemonCrystal(Block block) { super(block); setHasSubtypes(true); @@ -31,7 +31,7 @@ public class ItemBlockDemonCrystal extends ItemBlock { } @Override - public boolean placeBlockAt(ItemStack stack, EntityPlayer player, World world, BlockPos pos, EnumFacing side, float hitX, float hitY, float hitZ, IBlockState newState) { + public boolean placeBlockAt(ItemStack stack, PlayerEntity player, World world, BlockPos pos, Direction side, float hitX, float hitY, float hitZ, BlockState newState) { if (super.placeBlockAt(stack, player, world, pos, side, hitX, hitY, hitZ, newState)) { TileEntity tile = world.getTileEntity(pos); if (tile instanceof TileDemonCrystal) { diff --git a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockMimic.java b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockMimic.java index 3e4218bb..242e2974 100644 --- a/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockMimic.java +++ b/src/main/java/WayofTime/bloodmagic/item/block/ItemBlockMimic.java @@ -1,27 +1,22 @@ package WayofTime.bloodmagic.item.block; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; import net.minecraft.block.SoundType; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.tileentity.TileEntityChest; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; -import net.minecraft.util.SoundCategory; +import net.minecraft.tileentity.ChestTileEntity; +import net.minecraft.util.*; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; -import WayofTime.bloodmagic.block.BlockMimic; import WayofTime.bloodmagic.tile.TileMimic; import WayofTime.bloodmagic.block.base.BlockEnum; import WayofTime.bloodmagic.item.block.base.ItemBlockEnum; -import WayofTime.bloodmagic.util.ChatUtil; - public class ItemBlockMimic extends ItemBlockEnum { public ItemBlockMimic(BlockEnum block) { super(block); @@ -29,7 +24,7 @@ public class ItemBlockMimic extends ItemBlockEnum { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); //If not sneaking, do normal item use @@ -40,12 +35,12 @@ public class ItemBlockMimic extends ItemBlockEnum { //IF sneaking and player has permission, replace the targeted block if (player.canPlayerEdit(pos, facing, stack)) { //Store information about the block being replaced and its appropriate itemstack - IBlockState replacedBlockstate = world.getBlockState(pos); + BlockState replacedBlockstate = world.getBlockState(pos); Block replacedBlock = replacedBlockstate.getBlock(); ItemStack replacedStack = replacedBlock.getItem(world, pos, replacedBlockstate); //Get the state for the mimic - IBlockState mimicBlockstate = this.getBlock().getStateFromMeta(stack.getMetadata()); + BlockState mimicBlockstate = this.getBlock().getStateFromMeta(stack.getMetadata()); //Check if the block can be replaced @@ -57,13 +52,13 @@ public class ItemBlockMimic extends ItemBlockEnum { //Check if the tile entity, if any, can be replaced TileEntity tileReplaced = world.getTileEntity(pos); if (!canReplaceTile(tileReplaced)) { - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } //If tile can be replaced, store info about the tile - NBTTagCompound tileTag = getTagFromTileEntity(tileReplaced); + CompoundNBT tileTag = getTagFromTileEntity(tileReplaced); if (tileReplaced != null) { - NBTTagCompound voidTag = new NBTTagCompound(); + CompoundNBT voidTag = new CompoundNBT(); voidTag.setInteger("x", pos.getX()); voidTag.setInteger("y", pos.getY()); voidTag.setInteger("z", pos.getZ()); @@ -93,27 +88,27 @@ public class ItemBlockMimic extends ItemBlockEnum { mimic.dropItemsOnBreak = false; } } - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } public boolean canReplaceTile(TileEntity tile) { - if (tile instanceof TileEntityChest) { + if (tile instanceof ChestTileEntity) { return true; } return tile == null; } - public boolean canReplaceBlock(World world, BlockPos pos, IBlockState state) { + public boolean canReplaceBlock(World world, BlockPos pos, BlockState state) { return state.getBlockHardness(world, pos) != -1.0F; } - public NBTTagCompound getTagFromTileEntity(TileEntity tile) { - NBTTagCompound tag = new NBTTagCompound(); + public CompoundNBT getTagFromTileEntity(TileEntity tile) { + CompoundNBT tag = new CompoundNBT(); if (tile != null) { return tile.writeToNBT(tag); diff --git a/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockEnum.java b/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockEnum.java index c7555739..4739bec2 100644 --- a/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockEnum.java +++ b/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockEnum.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.item.block.base; import WayofTime.bloodmagic.block.base.BlockEnum; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.util.IStringSerializable; import net.minecraft.util.math.MathHelper; -public class ItemBlockEnum & IStringSerializable> extends ItemBlock { +public class ItemBlockEnum & IStringSerializable> extends BlockItem { public ItemBlockEnum(BlockEnum block) { super(block); diff --git a/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockInteger.java b/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockInteger.java index 1797aa60..20f656cd 100644 --- a/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockInteger.java +++ b/src/main/java/WayofTime/bloodmagic/item/block/base/ItemBlockInteger.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.item.block.base; import WayofTime.bloodmagic.block.base.BlockInteger; -import net.minecraft.item.ItemBlock; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; -public class ItemBlockInteger extends ItemBlock { +public class ItemBlockInteger extends BlockItem { public ItemBlockInteger(BlockInteger block) { super(block); diff --git a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java index 9c01900b..116c1c22 100644 --- a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSacrifice.java @@ -11,35 +11,35 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemArmor; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.ArmorItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; import javax.annotation.Nonnull; import java.util.List; -public class ItemPackSacrifice extends ItemArmor implements IAltarManipulator, IItemLPContainer, IVariantProvider { +public class ItemPackSacrifice extends ArmorItem implements IAltarManipulator, IItemLPContainer, IVariantProvider { public final int CAPACITY = 10000; // Max LP storage public ItemPackSacrifice() { - super(ArmorMaterial.CHAIN, 0, EntityEquipmentSlot.CHEST); + super(ArmorMaterial.CHAIN, 0, EquipmentSlotType.CHEST); setTranslationKey(BloodMagic.MODID + ".pack.sacrifice"); setCreativeTab(BloodMagic.TAB_BM); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (world.isRemote) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); RayTraceResult rayTrace = this.rayTrace(world, player, false); @@ -56,11 +56,11 @@ public class ItemPackSacrifice extends ItemArmor implements IAltarManipulator, I } } - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); } @Override - public void onArmorTick(World world, EntityPlayer player, ItemStack stack) { + public void onArmorTick(World world, PlayerEntity player, ItemStack stack) { if (getStoredLP(stack) > CAPACITY) setStoredLP(stack, CAPACITY); } diff --git a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java index cc15fe1f..4c70b592 100644 --- a/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/item/gear/ItemPackSelfSacrifice.java @@ -12,21 +12,21 @@ import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemArmor; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.ArmorItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; import javax.annotation.Nonnull; import java.util.List; -public class ItemPackSelfSacrifice extends ItemArmor implements IAltarManipulator, IItemLPContainer, IVariantProvider { +public class ItemPackSelfSacrifice extends ArmorItem implements IAltarManipulator, IItemLPContainer, IVariantProvider { /** * How much LP per half heart */ @@ -45,17 +45,17 @@ public class ItemPackSelfSacrifice extends ItemArmor implements IAltarManipulato public final float HEALTHREQ = 0.5f; public ItemPackSelfSacrifice() { - super(ArmorMaterial.CHAIN, 0, EntityEquipmentSlot.CHEST); + super(ArmorMaterial.CHAIN, 0, EquipmentSlotType.CHEST); setTranslationKey(BloodMagic.MODID + ".pack.selfSacrifice"); setCreativeTab(BloodMagic.TAB_BM); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (world.isRemote) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); RayTraceResult position = this.rayTrace(world, player, false); @@ -72,11 +72,11 @@ public class ItemPackSelfSacrifice extends ItemArmor implements IAltarManipulato } } - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); } @Override - public void onArmorTick(World world, EntityPlayer player, ItemStack stack) { + public void onArmorTick(World world, PlayerEntity player, ItemStack stack) { if (world.isRemote || player.capabilities.isCreativeMode) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/inventory/ContainerHolding.java b/src/main/java/WayofTime/bloodmagic/item/inventory/ContainerHolding.java index ed9d22cf..d4608ab9 100644 --- a/src/main/java/WayofTime/bloodmagic/item/inventory/ContainerHolding.java +++ b/src/main/java/WayofTime/bloodmagic/item/inventory/ContainerHolding.java @@ -2,10 +2,10 @@ package WayofTime.bloodmagic.item.inventory; import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.item.sigil.ItemSigilHolding; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.Container; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.container.Container; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.FMLCommonHandler; @@ -13,9 +13,9 @@ public class ContainerHolding extends Container { public final InventoryHolding inventoryHolding; private final int PLAYER_INVENTORY_ROWS = 3; private final int PLAYER_INVENTORY_COLUMNS = 9; - private final EntityPlayer player; + private final PlayerEntity player; - public ContainerHolding(EntityPlayer player, InventoryHolding inventoryHolding) { + public ContainerHolding(PlayerEntity player, InventoryHolding inventoryHolding) { this.player = player; this.inventoryHolding = inventoryHolding; int currentSlotHeldIn = player.inventory.currentItem; @@ -40,12 +40,12 @@ public class ContainerHolding extends Container { } @Override - public boolean canInteractWith(EntityPlayer entityPlayer) { + public boolean canInteractWith(PlayerEntity entityPlayer) { return true; } @Override - public void onContainerClosed(EntityPlayer entityPlayer) { + public void onContainerClosed(PlayerEntity entityPlayer) { super.onContainerClosed(entityPlayer); if (!entityPlayer.getEntityWorld().isRemote) { @@ -63,7 +63,7 @@ public class ContainerHolding extends Container { } @Override - public ItemStack transferStackInSlot(EntityPlayer entityPlayer, int slotIndex) { + public ItemStack transferStackInSlot(PlayerEntity entityPlayer, int slotIndex) { ItemStack stack = ItemStack.EMPTY; Slot slotObject = inventorySlots.get(slotIndex); int slots = inventorySlots.size(); @@ -106,15 +106,15 @@ public class ContainerHolding extends Container { return stack; } - public void saveInventory(EntityPlayer entityPlayer) { + public void saveInventory(PlayerEntity entityPlayer) { inventoryHolding.onGuiSaved(entityPlayer); } private class SlotHolding extends Slot { - private final EntityPlayer player; + private final PlayerEntity player; private ContainerHolding containerHolding; - public SlotHolding(ContainerHolding containerHolding, IInventory inventory, EntityPlayer player, int slotIndex, int x, int y) { + public SlotHolding(ContainerHolding containerHolding, IInventory inventory, PlayerEntity player, int slotIndex, int x, int y) { super(inventory, slotIndex, x, y); this.player = player; this.containerHolding = containerHolding; @@ -146,7 +146,7 @@ public class ContainerHolding extends Container { } @Override - public boolean canTakeStack(EntityPlayer player) { + public boolean canTakeStack(PlayerEntity player) { return false; } } diff --git a/src/main/java/WayofTime/bloodmagic/item/inventory/InventoryHolding.java b/src/main/java/WayofTime/bloodmagic/item/inventory/InventoryHolding.java index 133d341e..a6eb1973 100644 --- a/src/main/java/WayofTime/bloodmagic/item/inventory/InventoryHolding.java +++ b/src/main/java/WayofTime/bloodmagic/item/inventory/InventoryHolding.java @@ -4,9 +4,9 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.item.sigil.ItemSigilHolding; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import java.util.UUID; @@ -17,7 +17,7 @@ public class InventoryHolding extends ItemInventory { super(itemStack, ItemSigilHolding.inventorySize, "SigilOfHolding"); } - public void onGuiSaved(EntityPlayer entityPlayer) { + public void onGuiSaved(PlayerEntity entityPlayer) { masterStack = findParentStack(entityPlayer); if (!masterStack.isEmpty()) { @@ -25,7 +25,7 @@ public class InventoryHolding extends ItemInventory { } } - public ItemStack findParentStack(EntityPlayer entityPlayer) { + public ItemStack findParentStack(PlayerEntity entityPlayer) { if (Utils.hasUUID(masterStack)) { UUID parentStackUUID = new UUID(masterStack.getTagCompound().getLong(Constants.NBT.MOST_SIG), masterStack.getTagCompound().getLong(Constants.NBT.LEAST_SIG)); for (int i = 0; i < entityPlayer.inventory.getSizeInventory(); i++) { @@ -43,10 +43,10 @@ public class InventoryHolding extends ItemInventory { } public void save() { - NBTTagCompound nbtTagCompound = masterStack.getTagCompound(); + CompoundNBT nbtTagCompound = masterStack.getTagCompound(); if (nbtTagCompound == null) { - nbtTagCompound = new NBTTagCompound(); + nbtTagCompound = new CompoundNBT(); UUID uuid = UUID.randomUUID(); nbtTagCompound.setLong(Constants.NBT.MOST_SIG, uuid.getMostSignificantBits()); diff --git a/src/main/java/WayofTime/bloodmagic/item/inventory/ItemInventory.java b/src/main/java/WayofTime/bloodmagic/item/inventory/ItemInventory.java index 0a08e330..329f5aea 100644 --- a/src/main/java/WayofTime/bloodmagic/item/inventory/ItemInventory.java +++ b/src/main/java/WayofTime/bloodmagic/item/inventory/ItemInventory.java @@ -2,14 +2,14 @@ package WayofTime.bloodmagic.item.inventory; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.NBTHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; import net.minecraft.util.NonNullList; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.text.StringTextComponent; public class ItemInventory implements IInventory { protected int[] syncedSlots = new int[0]; @@ -43,13 +43,13 @@ public class ItemInventory implements IInventory { return false; } - public void readFromNBT(NBTTagCompound tagCompound) { - NBTTagList tags = tagCompound.getTagList(Constants.NBT.ITEMS, 10); + public void readFromNBT(CompoundNBT tagCompound) { + ListNBT tags = tagCompound.getTagList(Constants.NBT.ITEMS, 10); inventory = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY); for (int i = 0; i < tags.tagCount(); i++) { if (!isSyncedSlot(i)) { - NBTTagCompound data = tags.getCompoundTagAt(i); + CompoundNBT data = tags.getCompoundTagAt(i); byte j = data.getByte(Constants.NBT.SLOT); if (j >= 0 && j < inventory.size()) { @@ -59,12 +59,12 @@ public class ItemInventory implements IInventory { } } - public void writeToNBT(NBTTagCompound tagCompound) { - NBTTagList tags = new NBTTagList(); + public void writeToNBT(CompoundNBT tagCompound) { + ListNBT tags = new ListNBT(); for (int i = 0; i < inventory.size(); i++) { if ((!inventory.get(i).isEmpty()) && !isSyncedSlot(i)) { - NBTTagCompound data = new NBTTagCompound(); + CompoundNBT data = new CompoundNBT(); data.setByte(Constants.NBT.SLOT, (byte) i); inventory.get(i).writeToNBT(data); tags.appendTag(data); @@ -77,7 +77,7 @@ public class ItemInventory implements IInventory { public void readFromStack(ItemStack masterStack) { if (masterStack != null) { NBTHelper.checkNBT(masterStack); - NBTTagCompound tag = masterStack.getTagCompound(); + CompoundNBT tag = masterStack.getTagCompound(); readFromNBT(tag.getCompoundTag(Constants.NBT.ITEM_INVENTORY)); } } @@ -85,8 +85,8 @@ public class ItemInventory implements IInventory { public void writeToStack(ItemStack masterStack) { if (masterStack != null) { NBTHelper.checkNBT(masterStack); - NBTTagCompound tag = masterStack.getTagCompound(); - NBTTagCompound invTag = new NBTTagCompound(); + CompoundNBT tag = masterStack.getTagCompound(); + CompoundNBT invTag = new CompoundNBT(); writeToNBT(invTag); tag.setTag(Constants.NBT.ITEM_INVENTORY, invTag); } @@ -152,17 +152,17 @@ public class ItemInventory implements IInventory { } @Override - public boolean isUsableByPlayer(EntityPlayer player) { + public boolean isUsableByPlayer(PlayerEntity player) { return true; } @Override - public void openInventory(EntityPlayer player) { + public void openInventory(PlayerEntity player) { } @Override - public void closeInventory(EntityPlayer player) { + public void closeInventory(PlayerEntity player) { } @@ -203,7 +203,7 @@ public class ItemInventory implements IInventory { @Override public ITextComponent getDisplayName() { - return new TextComponentString(getName()); + return new StringTextComponent(getName()); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/routing/ItemFluidRouterFilter.java b/src/main/java/WayofTime/bloodmagic/item/routing/ItemFluidRouterFilter.java index 1a263103..45a7f63d 100644 --- a/src/main/java/WayofTime/bloodmagic/item/routing/ItemFluidRouterFilter.java +++ b/src/main/java/WayofTime/bloodmagic/item/routing/ItemFluidRouterFilter.java @@ -9,7 +9,7 @@ import WayofTime.bloodmagic.util.GhostItemHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.ItemGroup; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; @@ -41,7 +41,7 @@ public class ItemFluidRouterFilter extends Item implements IFluidFilterProvider, @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/routing/ItemNodeRouter.java b/src/main/java/WayofTime/bloodmagic/item/routing/ItemNodeRouter.java index 4ea9be03..6665b7fd 100644 --- a/src/main/java/WayofTime/bloodmagic/item/routing/ItemNodeRouter.java +++ b/src/main/java/WayofTime/bloodmagic/item/routing/ItemNodeRouter.java @@ -10,16 +10,16 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -40,7 +40,7 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi public void addInformation(ItemStack stack, World world, List tooltip, ITooltipFlag flag) { if (!stack.hasTagCompound()) return; - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); BlockPos coords = getBlockPos(stack); if (coords != null && tag != null) { @@ -49,10 +49,10 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi } @Override - public EnumActionResult onItemUseFirst(EntityPlayer player, World world, BlockPos pos, EnumFacing side, float hitX, float hitY, float hitZ, EnumHand hand) { + public ActionResultType onItemUseFirst(PlayerEntity player, World world, BlockPos pos, Direction side, float hitX, float hitY, float hitZ, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (world.isRemote) { - return EnumActionResult.PASS; + return ActionResultType.PASS; } TileEntity tileHit = world.getTileEntity(pos); @@ -62,17 +62,17 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi BlockPos containedPos = getBlockPos(stack); if (!containedPos.equals(BlockPos.ORIGIN)) { this.setBlockPos(stack, BlockPos.ORIGIN); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.remove"), true); - return EnumActionResult.FAIL; + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.remove"), true); + return ActionResultType.FAIL; } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } IRoutingNode node = (IRoutingNode) tileHit; BlockPos containedPos = getBlockPos(stack); if (containedPos.equals(BlockPos.ORIGIN)) { this.setBlockPos(stack, pos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.set"), true); - return EnumActionResult.SUCCESS; + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.set"), true); + return ActionResultType.SUCCESS; } else { TileEntity pastTile = world.getTileEntity(containedPos); if (pastTile instanceof IRoutingNode) { @@ -87,16 +87,16 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi master.addConnection(pos, containedPos); master.addNodeToList(node); node.addConnection(containedPos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link.master"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link.master"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } else { master.addConnection(pos, containedPos); node.addConnection(containedPos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link.master"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link.master"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } else if (node instanceof IMasterRoutingNode) { @@ -109,16 +109,16 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi master.addConnection(pos, containedPos); pastNode.addConnection(pos); master.addNodeToList(pastNode); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link.master"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link.master"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } else { master.addConnection(pos, containedPos); pastNode.addConnection(pos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link.master"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link.master"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } else { //Both nodes are not master nodes, so normal linking @@ -132,9 +132,9 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi } pastNode.addConnection(pos); node.addConnection(containedPos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link.master"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link.master"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } else if (pastNode.getMasterPos().equals(BlockPos.ORIGIN)) //pastNode is not connected to a master, but node is { TileEntity tile = world.getTileEntity(node.getMasterPos()); @@ -146,9 +146,9 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi } pastNode.addConnection(pos); node.addConnection(containedPos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } else if (node.getMasterPos().equals(BlockPos.ORIGIN)) //node is not connected to a master, but pastNode is { TileEntity tile = world.getTileEntity(pastNode.getMasterPos()); @@ -160,18 +160,18 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi } pastNode.addConnection(pos); node.addConnection(containedPos); - player.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.routing.link"), true); + player.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.routing.link"), true); this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } else { this.setBlockPos(stack, BlockPos.ORIGIN); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } } } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } @Override @@ -186,7 +186,7 @@ public class ItemNodeRouter extends Item implements INodeRenderer, IVariantProvi public ItemStack setBlockPos(ItemStack stack, BlockPos pos) { NBTHelper.checkNBT(stack); - NBTTagCompound itemTag = stack.getTagCompound(); + CompoundNBT itemTag = stack.getTagCompound(); itemTag.setInteger(Constants.NBT.X_COORD, pos.getX()); itemTag.setInteger(Constants.NBT.Y_COORD, pos.getY()); itemTag.setInteger(Constants.NBT.Z_COORD, pos.getZ()); diff --git a/src/main/java/WayofTime/bloodmagic/item/routing/ItemRouterFilter.java b/src/main/java/WayofTime/bloodmagic/item/routing/ItemRouterFilter.java index 70e55aec..b5f1da4e 100644 --- a/src/main/java/WayofTime/bloodmagic/item/routing/ItemRouterFilter.java +++ b/src/main/java/WayofTime/bloodmagic/item/routing/ItemRouterFilter.java @@ -8,7 +8,7 @@ import WayofTime.bloodmagic.util.GhostItemHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; +import net.minecraft.item.ItemGroup; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; @@ -40,7 +40,7 @@ public class ItemRouterFilter extends Item implements IItemFilterProvider, IVari @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java index da71b84d..e849c0c5 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilAir.java @@ -7,12 +7,12 @@ import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.Effects; +import net.minecraft.util.SoundEvents; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.*; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; @@ -23,12 +23,12 @@ public class ItemSigilAir extends ItemSigilBase implements ISentientSwordEffectP } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); boolean unusable = isUnusable(stack); if (world.isRemote && !unusable) { @@ -59,8 +59,8 @@ public class ItemSigilAir extends ItemSigilBase implements ISentientSwordEffectP } @Override - public boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, EntityLivingBase attacker, EntityLivingBase target) { - target.addPotionEffect(new PotionEffect(MobEffects.LEVITATION, 200, 0)); + public boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, LivingEntity attacker, LivingEntity target) { + target.addPotionEffect(new EffectInstance(Effects.LEVITATION, 200, 0)); return true; } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBloodLight.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBloodLight.java index 957187bc..db5c1c32 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBloodLight.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBloodLight.java @@ -8,7 +8,7 @@ import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.*; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; @@ -27,12 +27,12 @@ public class ItemSigilBloodLight extends ItemSigilBase { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); RayTraceResult mop = this.rayTrace(world, player, false); diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBounce.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBounce.java index a209952d..9e6359d9 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBounce.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilBounce.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.core.RegistrarBloodMagic; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.world.World; public class ItemSigilBounce extends ItemSigilToggleableBase { @@ -13,10 +13,10 @@ public class ItemSigilBounce extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.BOUNCE, 2, 0, true, false)); + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.BOUNCE, 2, 0, true, false)); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilClaw.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilClaw.java index 49358bcd..d69e9a40 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilClaw.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilClaw.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.core.RegistrarBloodMagic; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.world.World; public class ItemSigilClaw extends ItemSigilToggleableBase { @@ -13,10 +13,10 @@ public class ItemSigilClaw extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.CLING, 2, 0, true, false)); + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.CLING, 2, 0, true, false)); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilCompression.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilCompression.java index 1359167a..e0cb5d17 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilCompression.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilCompression.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.compress.CompressionRegistry; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.item.ItemEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.world.World; @@ -16,7 +16,7 @@ public class ItemSigilCompression extends ItemSigilToggleableBase { // TODO for now, there is a semi-working system in place @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; @@ -24,7 +24,7 @@ public class ItemSigilCompression extends ItemSigilToggleableBase { ItemStack compressedStack = CompressionRegistry.compressInventory(player.inventory.mainInventory.toArray(new ItemStack[player.inventory.mainInventory.size()]), world); if (compressedStack != null) { - EntityItem entityItem = new EntityItem(world, player.posX, player.posY, player.posZ, compressedStack); + ItemEntity entityItem = new ItemEntity(world, player.posX, player.posY, player.posZ, compressedStack); world.spawnEntity(entityItem); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilDivination.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilDivination.java index a25a5122..89f8663c 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilDivination.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilDivination.java @@ -7,11 +7,11 @@ import WayofTime.bloodmagic.util.ChatUtil; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import com.google.common.collect.Lists; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.*; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import java.util.List; @@ -23,12 +23,12 @@ public class ItemSigilDivination extends ItemSigilBase implements IAltarReader { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); if (!world.isRemote) { super.onItemRightClick(world, player, hand); @@ -38,8 +38,8 @@ public class ItemSigilDivination extends ItemSigilBase implements IAltarReader { int currentEssence = NetworkHelper.getSoulNetwork(binding).getCurrentEssence(); List toSend = Lists.newArrayList(); if (!binding.getOwnerId().equals(player.getGameProfile().getId())) - toSend.add(new TextComponentTranslation(tooltipBase + "otherNetwork", binding.getOwnerName())); - toSend.add(new TextComponentTranslation(tooltipBase + "currentEssence", currentEssence)); + toSend.add(new TranslationTextComponent(tooltipBase + "otherNetwork", binding.getOwnerName())); + toSend.add(new TranslationTextComponent(tooltipBase + "currentEssence", currentEssence)); ChatUtil.sendNoSpam(player, toSend.toArray(new ITextComponent[toSend.size()])); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilElementalAffinity.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilElementalAffinity.java index 8de0be57..96061711 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilElementalAffinity.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilElementalAffinity.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; import net.minecraft.world.World; public class ItemSigilElementalAffinity extends ItemSigilToggleableBase { @@ -13,13 +13,13 @@ public class ItemSigilElementalAffinity extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; player.fallDistance = 0; player.extinguish(); - player.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, 2, 1, true, false)); - player.addPotionEffect(new PotionEffect(MobEffects.WATER_BREATHING, 2, 0, true, false)); + player.addPotionEffect(new EffectInstance(Effects.FIRE_RESISTANCE, 2, 1, true, false)); + player.addPotionEffect(new EffectInstance(Effects.WATER_BREATHING, 2, 0, true, false)); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilEnderSeverance.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilEnderSeverance.java index 8b445fe3..26855657 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilEnderSeverance.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilEnderSeverance.java @@ -3,10 +3,10 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import net.minecraft.entity.Entity; -import net.minecraft.entity.monster.EntityEnderman; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.monster.EndermanEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.world.World; import java.util.List; @@ -17,14 +17,14 @@ public class ItemSigilEnderSeverance extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; List entityList = world.getEntitiesWithinAABB(Entity.class, new net.minecraft.util.math.AxisAlignedBB(player.posX - 4.5, player.posY - 4.5, player.posZ - 4.5, player.posX + 4.5, player.posY + 4.5, player.posZ + 4.5)); for (Entity entity : entityList) { - if (entity instanceof EntityEnderman) - ((EntityEnderman) entity).addPotionEffect(new PotionEffect(RegistrarBloodMagic.PLANAR_BINDING, 40, 0)); + if (entity instanceof EndermanEntity) + ((EndermanEntity) entity).addPotionEffect(new EffectInstance(RegistrarBloodMagic.PLANAR_BINDING, 40, 0)); } } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFastMiner.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFastMiner.java index 090dc98b..bedc2c06 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFastMiner.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFastMiner.java @@ -2,10 +2,10 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -18,10 +18,10 @@ public class ItemSigilFastMiner extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; - player.addPotionEffect(new PotionEffect(MobEffects.HASTE, 2, 1, true, false)); + player.addPotionEffect(new EffectInstance(Effects.HASTE, 2, 1, true, false)); } @Override @@ -31,10 +31,10 @@ public class ItemSigilFastMiner extends ItemSigilToggleableBase { int potionPotency = 2; AxisAlignedBB bb = new AxisAlignedBB(pos).grow(radius); - List playerList = world.getEntitiesWithinAABB(EntityPlayer.class, bb); - for (EntityPlayer player : playerList) { - if (!player.isPotionActive(MobEffects.HASTE) || (player.isPotionActive(MobEffects.HASTE) && player.getActivePotionEffect(MobEffects.HASTE).getAmplifier() < potionPotency)) { - player.addPotionEffect(new PotionEffect(MobEffects.HASTE, ticks, potionPotency)); + List playerList = world.getEntitiesWithinAABB(PlayerEntity.class, bb); + for (PlayerEntity player : playerList) { + if (!player.isPotionActive(Effects.HASTE) || (player.isPotionActive(Effects.HASTE) && player.getActivePotionEffect(Effects.HASTE).getAmplifier() < potionPotency)) { + player.addPotionEffect(new EffectInstance(Effects.HASTE, ticks, potionPotency)); if (!player.capabilities.isCreativeMode) { player.hurtResistantTime = 0; player.attackEntityFrom(DamageSourceBloodMagic.INSTANCE, 1.0F); diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFilledHand.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFilledHand.java index a79affe5..67a0d430 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFilledHand.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFilledHand.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.handler.event.GenericHandler; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.world.World; @@ -12,7 +12,7 @@ public class ItemSigilFilledHand extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; GenericHandler.filledHandMapMap.get(world).put(player, 4); diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFluidBase.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFluidBase.java index ac1ef35b..f9ef8238 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFluidBase.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFluidBase.java @@ -8,13 +8,13 @@ import WayofTime.bloodmagic.util.SigilFluidWrapper; import WayofTime.bloodmagic.util.helper.NetworkHelper; import net.minecraft.block.Block; import net.minecraft.block.BlockLiquid; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.common.capabilities.ICapabilityProvider; @@ -57,8 +57,8 @@ public abstract class ItemSigilFluidBase extends ItemSigilBase implements ISigil * This one is literally identical to the FluidUtil method of the same signature. */ @Nullable - protected IFluidHandler getFluidHandler(World world, BlockPos blockPos, @Nullable EnumFacing side) { - IBlockState state = world.getBlockState(blockPos); + protected IFluidHandler getFluidHandler(World world, BlockPos blockPos, @Nullable Direction side) { + BlockState state = world.getBlockState(blockPos); Block block = state.getBlock(); TileEntity tile = world.getTileEntity(blockPos); if (tile != null) { @@ -96,7 +96,7 @@ public abstract class ItemSigilFluidBase extends ItemSigilBase implements ISigil * This is the big troublesome one, oddly enough. * It's genericized in case anyone wants to create variant sigils with weird fluids. */ - protected boolean tryPlaceSigilFluid(EntityPlayer player, World world, BlockPos blockPos) { + protected boolean tryPlaceSigilFluid(PlayerEntity player, World world, BlockPos blockPos) { //Make sure world coordinants are valid if (world == null || blockPos == null) { @@ -109,7 +109,7 @@ public abstract class ItemSigilFluidBase extends ItemSigilBase implements ISigil } //Check if the block is an air block or otherwise replaceable - IBlockState state = world.getBlockState(blockPos); + BlockState state = world.getBlockState(blockPos); Material mat = state.getMaterial(); boolean isDestSolid = mat.isSolid(); boolean isDestReplaceable = state.getBlock().isReplaceable(world, blockPos); @@ -171,7 +171,7 @@ public abstract class ItemSigilFluidBase extends ItemSigilBase implements ISigil } @Override - public ICapabilityProvider initCapabilities(ItemStack stack, NBTTagCompound nbt) { + public ICapabilityProvider initCapabilities(ItemStack stack, CompoundNBT nbt) { return new SigilFluidWrapper(stack, this); } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFrost.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFrost.java index 23e6bfa8..0f4b8118 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFrost.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilFrost.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.enchantment.EnchantmentFrostWalker; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.enchantment.FrostWalkerEnchantment; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.world.World; @@ -12,10 +12,10 @@ public class ItemSigilFrost extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; - EnchantmentFrostWalker.freezeNearby(player, world, player.getPosition(), 1); + FrostWalkerEnchantment.freezeNearby(player, world, player.getPosition(), 1); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilGreenGrove.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilGreenGrove.java index 8f479995..41faf9ba 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilGreenGrove.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilGreenGrove.java @@ -5,11 +5,11 @@ import WayofTime.bloodmagic.core.data.SoulTicket; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import net.minecraft.block.IGrowable; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.common.MinecraftForge; @@ -22,7 +22,7 @@ public class ItemSigilGreenGrove extends ItemSigilToggleableBase { } @Override - public boolean onSigilUse(ItemStack stack, EntityPlayer player, World world, BlockPos blockPos, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onSigilUse(ItemStack stack, PlayerEntity player, World world, BlockPos blockPos, Direction side, float hitX, float hitY, float hitZ) { if (PlayerHelper.isFakePlayer(player)) return false; @@ -37,7 +37,7 @@ public class ItemSigilGreenGrove extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World worldIn, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World worldIn, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; @@ -51,15 +51,15 @@ public class ItemSigilGreenGrove extends ItemSigilToggleableBase { for (int iz = posZ - range; iz <= posZ + range; iz++) { for (int iy = posY - verticalRange; iy <= posY + verticalRange; iy++) { BlockPos blockPos = new BlockPos(ix, iy, iz); - IBlockState state = worldIn.getBlockState(blockPos); + BlockState state = worldIn.getBlockState(blockPos); if (!BloodMagicAPI.INSTANCE.getBlacklist().getGreenGrove().contains(state)) { if (state.getBlock() instanceof IGrowable) { if (worldIn.rand.nextInt(50) == 0) { - IBlockState preBlockState = worldIn.getBlockState(blockPos); + BlockState preBlockState = worldIn.getBlockState(blockPos); state.getBlock().updateTick(worldIn, blockPos, state, worldIn.rand); - IBlockState newState = worldIn.getBlockState(blockPos); + BlockState newState = worldIn.getBlockState(blockPos); if (!newState.equals(preBlockState) && !worldIn.isRemote) worldIn.playEvent(2005, blockPos, 0); } @@ -70,10 +70,10 @@ public class ItemSigilGreenGrove extends ItemSigilToggleableBase { } } - private boolean applyBonemeal(World worldIn, BlockPos target, EntityPlayer player, ItemStack sigilStack) { - IBlockState iblockstate = worldIn.getBlockState(target); + private boolean applyBonemeal(World worldIn, BlockPos target, PlayerEntity player, ItemStack sigilStack) { + BlockState iblockstate = worldIn.getBlockState(target); - BonemealEvent event = new BonemealEvent(player, worldIn, target, iblockstate, EnumHand.MAIN_HAND, sigilStack); + BonemealEvent event = new BonemealEvent(player, worldIn, target, iblockstate, Hand.MAIN_HAND, sigilStack); if (MinecraftForge.EVENT_BUS.post(event)) return false; else if (event.getResult() == Result.ALLOW) diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHaste.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHaste.java index 06d6de8e..ddd1937e 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHaste.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHaste.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.core.RegistrarBloodMagic; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.world.World; public class ItemSigilHaste extends ItemSigilToggleableBase { @@ -13,10 +13,10 @@ public class ItemSigilHaste extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.BOOST, 2, 0, true, false)); + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.BOOST, 2, 0, true, false)); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHolding.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHolding.java index 7238a07d..18a8c3a8 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHolding.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilHolding.java @@ -15,13 +15,13 @@ import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; @@ -41,7 +41,7 @@ public class ItemSigilHolding extends ItemSigilBase implements IKeybindable, IAl } @Override - public void onKeyPressed(ItemStack stack, EntityPlayer player, KeyBindings key, boolean showInChat) { + public void onKeyPressed(ItemStack stack, PlayerEntity player, KeyBindings key, boolean showInChat) { if (stack == player.getHeldItemMainhand() && stack.getItem() instanceof ItemSigilHolding && key.equals(KeyBindings.OPEN_HOLDING)) { Utils.setUUID(stack); player.openGui(BloodMagic.instance, Constants.Gui.SIGIL_HOLDING_GUI, player.getEntityWorld(), (int) player.posX, (int) player.posY, (int) player.posZ); @@ -84,62 +84,62 @@ public class ItemSigilHolding extends ItemSigilBase implements IKeybindable, IAl } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); if (PlayerHelper.isFakePlayer(player)) - return EnumActionResult.FAIL; + return ActionResultType.FAIL; int currentSlot = getCurrentItemOrdinal(stack); List inv = getInternalInventory(stack); ItemStack itemUsing = inv.get(currentSlot); if (itemUsing.isEmpty() || ((IBindable) itemUsing.getItem()).getBinding(itemUsing) == null) - return EnumActionResult.PASS; + return ActionResultType.PASS; - EnumActionResult result = itemUsing.getItem().onItemUse(player, world, pos, hand, facing, hitX, hitY, hitZ); + ActionResultType result = itemUsing.getItem().onItemUse(player, world, pos, hand, facing, hitX, hitY, hitZ); saveInventory(stack, inv); return result; } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); int currentSlot = getCurrentItemOrdinal(stack); List inv = getInternalInventory(stack); ItemStack itemUsing = inv.get(currentSlot); if (itemUsing.isEmpty() || ((IBindable) itemUsing.getItem()).getBinding(itemUsing) == null) - return ActionResult.newResult(EnumActionResult.PASS, stack); + return ActionResult.newResult(ActionResultType.PASS, stack); itemUsing.getItem().onItemRightClick(world, player, hand); saveInventory(stack, inv); - return ActionResult.newResult(EnumActionResult.PASS, stack); + return ActionResult.newResult(ActionResultType.PASS, stack); } @Nonnull @Override - public ItemStack getHeldItem(ItemStack holdingStack, EntityPlayer player) { + public ItemStack getHeldItem(ItemStack holdingStack, PlayerEntity player) { return getInternalInventory(holdingStack).get(getCurrentItemOrdinal(holdingStack)); } public void saveInventory(ItemStack itemStack, List inventory) { - NBTTagCompound itemTag = itemStack.getTagCompound(); + CompoundNBT itemTag = itemStack.getTagCompound(); if (itemTag == null) - itemStack.setTagCompound(itemTag = new NBTTagCompound()); + itemStack.setTagCompound(itemTag = new CompoundNBT()); - NBTTagCompound inventoryTag = new NBTTagCompound(); - NBTTagList itemList = new NBTTagList(); + CompoundNBT inventoryTag = new CompoundNBT(); + ListNBT itemList = new ListNBT(); for (int i = 0; i < inventorySize; i++) { if (!inventory.get(i).isEmpty()) { - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); tag.setByte(Constants.NBT.SLOT, (byte) i); inventory.get(i).writeToNBT(tag); itemList.appendTag(tag); @@ -241,14 +241,14 @@ public class ItemSigilHolding extends ItemSigilBase implements IKeybindable, IAl public static List getInternalInventory(ItemStack stack) { initModeTag(stack); - NBTTagCompound tagCompound = stack.getTagCompound(); + CompoundNBT tagCompound = stack.getTagCompound(); if (tagCompound == null) { return NonNullList.withSize(inventorySize, ItemStack.EMPTY); } - NBTTagCompound inventoryTag = tagCompound.getCompoundTag(Constants.NBT.ITEM_INVENTORY); - NBTTagList tagList = inventoryTag.getTagList(Constants.NBT.ITEMS, 10); + CompoundNBT inventoryTag = tagCompound.getCompoundTag(Constants.NBT.ITEM_INVENTORY); + ListNBT tagList = inventoryTag.getTagList(Constants.NBT.ITEMS, 10); if (tagList.isEmpty()) { return NonNullList.withSize(inventorySize, ItemStack.EMPTY); @@ -257,7 +257,7 @@ public class ItemSigilHolding extends ItemSigilBase implements IKeybindable, IAl List inv = NonNullList.withSize(inventorySize, ItemStack.EMPTY); for (int i = 0; i < tagList.tagCount(); i++) { - NBTTagCompound data = tagList.getCompoundTagAt(i); + CompoundNBT data = tagList.getCompoundTagAt(i); byte j = data.getByte(Constants.NBT.SLOT); if (j >= 0 && j < inv.size()) { diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilLava.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilLava.java index 2c235b1a..9d259798 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilLava.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilLava.java @@ -4,11 +4,11 @@ import WayofTime.bloodmagic.core.data.SoulTicket; import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; @@ -24,18 +24,18 @@ public class ItemSigilLava extends ItemSigilFluidBase { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); if (!world.isRemote && !isUnusable(stack)) { RayTraceResult rayTrace = this.rayTrace(world, player, false); if (rayTrace == null || rayTrace.typeOfHit != RayTraceResult.Type.BLOCK) { - return ActionResult.newResult(EnumActionResult.PASS, stack); + return ActionResult.newResult(ActionResultType.PASS, stack); } BlockPos blockPos = rayTrace.getBlockPos(); @@ -47,21 +47,21 @@ public class ItemSigilLava extends ItemSigilFluidBase { if (destination != null && tryInsertSigilFluid(destination, false) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { boolean result = tryInsertSigilFluid(destination, true); if (result) - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } //Do the same as above, but use sidedness to interact with the fluid handler. IFluidHandler destinationSide = getFluidHandler(world, blockPos, rayTrace.sideHit); if (destinationSide != null && tryInsertSigilFluid(destinationSide, false) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { boolean result = tryInsertSigilFluid(destinationSide, true); if (result) - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } //Case for if block at blockPos is not a tank //Place fluid in world if (destination == null && destinationSide == null) { BlockPos targetPos = blockPos.offset(rayTrace.sideHit); if (tryPlaceSigilFluid(player, world, targetPos) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilMagnetism.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilMagnetism.java index 93d66134..6bf62a91 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilMagnetism.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilMagnetism.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.item.EntityXPOrb; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.item.ExperienceOrbEntity; +import net.minecraft.entity.item.ItemEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.world.World; @@ -16,7 +16,7 @@ public class ItemSigilMagnetism extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; @@ -25,16 +25,16 @@ public class ItemSigilMagnetism extends ItemSigilToggleableBase { float posX = Math.round(player.posX); float posY = (float) (player.posY - player.getEyeHeight()); float posZ = Math.round(player.posZ); - List entities = player.getEntityWorld().getEntitiesWithinAABB(EntityItem.class, new AxisAlignedBB(posX - 0.5f, posY - 0.5f, posZ - 0.5f, posX + 0.5f, posY + 0.5f, posZ + 0.5f).grow(range, verticalRange, range)); - List xpOrbs = player.getEntityWorld().getEntitiesWithinAABB(EntityXPOrb.class, new AxisAlignedBB(posX - 0.5f, posY - 0.5f, posZ - 0.5f, posX + 0.5f, posY + 0.5f, posZ + 0.5f).grow(range, verticalRange, range)); + List entities = player.getEntityWorld().getEntitiesWithinAABB(ItemEntity.class, new AxisAlignedBB(posX - 0.5f, posY - 0.5f, posZ - 0.5f, posX + 0.5f, posY + 0.5f, posZ + 0.5f).grow(range, verticalRange, range)); + List xpOrbs = player.getEntityWorld().getEntitiesWithinAABB(ExperienceOrbEntity.class, new AxisAlignedBB(posX - 0.5f, posY - 0.5f, posZ - 0.5f, posX + 0.5f, posY + 0.5f, posZ + 0.5f).grow(range, verticalRange, range)); - for (EntityItem entity : entities) { + for (ItemEntity entity : entities) { if (entity != null && !world.isRemote && !entity.isDead) { entity.onCollideWithPlayer(player); } } - for (EntityXPOrb xpOrb : xpOrbs) { + for (ExperienceOrbEntity xpOrb : xpOrbs) { if (xpOrb != null && !world.isRemote) { xpOrb.onCollideWithPlayer(player); } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilPhantomBridge.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilPhantomBridge.java index 856a971e..5edc3928 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilPhantomBridge.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilPhantomBridge.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import com.google.common.base.Predicate; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -17,7 +17,7 @@ import java.util.List; import java.util.Map; public class ItemSigilPhantomBridge extends ItemSigilToggleableBase { - public static final Predicate IS_PHANTOM_ACTIVE = (Entity entity) -> entity instanceof EntityPlayer && isPhantomActive((EntityPlayer) entity); + public static final Predicate IS_PHANTOM_ACTIVE = (Entity entity) -> entity instanceof PlayerEntity && isPhantomActive((PlayerEntity) entity); public static final String[] CIRCLE7X7 = new String[]{ " XXX ", @@ -52,14 +52,14 @@ public class ItemSigilPhantomBridge extends ItemSigilToggleableBase { // <--X }; - private Map> prevPositionMap = new HashMap<>(); + private Map> prevPositionMap = new HashMap<>(); public ItemSigilPhantomBridge() { super("phantom_bridge", 100); } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; @@ -197,7 +197,7 @@ public class ItemSigilPhantomBridge extends ItemSigilToggleableBase { } } - public static boolean isPhantomActive(EntityPlayer entity) { + public static boolean isPhantomActive(PlayerEntity entity) { for (int i = 0; i < entity.inventory.getSizeInventory(); i++) { ItemStack stack = entity.inventory.getStackInSlot(i); if (stack.getItem() instanceof ItemSigilPhantomBridge) diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilSuppression.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilSuppression.java index 16783af4..686e57eb 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilSuppression.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilSuppression.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.tile.TileSpectralBlock; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; @@ -16,7 +16,7 @@ public class ItemSigilSuppression extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; @@ -34,7 +34,7 @@ public class ItemSigilSuppression extends ItemSigilToggleableBase { } BlockPos blockPos = new BlockPos(x + i, y + j, z + k); - IBlockState state = world.getBlockState(blockPos); + BlockState state = world.getBlockState(blockPos); if (Utils.isBlockLiquid(state) && world.getTileEntity(blockPos) == null) TileSpectralBlock.createSpectralBlock(world, blockPos, refresh); diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTeleposition.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTeleposition.java index 7d25804c..4303d3fd 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTeleposition.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTeleposition.java @@ -9,14 +9,14 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.*; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.common.DimensionManager; @@ -48,12 +48,12 @@ public class ItemSigilTeleposition extends ItemSigilBase { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); TeleportLocation location = getTeleportLocation(stack); Binding binding = getBinding(stack); @@ -78,21 +78,21 @@ public class ItemSigilTeleposition extends ItemSigilBase { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return EnumActionResult.FAIL; + return ActionResultType.FAIL; if (!world.isRemote && player.isSneaking() && NBTHelper.checkNBT(stack) != null) { if (world.getTileEntity(pos) != null && world.getTileEntity(pos) instanceof TileTeleposer) { TeleportLocation teleportLocation = new TeleportLocation(world.provider.getDimension(), pos); updateLocation(stack, teleportLocation); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } @Nullable @@ -103,7 +103,7 @@ public class ItemSigilTeleposition extends ItemSigilBase { if (!stack.hasTagCompound()) return null; - NBTTagCompound locationTag = stack.getSubCompound("tplocation"); + CompoundNBT locationTag = stack.getSubCompound("tplocation"); if (locationTag == null) return null; @@ -111,16 +111,16 @@ public class ItemSigilTeleposition extends ItemSigilBase { } public void updateLocation(ItemStack stack, TeleportLocation location) { - NBTTagCompound tagCompound; + CompoundNBT tagCompound; if (!stack.hasTagCompound()) - stack.setTagCompound(tagCompound = new NBTTagCompound()); + stack.setTagCompound(tagCompound = new CompoundNBT()); else tagCompound = stack.getTagCompound(); tagCompound.setTag("tplocation", location.serializeNBT()); } - public static class TeleportLocation implements INBTSerializable { + public static class TeleportLocation implements INBTSerializable { private int dim; private BlockPos pos; @@ -138,20 +138,20 @@ public class ItemSigilTeleposition extends ItemSigilBase { } @Override - public NBTTagCompound serializeNBT() { - NBTTagCompound tag = new NBTTagCompound(); + public CompoundNBT serializeNBT() { + CompoundNBT tag = new CompoundNBT(); tag.setInteger("dim", dim); tag.setLong("pos", pos.toLong()); return tag; } @Override - public void deserializeNBT(NBTTagCompound nbt) { + public void deserializeNBT(CompoundNBT nbt) { this.dim = nbt.getInteger("dim"); this.pos = BlockPos.fromLong(nbt.getLong("pos")); } - public static TeleportLocation fromTag(NBTTagCompound tpTag) { + public static TeleportLocation fromTag(CompoundNBT tpTag) { TeleportLocation location = new TeleportLocation(); location.deserializeNBT(tpTag); return location; diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleable.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleable.java index 4a354186..bb21d6d6 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleable.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleable.java @@ -9,13 +9,13 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -44,12 +44,12 @@ public class ItemSigilToggleable extends ItemSigil implements IActivatable { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); if (!world.isRemote && !isUnusable(stack)) { if (player.isSneaking()) @@ -62,35 +62,35 @@ public class ItemSigilToggleable extends ItemSigil implements IActivatable { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos pos, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); Binding binding = getBinding(stack); if (binding == null || player.isSneaking()) // Make sure Sigils are bound before handling. Also ignores while toggling state - return EnumActionResult.PASS; + return ActionResultType.PASS; - return onSigilUse(player.getHeldItem(hand), player, world, pos, side, hitX, hitY, hitZ) ? EnumActionResult.SUCCESS : EnumActionResult.FAIL; + return onSigilUse(player.getHeldItem(hand), player, world, pos, side, hitX, hitY, hitZ) ? ActionResultType.SUCCESS : ActionResultType.FAIL; } - public boolean onSigilUse(ItemStack itemStack, EntityPlayer player, World world, BlockPos blockPos, EnumFacing side, float hitX, float hitY, float hitZ) { + public boolean onSigilUse(ItemStack itemStack, PlayerEntity player, World world, BlockPos blockPos, Direction side, float hitX, float hitY, float hitZ) { return false; } @Override public void onUpdate(ItemStack stack, World worldIn, Entity entityIn, int itemSlot, boolean isSelected) { - if (!worldIn.isRemote && entityIn instanceof EntityPlayerMP && getActivated(stack)) { + if (!worldIn.isRemote && entityIn instanceof ServerPlayerEntity && getActivated(stack)) { if (entityIn.ticksExisted % 100 == 0) { - if (!NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage((EntityPlayer) entityIn, SoulTicket.item(stack, worldIn, entityIn, getLpUsed())).isSuccess()) { + if (!NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage((PlayerEntity) entityIn, SoulTicket.item(stack, worldIn, entityIn, getLpUsed())).isSuccess()) { setActivatedState(stack, false); } } - onSigilUpdate(stack, worldIn, (EntityPlayer) entityIn, itemSlot, isSelected); + onSigilUpdate(stack, worldIn, (PlayerEntity) entityIn, itemSlot, isSelected); } } - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleableBase.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleableBase.java index ce7517a9..190e8b98 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleableBase.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilToggleableBase.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.client.mesh.CustomMeshDefinitionActivatable; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.ItemStack; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -37,7 +37,7 @@ public class ItemSigilToggleableBase extends ItemSigilToggleable implements IMes if (!stack.hasTagCompound()) return; - tooltip.add(new TextComponentTranslation("tooltip.bloodmagic." + (getActivated(stack) ? "activated" : "deactivated")).getFormattedText()); + tooltip.add(new TranslationTextComponent("tooltip.bloodmagic." + (getActivated(stack) ? "activated" : "deactivated")).getFormattedText()); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTransposition.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTransposition.java index 4cba37ed..a2dc3b3d 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTransposition.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilTransposition.java @@ -5,14 +5,14 @@ import WayofTime.bloodmagic.core.data.SoulTicket; import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.nbt.NBTUtil; import net.minecraft.tileentity.TileEntity; -import net.minecraft.tileentity.TileEntityMobSpawner; +import net.minecraft.tileentity.MobSpawnerTileEntity; import net.minecraft.util.*; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -35,7 +35,7 @@ public class ItemSigilTransposition extends ItemSigilBase { if (!stack.hasTagCompound()) return; - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (tag.hasKey("stored")) { tooltip.add(" "); @@ -49,7 +49,7 @@ public class ItemSigilTransposition extends ItemSigilBase { if (!stack.hasTagCompound()) return super.getItemStackDisplayName(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (tag.hasKey("stored")) return super.getItemStackDisplayName(stack) + " (" + tag.getCompoundTag("stored").getString("display") + ")"; @@ -57,32 +57,32 @@ public class ItemSigilTransposition extends ItemSigilBase { } @Override - public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos blockPos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { + public ActionResultType onItemUse(PlayerEntity player, World world, BlockPos blockPos, Hand hand, Direction side, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return EnumActionResult.FAIL; + return ActionResultType.FAIL; - IBlockState state = world.getBlockState(blockPos); + BlockState state = world.getBlockState(blockPos); if (!world.isRemote) { if (BloodMagicAPI.INSTANCE.getBlacklist().getTransposition().contains(state)) - return EnumActionResult.FAIL; + return ActionResultType.FAIL; if (player.isSneaking() && stack.hasTagCompound() && !stack.getTagCompound().hasKey("stored")) { if (state.getPlayerRelativeBlockHardness(player, world, blockPos) >= 0 && state.getBlockHardness(world, blockPos) >= 0) { int cost = getLpUsed(); - NBTTagCompound stored = new NBTTagCompound(); - stored.setTag("state", NBTUtil.writeBlockState(new NBTTagCompound(), state)); + CompoundNBT stored = new CompoundNBT(); + stored.setTag("state", NBTUtil.writeBlockState(new CompoundNBT(), state)); stored.setString("display", state.getBlock().getPickBlock(state, null, world, blockPos, player).getDisplayName()); if (state.getBlock().hasTileEntity(state)) { TileEntity tile = world.getTileEntity(blockPos); if (tile != null) { cost *= 5; - stored.setTag("tileData", tile.writeToNBT(new NBTTagCompound())); + stored.setTag("tileData", tile.writeToNBT(new CompoundNBT())); - if (world.getTileEntity(blockPos) instanceof TileEntityMobSpawner) + if (world.getTileEntity(blockPos) instanceof MobSpawnerTileEntity) cost *= 6; } } @@ -91,13 +91,13 @@ public class ItemSigilTransposition extends ItemSigilBase { NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, cost)); world.removeTileEntity(blockPos); world.setBlockToAir(blockPos); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } else if (stack.hasTagCompound() && stack.getTagCompound().hasKey("stored")) { - IBlockState worldState = world.getBlockState(blockPos); - NBTTagCompound storedTag = stack.getTagCompound().getCompoundTag("stored"); - IBlockState storedState = NBTUtil.readBlockState(storedTag.getCompoundTag("state")); - NBTTagCompound tileData = storedTag.hasKey("tileData") ? storedTag.getCompoundTag("tileData") : null; + BlockState worldState = world.getBlockState(blockPos); + CompoundNBT storedTag = stack.getTagCompound().getCompoundTag("stored"); + BlockState storedState = NBTUtil.readBlockState(storedTag.getCompoundTag("state")); + CompoundNBT tileData = storedTag.hasKey("tileData") ? storedTag.getCompoundTag("tileData") : null; if (!worldState.getBlock().isReplaceable(world, blockPos)) blockPos = blockPos.offset(side); @@ -117,23 +117,23 @@ public class ItemSigilTransposition extends ItemSigilBase { world.notifyBlockUpdate(blockPos, state, state, 3); stack.getTagCompound().removeTag("stored"); - return EnumActionResult.SUCCESS; + return ActionResultType.SUCCESS; } } } } - return EnumActionResult.FAIL; + return ActionResultType.FAIL; } // We only want to send the display name to the client rather than the bloated tag with tile data and such @Nullable @Override - public NBTTagCompound getNBTShareTag(ItemStack stack) { + public CompoundNBT getNBTShareTag(ItemStack stack) { if (!stack.hasTagCompound() || !stack.getTagCompound().hasKey("stored")) return super.getNBTShareTag(stack); - NBTTagCompound shareTag = stack.getTagCompound().copy(); - NBTTagCompound storedTag = shareTag.getCompoundTag("stored"); + CompoundNBT shareTag = stack.getTagCompound().copy(); + CompoundNBT storedTag = shareTag.getCompoundTag("stored"); storedTag.removeTag("state"); storedTag.removeTag("stored"); diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilVoid.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilVoid.java index 8b321eb4..809042d1 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilVoid.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilVoid.java @@ -6,11 +6,11 @@ import WayofTime.bloodmagic.core.data.SoulTicket; import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; @@ -23,18 +23,18 @@ public class ItemSigilVoid extends ItemSigilFluidBase { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); if (!world.isRemote && !isUnusable(stack)) { RayTraceResult rayTrace = this.rayTrace(world, player, true); if (rayTrace == null || rayTrace.typeOfHit != RayTraceResult.Type.BLOCK) { - return ActionResult.newResult(EnumActionResult.PASS, stack); + return ActionResult.newResult(ActionResultType.PASS, stack); } BlockPos blockPos = rayTrace.getBlockPos(); @@ -45,13 +45,13 @@ public class ItemSigilVoid extends ItemSigilFluidBase { IFluidHandler destination = getFluidHandler(world, blockPos, null); if (destination != null && tryRemoveFluid(destination, 1000, false) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { if (tryRemoveFluid(destination, 1000, true)) - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } //Do the same as above, but use sidedness to interact with the fluid handler. IFluidHandler destinationSide = getFluidHandler(world, blockPos, rayTrace.sideHit); if (destinationSide != null && tryRemoveFluid(destinationSide, 1000, false) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { if (tryRemoveFluid(destinationSide, 1000, true)) - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWater.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWater.java index 6e71a24d..9417adc1 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWater.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWater.java @@ -4,13 +4,13 @@ import WayofTime.bloodmagic.core.data.SoulTicket; import WayofTime.bloodmagic.iface.ISigil; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.block.BlockCauldron; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; +import net.minecraft.block.CauldronBlock; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; @@ -24,18 +24,18 @@ public class ItemSigilWater extends ItemSigilFluidBase { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (stack.getItem() instanceof ISigil.Holding) stack = ((Holding) stack.getItem()).getHeldItem(stack, player); if (PlayerHelper.isFakePlayer(player)) - return ActionResult.newResult(EnumActionResult.FAIL, stack); + return ActionResult.newResult(ActionResultType.FAIL, stack); if (!world.isRemote && !isUnusable(stack)) { RayTraceResult rayTrace = this.rayTrace(world, player, false); if (rayTrace == null || rayTrace.typeOfHit != RayTraceResult.Type.BLOCK) { - return ActionResult.newResult(EnumActionResult.PASS, stack); + return ActionResult.newResult(ActionResultType.PASS, stack); } BlockPos blockPos = rayTrace.getBlockPos(); @@ -47,20 +47,20 @@ public class ItemSigilWater extends ItemSigilFluidBase { if (destination != null && tryInsertSigilFluid(destination, false) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { boolean result = tryInsertSigilFluid(destination, true); if (result) - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } //Do the same as above, but use sidedness to interact with the fluid handler. IFluidHandler destinationSide = getFluidHandler(world, blockPos, rayTrace.sideHit); if (destinationSide != null && tryInsertSigilFluid(destinationSide, false) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { boolean result = tryInsertSigilFluid(destinationSide, true); if (result) - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } //Special vanilla cauldron handling, yay. if (world.getBlockState(blockPos).getBlock() == Blocks.CAULDRON && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { - world.setBlockState(blockPos, Blocks.CAULDRON.getDefaultState().withProperty(BlockCauldron.LEVEL, 3)); - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + world.setBlockState(blockPos, Blocks.CAULDRON.getDefaultState().withProperty(CauldronBlock.LEVEL, 3)); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } //Case for if block at blockPos is not a tank @@ -68,7 +68,7 @@ public class ItemSigilWater extends ItemSigilFluidBase { if (destination == null && destinationSide == null) { BlockPos targetPos = blockPos.offset(rayTrace.sideHit); if (tryPlaceSigilFluid(player, world, targetPos) && NetworkHelper.getSoulNetwork(getBinding(stack)).syphonAndDamage(player, SoulTicket.item(stack, world, player, getLpUsed())).isSuccess()) { - return ActionResult.newResult(EnumActionResult.SUCCESS, stack); + return ActionResult.newResult(ActionResultType.SUCCESS, stack); } } } diff --git a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWhirlwind.java b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWhirlwind.java index 9577fd78..fffbb349 100644 --- a/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWhirlwind.java +++ b/src/main/java/WayofTime/bloodmagic/item/sigil/ItemSigilWhirlwind.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.item.sigil; import WayofTime.bloodmagic.util.helper.PlayerHelper; import WayofTime.bloodmagic.core.RegistrarBloodMagic; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.world.World; public class ItemSigilWhirlwind extends ItemSigilToggleableBase { @@ -13,10 +13,10 @@ public class ItemSigilWhirlwind extends ItemSigilToggleableBase { } @Override - public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { + public void onSigilUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { if (PlayerHelper.isFakePlayer(player)) return; - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.WHIRLWIND, 2, 0, true, false)); + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.WHIRLWIND, 2, 0, true, false)); } } diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemMonsterSoul.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemMonsterSoul.java index 487f80a2..c96bda23 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemMonsterSoul.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemMonsterSoul.java @@ -10,7 +10,7 @@ import WayofTime.bloodmagic.item.types.ISubItem; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -50,7 +50,7 @@ public class ItemMonsterSoul extends ItemEnum.Variant NBTHelper.checkNBT(soulStack); - NBTTagCompound tag = soulStack.getTagCompound(); + CompoundNBT tag = soulStack.getTagCompound(); return tag.getDouble(Constants.NBT.SOULS); } @@ -59,7 +59,7 @@ public class ItemMonsterSoul extends ItemEnum.Variant public void setWill(EnumDemonWillType type, ItemStack soulStack, double souls) { NBTHelper.checkNBT(soulStack); - NBTTagCompound tag = soulStack.getTagCompound(); + CompoundNBT tag = soulStack.getTagCompound(); soulStack.setItemDamage(type.ordinal()); diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientArmourGem.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientArmourGem.java index c1442db8..a7c64efa 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientArmourGem.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientArmourGem.java @@ -7,14 +7,13 @@ import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.soul.PlayerDemonWillHandler; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.ItemMeshDefinition; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.client.renderer.model.ModelResourceLocation; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.util.NonNullList; +import net.minecraft.util.*; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -35,7 +34,7 @@ public class ItemSentientArmourGem extends Item implements IMeshProvider { } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { boolean hasSentientArmour = false; NonNullList armourInventory = player.inventory.armorInventory; for (ItemStack armourStack : armourInventory) { @@ -54,7 +53,7 @@ public class ItemSentientArmourGem extends Item implements IMeshProvider { ItemSentientArmour.convertPlayerArmour(type, will, player); } - return new ActionResult<>(EnumActionResult.PASS, player.getHeldItem(hand)); + return new ActionResult<>(ActionResultType.PASS, player.getHeldItem(hand)); } @SideOnly(Side.CLIENT) diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientAxe.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientAxe.java index db43014d..f6ca9758 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientAxe.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientAxe.java @@ -17,25 +17,25 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.monster.EntitySlime; +import net.minecraft.entity.monster.SlimeEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemAxe; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; +import net.minecraft.item.AxeItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.util.Hand; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -43,7 +43,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.util.*; import java.util.function.Consumer; -public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { +public class ItemSentientAxe extends AxeItem implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { public static int[] soulBracket = new int[]{16, 60, 200, 400, 1000}; public static double[] defaultDamageAdded = new double[]{1, 2, 3, 3.5, 4}; public static double[] destructiveDamageAdded = new double[]{2, 3, 4, 5, 6}; @@ -80,7 +80,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP } @Override - public float getDestroySpeed(ItemStack stack, IBlockState state) { + public float getDestroySpeed(ItemStack stack, BlockState state) { float value = super.getDestroySpeed(stack, state); if (value > 1) { return (float) (value + getDigSpeedOfSword(stack)); @@ -89,7 +89,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP } } - public void recalculatePowers(ItemStack stack, World world, EntityPlayer player) { + public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { EnumDemonWillType type = PlayerDemonWillHandler.getLargestWillType(player); double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); this.setCurrentType(stack, soulsRemaining > 0 ? type : EnumDemonWillType.DEFAULT); @@ -166,10 +166,10 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP } } - public void applyEffectToEntity(EnumDemonWillType type, int willBracket, EntityLivingBase target, EntityPlayer attacker) { + public void applyEffectToEntity(EnumDemonWillType type, int willBracket, LivingEntity target, PlayerEntity attacker) { switch (type) { case CORROSIVE: - target.addPotionEffect(new PotionEffect(MobEffects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); + target.addPotionEffect(new EffectInstance(Effects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); break; case DEFAULT: break; @@ -178,7 +178,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP case STEADFAST: if (!target.isEntityAlive()) { float absorption = attacker.getAbsorptionAmount(); - attacker.addPotionEffect(new PotionEffect(MobEffects.ABSORPTION, absorptionTime[willBracket], 127)); + attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; @@ -188,10 +188,10 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { if (super.hitEntity(stack, target, attacker)) { - if (attacker instanceof EntityPlayer) { - EntityPlayer attackerPlayer = (EntityPlayer) attacker; + if (attacker instanceof PlayerEntity) { + PlayerEntity attackerPlayer = (PlayerEntity) attacker; this.recalculatePowers(stack, attackerPlayer.getEntityWorld(), attackerPlayer); EnumDemonWillType type = this.getCurrentType(stack); double will = PlayerDemonWillHandler.getTotalDemonWill(type, attackerPlayer); @@ -199,7 +199,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP applyEffectToEntity(type, willBracket, target, attackerPlayer); - ItemStack offStack = attackerPlayer.getItemStackFromSlot(EntityEquipmentSlot.OFFHAND); + ItemStack offStack = attackerPlayer.getItemStackFromSlot(EquipmentSlotType.OFFHAND); if (offStack.getItem() instanceof ISentientSwordEffectProvider) { ISentientSwordEffectProvider provider = (ISentientSwordEffectProvider) offStack.getItem(); if (provider.providesEffectForWill(type)) { @@ -218,7 +218,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public EnumDemonWillType getCurrentType(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -230,13 +230,13 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public void setCurrentType(ItemStack stack, EnumDemonWillType type) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { recalculatePowers(player.getHeldItem(hand), world, player); return super.onItemRightClick(world, player, hand); @@ -269,7 +269,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP } @Override - public boolean onLeftClickEntity(ItemStack stack, EntityPlayer player, Entity entity) { + public boolean onLeftClickEntity(ItemStack stack, PlayerEntity player, Entity entity) { recalculatePowers(stack, player.getEntityWorld(), player); double drain = this.getDrainOfActivatedSword(stack); @@ -300,14 +300,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP } @Override - public List getRandomDemonWillDrop(EntityLivingBase killedEntity, EntityLivingBase attackingEntity, ItemStack stack, int looting) { + public List getRandomDemonWillDrop(LivingEntity killedEntity, LivingEntity attackingEntity, ItemStack stack, int looting) { List soulList = new ArrayList<>(); - if (killedEntity.getEntityWorld().getDifficulty() != EnumDifficulty.PEACEFUL && !(killedEntity instanceof IMob)) { + if (killedEntity.getEntityWorld().getDifficulty() != Difficulty.PEACEFUL && !(killedEntity instanceof IMob)) { return soulList; } - double willModifier = killedEntity instanceof EntitySlime ? 0.67 : 1; + double willModifier = killedEntity instanceof SlimeEntity ? 0.67 : 1; IDemonWill soul = ((IDemonWill) RegistrarBloodMagicItems.MONSTER_SOUL); @@ -325,9 +325,9 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP //TODO: Change attack speed. @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) { Multimap multimap = HashMultimap.create(); - if (slot == EntityEquipmentSlot.MAINHAND) { + if (slot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getDamageOfActivatedSword(stack), 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Weapon modifier", this.getAttackSpeedOfSword(stack), 0)); multimap.put(SharedMonsterAttributes.MAX_HEALTH.getName(), new AttributeModifier(new UUID(0, 31818145), "Weapon modifier", this.getHealthBonusOfSword(stack), 0)); @@ -340,14 +340,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getDamageOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DAMAGE); } public void setDamageOfActivatedSword(ItemStack stack, double damage) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DAMAGE, damage); } @@ -355,14 +355,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getDrainOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN); } public void setDrainOfActivatedSword(ItemStack stack, double drain) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN, drain); } @@ -370,14 +370,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getStaticDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP); } public void setStaticDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP, drop); } @@ -385,14 +385,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DROP); } public void setDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DROP, drop); } @@ -400,14 +400,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getHealthBonusOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_HEALTH); } public void setHealthBonusOfSword(ItemStack stack, double hp) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_HEALTH, hp); } @@ -415,14 +415,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getAttackSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED); } public void setAttackSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED, speed); } @@ -430,14 +430,14 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_SPEED); } public void setSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_SPEED, speed); } @@ -445,20 +445,20 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP public double getDigSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DIG_SPEED); } public void setDigSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DIG_SPEED, speed); } @Override - public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, EntityPlayer player) { + public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, PlayerEntity player) { World world = player.getEntityWorld(); if (!world.isRemote) { this.recalculatePowers(droppedStack, world, player); @@ -475,7 +475,7 @@ public class ItemSentientAxe extends ItemAxe implements IDemonWillWeapon, IMeshP specterEntity.setPosition(player.posX, player.posY, player.posZ); world.spawnEntity(specterEntity); - specterEntity.setItemStackToSlot(EntityEquipmentSlot.MAINHAND, droppedStack.copy()); + specterEntity.setItemStackToSlot(EquipmentSlotType.MAINHAND, droppedStack.copy()); specterEntity.setType(this.getCurrentType(droppedStack)); specterEntity.setOwner(player); diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java index 4d72a199..9516da29 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientBow.java @@ -13,25 +13,23 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.NBTHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.enchantment.EnchantmentHelper; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.projectile.EntityArrow; -import net.minecraft.entity.projectile.EntityTippedArrow; -import net.minecraft.init.Enchantments; -import net.minecraft.init.Items; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.IItemPropertyGetter; -import net.minecraft.item.ItemArrow; -import net.minecraft.item.ItemBow; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; -import net.minecraft.potion.PotionType; -import net.minecraft.stats.StatList; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.AbstractArrowEntity; +import net.minecraft.entity.projectile.ArrowEntity; +import net.minecraft.item.*; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.stats.Stats; +import net.minecraft.util.SoundEvents; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.BowItem; +import net.minecraft.item.Items; +import net.minecraft.potion.Effects; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Potion; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.ResourceLocation; import net.minecraft.util.SoundCategory; import net.minecraft.util.math.MathHelper; @@ -42,7 +40,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import javax.annotation.Nonnull; import java.util.Locale; -public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentientTool, IVariantProvider//, IMeshProvider +public class ItemSentientBow extends BowItem implements IMultiWillTool, ISentientTool, IVariantProvider//, IMeshProvider { public static int[] soulBracket = new int[]{16, 60, 200, 400, 1000, 2000, 4000}; public static double[] defaultDamageAdded = new double[]{0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75}; @@ -59,7 +57,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien setCreativeTab(BloodMagic.TAB_BM); this.addPropertyOverride(new ResourceLocation("pull"), new IItemPropertyGetter() { @SideOnly(Side.CLIENT) - public float apply(ItemStack stack, World world, EntityLivingBase entityIn) { + public float apply(ItemStack stack, World world, LivingEntity entityIn) { if (entityIn == null) { return 0.0F; } else { @@ -70,13 +68,13 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien }); this.addPropertyOverride(new ResourceLocation("pulling"), new IItemPropertyGetter() { @SideOnly(Side.CLIENT) - public float apply(ItemStack stack, World world, EntityLivingBase entityIn) { + public float apply(ItemStack stack, World world, LivingEntity entityIn) { return entityIn != null && entityIn.isHandActive() && entityIn.getActiveItemStack() == stack ? 1.0F : 0.0F; } }); this.addPropertyOverride(new ResourceLocation("type"), new IItemPropertyGetter() { @SideOnly(Side.CLIENT) - public float apply(ItemStack stack, World world, EntityLivingBase entityIn) { + public float apply(ItemStack stack, World world, LivingEntity entityIn) { return ((ItemSentientBow) RegistrarBloodMagicItems.SENTIENT_BOW).getCurrentType(stack).ordinal(); } }); @@ -87,7 +85,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien return RegistrarBloodMagicItems.ITEM_DEMON_CRYSTAL == repair.getItem() || super.getIsRepairable(toRepair, repair); } - public void recalculatePowers(ItemStack stack, World world, EntityPlayer player) { + public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { EnumDemonWillType type = PlayerDemonWillHandler.getLargestWillType(player); double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); recalculatePowers(stack, type, soulsRemaining); @@ -129,7 +127,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public EnumDemonWillType getCurrentType(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -164,7 +162,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public void setDamageAdded(ItemStack stack, double damage) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble("damage", damage); } @@ -172,7 +170,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public double getDamageAdded(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble("damage"); } @@ -180,7 +178,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public void setVelocityOfArrow(ItemStack stack, float velocity) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setFloat("velocity", velocity); } @@ -188,7 +186,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public float getVelocityOfArrow(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (tag.hasKey("velocity")) { return tag.getFloat("velocity"); @@ -200,7 +198,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public void setCurrentType(ItemStack stack, EnumDemonWillType type) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); } @@ -208,14 +206,14 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public double getDrainOfActivatedBow(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN); } public void setDrainOfActivatedBow(ItemStack stack, double drain) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN, drain); } @@ -223,14 +221,14 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public double getStaticDropOfActivatedBow(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP); } public void setStaticDropOfActivatedBow(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP, drop); } @@ -238,20 +236,20 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien public double getDropOfActivatedBow(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DROP); } public void setDropOfActivatedBow(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DROP, drop); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); this.recalculatePowers(stack, world, player); return super.onItemRightClick(world, player, hand); @@ -262,14 +260,14 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien variants.put(0, "inventory"); } - public EntityTippedArrow getArrowEntity(World world, ItemStack stack, EntityLivingBase target, EntityLivingBase user, float velocity) { + public ArrowEntity getArrowEntity(World world, ItemStack stack, LivingEntity target, LivingEntity user, float velocity) { EnumDemonWillType type = this.getCurrentType(stack); - double amount = user instanceof EntityPlayer ? (this.getDropOfActivatedBow(stack) * world.rand.nextDouble() + this.getStaticDropOfActivatedBow(stack)) : 0; + double amount = user instanceof PlayerEntity ? (this.getDropOfActivatedBow(stack) * world.rand.nextDouble() + this.getStaticDropOfActivatedBow(stack)) : 0; float newArrowVelocity = velocity * getVelocityOfArrow(stack); - double soulsRemaining = user instanceof EntityPlayer ? (PlayerDemonWillHandler.getTotalDemonWill(type, (EntityPlayer) user)) : 0; - EntitySentientArrow entityArrow = new EntitySentientArrow(world, user, type, amount, getLevel(soulsRemaining), (PotionType) null); + double soulsRemaining = user instanceof PlayerEntity ? (PlayerDemonWillHandler.getTotalDemonWill(type, (PlayerEntity) user)) : 0; + EntitySentientArrow entityArrow = new EntitySentientArrow(world, user, type, amount, getLevel(soulsRemaining), (Potion) null); double d0 = target.posX - user.posX; double d1 = target.getEntityBoundingBox().minY + (double) (target.height / 3.0F) - entityArrow.posY; @@ -300,47 +298,47 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien entityArrow.setFire(100); } - entityArrow.pickupStatus = EntityArrow.PickupStatus.CREATIVE_ONLY; + entityArrow.pickupStatus = AbstractArrowEntity.PickupStatus.CREATIVE_ONLY; return entityArrow; } - public EntitySentientArrow getDuplicateArrow(ItemStack bowStack, World world, EntityPlayer player, double reimburseMultiplier) { + public EntitySentientArrow getDuplicateArrow(ItemStack bowStack, World world, PlayerEntity player, double reimburseMultiplier) { EnumDemonWillType willType = this.getCurrentType(bowStack); ItemStack arrow = this.getFiredArrow(player); - ItemArrow itemarrow = ((ItemArrow) (arrow.getItem() instanceof ItemArrow ? arrow.getItem() : Items.ARROW)); + ArrowItem itemarrow = ((ArrowItem) (arrow.getItem() instanceof ArrowItem ? arrow.getItem() : Items.ARROW)); EntitySentientArrow entityArrow; double reimburseAmount = (this.getDropOfActivatedBow(bowStack) * world.rand.nextDouble() + this.getStaticDropOfActivatedBow(bowStack)) * reimburseMultiplier; if (itemarrow == Items.ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(willType, player); - entityArrow = new EntitySentientArrow(world, player, willType, reimburseAmount, getLevel(soulsRemaining), (PotionType) null); + entityArrow = new EntitySentientArrow(world, player, willType, reimburseAmount, getLevel(soulsRemaining), (Potion) null); } else if (itemarrow == Items.TIPPED_ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(willType, player); entityArrow = new EntitySentientArrow(world, player, willType, reimburseAmount, getLevel(soulsRemaining), arrow); } else if (itemarrow == Items.SPECTRAL_ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(willType, player); - entityArrow = new EntitySentientArrow(world, player, willType, reimburseAmount, getLevel(soulsRemaining), new PotionType(new PotionEffect(MobEffects.GLOWING, 200, 0))); + entityArrow = new EntitySentientArrow(world, player, willType, reimburseAmount, getLevel(soulsRemaining), new Potion(new EffectInstance(Effects.GLOWING, 200, 0))); } else { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(willType, player); entityArrow = new EntitySentientArrow(world, player, willType, reimburseAmount, getLevel(soulsRemaining), itemarrow.createArrow(world, bowStack, player)); } - player.addStat(StatList.getObjectUseStats(this)); + player.addStat(Stats.getObjectUseStats(this)); return entityArrow; } @Override - public void onPlayerStoppedUsing(ItemStack stack, World world, EntityLivingBase entityLiving, int timeLeft) { - if (entityLiving instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entityLiving; + public void onPlayerStoppedUsing(ItemStack stack, World world, LivingEntity entityLiving, int timeLeft) { + if (entityLiving instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entityLiving; boolean flag = player.capabilities.isCreativeMode || EnchantmentHelper.getEnchantmentLevel(Enchantments.INFINITY, stack) > 0; ItemStack itemstack = this.getFiredArrow(player); int i = this.getMaxItemUseDuration(stack) - timeLeft; - i = net.minecraftforge.event.ForgeEventFactory.onArrowLoose(stack, world, (EntityPlayer) entityLiving, i, itemstack != null || flag); + i = net.minecraftforge.event.ForgeEventFactory.onArrowLoose(stack, world, (PlayerEntity) entityLiving, i, itemstack != null || flag); if (i < 0) return; @@ -358,8 +356,8 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien this.recalculatePowers(stack, world, player); EnumDemonWillType type = this.getCurrentType(stack); - ItemArrow itemarrow = ((ItemArrow) (itemstack.getItem() instanceof ItemArrow ? itemstack.getItem() : Items.ARROW)); - EntityArrow entityArrow; + ArrowItem itemarrow = ((ArrowItem) (itemstack.getItem() instanceof ArrowItem ? itemstack.getItem() : Items.ARROW)); + AbstractArrowEntity entityArrow; double amount = (this.getDropOfActivatedBow(stack) * world.rand.nextDouble() + this.getStaticDropOfActivatedBow(stack)); float newArrowVelocity = arrowVelocity * getVelocityOfArrow(stack); @@ -368,13 +366,13 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien entityArrow = itemarrow.createArrow(world, itemstack, entityLiving); } else if (itemarrow == Items.ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); - entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), (PotionType) null); + entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), (Potion) null); } else if (itemarrow == Items.TIPPED_ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), itemstack); } else if (itemarrow == Items.SPECTRAL_ARROW) { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); - entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), new PotionType(new PotionEffect(MobEffects.GLOWING, 200, 0))); + entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), new Potion(new EffectInstance(Effects.GLOWING, 200, 0))); } else { double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); entityArrow = new EntitySentientArrow(world, entityLiving, type, amount, getLevel(soulsRemaining), itemarrow.createArrow(world, stack, entityLiving)); @@ -407,7 +405,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien stack.damageItem(1, player); if (flag1) { - entityArrow.pickupStatus = EntityArrow.PickupStatus.CREATIVE_ONLY; + entityArrow.pickupStatus = AbstractArrowEntity.PickupStatus.CREATIVE_ONLY; } world.spawnEntity(entityArrow); @@ -423,17 +421,17 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien } } - player.addStat(StatList.getObjectUseStats(this)); + player.addStat(Stats.getObjectUseStats(this)); } } } } - protected ItemStack getFiredArrow(EntityPlayer player) { - if (this.isArrow(player.getHeldItem(EnumHand.OFF_HAND))) { - return player.getHeldItem(EnumHand.OFF_HAND); - } else if (this.isArrow(player.getHeldItem(EnumHand.MAIN_HAND))) { - return player.getHeldItem(EnumHand.MAIN_HAND); + protected ItemStack getFiredArrow(PlayerEntity player) { + if (this.isArrow(player.getHeldItem(Hand.OFF_HAND))) { + return player.getHeldItem(Hand.OFF_HAND); + } else if (this.isArrow(player.getHeldItem(Hand.MAIN_HAND))) { + return player.getHeldItem(Hand.MAIN_HAND); } else { for (int i = 0; i < player.inventory.getSizeInventory(); ++i) { ItemStack itemstack = player.inventory.getStackInSlot(i); @@ -448,7 +446,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien } @Override - public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, EntityPlayer player) { + public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, PlayerEntity player) { World world = player.getEntityWorld(); if (!world.isRemote) { this.recalculatePowers(droppedStack, world, player); @@ -465,7 +463,7 @@ public class ItemSentientBow extends ItemBow implements IMultiWillTool, ISentien specterEntity.setPosition(player.posX, player.posY, player.posZ); world.spawnEntity(specterEntity); - specterEntity.setItemStackToSlot(EntityEquipmentSlot.MAINHAND, droppedStack.copy()); + specterEntity.setItemStackToSlot(EquipmentSlotType.MAINHAND, droppedStack.copy()); specterEntity.setType(this.getCurrentType(droppedStack)); specterEntity.setOwner(player); diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientPickaxe.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientPickaxe.java index 47f3491e..a2714804 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientPickaxe.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientPickaxe.java @@ -17,25 +17,25 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.monster.EntitySlime; +import net.minecraft.entity.monster.SlimeEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemPickaxe; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; +import net.minecraft.item.PickaxeItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.util.Hand; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -43,7 +43,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.util.*; import java.util.function.Consumer; -public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { +public class ItemSentientPickaxe extends PickaxeItem implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { public static int[] soulBracket = new int[]{16, 60, 200, 400, 1000}; public static double[] defaultDamageAdded = new double[]{1, 2, 3, 3.5, 4}; public static double[] destructiveDamageAdded = new double[]{2, 3, 4, 5, 6}; @@ -80,7 +80,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon } @Override - public float getDestroySpeed(ItemStack stack, IBlockState state) { + public float getDestroySpeed(ItemStack stack, BlockState state) { float value = super.getDestroySpeed(stack, state); if (value > 1) { return (float) (value + getDigSpeedOfSword(stack)); @@ -89,7 +89,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon } } - public void recalculatePowers(ItemStack stack, World world, EntityPlayer player) { + public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { EnumDemonWillType type = PlayerDemonWillHandler.getLargestWillType(player); double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); this.setCurrentType(stack, soulsRemaining > 0 ? type : EnumDemonWillType.DEFAULT); @@ -166,10 +166,10 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon } } - public void applyEffectToEntity(EnumDemonWillType type, int willBracket, EntityLivingBase target, EntityPlayer attacker) { + public void applyEffectToEntity(EnumDemonWillType type, int willBracket, LivingEntity target, PlayerEntity attacker) { switch (type) { case CORROSIVE: - target.addPotionEffect(new PotionEffect(MobEffects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); + target.addPotionEffect(new EffectInstance(Effects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); break; case DEFAULT: break; @@ -178,7 +178,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon case STEADFAST: if (!target.isEntityAlive()) { float absorption = attacker.getAbsorptionAmount(); - attacker.addPotionEffect(new PotionEffect(MobEffects.ABSORPTION, absorptionTime[willBracket], 127)); + attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; @@ -188,10 +188,10 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { if (super.hitEntity(stack, target, attacker)) { - if (attacker instanceof EntityPlayer) { - EntityPlayer attackerPlayer = (EntityPlayer) attacker; + if (attacker instanceof PlayerEntity) { + PlayerEntity attackerPlayer = (PlayerEntity) attacker; this.recalculatePowers(stack, attackerPlayer.getEntityWorld(), attackerPlayer); EnumDemonWillType type = this.getCurrentType(stack); double will = PlayerDemonWillHandler.getTotalDemonWill(type, attackerPlayer); @@ -199,7 +199,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon applyEffectToEntity(type, willBracket, target, attackerPlayer); - ItemStack offStack = attackerPlayer.getItemStackFromSlot(EntityEquipmentSlot.OFFHAND); + ItemStack offStack = attackerPlayer.getItemStackFromSlot(EquipmentSlotType.OFFHAND); if (offStack.getItem() instanceof ISentientSwordEffectProvider) { ISentientSwordEffectProvider provider = (ISentientSwordEffectProvider) offStack.getItem(); if (provider.providesEffectForWill(type)) { @@ -218,7 +218,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public EnumDemonWillType getCurrentType(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -230,13 +230,13 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public void setCurrentType(ItemStack stack, EnumDemonWillType type) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { recalculatePowers(player.getHeldItem(hand), world, player); return super.onItemRightClick(world, player, hand); } @@ -268,7 +268,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon } @Override - public boolean onLeftClickEntity(ItemStack stack, EntityPlayer player, Entity entity) { + public boolean onLeftClickEntity(ItemStack stack, PlayerEntity player, Entity entity) { recalculatePowers(stack, player.getEntityWorld(), player); double drain = this.getDrainOfActivatedSword(stack); @@ -299,14 +299,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon } @Override - public List getRandomDemonWillDrop(EntityLivingBase killedEntity, EntityLivingBase attackingEntity, ItemStack stack, int looting) { + public List getRandomDemonWillDrop(LivingEntity killedEntity, LivingEntity attackingEntity, ItemStack stack, int looting) { List soulList = new ArrayList<>(); - if (killedEntity.getEntityWorld().getDifficulty() != EnumDifficulty.PEACEFUL && !(killedEntity instanceof IMob)) { + if (killedEntity.getEntityWorld().getDifficulty() != Difficulty.PEACEFUL && !(killedEntity instanceof IMob)) { return soulList; } - double willModifier = killedEntity instanceof EntitySlime ? 0.67 : 1; + double willModifier = killedEntity instanceof SlimeEntity ? 0.67 : 1; IDemonWill soul = ((IDemonWill) RegistrarBloodMagicItems.MONSTER_SOUL); @@ -324,9 +324,9 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon //TODO: Change attack speed. @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) { Multimap multimap = HashMultimap.create(); - if (slot == EntityEquipmentSlot.MAINHAND) { + if (slot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getDamageOfActivatedSword(stack), 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Weapon modifier", this.getAttackSpeedOfSword(stack), 0)); multimap.put(SharedMonsterAttributes.MAX_HEALTH.getName(), new AttributeModifier(new UUID(0, 31818145), "Weapon modifier", this.getHealthBonusOfSword(stack), 0)); @@ -339,14 +339,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getDamageOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DAMAGE); } public void setDamageOfActivatedSword(ItemStack stack, double damage) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DAMAGE, damage); } @@ -354,14 +354,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getDrainOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN); } public void setDrainOfActivatedSword(ItemStack stack, double drain) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN, drain); } @@ -369,14 +369,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getStaticDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP); } public void setStaticDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP, drop); } @@ -384,14 +384,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DROP); } public void setDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DROP, drop); } @@ -399,14 +399,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getHealthBonusOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_HEALTH); } public void setHealthBonusOfSword(ItemStack stack, double hp) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_HEALTH, hp); } @@ -414,14 +414,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getAttackSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED); } public void setAttackSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED, speed); } @@ -429,14 +429,14 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_SPEED); } public void setSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_SPEED, speed); } @@ -444,20 +444,20 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon public double getDigSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DIG_SPEED); } public void setDigSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DIG_SPEED, speed); } @Override - public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, EntityPlayer player) { + public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, PlayerEntity player) { World world = player.getEntityWorld(); if (!world.isRemote) { this.recalculatePowers(droppedStack, world, player); @@ -474,7 +474,7 @@ public class ItemSentientPickaxe extends ItemPickaxe implements IDemonWillWeapon specterEntity.setPosition(player.posX, player.posY, player.posZ); world.spawnEntity(specterEntity); - specterEntity.setItemStackToSlot(EntityEquipmentSlot.MAINHAND, droppedStack.copy()); + specterEntity.setItemStackToSlot(EquipmentSlotType.MAINHAND, droppedStack.copy()); specterEntity.setType(this.getCurrentType(droppedStack)); specterEntity.setOwner(player); diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientShovel.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientShovel.java index 644b0b9e..5bb7104f 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientShovel.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientShovel.java @@ -17,25 +17,25 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.monster.EntitySlime; +import net.minecraft.entity.monster.SlimeEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemSpade; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.ShovelItem; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.util.Hand; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -43,7 +43,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.util.*; import java.util.function.Consumer; -public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { +public class ItemSentientShovel extends ShovelItem implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { public static int[] soulBracket = new int[]{16, 60, 200, 400, 1000}; public static double[] defaultDamageAdded = new double[]{1, 2, 3, 3.5, 4}; public static double[] destructiveDamageAdded = new double[]{2, 3, 4, 5, 6}; @@ -80,7 +80,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I } @Override - public float getDestroySpeed(ItemStack stack, IBlockState state) { + public float getDestroySpeed(ItemStack stack, BlockState state) { float value = super.getDestroySpeed(stack, state); if (value > 1) { return (float) (value + getDigSpeedOfSword(stack)); @@ -89,7 +89,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I } } - public void recalculatePowers(ItemStack stack, World world, EntityPlayer player) { + public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { EnumDemonWillType type = PlayerDemonWillHandler.getLargestWillType(player); double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); this.setCurrentType(stack, soulsRemaining > 0 ? type : EnumDemonWillType.DEFAULT); @@ -166,10 +166,10 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I } } - public void applyEffectToEntity(EnumDemonWillType type, int willBracket, EntityLivingBase target, EntityPlayer attacker) { + public void applyEffectToEntity(EnumDemonWillType type, int willBracket, LivingEntity target, PlayerEntity attacker) { switch (type) { case CORROSIVE: - target.addPotionEffect(new PotionEffect(MobEffects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); + target.addPotionEffect(new EffectInstance(Effects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); break; case DEFAULT: break; @@ -178,7 +178,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I case STEADFAST: if (!target.isEntityAlive()) { float absorption = attacker.getAbsorptionAmount(); - attacker.addPotionEffect(new PotionEffect(MobEffects.ABSORPTION, absorptionTime[willBracket], 127)); + attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; @@ -188,10 +188,10 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { if (super.hitEntity(stack, target, attacker)) { - if (attacker instanceof EntityPlayer) { - EntityPlayer attackerPlayer = (EntityPlayer) attacker; + if (attacker instanceof PlayerEntity) { + PlayerEntity attackerPlayer = (PlayerEntity) attacker; this.recalculatePowers(stack, attackerPlayer.getEntityWorld(), attackerPlayer); EnumDemonWillType type = this.getCurrentType(stack); double will = PlayerDemonWillHandler.getTotalDemonWill(type, attackerPlayer); @@ -199,7 +199,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I applyEffectToEntity(type, willBracket, target, attackerPlayer); - ItemStack offStack = attackerPlayer.getItemStackFromSlot(EntityEquipmentSlot.OFFHAND); + ItemStack offStack = attackerPlayer.getItemStackFromSlot(EquipmentSlotType.OFFHAND); if (offStack.getItem() instanceof ISentientSwordEffectProvider) { ISentientSwordEffectProvider provider = (ISentientSwordEffectProvider) offStack.getItem(); if (provider.providesEffectForWill(type)) { @@ -218,7 +218,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public EnumDemonWillType getCurrentType(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -230,13 +230,13 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public void setCurrentType(ItemStack stack, EnumDemonWillType type) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { recalculatePowers(player.getHeldItem(hand), world, player); return super.onItemRightClick(world, player, hand); @@ -269,7 +269,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I } @Override - public boolean onLeftClickEntity(ItemStack stack, EntityPlayer player, Entity entity) { + public boolean onLeftClickEntity(ItemStack stack, PlayerEntity player, Entity entity) { recalculatePowers(stack, player.getEntityWorld(), player); double drain = this.getDrainOfActivatedSword(stack); @@ -300,14 +300,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I } @Override - public List getRandomDemonWillDrop(EntityLivingBase killedEntity, EntityLivingBase attackingEntity, ItemStack stack, int looting) { + public List getRandomDemonWillDrop(LivingEntity killedEntity, LivingEntity attackingEntity, ItemStack stack, int looting) { List soulList = new ArrayList<>(); - if (killedEntity.getEntityWorld().getDifficulty() != EnumDifficulty.PEACEFUL && !(killedEntity instanceof IMob)) { + if (killedEntity.getEntityWorld().getDifficulty() != Difficulty.PEACEFUL && !(killedEntity instanceof IMob)) { return soulList; } - double willModifier = killedEntity instanceof EntitySlime ? 0.67 : 1; + double willModifier = killedEntity instanceof SlimeEntity ? 0.67 : 1; IDemonWill soul = ((IDemonWill) RegistrarBloodMagicItems.MONSTER_SOUL); @@ -325,9 +325,9 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I //TODO: Change attack speed. @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) { Multimap multimap = HashMultimap.create(); - if (slot == EntityEquipmentSlot.MAINHAND) { + if (slot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getDamageOfActivatedSword(stack), 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Weapon modifier", this.getAttackSpeedOfSword(stack), 0)); multimap.put(SharedMonsterAttributes.MAX_HEALTH.getName(), new AttributeModifier(new UUID(0, 31818145), "Weapon modifier", this.getHealthBonusOfSword(stack), 0)); @@ -340,14 +340,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getDamageOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DAMAGE); } public void setDamageOfActivatedSword(ItemStack stack, double damage) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DAMAGE, damage); } @@ -355,14 +355,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getDrainOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN); } public void setDrainOfActivatedSword(ItemStack stack, double drain) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN, drain); } @@ -370,14 +370,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getStaticDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP); } public void setStaticDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP, drop); } @@ -385,14 +385,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DROP); } public void setDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DROP, drop); } @@ -400,14 +400,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getHealthBonusOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_HEALTH); } public void setHealthBonusOfSword(ItemStack stack, double hp) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_HEALTH, hp); } @@ -415,14 +415,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getAttackSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED); } public void setAttackSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED, speed); } @@ -430,14 +430,14 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_SPEED); } public void setSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_SPEED, speed); } @@ -445,20 +445,20 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I public double getDigSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DIG_SPEED); } public void setDigSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DIG_SPEED, speed); } @Override - public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, EntityPlayer player) { + public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, PlayerEntity player) { World world = player.getEntityWorld(); if (!world.isRemote) { this.recalculatePowers(droppedStack, world, player); @@ -475,7 +475,7 @@ public class ItemSentientShovel extends ItemSpade implements IDemonWillWeapon, I specterEntity.setPosition(player.posX, player.posY, player.posZ); world.spawnEntity(specterEntity); - specterEntity.setItemStackToSlot(EntityEquipmentSlot.MAINHAND, droppedStack.copy()); + specterEntity.setItemStackToSlot(EquipmentSlotType.MAINHAND, droppedStack.copy()); specterEntity.setType(this.getCurrentType(droppedStack)); specterEntity.setOwner(player); diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientSword.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientSword.java index 3f932d34..befbfd10 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientSword.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSentientSword.java @@ -20,21 +20,21 @@ import com.google.common.collect.Multimap; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.monster.EntitySlime; +import net.minecraft.entity.monster.SlimeEntity; import net.minecraft.entity.monster.IMob; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.item.ItemSword; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.item.SwordItem; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.util.Hand; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @@ -42,7 +42,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; import java.util.*; import java.util.function.Consumer; -public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { +public class ItemSentientSword extends SwordItem implements IDemonWillWeapon, IMeshProvider, IMultiWillTool, ISentientTool { public static int[] soulBracket = new int[]{16, 60, 200, 400, 1000, 2000, 4000}; public static double[] defaultDamageAdded = new double[]{1, 1.5, 2, 2.5, 3, 3.5, 4}; public static double[] destructiveDamageAdded = new double[]{1.5, 2.25, 3, 3.75, 4.5, 5.25, 6}; @@ -77,7 +77,7 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM return RegistrarBloodMagicItems.ITEM_DEMON_CRYSTAL == repair.getItem() || super.getIsRepairable(toRepair, repair); } - public void recalculatePowers(ItemStack stack, World world, EntityPlayer player) { + public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { EnumDemonWillType type = PlayerDemonWillHandler.getLargestWillType(player); double soulsRemaining = PlayerDemonWillHandler.getTotalDemonWill(type, player); recalculatePowers(stack, type, soulsRemaining); @@ -148,10 +148,10 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM } } - public void applyEffectToEntity(EnumDemonWillType type, int willBracket, EntityLivingBase target, EntityLivingBase attacker) { + public void applyEffectToEntity(EnumDemonWillType type, int willBracket, LivingEntity target, LivingEntity attacker) { switch (type) { case CORROSIVE: - target.addPotionEffect(new PotionEffect(MobEffects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); + target.addPotionEffect(new EffectInstance(Effects.WITHER, poisonTime[willBracket], poisonLevel[willBracket])); break; case DEFAULT: break; @@ -160,7 +160,7 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM case STEADFAST: if (!target.isEntityAlive()) { float absorption = attacker.getAbsorptionAmount(); - attacker.addPotionEffect(new PotionEffect(MobEffects.ABSORPTION, absorptionTime[willBracket], 127)); + attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; @@ -170,10 +170,10 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM } @Override - public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { + public boolean hitEntity(ItemStack stack, LivingEntity target, LivingEntity attacker) { if (super.hitEntity(stack, target, attacker)) { - if (attacker instanceof EntityPlayer) { - EntityPlayer attackerPlayer = (EntityPlayer) attacker; + if (attacker instanceof PlayerEntity) { + PlayerEntity attackerPlayer = (PlayerEntity) attacker; this.recalculatePowers(stack, attackerPlayer.getEntityWorld(), attackerPlayer); EnumDemonWillType type = this.getCurrentType(stack); double will = PlayerDemonWillHandler.getTotalDemonWill(type, attackerPlayer); @@ -181,7 +181,7 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM applyEffectToEntity(type, willBracket, target, attackerPlayer); - ItemStack offStack = attackerPlayer.getItemStackFromSlot(EntityEquipmentSlot.OFFHAND); + ItemStack offStack = attackerPlayer.getItemStackFromSlot(EquipmentSlotType.OFFHAND); if (offStack.getItem() instanceof ISentientSwordEffectProvider) { ISentientSwordEffectProvider provider = (ISentientSwordEffectProvider) offStack.getItem(); if (provider.providesEffectForWill(type)) { @@ -200,7 +200,7 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public EnumDemonWillType getCurrentType(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -212,13 +212,13 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public void setCurrentType(ItemStack stack, EnumDemonWillType type) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { recalculatePowers(player.getHeldItem(hand), world, player); return super.onItemRightClick(world, player, hand); } @@ -250,7 +250,7 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM } @Override - public boolean onLeftClickEntity(ItemStack stack, EntityPlayer player, Entity entity) { + public boolean onLeftClickEntity(ItemStack stack, PlayerEntity player, Entity entity) { recalculatePowers(stack, player.getEntityWorld(), player); double drain = this.getDrainOfActivatedSword(stack); @@ -281,14 +281,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM } @Override - public List getRandomDemonWillDrop(EntityLivingBase killedEntity, EntityLivingBase attackingEntity, ItemStack stack, int looting) { + public List getRandomDemonWillDrop(LivingEntity killedEntity, LivingEntity attackingEntity, ItemStack stack, int looting) { List soulList = new ArrayList<>(); - if (killedEntity.getEntityWorld().getDifficulty() != EnumDifficulty.PEACEFUL && !(killedEntity instanceof IMob)) { + if (killedEntity.getEntityWorld().getDifficulty() != Difficulty.PEACEFUL && !(killedEntity instanceof IMob)) { return soulList; } - double willModifier = killedEntity instanceof EntitySlime ? 0.67 : 1; + double willModifier = killedEntity instanceof SlimeEntity ? 0.67 : 1; IDemonWill soul = ((IDemonWill) RegistrarBloodMagicItems.MONSTER_SOUL); @@ -306,9 +306,9 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM //TODO: Change attack speed. @Override - public Multimap getAttributeModifiers(EntityEquipmentSlot slot, ItemStack stack) { + public Multimap getAttributeModifiers(EquipmentSlotType slot, ItemStack stack) { Multimap multimap = HashMultimap.create(); - if (slot == EntityEquipmentSlot.MAINHAND) { + if (slot == EquipmentSlotType.MAINHAND) { multimap.put(SharedMonsterAttributes.ATTACK_DAMAGE.getName(), new AttributeModifier(ATTACK_DAMAGE_MODIFIER, "Weapon modifier", getDamageOfActivatedSword(stack), 0)); multimap.put(SharedMonsterAttributes.ATTACK_SPEED.getName(), new AttributeModifier(ATTACK_SPEED_MODIFIER, "Weapon modifier", this.getAttackSpeedOfSword(stack), 0)); multimap.put(SharedMonsterAttributes.MAX_HEALTH.getName(), new AttributeModifier(new UUID(0, 31818145), "Weapon modifier", this.getHealthBonusOfSword(stack), 0)); @@ -321,14 +321,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getDamageOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DAMAGE); } public void setDamageOfActivatedSword(ItemStack stack, double damage) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DAMAGE, damage); } @@ -336,14 +336,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getDrainOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN); } public void setDrainOfActivatedSword(ItemStack stack, double drain) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ACTIVE_DRAIN, drain); } @@ -351,14 +351,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getStaticDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP); } public void setStaticDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_STATIC_DROP, drop); } @@ -366,14 +366,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getDropOfActivatedSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_DROP); } public void setDropOfActivatedSword(ItemStack stack, double drop) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_DROP, drop); } @@ -381,14 +381,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getHealthBonusOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_HEALTH); } public void setHealthBonusOfSword(ItemStack stack, double hp) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_HEALTH, hp); } @@ -396,14 +396,14 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getAttackSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED); } public void setAttackSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_ATTACK_SPEED, speed); } @@ -411,20 +411,20 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM public double getSpeedOfSword(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.SOUL_SWORD_SPEED); } public void setSpeedOfSword(ItemStack stack, double speed) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.SOUL_SWORD_SPEED, speed); } @Override - public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, EntityPlayer player) { + public boolean spawnSentientEntityOnDrop(ItemStack droppedStack, PlayerEntity player) { World world = player.getEntityWorld(); if (!world.isRemote) { this.recalculatePowers(droppedStack, world, player); @@ -441,7 +441,7 @@ public class ItemSentientSword extends ItemSword implements IDemonWillWeapon, IM specterEntity.setPosition(player.posX, player.posY, player.posZ); world.spawnEntity(specterEntity); - specterEntity.setItemStackToSlot(EntityEquipmentSlot.MAINHAND, droppedStack.copy()); + specterEntity.setItemStackToSlot(EquipmentSlotType.MAINHAND, droppedStack.copy()); specterEntity.setType(this.getCurrentType(droppedStack)); specterEntity.setOwner(player); diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulGem.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulGem.java index 62948034..2df52e4f 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulGem.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulGem.java @@ -13,15 +13,14 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.util.helper.TextHelper; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ItemGroup; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.util.NonNullList; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.*; +import net.minecraft.util.ActionResultType; +import net.minecraft.util.Hand; import net.minecraft.util.math.MathHelper; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; @@ -49,7 +48,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); EnumDemonWillType type = this.getCurrentType(stack); double drain = Math.min(this.getWill(type, stack), this.getMaxWill(type, stack) / 10); @@ -57,7 +56,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I double filled = PlayerDemonWillHandler.addDemonWill(type, player, drain, stack); this.drainWill(type, stack, filled, true); - return new ActionResult<>(EnumActionResult.PASS, stack); + return new ActionResult<>(ActionResultType.PASS, stack); } @Override @@ -78,7 +77,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I } @Override - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; @@ -166,7 +165,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I return 0; } - NBTTagCompound tag = soulGemStack.getTagCompound(); + CompoundNBT tag = soulGemStack.getTagCompound(); return tag.getDouble(Constants.NBT.SOULS); } @@ -175,7 +174,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I public void setWill(EnumDemonWillType type, ItemStack soulGemStack, double souls) { setCurrentType(type, soulGemStack); - NBTTagCompound tag = soulGemStack.getTagCompound(); + CompoundNBT tag = soulGemStack.getTagCompound(); tag.setDouble(Constants.NBT.SOULS, souls); } @@ -223,7 +222,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I public EnumDemonWillType getCurrentType(ItemStack soulGemStack) { NBTHelper.checkNBT(soulGemStack); - NBTTagCompound tag = soulGemStack.getTagCompound(); + CompoundNBT tag = soulGemStack.getTagCompound(); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { return EnumDemonWillType.DEFAULT; @@ -235,7 +234,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I public void setCurrentType(EnumDemonWillType type, ItemStack soulGemStack) { NBTHelper.checkNBT(soulGemStack); - NBTTagCompound tag = soulGemStack.getTagCompound(); + CompoundNBT tag = soulGemStack.getTagCompound(); if (type == EnumDemonWillType.DEFAULT) { if (tag.hasKey(Constants.NBT.WILL_TYPE)) { diff --git a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java index c9483d33..83ee8e05 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java +++ b/src/main/java/WayofTime/bloodmagic/item/soul/ItemSoulSnare.java @@ -6,9 +6,9 @@ import WayofTime.bloodmagic.entity.projectile.EntitySoulSnare; import WayofTime.bloodmagic.util.helper.TextHelper; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.client.util.ITooltipFlag; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.SoundEvents; +import net.minecraft.item.ItemGroup; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.util.SoundEvents; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.*; @@ -33,7 +33,7 @@ public class ItemSoulSnare extends Item implements IVariantProvider { } @Override - public ActionResult onItemRightClick(World worldIn, EntityPlayer playerIn, EnumHand hand) { + public ActionResult onItemRightClick(World worldIn, PlayerEntity playerIn, Hand hand) { ItemStack stack = playerIn.getHeldItem(hand); if (!playerIn.capabilities.isCreativeMode) { stack.shrink(1); @@ -47,7 +47,7 @@ public class ItemSoulSnare extends Item implements IVariantProvider { worldIn.spawnEntity(snare); } - return new ActionResult<>(EnumActionResult.SUCCESS, stack); + return new ActionResult<>(ActionResultType.SUCCESS, stack); } @Override @@ -57,7 +57,7 @@ public class ItemSoulSnare extends Item implements IVariantProvider { @Override @SideOnly(Side.CLIENT) - public void getSubItems(CreativeTabs creativeTab, NonNullList list) { + public void getSubItems(ItemGroup creativeTab, NonNullList list) { if (!isInCreativeTab(creativeTab)) return; diff --git a/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java b/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java index b16fe78a..42a33ceb 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java +++ b/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemFlightScroll.java @@ -12,14 +12,14 @@ import javax.vecmath.Vector3d; import net.minecraft.client.renderer.ItemMeshDefinition; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.MobEffects; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; @@ -33,9 +33,9 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.NBTHelper; public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshProvider, IActivatable { - public static Map> floatMap = new HashMap>(); - public static Map heldEntityMap = new HashMap(); - public static Map heldEntityOffsetMap = new HashMap(); + public static Map> floatMap = new HashMap>(); + public static Map heldEntityMap = new HashMap(); + public static Map heldEntityOffsetMap = new HashMap(); //TODO: A lot of this stuff could be moved to a toggle-able variant public ItemFlightScroll() { @@ -60,7 +60,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } @Override - public ActionResult onItemRightClick(World world, EntityPlayer player, EnumHand hand) { + public ActionResult onItemRightClick(World world, PlayerEntity player, Hand hand) { ItemStack stack = player.getHeldItem(hand); if (!world.isRemote) { @@ -83,7 +83,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } @Override - public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer player, EntityLivingBase entity, EnumHand hand) { + public boolean itemInteractionForEntity(ItemStack stack, PlayerEntity player, LivingEntity entity, Hand hand) { if (entity.world.isRemote) { return false; } @@ -94,7 +94,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr //TODO: Release entity completely? removeEntity(player, entity); } else { - EntityLivingBase heldEntity = getHeldEntity(player); + LivingEntity heldEntity = getHeldEntity(player); if (heldEntity != null && heldEntity.equals(entity)) { heldEntityMap.remove(player); } else { @@ -107,7 +107,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr @Override public void onUpdate(ItemStack stack, World world, Entity entity, int itemSlot, boolean isSelected) { - if (!world.isRemote && entity instanceof EntityPlayerMP && getActivated(stack)) { + if (!world.isRemote && entity instanceof ServerPlayerEntity && getActivated(stack)) { if (entity.ticksExisted % 20 == 0) { double drainNeeded = getBreathCostPerSecond(stack); if (this.drainBreath(stack, drainNeeded, false) >= drainNeeded) { @@ -117,23 +117,23 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } } - onEffectUpdate(stack, world, (EntityPlayer) entity, itemSlot, isSelected); + onEffectUpdate(stack, world, (PlayerEntity) entity, itemSlot, isSelected); } if (!world.isRemote) { - if (entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + if (entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; updateHeldEntityPosition(player); if (floatMap.containsKey(player)) { - Map entityMap = floatMap.get(player); + Map entityMap = floatMap.get(player); if (entityMap == null) { return; } - List removalList = new ArrayList(); + List removalList = new ArrayList(); - for (Entry entry : entityMap.entrySet()) { - EntityLivingBase floatingEntity = entry.getKey(); + for (Entry entry : entityMap.entrySet()) { + LivingEntity floatingEntity = entry.getKey(); if (floatingEntity == null || floatingEntity.isDead || floatingEntity.dimension != player.dimension) { removalList.add(floatingEntity); } @@ -141,7 +141,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr followOwner(player, floatingEntity, entry.getValue()); } - for (EntityLivingBase livingEntity : removalList) { + for (LivingEntity livingEntity : removalList) { entityMap.remove(livingEntity); } @@ -154,14 +154,14 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } } - public static boolean updateEntityOffset(EntityPlayer player, EntityLivingBase living, Vector3d updatedOffset) { + public static boolean updateEntityOffset(PlayerEntity player, LivingEntity living, Vector3d updatedOffset) { //TODO: Check if this entity is contained in another player's map to prevent weird things. if (floatMap.containsKey(player)) { - Map entityMap = floatMap.get(player); + Map entityMap = floatMap.get(player); entityMap.put(living, updatedOffset); return true; } else { - Map entityMap = new HashMap(); + Map entityMap = new HashMap(); entityMap.put(living, updatedOffset); floatMap.put(player, entityMap); return true; @@ -169,7 +169,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } @Nullable - public static EntityLivingBase getHeldEntity(EntityPlayer player) { + public static LivingEntity getHeldEntity(PlayerEntity player) { if (heldEntityMap.containsKey(player)) { return heldEntityMap.get(player); } @@ -177,7 +177,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr return null; } - public static double getHeldEntityOffset(EntityPlayer player) { + public static double getHeldEntityOffset(PlayerEntity player) { if (heldEntityMap.containsKey(player)) { return heldEntityOffsetMap.get(player); } @@ -185,7 +185,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr return 1; } - public static void holdEntity(EntityPlayer player, EntityLivingBase entityLiving) { + public static void holdEntity(PlayerEntity player, LivingEntity entityLiving) { float distance = player.getDistance(entityLiving); Vec3d lookVec = player.getLookVec(); heldEntityMap.put(player, entityLiving); @@ -193,8 +193,8 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr updateEntityOffset(player, entityLiving, new Vector3d(lookVec.x * distance, lookVec.y * distance, lookVec.z * distance)); } - public static void updateHeldEntityPosition(EntityPlayer player) { - EntityLivingBase entityLiving = getHeldEntity(player); + public static void updateHeldEntityPosition(PlayerEntity player) { + LivingEntity entityLiving = getHeldEntity(player); if (entityLiving != null) { double offset = getHeldEntityOffset(player); Vec3d lookVec = player.getLookVec(); @@ -202,13 +202,13 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } } - public static void removeEntity(EntityPlayer player, EntityLivingBase living) { + public static void removeEntity(PlayerEntity player, LivingEntity living) { if (living == null) { return; } if (floatMap.containsKey(player)) { - Map entityMap = floatMap.get(player); + Map entityMap = floatMap.get(player); if (entityMap.containsKey(living)) { entityMap.remove(living); } @@ -219,7 +219,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr } } - public void followOwner(EntityPlayer owner, EntityLivingBase livingEntity, Vector3d offset) { + public void followOwner(PlayerEntity owner, LivingEntity livingEntity, Vector3d offset) { double offsetX = offset.x; double offsetY = offset.y; double offsetZ = offset.z; @@ -228,7 +228,7 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr double speed = Math.max(ownerSpeed * 20, 2); //May just want to call it a day and set this to "2" - livingEntity.addPotionEffect(new PotionEffect(MobEffects.LEVITATION, 20, 0, false, true)); + livingEntity.addPotionEffect(new EffectInstance(Effects.LEVITATION, 20, 0, false, true)); double wantedX = owner.posX + offsetX; double wantedY = owner.posY + offsetY; @@ -247,8 +247,8 @@ public class ItemFlightScroll extends ItemSoulBreathContainer implements IMeshPr livingEntity.setVelocity(vec.x * speed, vec.y * speed, vec.z * speed); } - public void onEffectUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected) { - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.FLIGHT, 2, 0)); + public void onEffectUpdate(ItemStack stack, World world, PlayerEntity player, int itemSlot, boolean isSelected) { + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.FLIGHT, 2, 0)); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemSoulBreathContainer.java b/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemSoulBreathContainer.java index 43c3b3ed..de5180bf 100644 --- a/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemSoulBreathContainer.java +++ b/src/main/java/WayofTime/bloodmagic/item/soulBreath/ItemSoulBreathContainer.java @@ -2,21 +2,21 @@ package WayofTime.bloodmagic.item.soulBreath; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import WayofTime.bloodmagic.soul.ISoulBreathContainer; import WayofTime.bloodmagic.util.Constants; public abstract class ItemSoulBreathContainer extends Item implements ISoulBreathContainer { @Override public double getBreath(ItemStack stack) { - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getDouble(Constants.NBT.BREATH); } @Override public void setBreath(ItemStack stack, double amount) { - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setDouble(Constants.NBT.BREATH, amount); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/ILivingArmour.java b/src/main/java/WayofTime/bloodmagic/livingArmour/ILivingArmour.java index af259cb3..414a920d 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/ILivingArmour.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/ILivingArmour.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.livingArmour; import com.google.common.collect.Multimap; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; /** @@ -14,13 +14,13 @@ import net.minecraft.world.World; public interface ILivingArmour { Multimap getAttributeModifiers(); - boolean canApplyUpgrade(EntityPlayer user, LivingArmourUpgrade upgrade); + boolean canApplyUpgrade(PlayerEntity user, LivingArmourUpgrade upgrade); - boolean upgradeArmour(EntityPlayer user, LivingArmourUpgrade upgrade); + boolean upgradeArmour(PlayerEntity user, LivingArmourUpgrade upgrade); - boolean removeUpgrade(EntityPlayer user, LivingArmourUpgrade upgrade); + boolean removeUpgrade(PlayerEntity user, LivingArmourUpgrade upgrade); - void notifyPlayerOfUpgrade(EntityPlayer user, LivingArmourUpgrade upgrade); + void notifyPlayerOfUpgrade(PlayerEntity user, LivingArmourUpgrade upgrade); /** * Ticks the upgrades and stat trackers, passing in the world and player as @@ -29,11 +29,11 @@ public interface ILivingArmour { * @param world - The World * @param player - The player wearing the Armour */ - void onTick(World world, EntityPlayer player); + void onTick(World world, PlayerEntity player); - void readFromNBT(NBTTagCompound tag); + void readFromNBT(CompoundNBT tag); - void writeToNBT(NBTTagCompound tag, boolean forceWrite); + void writeToNBT(CompoundNBT tag, boolean forceWrite); /** * Writes the LivingArmour to the NBTTag. This will only write the trackers @@ -41,7 +41,7 @@ public interface ILivingArmour { * * @param tag - The NBT tag to write to */ - void writeDirtyToNBT(NBTTagCompound tag); + void writeDirtyToNBT(CompoundNBT tag); - void writeToNBT(NBTTagCompound tag); + void writeToNBT(CompoundNBT tag); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmour.java b/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmour.java index ab2fe989..8144dbfd 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmour.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmour.java @@ -5,14 +5,14 @@ import WayofTime.bloodmagic.item.armour.ItemLivingArmour; import WayofTime.bloodmagic.util.helper.TextHelper; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; import java.lang.reflect.Constructor; @@ -33,7 +33,7 @@ public class LivingArmour implements ILivingArmour { return trackerMap.get(key); } - public double getAdditionalDamageOnHit(double damage, EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getAdditionalDamageOnHit(double damage, PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { double total = 0; for (Entry entry : upgradeMap.entrySet()) { total += entry.getValue().getAdditionalDamageOnHit(damage, wearer, hitEntity, weapon); @@ -42,7 +42,7 @@ public class LivingArmour implements ILivingArmour { return total; } - public double getKnockbackOnHit(EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getKnockbackOnHit(PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { double total = 0; for (Entry entry : upgradeMap.entrySet()) { total += entry.getValue().getKnockbackOnHit(wearer, hitEntity, weapon); @@ -74,7 +74,7 @@ public class LivingArmour implements ILivingArmour { } @Override - public boolean upgradeArmour(EntityPlayer user, LivingArmourUpgrade upgrade) { + public boolean upgradeArmour(PlayerEntity user, LivingArmourUpgrade upgrade) { String key = upgrade.getUniqueIdentifier(); if (upgradeMap.containsKey(key)) { //Check if this is a higher level than the previous upgrade @@ -112,7 +112,7 @@ public class LivingArmour implements ILivingArmour { } @Override - public boolean canApplyUpgrade(EntityPlayer user, LivingArmourUpgrade upgrade) { + public boolean canApplyUpgrade(PlayerEntity user, LivingArmourUpgrade upgrade) { String key = upgrade.getUniqueIdentifier(); if (upgradeMap.containsKey(key)) { //Check if this is a higher level than the previous upgrade @@ -136,8 +136,8 @@ public class LivingArmour implements ILivingArmour { } @Override - public void notifyPlayerOfUpgrade(EntityPlayer user, LivingArmourUpgrade upgrade) { - user.sendStatusMessage(new TextComponentString(TextHelper.localizeEffect(chatBase + "newUpgrade")), true); + public void notifyPlayerOfUpgrade(PlayerEntity user, LivingArmourUpgrade upgrade) { + user.sendStatusMessage(new StringTextComponent(TextHelper.localizeEffect(chatBase + "newUpgrade")), true); } /** @@ -148,7 +148,7 @@ public class LivingArmour implements ILivingArmour { * @param player */ @Override - public void onTick(World world, EntityPlayer player) { + public void onTick(World world, PlayerEntity player) { for (Entry entry : upgradeMap.entrySet()) { LivingArmourUpgrade upgrade = entry.getValue(); @@ -211,16 +211,16 @@ public class LivingArmour implements ILivingArmour { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { maxUpgradePoints = Math.max(100, tag.getInteger("maxUpgradePoints")); - NBTTagList upgradeTags = tag.getTagList("upgrades", 10); + ListNBT upgradeTags = tag.getTagList("upgrades", 10); if (upgradeTags != null) { for (int i = 0; i < upgradeTags.tagCount(); i++) { - NBTTagCompound upgradeTag = upgradeTags.getCompoundTagAt(i); + CompoundNBT upgradeTag = upgradeTags.getCompoundTagAt(i); String key = upgradeTag.getString("key"); int level = upgradeTag.getInteger("level"); - NBTTagCompound nbtTag = upgradeTag.getCompoundTag("upgrade"); + CompoundNBT nbtTag = upgradeTag.getCompoundTag("upgrade"); LivingArmourUpgrade upgrade = LivingArmourHandler.generateUpgradeFromKey(key, level, nbtTag); if (upgrade != null) { upgradeMap.put(key, upgrade); @@ -238,7 +238,7 @@ public class LivingArmour implements ILivingArmour { } StatTracker tracker = (StatTracker) obj; String key = tracker.getUniqueIdentifier(); - NBTTagCompound trackerTag = tag.getCompoundTag(key); + CompoundNBT trackerTag = tag.getCompoundTag(key); if (!trackerTag.isEmpty()) { tracker.readFromNBT(trackerTag); } @@ -250,16 +250,16 @@ public class LivingArmour implements ILivingArmour { } @Override - public void writeToNBT(NBTTagCompound tag, boolean forceWrite) { + public void writeToNBT(CompoundNBT tag, boolean forceWrite) { tag.setInteger("maxUpgradePoints", maxUpgradePoints); - NBTTagList tags = new NBTTagList(); + ListNBT tags = new ListNBT(); for (Entry entry : upgradeMap.entrySet()) { - NBTTagCompound upgradeTag = new NBTTagCompound(); + CompoundNBT upgradeTag = new CompoundNBT(); LivingArmourUpgrade upgrade = entry.getValue(); - NBTTagCompound nbtTag = new NBTTagCompound(); + CompoundNBT nbtTag = new CompoundNBT(); upgrade.writeToNBT(nbtTag); upgradeTag.setString("key", upgrade.getUniqueIdentifier()); @@ -281,7 +281,7 @@ public class LivingArmour implements ILivingArmour { String key = tracker.getUniqueIdentifier(); if (forceWrite || tracker.isDirty()) { - NBTTagCompound trackerTag = new NBTTagCompound(); + CompoundNBT trackerTag = new CompoundNBT(); tracker.writeToNBT(trackerTag); tag.setTag(key, trackerTag); @@ -298,17 +298,17 @@ public class LivingArmour implements ILivingArmour { * @param tag */ @Override - public void writeDirtyToNBT(NBTTagCompound tag) { + public void writeDirtyToNBT(CompoundNBT tag) { writeToNBT(tag, false); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { writeToNBT(tag, true); } @Override - public boolean removeUpgrade(EntityPlayer user, LivingArmourUpgrade upgrade) { + public boolean removeUpgrade(PlayerEntity user, LivingArmourUpgrade upgrade) { String key = upgrade.getUniqueIdentifier(); if (upgradeMap.containsKey(key)) { upgradeMap.remove(key); @@ -319,9 +319,9 @@ public class LivingArmour implements ILivingArmour { return false; } - public static boolean hasFullSet(EntityPlayer player) { - for (EntityEquipmentSlot slot : EntityEquipmentSlot.values()) { - if (slot.getSlotType() != EntityEquipmentSlot.Type.ARMOR) { + public static boolean hasFullSet(PlayerEntity player) { + for (EquipmentSlotType slot : EquipmentSlotType.values()) { + if (slot.getSlotType() != EquipmentSlotType.Type.ARMOR) { continue; } ItemStack slotStack = player.getItemStackFromSlot(slot); diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourHandler.java b/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourHandler.java index c15afafb..6fbb06ca 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourHandler.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourHandler.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.livingArmour; import WayofTime.bloodmagic.util.BMLog; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import java.lang.reflect.Constructor; import java.util.ArrayList; @@ -45,7 +45,7 @@ public class LivingArmourHandler { return generateUpgradeFromKey(key, level, null); } - public static LivingArmourUpgrade generateUpgradeFromKey(String key, int level, NBTTagCompound tag) { + public static LivingArmourUpgrade generateUpgradeFromKey(String key, int level, CompoundNBT tag) { Constructor ctor = upgradeConstructorMap.get(key); if (ctor != null) { try { diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourUpgrade.java b/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourUpgrade.java index 41cfb72e..46a13263 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourUpgrade.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/LivingArmourUpgrade.java @@ -2,11 +2,11 @@ package WayofTime.bloodmagic.livingArmour; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.DamageSource; import net.minecraft.world.World; @@ -31,11 +31,11 @@ public abstract class LivingArmourUpgrade { this.level = Math.min(level, getMaxTier() - 1); } - public double getAdditionalDamageOnHit(double damage, EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getAdditionalDamageOnHit(double damage, PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { return 0; } - public double getKnockbackOnHit(EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getKnockbackOnHit(PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { return 0; } @@ -45,7 +45,7 @@ public abstract class LivingArmourUpgrade { * * @return 0 for no damage blocked, 1 for full damage blocked */ - public double getArmourProtection(EntityLivingBase wearer, DamageSource source) { + public double getArmourProtection(LivingEntity wearer, DamageSource source) { return 0; } @@ -61,20 +61,20 @@ public abstract class LivingArmourUpgrade { public abstract int getCostOfUpgrade(); - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } public Multimap getAttributeModifiers() { return HashMultimap.create(); } - public double getMiningSpeedModifier(EntityPlayer player) { + public double getMiningSpeedModifier(PlayerEntity player) { return 1; } - public abstract void writeToNBT(NBTTagCompound tag); + public abstract void writeToNBT(CompoundNBT tag); - public abstract void readFromNBT(NBTTagCompound tag); + public abstract void readFromNBT(CompoundNBT tag); public int getRunicShielding() { return 0; diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/StatTracker.java b/src/main/java/WayofTime/bloodmagic/livingArmour/StatTracker.java index c9d4d182..02f5f971 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/StatTracker.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/StatTracker.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.livingArmour; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.List; @@ -17,9 +17,9 @@ public abstract class StatTracker { */ public abstract void resetTracker(); - public abstract void readFromNBT(NBTTagCompound tag); + public abstract void readFromNBT(CompoundNBT tag); - public abstract void writeToNBT(NBTTagCompound tag); + public abstract void writeToNBT(CompoundNBT tag); /** * Called each tick to update the tracker's information. Called in @@ -30,9 +30,9 @@ public abstract class StatTracker { * @param livingArmour The equipped LivingArmour * @return True if there is a new upgrade unlocked this tick. */ - public abstract boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour); + public abstract boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour); - public abstract void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour); + public abstract void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour); public abstract List getUpgrades(); diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeBattleHungry.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeBattleHungry.java index e7aec23e..37c20df3 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeBattleHungry.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeBattleHungry.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeBattleHungry extends LivingArmourUpgrade { @@ -23,7 +23,7 @@ public class LivingArmourUpgradeBattleHungry extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (timer > 0) { timer--; return; @@ -50,12 +50,12 @@ public class LivingArmourUpgradeBattleHungry extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger("timer", timer); } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { timer = tag.getInteger("timer"); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeCrippledArm.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeCrippledArm.java index 0467e0a7..8a01bc0b 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeCrippledArm.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeCrippledArm.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeCrippledArm extends LivingArmourUpgrade { @@ -15,7 +15,7 @@ public class LivingArmourUpgradeCrippledArm extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -35,11 +35,11 @@ public class LivingArmourUpgradeCrippledArm extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @Override diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDigSlowdown.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDigSlowdown.java index 69d041ee..e3b250e3 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDigSlowdown.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDigSlowdown.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.HashMap; @@ -19,12 +19,12 @@ public class LivingArmourUpgradeDigSlowdown extends LivingArmourUpgrade { } @Override - public double getMiningSpeedModifier(EntityPlayer player) { + public double getMiningSpeedModifier(PlayerEntity player) { return digSpeedModifier[this.level]; } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -44,12 +44,12 @@ public class LivingArmourUpgradeDigSlowdown extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDisoriented.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDisoriented.java index 25daaaf4..1c8fe54d 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDisoriented.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeDisoriented.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeDisoriented extends LivingArmourUpgrade { @@ -16,7 +16,7 @@ public class LivingArmourUpgradeDisoriented extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (world.isRemote && player.ticksExisted % 20 == 0 && world.rand.nextDouble() <= chance[this.level]) { player.rotationYaw = world.rand.nextFloat() * 360; player.rotationPitch = world.rand.nextFloat() * 180 - 90; @@ -44,11 +44,11 @@ public class LivingArmourUpgradeDisoriented extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @Override diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeMeleeDecrease.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeMeleeDecrease.java index 0e59b0ba..cbccbfde 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeMeleeDecrease.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeMeleeDecrease.java @@ -7,8 +7,8 @@ import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import org.apache.commons.codec.binary.StringUtils; @@ -23,7 +23,7 @@ public class LivingArmourUpgradeMeleeDecrease extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -53,12 +53,12 @@ public class LivingArmourUpgradeMeleeDecrease extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeQuenched.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeQuenched.java index 1294fe29..edf6dc1c 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeQuenched.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeQuenched.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeQuenched extends LivingArmourUpgrade { @@ -15,7 +15,7 @@ public class LivingArmourUpgradeQuenched extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -35,11 +35,11 @@ public class LivingArmourUpgradeQuenched extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @Override diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlippery.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlippery.java index 413eac26..3d694dbf 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlippery.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlippery.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -17,7 +17,7 @@ public class LivingArmourUpgradeSlippery extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (world.isRemote && player.onGround) { // if (player.moveForward == 0) { @@ -72,11 +72,11 @@ public class LivingArmourUpgradeSlippery extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @Override diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowHeal.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowHeal.java index f7d0c6ba..ac3fb774 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowHeal.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowHeal.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeSlowHeal extends LivingArmourUpgrade { @@ -21,7 +21,7 @@ public class LivingArmourUpgradeSlowHeal extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -41,12 +41,12 @@ public class LivingArmourUpgradeSlowHeal extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowness.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowness.java index a36c48b3..75d40db8 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowness.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeSlowness.java @@ -7,8 +7,8 @@ import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import org.apache.commons.codec.binary.StringUtils; @@ -33,7 +33,7 @@ public class LivingArmourUpgradeSlowness extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -53,11 +53,11 @@ public class LivingArmourUpgradeSlowness extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @Override diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeStormTrooper.java b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeStormTrooper.java index 61252106..464c408b 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeStormTrooper.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/downgrade/LivingArmourUpgradeStormTrooper.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.downgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeStormTrooper extends LivingArmourUpgrade { @@ -16,11 +16,11 @@ public class LivingArmourUpgradeStormTrooper extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } - public float getArrowJiggle(EntityPlayer player) { + public float getArrowJiggle(PlayerEntity player) { return inaccuracy[this.level]; } @@ -40,11 +40,11 @@ public class LivingArmourUpgradeStormTrooper extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } @Override diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowProtect.java index 51671858..65f9706f 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowProtect.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeArrowProtect; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerArrowProtect extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamage = tag.getInteger(BloodMagic.MODID + ".tracker.arrowProtect"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.arrowProtect", totalDamage); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerArrowProtect extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowShot.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowShot.java index ed0e225d..1b9550f5 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowShot.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerArrowShot.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeArrowShot; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerArrowShot extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalShots = tag.getInteger(BloodMagic.MODID + ".tracker.trickShot"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.trickShot", totalShots); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { int change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerArrowShot extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerCriticalStrike.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerCriticalStrike.java index fef5ed19..9096e539 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerCriticalStrike.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerCriticalStrike.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeCriticalStrike; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerCriticalStrike extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamageDealt = tag.getDouble(BloodMagic.MODID + ".tracker.criticalStrike"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.criticalStrike", totalDamageDealt); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerCriticalStrike extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerDigging.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerDigging.java index c04c1951..9b407907 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerDigging.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerDigging.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeDigging; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerDigging extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalBlocksDug = tag.getInteger(BloodMagic.MODID + ".tracker.digging"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.digging", totalBlocksDug); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { int change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerDigging extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerExperience.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerExperience.java index 379d3631..09f2c95e 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerExperience.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerExperience.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeExperience; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerExperience extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalExperienceGained = tag.getDouble(BloodMagic.MODID + ".tracker.experienced"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.experienced", totalExperienceGained); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerExperience extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFallProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFallProtect.java index 76f6248d..481a91f0 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFallProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFallProtect.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeFallProtect; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerFallProtect extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamage = tag.getInteger(BloodMagic.MODID + ".tracker.fallProtect"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.fallProtect", totalDamage); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerFallProtect extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFireResist.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFireResist.java index c6e467d1..fcbcd93c 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFireResist.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFireResist.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeFireResist; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -28,17 +28,17 @@ public class StatTrackerFireResist extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalFireTicks = tag.getInteger(BloodMagic.MODID + ".tracker.fire"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.fire", totalFireTicks); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (player.isBurning()) { totalFireTicks++; this.markDirty(); @@ -49,7 +49,7 @@ public class StatTrackerFireResist extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFood.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFood.java index b00fbb71..757de371 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFood.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerFood.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeKnockbackResist; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -16,7 +16,7 @@ import java.util.List; import java.util.Map; public class StatTrackerFood extends StatTracker { - public static Map lastFoodEatenMap = new HashMap<>(); + public static Map lastFoodEatenMap = new HashMap<>(); public static int[] foodRequired = new int[]{100, 200, 300, 500, 1000}; @@ -33,18 +33,18 @@ public class StatTrackerFood extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { foodEaten = tag.getInteger(BloodMagic.MODID + ".tracker.foodEaten"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.foodEaten", foodEaten); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (!lastFoodEatenMap.containsKey(player)) { lastFoodEatenMap.put(player, 20); return false; @@ -66,7 +66,7 @@ public class StatTrackerFood extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (lastFoodEatenMap.containsKey(player)) { lastFoodEatenMap.remove(player); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGraveDigger.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGraveDigger.java index 209a8316..0797ba9c 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGraveDigger.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGraveDigger.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeGraveDigger; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerGraveDigger extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamageDealt = tag.getDouble(BloodMagic.MODID + ".tracker.graveDigger"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.graveDigger", totalDamageDealt); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerGraveDigger extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGrimReaperSprint.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGrimReaperSprint.java index 0234bbf2..9b2e087b 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGrimReaperSprint.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerGrimReaperSprint.java @@ -7,8 +7,8 @@ import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeGrimReaperSprint; import WayofTime.bloodmagic.util.BMLog; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -31,17 +31,17 @@ public class StatTrackerGrimReaperSprint extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDeaths = tag.getInteger(BloodMagic.MODID + ".tracker.grimReaper"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.grimReaper", totalDeaths); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -59,7 +59,7 @@ public class StatTrackerGrimReaperSprint extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerHealthboost.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerHealthboost.java index 666cf88f..56aa43c5 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerHealthboost.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerHealthboost.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeHealthboost; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerHealthboost extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalHealthGenned = tag.getDouble(BloodMagic.MODID + ".tracker.health"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.health", totalHealthGenned); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerHealthboost extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerJump.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerJump.java index d5214fa6..cd9ac778 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerJump.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerJump.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeJump; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -31,18 +31,18 @@ public class StatTrackerJump extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalJumps = tag.getInteger(BloodMagic.MODID + ".tracker.jump"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.jump", totalJumps); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { int change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -60,7 +60,7 @@ public class StatTrackerJump extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMeleeDamage.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMeleeDamage.java index a7172372..82b7ece1 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMeleeDamage.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMeleeDamage.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeMeleeDamage; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerMeleeDamage extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamageDealt = tag.getDouble(BloodMagic.MODID + ".tracker.meleeDamage"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.meleeDamage", totalDamageDealt); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerMeleeDamage extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMovement.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMovement.java index 49a598d1..0b68e699 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMovement.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerMovement.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSpeed; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -16,8 +16,8 @@ import java.util.List; import java.util.Map; public class StatTrackerMovement extends StatTracker { - public static Map lastPosX = new HashMap<>(); - public static Map lastPosZ = new HashMap<>(); + public static Map lastPosX = new HashMap<>(); + public static Map lastPosZ = new HashMap<>(); public static int[] blocksRequired = new int[]{200, 1000, 2000, 4000, 7000, 15000, 25000, 35000, 50000, 70000}; @@ -34,18 +34,18 @@ public class StatTrackerMovement extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalMovement = tag.getDouble(BloodMagic.MODID + ".tracker.movement"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.movement", totalMovement); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (!lastPosX.containsKey(player)) { lastPosX.put(player, player.posX); lastPosZ.put(player, player.posZ); @@ -76,7 +76,7 @@ public class StatTrackerMovement extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerNightSight.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerNightSight.java index ca2a181b..12791b42 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerNightSight.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerNightSight.java @@ -6,9 +6,9 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeNightSight; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; import net.minecraft.world.World; import java.util.ArrayList; @@ -34,19 +34,19 @@ public class StatTrackerNightSight extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamageDealt = tag.getDouble(BloodMagic.MODID + ".tracker.nightSight"); totalNightVision = tag.getInteger(BloodMagic.MODID + ".tracker.nightSightVision"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.nightSight", totalDamageDealt); tag.setInteger(BloodMagic.MODID + ".tracker.nightSightVision", totalNightVision); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { boolean test = false; if (changeMap.containsKey(livingArmour)) { @@ -60,7 +60,7 @@ public class StatTrackerNightSight extends StatTracker { } } - if (world.getLight(player.getPosition()) <= 9 && player.isPotionActive(MobEffects.NIGHT_VISION)) { + if (world.getLight(player.getPosition()) <= 9 && player.isPotionActive(Effects.NIGHT_VISION)) { totalNightVision++; test = true; } @@ -73,7 +73,7 @@ public class StatTrackerNightSight extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java index 7fca6648..e60c6788 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradePhysicalProtect; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerPhysicalProtect extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamage = tag.getInteger(BloodMagic.MODID + ".tracker.physicalProtect"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.physicalProtect", totalDamage); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerPhysicalProtect extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPoison.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPoison.java index fb002e49..94c394d6 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPoison.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPoison.java @@ -6,9 +6,9 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradePoisonResist; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; import net.minecraft.world.World; import java.util.ArrayList; @@ -29,18 +29,18 @@ public class StatTrackerPoison extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalPoisonTicks = tag.getInteger(BloodMagic.MODID + ".tracker.poison"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.poison", totalPoisonTicks); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { - if (player.isPotionActive(MobEffects.POISON)) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { + if (player.isPotionActive(Effects.POISON)) { totalPoisonTicks++; this.markDirty(); return true; @@ -50,7 +50,7 @@ public class StatTrackerPoison extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerRepairing.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerRepairing.java index 458b5eb6..981f349f 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerRepairing.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerRepairing.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeRepairing; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerRepairing extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamage = tag.getDouble(BloodMagic.MODID + ".tracker.repair"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.repair", totalDamage); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerRepairing extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSelfSacrifice.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSelfSacrifice.java index 631ac1d2..d62f2f47 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSelfSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSelfSacrifice.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSelfSacrifice; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -31,18 +31,18 @@ public class StatTrackerSelfSacrifice extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalSacrifices = tag.getInteger(BloodMagic.MODID + ".tracker.selfSacrifice"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.selfSacrifice", totalSacrifices); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { int change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -60,7 +60,7 @@ public class StatTrackerSelfSacrifice extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSolarPowered.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSolarPowered.java index 29d656ac..87be975d 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSolarPowered.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSolarPowered.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSolarPowered; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerSolarPowered extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalHealthGenned = tag.getDouble(BloodMagic.MODID + ".tracker.solarPowered"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.solarPowered", totalHealthGenned); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerSolarPowered extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSprintAttack.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSprintAttack.java index 09d2f220..ae828d2e 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSprintAttack.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerSprintAttack.java @@ -6,8 +6,8 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSprintAttack; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -30,17 +30,17 @@ public class StatTrackerSprintAttack extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalDamageDealt = tag.getDouble(BloodMagic.MODID + ".tracker.sprintAttack"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.sprintAttack", totalDamageDealt); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { double change = Math.abs(changeMap.get(livingArmour)); if (change > 0) { @@ -58,7 +58,7 @@ public class StatTrackerSprintAttack extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (changeMap.containsKey(livingArmour)) { changeMap.remove(livingArmour); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerStepAssist.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerStepAssist.java index 77ad3f12..657edb74 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerStepAssist.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerStepAssist.java @@ -5,8 +5,8 @@ import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeStepAssist; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import java.util.ArrayList; @@ -15,8 +15,8 @@ import java.util.List; import java.util.Map; public class StatTrackerStepAssist extends StatTracker { - public static Map lastPosX = new HashMap<>(); - public static Map lastPosZ = new HashMap<>(); + public static Map lastPosX = new HashMap<>(); + public static Map lastPosZ = new HashMap<>(); public static int blocksRequired = 1000; @@ -33,18 +33,18 @@ public class StatTrackerStepAssist extends StatTracker { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { totalMovement = tag.getDouble(BloodMagic.MODID + ".tracker.stepAssist"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setDouble(BloodMagic.MODID + ".tracker.stepAssist", totalMovement); } @Override - public boolean onTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public boolean onTick(World world, PlayerEntity player, LivingArmour livingArmour) { if (!lastPosX.containsKey(player)) { lastPosX.put(player, player.posX); lastPosZ.put(player, player.posZ); @@ -76,7 +76,7 @@ public class StatTrackerStepAssist extends StatTracker { } @Override - public void onDeactivatedTick(World world, EntityPlayer player, LivingArmour livingArmour) { + public void onDeactivatedTick(World world, PlayerEntity player, LivingArmour livingArmour) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowProtect.java index 94ccca9a..994091cc 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowProtect.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.DamageSource; public class LivingArmourUpgradeArrowProtect extends LivingArmourUpgrade { @@ -15,7 +15,7 @@ public class LivingArmourUpgradeArrowProtect extends LivingArmourUpgrade { } @Override - public double getArmourProtection(EntityLivingBase wearer, DamageSource source) { + public double getArmourProtection(LivingEntity wearer, DamageSource source) { if (source.isProjectile()) { return protectionLevel[this.level]; } @@ -39,12 +39,12 @@ public class LivingArmourUpgradeArrowProtect extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowShot.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowShot.java index a83e62ad..ca457179 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowShot.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeArrowShot.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeArrowShot extends LivingArmourUpgrade { @@ -16,7 +16,7 @@ public class LivingArmourUpgradeArrowShot extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -36,12 +36,12 @@ public class LivingArmourUpgradeArrowShot extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeCriticalStrike.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeCriticalStrike.java index 5f82954e..2254a320 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeCriticalStrike.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeCriticalStrike.java @@ -2,11 +2,11 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; public class LivingArmourUpgradeCriticalStrike extends LivingArmourUpgrade { public static final int[] costs = new int[]{5, 12, 22, 35, 49}; @@ -17,8 +17,8 @@ public class LivingArmourUpgradeCriticalStrike extends LivingArmourUpgrade { } @Override - public double getAdditionalDamageOnHit(double damage, EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { - boolean flag = wearer.fallDistance > 0.0F && !wearer.onGround && !wearer.isOnLadder() && !wearer.isInWater() && !wearer.isPotionActive(MobEffects.BLINDNESS) && !wearer.isRiding() && !wearer.isSprinting(); + public double getAdditionalDamageOnHit(double damage, PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { + boolean flag = wearer.fallDistance > 0.0F && !wearer.onGround && !wearer.isOnLadder() && !wearer.isInWater() && !wearer.isPotionActive(Effects.BLINDNESS) && !wearer.isRiding() && !wearer.isSprinting(); if (flag) { return getDamageModifier() * damage; @@ -47,12 +47,12 @@ public class LivingArmourUpgradeCriticalStrike extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeDigging.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeDigging.java index 8e977049..559fc941 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeDigging.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeDigging.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import WayofTime.bloodmagic.livingArmour.LivingArmour; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; +import net.minecraft.potion.EffectInstance; import net.minecraft.world.World; import java.util.HashMap; @@ -24,17 +24,17 @@ public class LivingArmourUpgradeDigging extends LivingArmourUpgrade { } @Override - public double getMiningSpeedModifier(EntityPlayer player) { + public double getMiningSpeedModifier(PlayerEntity player) { return digSpeedModifier[this.level]; } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (changeMap.containsKey(livingArmour) && changeMap.get(livingArmour)) { changeMap.put(livingArmour, false); if (digSpeedTime[this.level] > 0) { - player.addPotionEffect(new PotionEffect(MobEffects.SPEED, digSpeedTime[this.level], digSpeedLevel[this.level], false, false)); + player.addPotionEffect(new EffectInstance(Effects.SPEED, digSpeedTime[this.level], digSpeedLevel[this.level], false, false)); } } } @@ -55,12 +55,12 @@ public class LivingArmourUpgradeDigging extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeElytra.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeElytra.java index 9e1c4a3a..695df8f6 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeElytra.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeElytra.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeElytra extends LivingArmourUpgrade { @@ -15,7 +15,7 @@ public class LivingArmourUpgradeElytra extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -35,12 +35,12 @@ public class LivingArmourUpgradeElytra extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeExperience.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeExperience.java index e36e05bf..92719265 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeExperience.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeExperience.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class LivingArmourUpgradeExperience extends LivingArmourUpgrade { public static final int[] costs = new int[]{7, 13, 22, 40, 65, 90, 130, 180, 250, 350}; @@ -32,12 +32,12 @@ public class LivingArmourUpgradeExperience extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFallProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFallProtect.java index 79368bdb..d831435c 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFallProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFallProtect.java @@ -2,9 +2,7 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.DamageSource; +import net.minecraft.nbt.CompoundNBT; public class LivingArmourUpgradeFallProtect extends LivingArmourUpgrade { public static final int[] costs = new int[]{2, 5, 9, 15, 25}; @@ -35,12 +33,12 @@ public class LivingArmourUpgradeFallProtect extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFireResist.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFireResist.java index 1e0a465c..827bc8c8 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFireResist.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeFireResist.java @@ -5,11 +5,11 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.Effects; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; public class LivingArmourUpgradeFireResist extends LivingArmourUpgrade { @@ -24,13 +24,13 @@ public class LivingArmourUpgradeFireResist extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (player.isBurning() && fireCooldown <= 0) { - player.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, fireResistDuration[this.level])); + player.addPotionEffect(new EffectInstance(Effects.FIRE_RESISTANCE, fireResistDuration[this.level])); fireCooldown = fireCooldownTime[this.level]; - player.sendStatusMessage(new TextComponentString(TextHelper.localizeEffect(chatBase + "fireRemove")), true); + player.sendStatusMessage(new StringTextComponent(TextHelper.localizeEffect(chatBase + "fireRemove")), true); } else if (fireCooldown > 0) { fireCooldown--; @@ -53,12 +53,12 @@ public class LivingArmourUpgradeFireResist extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(Constants.NBT.UPGRADE_FIRE_TIMER, fireCooldown); } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { fireCooldown = tag.getInteger(Constants.NBT.UPGRADE_FIRE_TIMER); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGraveDigger.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGraveDigger.java index 1c1ec121..b3b984d2 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGraveDigger.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGraveDigger.java @@ -2,11 +2,11 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemSpade; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.ShovelItem; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class LivingArmourUpgradeGraveDigger extends LivingArmourUpgrade { public static final int[] costs = new int[]{5, 12, 20, 35, 49, 78, 110, 160, 215, 320}; @@ -17,8 +17,8 @@ public class LivingArmourUpgradeGraveDigger extends LivingArmourUpgrade { } @Override - public double getAdditionalDamageOnHit(double damage, EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { - if (!weapon.isEmpty() && weapon.getItem() instanceof ItemSpade) { + public double getAdditionalDamageOnHit(double damage, PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { + if (!weapon.isEmpty() && weapon.getItem() instanceof ShovelItem) { return getDamageModifier(); } @@ -45,12 +45,12 @@ public class LivingArmourUpgradeGraveDigger extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGrimReaperSprint.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGrimReaperSprint.java index 92fba1a7..6e198169 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGrimReaperSprint.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeGrimReaperSprint.java @@ -4,11 +4,11 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; public class LivingArmourUpgradeGrimReaperSprint extends LivingArmourUpgrade { @@ -27,7 +27,7 @@ public class LivingArmourUpgradeGrimReaperSprint extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (deathTimer > 0) { deathTimer--; } @@ -49,12 +49,12 @@ public class LivingArmourUpgradeGrimReaperSprint extends LivingArmourUpgrade { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { deathTimer = tag.getInteger(BloodMagic.MODID + ".tracker.grimReaper"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.grimReaper", deathTimer); } @@ -63,24 +63,24 @@ public class LivingArmourUpgradeGrimReaperSprint extends LivingArmourUpgrade { return tooltipBase + "grimReaper"; } - public void applyEffectOnRebirth(EntityPlayer player) { + public void applyEffectOnRebirth(PlayerEntity player) { player.setHealth(player.getMaxHealth() * healthOnRevive[this.level]); int strDur = strengthDuration[this.level]; if (strDur > 0) { - player.addPotionEffect(new PotionEffect(MobEffects.STRENGTH, strDur, strengthValue[this.level])); + player.addPotionEffect(new EffectInstance(Effects.STRENGTH, strDur, strengthValue[this.level])); } int resDur = resistanceDuration[this.level]; if (resDur > 0) { - player.addPotionEffect(new PotionEffect(MobEffects.RESISTANCE, resDur, resistanceValue[this.level])); + player.addPotionEffect(new EffectInstance(Effects.RESISTANCE, resDur, resistanceValue[this.level])); } deathTimer = rebirthDelay[this.level]; - player.sendStatusMessage(new TextComponentString(TextHelper.localizeEffect(chatBase + "grimReaper")), true); + player.sendStatusMessage(new StringTextComponent(TextHelper.localizeEffect(chatBase + "grimReaper")), true); } - public boolean canSavePlayer(EntityPlayer player) { + public boolean canSavePlayer(PlayerEntity player) { return deathTimer <= 0; } } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeHealthboost.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeHealthboost.java index 4b3a82bf..3a1aaf13 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeHealthboost.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeHealthboost.java @@ -7,8 +7,8 @@ import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import org.apache.commons.codec.binary.StringUtils; @@ -23,7 +23,7 @@ public class LivingArmourUpgradeHealthboost extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -53,12 +53,12 @@ public class LivingArmourUpgradeHealthboost extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeJump.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeJump.java index 723ef2ab..3fc4e734 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeJump.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeJump.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeJump extends LivingArmourUpgrade { @@ -31,7 +31,7 @@ public class LivingArmourUpgradeJump extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (!world.isRemote) { double motionY = player.motionY; @@ -47,12 +47,12 @@ public class LivingArmourUpgradeJump extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeKnockbackResist.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeKnockbackResist.java index 39a34a08..15914a0f 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeKnockbackResist.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeKnockbackResist.java @@ -6,7 +6,7 @@ import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import org.apache.commons.codec.binary.StringUtils; import java.util.UUID; @@ -51,12 +51,12 @@ public class LivingArmourUpgradeKnockbackResist extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeMeleeDamage.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeMeleeDamage.java index 7a4fc138..d08722fd 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeMeleeDamage.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeMeleeDamage.java @@ -7,8 +7,8 @@ import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; import org.apache.commons.codec.binary.StringUtils; @@ -23,7 +23,7 @@ public class LivingArmourUpgradeMeleeDamage extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { } @@ -53,12 +53,12 @@ public class LivingArmourUpgradeMeleeDamage extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java index e18b3c1b..a33a241a 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java @@ -1,15 +1,14 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; -import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; import net.minecraft.world.World; public class LivingArmourUpgradeNightSight extends LivingArmourUpgrade { @@ -23,21 +22,21 @@ public class LivingArmourUpgradeNightSight extends LivingArmourUpgrade { } @Override - public double getAdditionalDamageOnHit(double damage, EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getAdditionalDamageOnHit(double damage, PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { return isActive ? meleeDamage[this.level] : 0; } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (world.getLight(player.getPosition(), false) <= 9) { isActive = true; - if (player.isPotionActive(MobEffects.NIGHT_VISION)) + if (player.isPotionActive(Effects.NIGHT_VISION)) return; - player.addPotionEffect(new PotionEffect(MobEffects.NIGHT_VISION, Integer.MAX_VALUE, 0, false, false)); + player.addPotionEffect(new EffectInstance(Effects.NIGHT_VISION, Integer.MAX_VALUE, 0, false, false)); } else if (isActive) { isActive = false; - player.removePotionEffect(MobEffects.NIGHT_VISION); + player.removePotionEffect(Effects.NIGHT_VISION); } } @@ -57,12 +56,12 @@ public class LivingArmourUpgradeNightSight extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePhysicalProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePhysicalProtect.java index 52a60199..1b69b807 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePhysicalProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePhysicalProtect.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.DamageSource; public class LivingArmourUpgradePhysicalProtect extends LivingArmourUpgrade { @@ -15,7 +15,7 @@ public class LivingArmourUpgradePhysicalProtect extends LivingArmourUpgrade { } @Override - public double getArmourProtection(EntityLivingBase wearer, DamageSource source) { + public double getArmourProtection(LivingEntity wearer, DamageSource source) { if (source.getTrueSource() != null && !source.isMagicDamage() && !source.isProjectile()) { return protectionLevel[this.level]; } @@ -39,12 +39,12 @@ public class LivingArmourUpgradePhysicalProtect extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePoisonResist.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePoisonResist.java index 08c75b19..23620d2a 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePoisonResist.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradePoisonResist.java @@ -5,11 +5,11 @@ import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; public class LivingArmourUpgradePoisonResist extends LivingArmourUpgrade { @@ -24,14 +24,14 @@ public class LivingArmourUpgradePoisonResist extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { - if (player.isPotionActive(MobEffects.POISON) && poisonCooldown <= 0) { - PotionEffect eff = player.getActivePotionEffect(MobEffects.POISON); + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { + if (player.isPotionActive(Effects.POISON) && poisonCooldown <= 0) { + EffectInstance eff = player.getActivePotionEffect(Effects.POISON); if (eff.getAmplifier() <= poisonMaxCure[this.level]) { - player.removePotionEffect(MobEffects.POISON); + player.removePotionEffect(Effects.POISON); poisonCooldown = poisonCooldownTime[this.level]; - player.sendStatusMessage(new TextComponentString(TextHelper.localize(chatBase + "poisonRemove")), true); + player.sendStatusMessage(new StringTextComponent(TextHelper.localize(chatBase + "poisonRemove")), true); } } else if (poisonCooldown > 0) { poisonCooldown--; @@ -54,12 +54,12 @@ public class LivingArmourUpgradePoisonResist extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(Constants.NBT.UPGRADE_POISON_TIMER, poisonCooldown); } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { poisonCooldown = tag.getInteger(Constants.NBT.UPGRADE_POISON_TIMER); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeRepairing.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeRepairing.java index d9d00733..71e0f1ff 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeRepairing.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeRepairing.java @@ -3,10 +3,10 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.world.World; public class LivingArmourUpgradeRepairing extends LivingArmourUpgrade { @@ -22,11 +22,11 @@ public class LivingArmourUpgradeRepairing extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (delay <= 0) { delay = repairDelay[this.level]; - EntityEquipmentSlot randomSlot = EntityEquipmentSlot.values()[2 + world.rand.nextInt(4)]; + EquipmentSlotType randomSlot = EquipmentSlotType.values()[2 + world.rand.nextInt(4)]; ItemStack repairStack = player.getItemStackFromSlot(randomSlot); if (!repairStack.isEmpty()) { if (repairStack.isItemStackDamageable() && repairStack.isItemDamaged()) { @@ -57,12 +57,12 @@ public class LivingArmourUpgradeRepairing extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger("repairingDelay", delay); } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { delay = tag.getInteger("repairingDelay"); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSelfSacrifice.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSelfSacrifice.java index 4b68bb79..997a72ab 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSelfSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSelfSacrifice.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class LivingArmourUpgradeSelfSacrifice extends LivingArmourUpgrade { //TODO: Add extra effects for higher levels @@ -33,12 +33,12 @@ public class LivingArmourUpgradeSelfSacrifice extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSolarPowered.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSolarPowered.java index 114508d2..810a9673 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSolarPowered.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSolarPowered.java @@ -3,11 +3,11 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.DamageSource; import net.minecraft.world.World; @@ -25,7 +25,7 @@ public class LivingArmourUpgradeSolarPowered extends LivingArmourUpgrade { } @Override - public double getArmourProtection(EntityLivingBase wearer, DamageSource source) { + public double getArmourProtection(LivingEntity wearer, DamageSource source) { if (wearer.getEntityWorld().canSeeSky(wearer.getPosition()) && wearer.getEntityWorld().provider.isDaytime()) { return protectionLevel[this.level]; } @@ -34,7 +34,7 @@ public class LivingArmourUpgradeSolarPowered extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { counter++; if (world.canSeeSky(player.getPosition()) && world.provider.isDaytime()) { if (counter % regenCooldown[this.level] == 0 && player.getHealth() < player.getMaxHealth()) { @@ -42,7 +42,7 @@ public class LivingArmourUpgradeSolarPowered extends LivingArmourUpgrade { } if (fireResistTime[this.level] != 0 && counter % fireResistCooldown[this.level] == 0) { - player.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, fireResistTime[this.level], 0, false, false)); + player.addPotionEffect(new EffectInstance(Effects.FIRE_RESISTANCE, fireResistTime[this.level], 0, false, false)); } } } @@ -63,12 +63,12 @@ public class LivingArmourUpgradeSolarPowered extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(BloodMagic.MODID + ".tracker.solarPowered", counter); } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { counter = tag.getInteger(BloodMagic.MODID + ".tracker.solarPowered"); } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSpeed.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSpeed.java index 3a0a2890..4b595b5b 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSpeed.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSpeed.java @@ -5,16 +5,12 @@ import WayofTime.bloodmagic.livingArmour.ILivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import com.google.common.collect.HashMultimap; import com.google.common.collect.Multimap; -import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.attributes.AttributeModifier; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.world.World; -import org.apache.commons.codec.binary.StringUtils; - -import java.util.UUID; public class LivingArmourUpgradeSpeed extends LivingArmourUpgrade { public static final int[] costs = new int[]{3, 7, 13, 26, 42, 60, 90, 130, 180, 250}; @@ -33,14 +29,14 @@ public class LivingArmourUpgradeSpeed extends LivingArmourUpgrade { } @Override - public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { + public void onTick(World world, PlayerEntity player, ILivingArmour livingArmour) { if (player.isSprinting()) { if (sprintSpeedTime[this.level] > 0) { - player.addPotionEffect(new PotionEffect(MobEffects.SPEED, sprintSpeedTime[this.level], sprintSpeedLevel[this.level], false, false)); + player.addPotionEffect(new EffectInstance(Effects.SPEED, sprintSpeedTime[this.level], sprintSpeedLevel[this.level], false, false)); } - if (sprintRegenTime[this.level] > 0 && !player.isPotionActive(MobEffects.REGENERATION)) { - player.addPotionEffect(new PotionEffect(MobEffects.REGENERATION, sprintRegenTime[this.level], 0, false, false)); + if (sprintRegenTime[this.level] > 0 && !player.isPotionActive(Effects.REGENERATION)) { + player.addPotionEffect(new EffectInstance(Effects.REGENERATION, sprintRegenTime[this.level], 0, false, false)); } } } @@ -75,12 +71,12 @@ public class LivingArmourUpgradeSpeed extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSprintAttack.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSprintAttack.java index e4963af3..4b9fa00b 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSprintAttack.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeSprintAttack.java @@ -2,10 +2,10 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class LivingArmourUpgradeSprintAttack extends LivingArmourUpgrade { public static final int[] costs = new int[]{3, 7, 15, 25, 40}; @@ -17,7 +17,7 @@ public class LivingArmourUpgradeSprintAttack extends LivingArmourUpgrade { } @Override - public double getAdditionalDamageOnHit(double damage, EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getAdditionalDamageOnHit(double damage, PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { if (wearer.isSprinting()) { return getDamageModifier(); } @@ -26,7 +26,7 @@ public class LivingArmourUpgradeSprintAttack extends LivingArmourUpgrade { } @Override - public double getKnockbackOnHit(EntityPlayer wearer, EntityLivingBase hitEntity, ItemStack weapon) { + public double getKnockbackOnHit(PlayerEntity wearer, LivingEntity hitEntity, ItemStack weapon) { if (wearer.isSprinting()) { return getKnockbackModifier(); } @@ -58,12 +58,12 @@ public class LivingArmourUpgradeSprintAttack extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeStepAssist.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeStepAssist.java index 9392f6ec..26cdf8e3 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeStepAssist.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeStepAssist.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.livingArmour.upgrade; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class LivingArmourUpgradeStepAssist extends LivingArmourUpgrade { public static final int[] costs = new int[]{20}; @@ -35,12 +35,12 @@ public class LivingArmourUpgradeStepAssist extends LivingArmourUpgrade { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { // EMPTY } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { // EMPTY } diff --git a/src/main/java/WayofTime/bloodmagic/meteor/Meteor.java b/src/main/java/WayofTime/bloodmagic/meteor/Meteor.java index 55f5728f..bd5d9158 100644 --- a/src/main/java/WayofTime/bloodmagic/meteor/Meteor.java +++ b/src/main/java/WayofTime/bloodmagic/meteor/Meteor.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.meteor; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -32,7 +32,7 @@ public class Meteor { this.maxWeight = weight; } - public void generateMeteor(World world, BlockPos pos, IBlockState fillerBlock, double radiusModifier, double explosionModifier, double fillerChance) { + public void generateMeteor(World world, BlockPos pos, BlockState fillerBlock, double radiusModifier, double explosionModifier, double fillerChance) { world.newExplosion(null, pos.getX(), pos.getY(), pos.getZ(), (float) (explosionStrength * explosionModifier), true, true); int radius = (int) Math.ceil(getRadius() * radiusModifier); double floatingRadius = getRadius() * radiusModifier; @@ -45,10 +45,10 @@ public class Meteor { } BlockPos newPos = pos.add(i, j, k); - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); if (world.isAirBlock(newPos) || Utils.isBlockLiquid(state)) { - IBlockState placedState = getRandomOreFromComponents(fillerBlock, fillerChance); + BlockState placedState = getRandomOreFromComponents(fillerBlock, fillerChance); if (placedState != null) { world.setBlockState(newPos, placedState); } @@ -59,13 +59,13 @@ public class Meteor { } //fillerChance is the chance that the filler block will NOT be placed - public IBlockState getRandomOreFromComponents(IBlockState fillerBlock, double fillerChance) { + public BlockState getRandomOreFromComponents(BlockState fillerBlock, double fillerChance) { int goal = RAND.nextInt(getMaxWeight()); for (MeteorComponent component : getComponents()) { goal -= component.getWeight(); if (goal < 0) { - IBlockState state = component.getStateFromOre(); + BlockState state = component.getStateFromOre(); if (state != null) { return state; } else { diff --git a/src/main/java/WayofTime/bloodmagic/meteor/MeteorComponent.java b/src/main/java/WayofTime/bloodmagic/meteor/MeteorComponent.java index df810fe5..5e820a31 100644 --- a/src/main/java/WayofTime/bloodmagic/meteor/MeteorComponent.java +++ b/src/main/java/WayofTime/bloodmagic/meteor/MeteorComponent.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.meteor; import WayofTime.bloodmagic.util.Utils; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.common.registry.ForgeRegistries; @@ -21,7 +21,7 @@ public class MeteorComponent { this.oreName = oreName; } - public IBlockState getStateFromOre() { + public BlockState getStateFromOre() { if (oreName.contains(":")) { String[] stringList = oreName.split(":"); String domain = stringList[0]; @@ -40,9 +40,9 @@ public class MeteorComponent { List list = OreDictionary.getOres(oreName); if (list != null && !list.isEmpty()) { for (ItemStack stack : list) { - if (stack != null && stack.getItem() instanceof ItemBlock) { - Block block = ((ItemBlock) stack.getItem()).getBlock(); - IBlockState state = block.getStateFromMeta(stack.getItemDamage()); + if (stack != null && stack.getItem() instanceof BlockItem) { + Block block = ((BlockItem) stack.getItem()).getBlock(); + BlockState state = block.getStateFromMeta(stack.getItemDamage()); return state; } diff --git a/src/main/java/WayofTime/bloodmagic/meteor/MeteorConfigHandler.java b/src/main/java/WayofTime/bloodmagic/meteor/MeteorConfigHandler.java index e72de2e3..0be375e3 100644 --- a/src/main/java/WayofTime/bloodmagic/meteor/MeteorConfigHandler.java +++ b/src/main/java/WayofTime/bloodmagic/meteor/MeteorConfigHandler.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.util.BMLog; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.google.common.collect.Sets; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; import net.minecraft.item.ItemStack; import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.filefilter.FileFilterUtils; diff --git a/src/main/java/WayofTime/bloodmagic/meteor/MeteorRegistry.java b/src/main/java/WayofTime/bloodmagic/meteor/MeteorRegistry.java index aaf4d0b3..a74f5c43 100644 --- a/src/main/java/WayofTime/bloodmagic/meteor/MeteorRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/meteor/MeteorRegistry.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.meteor; import com.google.common.collect.Maps; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -36,7 +36,7 @@ public class MeteorRegistry { return null; } - public static void generateMeteorForItem(ItemStack stack, World world, BlockPos pos, IBlockState fillerBlock, double radiusModifier, double explosionModifier, double fillerChance) { + public static void generateMeteorForItem(ItemStack stack, World world, BlockPos pos, BlockState fillerBlock, double radiusModifier, double explosionModifier, double fillerChance) { Meteor meteor = getMeteorForItem(stack); if (meteor != null) meteor.generateMeteor(world, pos, fillerBlock, radiusModifier, explosionModifier, fillerChance); diff --git a/src/main/java/WayofTime/bloodmagic/network/BloodMagicPacketHandler.java b/src/main/java/WayofTime/bloodmagic/network/BloodMagicPacketHandler.java index 98856381..06f2c1a0 100644 --- a/src/main/java/WayofTime/bloodmagic/network/BloodMagicPacketHandler.java +++ b/src/main/java/WayofTime/bloodmagic/network/BloodMagicPacketHandler.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.network; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.util.ChatUtil; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.tileentity.TileEntity; import net.minecraftforge.fml.common.network.NetworkRegistry; import net.minecraftforge.fml.common.network.simpleimpl.IMessage; @@ -31,7 +31,7 @@ public class BloodMagicPacketHandler { sendToAllAround(message, te, 64); } - public static void sendTo(IMessage message, EntityPlayerMP player) { + public static void sendTo(IMessage message, ServerPlayerEntity player) { INSTANCE.sendTo(message, player); } } diff --git a/src/main/java/WayofTime/bloodmagic/network/KeyProcessor.java b/src/main/java/WayofTime/bloodmagic/network/KeyProcessor.java index d3620782..513e56cc 100644 --- a/src/main/java/WayofTime/bloodmagic/network/KeyProcessor.java +++ b/src/main/java/WayofTime/bloodmagic/network/KeyProcessor.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.network; import WayofTime.bloodmagic.client.key.IKeybindable; import WayofTime.bloodmagic.client.key.KeyBindings; import io.netty.buffer.ByteBuf; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.network.simpleimpl.IMessage; import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; @@ -35,7 +35,7 @@ public class KeyProcessor implements IMessage, IMessageHandler effects) { + public static ItemStack setEffects(ItemStack stack, Collection effects) { if (effects.isEmpty()) { return stack; } else { - NBTTagCompound nbttagcompound = stack.hasTagCompound() ? stack.getTagCompound() : new NBTTagCompound(); - NBTTagList nbttaglist = new NBTTagList(); + CompoundNBT nbttagcompound = stack.hasTagCompound() ? stack.getTagCompound() : new CompoundNBT(); + ListNBT nbttaglist = new ListNBT(); - for (PotionEffect potioneffect : effects) { - nbttaglist.appendTag(potioneffect.writeCustomPotionEffectToNBT(new NBTTagCompound())); + for (EffectInstance potioneffect : effects) { + nbttaglist.appendTag(potioneffect.writeCustomPotionEffectToNBT(new CompoundNBT())); } nbttagcompound.setTag("CustomPotionEffects", nbttaglist); @@ -119,19 +119,19 @@ public class BMPotionUtils { } } - public static AlchemyTablePotionAugmentRecipe getLengthAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, PotionEffect baseEffect, double lengthAugment) { + public static AlchemyTablePotionAugmentRecipe getLengthAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, EffectInstance baseEffect, double lengthAugment) { return new AlchemyTablePotionAugmentRecipe(lpDrained, ticksRequired, tierRequired, inputItems, baseEffect, lengthAugment, 0); } - public static AlchemyTablePotionAugmentRecipe getPowerAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, PotionEffect baseEffect, int powerAugment) { + public static AlchemyTablePotionAugmentRecipe getPowerAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, EffectInstance baseEffect, int powerAugment) { return new AlchemyTablePotionAugmentRecipe(lpDrained, ticksRequired, tierRequired, inputItems, baseEffect, 0, powerAugment); } - public static AlchemyTablePotionAugmentRecipe getLengthAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, PotionEffect baseEffect, double lengthAugment) { + public static AlchemyTablePotionAugmentRecipe getLengthAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, EffectInstance baseEffect, double lengthAugment) { return new AlchemyTablePotionAugmentRecipe(lpDrained, ticksRequired, tierRequired, inputItem, baseEffect, lengthAugment, 0); } - public static AlchemyTablePotionAugmentRecipe getPowerAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, PotionEffect baseEffect, int powerAugment) { + public static AlchemyTablePotionAugmentRecipe getPowerAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, EffectInstance baseEffect, int powerAugment) { return new AlchemyTablePotionAugmentRecipe(lpDrained, ticksRequired, tierRequired, inputItem, baseEffect, 0, powerAugment); } } diff --git a/src/main/java/WayofTime/bloodmagic/potion/PotionBloodMagic.java b/src/main/java/WayofTime/bloodmagic/potion/PotionBloodMagic.java index d9d552b5..4aa8bb2c 100644 --- a/src/main/java/WayofTime/bloodmagic/potion/PotionBloodMagic.java +++ b/src/main/java/WayofTime/bloodmagic/potion/PotionBloodMagic.java @@ -2,14 +2,14 @@ package WayofTime.bloodmagic.potion; import WayofTime.bloodmagic.BloodMagic; import net.minecraft.client.Minecraft; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.LivingEntity; +import net.minecraft.potion.Effect; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; -public class PotionBloodMagic extends Potion { +public class PotionBloodMagic extends Effect { public static ResourceLocation texture = new ResourceLocation(BloodMagic.MODID, "textures/misc/potions.png"); public PotionBloodMagic(String name, boolean badEffect, int potionColor, int iconIndexX, int iconIndexY) { @@ -19,22 +19,22 @@ public class PotionBloodMagic extends Potion { } @Override - public boolean shouldRenderInvText(PotionEffect effect) { + public boolean shouldRenderInvText(EffectInstance effect) { return true; } - public PotionEffect apply(EntityLivingBase entity, int duration) { + public EffectInstance apply(LivingEntity entity, int duration) { return apply(entity, duration, 0); } - public PotionEffect apply(EntityLivingBase entity, int duration, int level) { - PotionEffect effect = new PotionEffect(this, duration, level, false, false); + public EffectInstance apply(LivingEntity entity, int duration, int level) { + EffectInstance effect = new EffectInstance(this, duration, level, false, false); entity.addPotionEffect(effect); return effect; } - public int getLevel(EntityLivingBase entity) { - PotionEffect effect = entity.getActivePotionEffect(this); + public int getLevel(LivingEntity entity) { + EffectInstance effect = entity.getActivePotionEffect(this); if (effect != null) { return effect.getAmplifier(); } @@ -42,7 +42,7 @@ public class PotionBloodMagic extends Potion { } @Override - public boolean shouldRender(PotionEffect effect) { + public boolean shouldRender(EffectInstance effect) { return true; } diff --git a/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java b/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java index a2805904..a2ce2462 100644 --- a/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java +++ b/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java @@ -5,12 +5,12 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.event.SacrificeKnifeUsedEvent; import com.google.common.collect.Lists; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.IProjectile; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.projectile.EntityArrow; -import net.minecraft.entity.projectile.EntityThrowable; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.AbstractArrowEntity; +import net.minecraft.entity.projectile.ThrowableEntity; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.DamageSource; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.world.World; @@ -26,12 +26,12 @@ import java.util.Map; @Mod.EventBusSubscriber(modid = BloodMagic.MODID) public class PotionEventHandlers { - public static Map> flightListMap = new HashMap<>(); - public static Map> noGravityListMap = new HashMap<>(); + public static Map> flightListMap = new HashMap<>(); + public static Map> noGravityListMap = new HashMap<>(); @SubscribeEvent public static void onLivingJumpEvent(LivingEvent.LivingJumpEvent event) { - EntityLivingBase eventEntityLiving = event.getEntityLiving(); + LivingEntity eventEntityLiving = event.getEntityLiving(); if (eventEntityLiving.isPotionActive(RegistrarBloodMagic.BOOST)) { int i = eventEntityLiving.getActivePotionEffect(RegistrarBloodMagic.BOOST).getAmplifier(); @@ -44,7 +44,7 @@ public class PotionEventHandlers { @SubscribeEvent public static void onLivingFall(LivingFallEvent event) { - EntityLivingBase eventEntityLiving = event.getEntityLiving(); + LivingEntity eventEntityLiving = event.getEntityLiving(); if (eventEntityLiving.isPotionActive(RegistrarBloodMagic.HEAVY_HEART)) { int i = eventEntityLiving.getActivePotionEffect(RegistrarBloodMagic.HEAVY_HEART).getAmplifier() + 1; @@ -55,11 +55,11 @@ public class PotionEventHandlers { @SubscribeEvent public static void onEntityUpdate(LivingEvent.LivingUpdateEvent event) { - EntityLivingBase eventEntityLiving = event.getEntityLiving(); - List flightList = flightListMap.getOrDefault(eventEntityLiving.getEntityWorld(), Lists.newArrayList()); + LivingEntity eventEntityLiving = event.getEntityLiving(); + List flightList = flightListMap.getOrDefault(eventEntityLiving.getEntityWorld(), Lists.newArrayList()); - if (eventEntityLiving instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) eventEntityLiving; + if (eventEntityLiving instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) eventEntityLiving; if (!player.world.isRemote) { if (player.isPotionActive(RegistrarBloodMagic.FLIGHT)) { if (!player.isSpectator() && !player.capabilities.allowFlying) { @@ -92,7 +92,7 @@ public class PotionEventHandlers { // } // } // } - List noGravityList = noGravityListMap.getOrDefault(event.getEntityLiving().getEntityWorld(), Lists.newArrayList()); + List noGravityList = noGravityListMap.getOrDefault(event.getEntityLiving().getEntityWorld(), Lists.newArrayList()); if (eventEntityLiving.isPotionActive(RegistrarBloodMagic.SUSPENDED) && !eventEntityLiving.hasNoGravity()) { eventEntityLiving.setNoGravity(true); noGravityList.add(eventEntityLiving); @@ -102,7 +102,7 @@ public class PotionEventHandlers { } if (eventEntityLiving.isPotionActive(RegistrarBloodMagic.GROUNDED)) - if (eventEntityLiving instanceof EntityPlayer && ((EntityPlayer) eventEntityLiving).capabilities.isFlying) + if (eventEntityLiving instanceof PlayerEntity && ((PlayerEntity) eventEntityLiving).capabilities.isFlying) eventEntityLiving.motionY -= (0.05D * (double) (eventEntityLiving.getActivePotionEffect(RegistrarBloodMagic.GROUNDED).getAmplifier() + 1) - eventEntityLiving.motionY) * 0.2D; else eventEntityLiving.motionY -= (0.1D * (double) (eventEntityLiving.getActivePotionEffect(RegistrarBloodMagic.GROUNDED).getAmplifier() + 1) - eventEntityLiving.motionY) * 0.2D; @@ -120,10 +120,10 @@ public class PotionEventHandlers { Entity throwingEntity = null; - if (projectile instanceof EntityArrow) - throwingEntity = ((EntityArrow) projectile).shootingEntity; - else if (projectile instanceof EntityThrowable) - throwingEntity = ((EntityThrowable) projectile).getThrower(); + if (projectile instanceof AbstractArrowEntity) + throwingEntity = ((AbstractArrowEntity) projectile).shootingEntity; + else if (projectile instanceof ThrowableEntity) + throwingEntity = ((ThrowableEntity) projectile).getThrower(); if (throwingEntity != null && throwingEntity.equals(eventEntityLiving)) continue; @@ -161,7 +161,7 @@ public class PotionEventHandlers { @SubscribeEvent public static void onPlayerRespawn(PlayerEvent.Clone event) { if (event.isWasDeath()) - event.getEntityPlayer().addPotionEffect(new PotionEffect(RegistrarBloodMagic.SOUL_FRAY, 400)); + event.getEntityPlayer().addPotionEffect(new EffectInstance(RegistrarBloodMagic.SOUL_FRAY, 400)); } @SubscribeEvent diff --git a/src/main/java/WayofTime/bloodmagic/proxy/ClientProxy.java b/src/main/java/WayofTime/bloodmagic/proxy/ClientProxy.java index 204d1db4..31c3d98e 100644 --- a/src/main/java/WayofTime/bloodmagic/proxy/ClientProxy.java +++ b/src/main/java/WayofTime/bloodmagic/proxy/ClientProxy.java @@ -23,8 +23,8 @@ import WayofTime.bloodmagic.util.Constants; import com.google.common.collect.ImmutableMap; import net.minecraft.client.Minecraft; -import net.minecraft.client.renderer.entity.RenderManager; -import net.minecraft.client.renderer.entity.RenderPlayer; +import net.minecraft.client.renderer.entity.EntityRendererManager; +import net.minecraft.client.renderer.entity.PlayerRenderer; import net.minecraft.potion.PotionUtils; import net.minecraft.util.ResourceLocation; import net.minecraftforge.client.model.ModelLoaderRegistry; @@ -127,9 +127,9 @@ public class ClientProxy extends CommonProxy { } private void addElytraLayer() { - RenderManager renderManager = Minecraft.getMinecraft().getRenderManager(); + EntityRendererManager renderManager = Minecraft.getMinecraft().getRenderManager(); try { - Map skinMap = ObfuscationReflectionHelper.getPrivateValue(RenderManager.class, renderManager, "skinMap", "field_178636_l"); + Map skinMap = ObfuscationReflectionHelper.getPrivateValue(EntityRendererManager.class, renderManager, "skinMap", "field_178636_l"); skinMap.get("default").addLayer(new LayerBloodElytra(skinMap.get("default"))); skinMap.get("slim").addLayer(new LayerBloodElytra(skinMap.get("slim"))); BMLog.DEBUG.info("Elytra layer added"); diff --git a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTableDyeableRecipe.java b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTableDyeableRecipe.java index 93c0feb9..0ea30ab0 100644 --- a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTableDyeableRecipe.java +++ b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTableDyeableRecipe.java @@ -2,11 +2,11 @@ package WayofTime.bloodmagic.recipe.alchemyTable; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.init.Items; -import net.minecraft.item.EnumDyeColor; -import net.minecraft.item.ItemBanner; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.item.*; +import net.minecraft.item.DyeColor; +import net.minecraft.item.BannerItem; +import net.minecraft.item.Items; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.oredict.OreDictionary; @@ -65,16 +65,16 @@ public class AlchemyTableDyeableRecipe extends AlchemyTableRecipe { if (tagOrDyeStack.getItem() == Items.NAME_TAG) { if (!outputStack.hasTagCompound()) { - outputStack.setTagCompound(new NBTTagCompound()); + outputStack.setTagCompound(new CompoundNBT()); } outputStack.getTagCompound().setString(Constants.NBT.COLOR, tagOrDyeStack.getDisplayName()); return outputStack; } else { - EnumDyeColor dyeColor = ItemBanner.getBaseColor(tagOrDyeStack); + DyeColor dyeColor = BannerItem.getBaseColor(tagOrDyeStack); if (!outputStack.hasTagCompound()) { - outputStack.setTagCompound(new NBTTagCompound()); + outputStack.setTagCompound(new CompoundNBT()); } outputStack.getTagCompound().setString(Constants.NBT.COLOR, String.valueOf(Utils.DYE_COLOR_VALUES.getOrDefault(dyeColor, 0))); diff --git a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java index 17162a39..9d6c401d 100644 --- a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java +++ b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.recipe.alchemyTable; import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.potion.BMPotionUtils; import net.minecraft.item.ItemStack; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.Effect; +import net.minecraft.potion.EffectInstance; import net.minecraft.potion.PotionUtils; import java.util.ArrayList; @@ -14,9 +14,9 @@ import java.util.List; public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe { protected double lengthAugment = 0; protected int powerAugment = 0; - protected Potion wantedPotion; + protected Effect wantedPotion; - public AlchemyTablePotionAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, PotionEffect baseEffect, double lengthAugment, int powerAugment) { + public AlchemyTablePotionAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, EffectInstance baseEffect, double lengthAugment, int powerAugment) { super(lpDrained, ticksRequired, tierRequired, inputItems, baseEffect); ArrayList recipe = new ArrayList<>(); @@ -30,14 +30,14 @@ public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe { this.powerAugment = powerAugment; } - public AlchemyTablePotionAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, PotionEffect baseEffect, double lengthAugment, int powerAugment) { + public AlchemyTablePotionAugmentRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, EffectInstance baseEffect, double lengthAugment, int powerAugment) { this(lpDrained, ticksRequired, tierRequired, Collections.singletonList(inputItem), baseEffect, lengthAugment, powerAugment); } @Override public boolean isPotionFlaskValidInput(ItemStack stack) { - List effectList = PotionUtils.getEffectsFromStack(stack); - for (PotionEffect eff : effectList) { + List effectList = PotionUtils.getEffectsFromStack(stack); + for (EffectInstance eff : effectList) { if (eff.getPotion() == wantedPotion) { double currentAugment = BMPotionUtils.getLengthAugment(stack, wantedPotion); @@ -53,9 +53,9 @@ public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe { if (inputStack.isEmpty()) { ItemStack outputStack = new ItemStack(RegistrarBloodMagicItems.POTION_FLASK); - List effectList = new ArrayList<>(); + List effectList = new ArrayList<>(); int potionLength = wantedPotion.isInstant() ? 1 : BMPotionUtils.getAugmentedLength(baseEffect.getDuration(), lengthAugment, powerAugment - baseEffect.getAmplifier()); - effectList.add(new PotionEffect(wantedPotion, potionLength, powerAugment - baseEffect.getAmplifier())); + effectList.add(new EffectInstance(wantedPotion, potionLength, powerAugment - baseEffect.getAmplifier())); BMPotionUtils.setEffects(outputStack, effectList); @@ -64,15 +64,15 @@ public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe { ItemStack outputStack = inputStack.copy(); - List effectList = PotionUtils.getEffectsFromStack(outputStack); - List newEffectList = new ArrayList<>(); + List effectList = PotionUtils.getEffectsFromStack(outputStack); + List newEffectList = new ArrayList<>(); - for (PotionEffect effect : effectList) { + for (EffectInstance effect : effectList) { if (effect.getPotion() == wantedPotion) { double currentLengthAugment = Math.max(lengthAugment, BMPotionUtils.getLengthAugment(outputStack, wantedPotion)); int currentPowerAugment = Math.max(powerAugment, effect.getAmplifier()); int potionLength = wantedPotion.isInstant() ? 1 : BMPotionUtils.getAugmentedLength(baseEffect.getDuration(), currentLengthAugment, currentPowerAugment); - newEffectList.add(new PotionEffect(wantedPotion, potionLength, currentPowerAugment)); + newEffectList.add(new EffectInstance(wantedPotion, potionLength, currentPowerAugment)); BMPotionUtils.setLengthAugment(outputStack, wantedPotion, currentLengthAugment); } else { newEffectList.add(effect); @@ -84,10 +84,10 @@ public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe { return outputStack; } - public static ItemStack getAugmentedPotionFlask(PotionEffect baseEffect) { + public static ItemStack getAugmentedPotionFlask(EffectInstance baseEffect) { ItemStack outputStack = new ItemStack(RegistrarBloodMagicItems.POTION_FLASK); - List effectList = new ArrayList<>(); + List effectList = new ArrayList<>(); effectList.add(baseEffect); BMPotionUtils.setEffects(outputStack, effectList); diff --git a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionRecipe.java b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionRecipe.java index 172af124..6a7874d9 100644 --- a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionRecipe.java +++ b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionRecipe.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.recipe.alchemyTable; import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.potion.PotionUtils; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -16,10 +16,10 @@ import java.util.List; public class AlchemyTablePotionRecipe extends AlchemyTableRecipe { public static final ItemStack basePotionFlaskStack = new ItemStack(RegistrarBloodMagicItems.POTION_FLASK, 1, OreDictionary.WILDCARD_VALUE); public static final int temporaryMaximumEffectsOnThePotionFlaskYesThisIsALongFieldItIsJustSoIRemember = 3; - protected PotionEffect baseEffect; + protected EffectInstance baseEffect; protected double baseAddedImpurity = 5; - public AlchemyTablePotionRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, PotionEffect baseEffect) { + public AlchemyTablePotionRecipe(int lpDrained, int ticksRequired, int tierRequired, List inputItems, EffectInstance baseEffect) { super(basePotionFlaskStack, lpDrained, ticksRequired, tierRequired); ArrayList recipe = new ArrayList<>(); @@ -30,7 +30,7 @@ public class AlchemyTablePotionRecipe extends AlchemyTableRecipe { this.baseEffect = baseEffect; } - public AlchemyTablePotionRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, PotionEffect baseEffect) { + public AlchemyTablePotionRecipe(int lpDrained, int ticksRequired, int tierRequired, ItemStack inputItem, EffectInstance baseEffect) { this(lpDrained, ticksRequired, tierRequired, Collections.singletonList(inputItem), baseEffect); } @@ -101,12 +101,12 @@ public class AlchemyTablePotionRecipe extends AlchemyTableRecipe { } public boolean isPotionFlaskValidInput(ItemStack stack) { - List effectList = PotionUtils.getEffectsFromStack(stack); + List effectList = PotionUtils.getEffectsFromStack(stack); if (effectList.size() >= temporaryMaximumEffectsOnThePotionFlaskYesThisIsALongFieldItIsJustSoIRemember) { return false; } - for (PotionEffect eff : effectList) { + for (EffectInstance eff : effectList) { if (eff.getPotion() == baseEffect.getPotion()) { return false; } @@ -119,7 +119,7 @@ public class AlchemyTablePotionRecipe extends AlchemyTableRecipe { if (inputStack.isEmpty()) { ItemStack outputStack = new ItemStack(RegistrarBloodMagicItems.POTION_FLASK); - List effectList = new ArrayList<>(); + List effectList = new ArrayList<>(); effectList.add(baseEffect); PotionUtils.appendEffects(outputStack, effectList); @@ -129,7 +129,7 @@ public class AlchemyTablePotionRecipe extends AlchemyTableRecipe { ItemStack outputStack = inputStack.copy(); - List effectList = PotionUtils.getEffectsFromStack(outputStack); + List effectList = PotionUtils.getEffectsFromStack(outputStack); effectList.add(baseEffect); PotionUtils.appendEffects(outputStack, effectList); diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModCorruptionBlocks.java b/src/main/java/WayofTime/bloodmagic/registry/ModCorruptionBlocks.java index 80525583..c18f6f11 100644 --- a/src/main/java/WayofTime/bloodmagic/registry/ModCorruptionBlocks.java +++ b/src/main/java/WayofTime/bloodmagic/registry/ModCorruptionBlocks.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.registry; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.inversion.CorruptionHandler; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; public class ModCorruptionBlocks { public static void init() { diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java index 6a748789..0d7ee452 100644 --- a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java +++ b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java @@ -6,15 +6,15 @@ import java.util.List; import java.util.Map; import java.util.Map.Entry; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; -import net.minecraft.init.MobEffects; +import net.minecraft.block.Blocks; +import net.minecraft.item.Items; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; -import net.minecraft.potion.PotionEffect; import net.minecraft.util.ResourceLocation; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraftforge.oredict.OreDictionary; import org.apache.commons.lang3.tuple.Pair; @@ -149,30 +149,30 @@ public class ModRecipes { } public static void addPotionRecipes() { - addPotionRecipe(1000, 1, new ItemStack(Items.GHAST_TEAR), new PotionEffect(MobEffects.REGENERATION, 450)); - addPotionRecipe(1000, 1, new ItemStack(Items.GOLDEN_CARROT), new PotionEffect(MobEffects.NIGHT_VISION, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.MAGMA_CREAM), new PotionEffect(MobEffects.FIRE_RESISTANCE, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.WATER_BUCKET), new PotionEffect(MobEffects.WATER_BREATHING, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.SUGAR), new PotionEffect(MobEffects.SPEED, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.SPECKLED_MELON), new PotionEffect(MobEffects.INSTANT_HEALTH, 1)); - addPotionRecipe(1000, 1, new ItemStack(Items.SPIDER_EYE), new PotionEffect(MobEffects.POISON, 450)); - addPotionRecipe(1000, 1, new ItemStack(Items.DYE, 1, 0), new PotionEffect(MobEffects.BLINDNESS, 450)); - addPotionRecipe(1000, 1, new ItemStack(Items.FERMENTED_SPIDER_EYE), new PotionEffect(MobEffects.WEAKNESS, 450)); - addPotionRecipe(1000, 1, new ItemStack(Items.BLAZE_POWDER), new PotionEffect(MobEffects.STRENGTH, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.FEATHER), new PotionEffect(MobEffects.JUMP_BOOST, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.CLAY_BALL), new PotionEffect(MobEffects.SLOWNESS, 450)); - addPotionRecipe(1000, 1, new ItemStack(Items.REDSTONE), new PotionEffect(MobEffects.HASTE, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.GLASS_BOTTLE), new PotionEffect(MobEffects.INVISIBILITY, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.POISONOUS_POTATO), new PotionEffect(MobEffects.SATURATION, 1)); - addPotionRecipe(1000, 1, new ItemStack(RegistrarBloodMagicItems.BLOOD_SHARD, 1, 0), new PotionEffect(MobEffects.HEALTH_BOOST, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Blocks.SLIME_BLOCK), new PotionEffect(RegistrarBloodMagic.BOUNCE, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.STRING), new PotionEffect(RegistrarBloodMagic.CLING, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.CAKE), new PotionEffect(RegistrarBloodMagic.FLIGHT, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.GHAST_TEAR), new EffectInstance(Effects.REGENERATION, 450)); + addPotionRecipe(1000, 1, new ItemStack(Items.GOLDEN_CARROT), new EffectInstance(Effects.NIGHT_VISION, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.MAGMA_CREAM), new EffectInstance(Effects.FIRE_RESISTANCE, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.WATER_BUCKET), new EffectInstance(Effects.WATER_BREATHING, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.SUGAR), new EffectInstance(Effects.SPEED, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.SPECKLED_MELON), new EffectInstance(Effects.INSTANT_HEALTH, 1)); + addPotionRecipe(1000, 1, new ItemStack(Items.SPIDER_EYE), new EffectInstance(Effects.POISON, 450)); + addPotionRecipe(1000, 1, new ItemStack(Items.DYE, 1, 0), new EffectInstance(Effects.BLINDNESS, 450)); + addPotionRecipe(1000, 1, new ItemStack(Items.FERMENTED_SPIDER_EYE), new EffectInstance(Effects.WEAKNESS, 450)); + addPotionRecipe(1000, 1, new ItemStack(Items.BLAZE_POWDER), new EffectInstance(Effects.STRENGTH, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.FEATHER), new EffectInstance(Effects.JUMP_BOOST, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.CLAY_BALL), new EffectInstance(Effects.SLOWNESS, 450)); + addPotionRecipe(1000, 1, new ItemStack(Items.REDSTONE), new EffectInstance(Effects.HASTE, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.GLASS_BOTTLE), new EffectInstance(Effects.INVISIBILITY, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.POISONOUS_POTATO), new EffectInstance(Effects.SATURATION, 1)); + addPotionRecipe(1000, 1, new ItemStack(RegistrarBloodMagicItems.BLOOD_SHARD, 1, 0), new EffectInstance(Effects.HEALTH_BOOST, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Blocks.SLIME_BLOCK), new EffectInstance(RegistrarBloodMagic.BOUNCE, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.STRING), new EffectInstance(RegistrarBloodMagic.CLING, 2 * 60 * 20)); + addPotionRecipe(1000, 1, new ItemStack(Items.CAKE), new EffectInstance(RegistrarBloodMagic.FLIGHT, 2 * 60 * 20)); - addPotionRecipe(1000, 1, new ItemStack(Items.BEETROOT), new PotionEffect(RegistrarBloodMagic.DEAFNESS, 450)); + addPotionRecipe(1000, 1, new ItemStack(Items.BEETROOT), new EffectInstance(RegistrarBloodMagic.DEAFNESS, 450)); } - public static void addPotionRecipe(int lpDrained, int tier, ItemStack inputStack, PotionEffect baseEffect) { + public static void addPotionRecipe(int lpDrained, int tier, ItemStack inputStack, EffectInstance baseEffect) { AlchemyTableRecipeRegistry.registerRecipe(new AlchemyTablePotionRecipe(lpDrained, 100, tier, inputStack, baseEffect)); List lengtheningList = new ArrayList<>(); @@ -211,7 +211,7 @@ public class ModRecipes { Map> textMap = new HashMap<>(); for (int tick : entry.getValue().getValue()) { List textList = new ArrayList<>(); - textList.add(new TextComponentTranslation("\u00A74%s", new TextComponentTranslation(messageBase + str + "." + tick))); + textList.add(new TranslationTextComponent("\u00A74%s", new TranslationTextComponent(messageBase + str + "." + tick))); textMap.put(tick, textList); } diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModRituals.java b/src/main/java/WayofTime/bloodmagic/registry/ModRituals.java index 57f5d24a..548b58b4 100644 --- a/src/main/java/WayofTime/bloodmagic/registry/ModRituals.java +++ b/src/main/java/WayofTime/bloodmagic/registry/ModRituals.java @@ -7,7 +7,7 @@ import WayofTime.bloodmagic.ritual.harvest.HarvestRegistry; import WayofTime.bloodmagic.ritual.harvest.HarvestHandlerPlantable; import WayofTime.bloodmagic.ritual.harvest.HarvestHandlerStem; import WayofTime.bloodmagic.ritual.harvest.HarvestHandlerTall; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; public class ModRituals { // TODO Move elsewhere diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModTranquilityHandlers.java b/src/main/java/WayofTime/bloodmagic/registry/ModTranquilityHandlers.java index d4fd77b7..e8d5b9d3 100644 --- a/src/main/java/WayofTime/bloodmagic/registry/ModTranquilityHandlers.java +++ b/src/main/java/WayofTime/bloodmagic/registry/ModTranquilityHandlers.java @@ -4,18 +4,18 @@ import WayofTime.bloodmagic.api.impl.BloodMagicAPI; import WayofTime.bloodmagic.incense.EnumTranquilityType; import WayofTime.bloodmagic.incense.IncenseTranquilityRegistry; import WayofTime.bloodmagic.incense.TranquilityStack; -import net.minecraft.block.BlockFire; -import net.minecraft.block.BlockGrass; -import net.minecraft.block.BlockLeaves; -import net.minecraft.block.BlockLog; +import net.minecraft.block.LeavesBlock; +import net.minecraft.block.LogBlock; +import net.minecraft.block.FireBlock; +import net.minecraft.block.GrassBlock; public class ModTranquilityHandlers { public static void init() { - IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof BlockLeaves ? new TranquilityStack(EnumTranquilityType.PLANT, 1.0D) : null); - IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof BlockFire ? new TranquilityStack(EnumTranquilityType.FIRE, 1.0D) : null); - IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof BlockGrass ? new TranquilityStack(EnumTranquilityType.EARTHEN, 0.5D) : null); - IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof BlockLog ? new TranquilityStack(EnumTranquilityType.TREE, 1.0D) : null); + IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof LeavesBlock ? new TranquilityStack(EnumTranquilityType.PLANT, 1.0D) : null); + IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof FireBlock ? new TranquilityStack(EnumTranquilityType.FIRE, 1.0D) : null); + IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof GrassBlock ? new TranquilityStack(EnumTranquilityType.EARTHEN, 0.5D) : null); + IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> block instanceof LogBlock ? new TranquilityStack(EnumTranquilityType.TREE, 1.0D) : null); IncenseTranquilityRegistry.registerTranquilityHandler((world, pos, block, state) -> BloodMagicAPI.INSTANCE.getValueManager().getTranquility().get(state)); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/AreaDescriptor.java b/src/main/java/WayofTime/bloodmagic/ritual/AreaDescriptor.java index e51a062d..cba24d19 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/AreaDescriptor.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/AreaDescriptor.java @@ -1,11 +1,11 @@ package WayofTime.bloodmagic.ritual; import WayofTime.bloodmagic.util.Constants; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.gen.structure.template.PlacementSettings; -import net.minecraft.world.gen.structure.template.Template; +import net.minecraft.world.gen.feature.template.PlacementSettings; +import net.minecraft.world.gen.feature.template.Template; import java.util.ArrayList; import java.util.Collections; @@ -27,11 +27,11 @@ public abstract class AreaDescriptor implements Iterator { public abstract void resetIterator(); - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { } - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { } @@ -205,13 +205,13 @@ public abstract class AreaDescriptor implements Iterator { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { minimumOffset = new BlockPos(tag.getInteger(Constants.NBT.X_COORD + "min"), tag.getInteger(Constants.NBT.Y_COORD + "min"), tag.getInteger(Constants.NBT.Z_COORD + "min")); maximumOffset = new BlockPos(tag.getInteger(Constants.NBT.X_COORD + "max"), tag.getInteger(Constants.NBT.Y_COORD + "max"), tag.getInteger(Constants.NBT.Z_COORD + "max")); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { tag.setInteger(Constants.NBT.X_COORD + "min", minimumOffset.getX()); tag.setInteger(Constants.NBT.Y_COORD + "min", minimumOffset.getY()); tag.setInteger(Constants.NBT.Z_COORD + "min", minimumOffset.getZ()); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/CapabilityRuneType.java b/src/main/java/WayofTime/bloodmagic/ritual/CapabilityRuneType.java index c8800b94..cebfc676 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/CapabilityRuneType.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/CapabilityRuneType.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.ritual; +import net.minecraft.nbt.ByteNBT; import net.minecraft.nbt.NBTBase; -import net.minecraft.nbt.NBTTagByte; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraftforge.common.capabilities.Capability; import java.util.concurrent.Callable; @@ -10,13 +10,13 @@ import java.util.concurrent.Callable; public final class CapabilityRuneType { public static class RuneTypeStorage implements Capability.IStorage { @Override - public NBTBase writeNBT(Capability capability, IRitualStone.Tile instance, EnumFacing side) { - return new NBTTagByte((byte) instance.getRuneType().ordinal()); + public NBTBase writeNBT(Capability capability, IRitualStone.Tile instance, Direction side) { + return new ByteNBT((byte) instance.getRuneType().ordinal()); } @Override - public void readNBT(Capability capability, IRitualStone.Tile instance, EnumFacing side, NBTBase nbt) { - instance.setRuneType(EnumRuneType.byMetadata(((NBTTagByte) nbt).getByte())); + public void readNBT(Capability capability, IRitualStone.Tile instance, Direction side, NBTBase nbt) { + instance.setRuneType(EnumRuneType.byMetadata(((ByteNBT) nbt).getByte())); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/EnumRuneType.java b/src/main/java/WayofTime/bloodmagic/ritual/EnumRuneType.java index d827c436..eb0734d6 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/EnumRuneType.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/EnumRuneType.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.item.types.ISubItem; import WayofTime.bloodmagic.util.Constants; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.IStringSerializable; import net.minecraft.util.text.TextFormatting; @@ -47,7 +47,7 @@ public enum EnumRuneType implements IStringSerializable, ISubItem { @Override public ItemStack getStack(int count) { ItemStack ret = new ItemStack(RegistrarBloodMagicItems.INSCRIPTION_TOOL, count, ordinal()); - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); tag.setInteger(Constants.NBT.USES, 10); ret.setTagCompound(tag); return ret; diff --git a/src/main/java/WayofTime/bloodmagic/ritual/IMasterRitualStone.java b/src/main/java/WayofTime/bloodmagic/ritual/IMasterRitualStone.java index 1ba75a6f..64e64175 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/IMasterRitualStone.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/IMasterRitualStone.java @@ -3,9 +3,9 @@ package WayofTime.bloodmagic.ritual; import WayofTime.bloodmagic.core.data.SoulNetwork; import WayofTime.bloodmagic.core.data.SoulTicket; import WayofTime.bloodmagic.soul.EnumDemonWillType; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -23,7 +23,7 @@ public interface IMasterRitualStone { SoulNetwork getOwnerNetwork(); - boolean activateRitual(ItemStack activationCrystal, EntityPlayer activator, Ritual ritual); + boolean activateRitual(ItemStack activationCrystal, PlayerEntity activator, Ritual ritual); void performRitual(World world, BlockPos pos); @@ -37,7 +37,7 @@ public interface IMasterRitualStone { void setActive(boolean active); - EnumFacing getDirection(); + Direction getDirection(); boolean areTanksEmpty(); @@ -49,15 +49,15 @@ public interface IMasterRitualStone { String getNextBlockRange(String range); - void provideInformationOfRitualToPlayer(EntityPlayer player); + void provideInformationOfRitualToPlayer(PlayerEntity player); - void provideInformationOfRangeToPlayer(EntityPlayer player, String range); + void provideInformationOfRangeToPlayer(PlayerEntity player, String range); - void provideInformationOfWillConfigToPlayer(EntityPlayer player, List typeList); + void provideInformationOfWillConfigToPlayer(PlayerEntity player, List typeList); - void setActiveWillConfig(EntityPlayer player, List typeList); + void setActiveWillConfig(PlayerEntity player, List typeList); - EnumReaderBoundaries setBlockRangeByBounds(EntityPlayer player, String range, BlockPos offset1, BlockPos offset2); + EnumReaderBoundaries setBlockRangeByBounds(PlayerEntity player, String range, BlockPos offset1, BlockPos offset2); List getActiveWillConfig(); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/Ritual.java b/src/main/java/WayofTime/bloodmagic/ritual/Ritual.java index d357c6c5..26d7f834 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/Ritual.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/Ritual.java @@ -3,13 +3,13 @@ package WayofTime.bloodmagic.ritual; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.soul.DemonWillHolder; import WayofTime.bloodmagic.soul.EnumDemonWillType; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -49,17 +49,17 @@ public abstract class Ritual { this(name, crystalLevel, activationCost, null, unlocalizedName); } - public void readFromNBT(NBTTagCompound tag) { - NBTTagList tags = tag.getTagList("areas", 10); + public void readFromNBT(CompoundNBT tag) { + ListNBT tags = tag.getTagList("areas", 10); if (tags.isEmpty()) { return; } for (int i = 0; i < tags.tagCount(); i++) { - NBTTagCompound newTag = tags.getCompoundTagAt(i); + CompoundNBT newTag = tags.getCompoundTagAt(i); String rangeKey = newTag.getString("key"); - NBTTagCompound storedTag = newTag.getCompoundTag("area"); + CompoundNBT storedTag = newTag.getCompoundTag("area"); AreaDescriptor desc = this.getBlockRange(rangeKey); if (desc != null) { desc.readFromNBT(storedTag); @@ -67,13 +67,13 @@ public abstract class Ritual { } } - public void writeToNBT(NBTTagCompound tag) { - NBTTagList tags = new NBTTagList(); + public void writeToNBT(CompoundNBT tag) { + ListNBT tags = new ListNBT(); for (Entry entry : modableRangeMap.entrySet()) { - NBTTagCompound newTag = new NBTTagCompound(); + CompoundNBT newTag = new CompoundNBT(); newTag.setString("key", entry.getKey()); - NBTTagCompound storedTag = new NBTTagCompound(); + CompoundNBT storedTag = new CompoundNBT(); entry.getValue().writeToNBT(storedTag); @@ -88,7 +88,7 @@ public abstract class Ritual { /** * Called when the player attempts to activate the ritual. *

- * {@link WayofTime.bloodmagic.tile.TileMasterRitualStone#activateRitual(ItemStack, EntityPlayer, Ritual)} + * {@link WayofTime.bloodmagic.tile.TileMasterRitualStone#activateRitual(ItemStack, PlayerEntity, Ritual)} * * @param masterRitualStone - The {@link IMasterRitualStone} that the ritual is bound to * @param player - The activating player @@ -96,7 +96,7 @@ public abstract class Ritual { * owner of the ritual if being reactivated. * @return - Whether activation was successful */ - public boolean activateRitual(IMasterRitualStone masterRitualStone, EntityPlayer player, UUID owner) { + public boolean activateRitual(IMasterRitualStone masterRitualStone, PlayerEntity player, UUID owner) { return true; } @@ -216,10 +216,10 @@ public abstract class Ritual { return horizontalRangeMap.get(range); } - public ITextComponent getErrorForBlockRangeOnFail(EntityPlayer player, String range, IMasterRitualStone master, BlockPos offset1, BlockPos offset2) { + public ITextComponent getErrorForBlockRangeOnFail(PlayerEntity player, String range, IMasterRitualStone master, BlockPos offset1, BlockPos offset2) { AreaDescriptor descriptor = this.getBlockRange(range); if (descriptor == null) { - return new TextComponentTranslation("ritual.bloodmagic.blockRange.tooBig", "?"); + return new TranslationTextComponent("ritual.bloodmagic.blockRange.tooBig", "?"); } List willConfig = master.getActiveWillConfig(); @@ -230,21 +230,21 @@ public abstract class Ritual { int maxHorizontal = this.getMaxHorizontalRadiusForRange(range, willConfig, holder); if (maxVolume > 0 && descriptor.getVolumeForOffsets(offset1, offset2) > maxVolume) { - return new TextComponentTranslation("ritual.bloodmagic.blockRange.tooBig", maxVolume); + return new TranslationTextComponent("ritual.bloodmagic.blockRange.tooBig", maxVolume); } else { - return new TextComponentTranslation("ritual.bloodmagic.blockRange.tooFar", maxVertical, maxHorizontal); + return new TranslationTextComponent("ritual.bloodmagic.blockRange.tooFar", maxVertical, maxHorizontal); } } - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { - return new ITextComponent[]{new TextComponentTranslation(this.getTranslationKey() + ".info")}; + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { + return new ITextComponent[]{new TranslationTextComponent(this.getTranslationKey() + ".info")}; } - public ITextComponent provideInformationOfRangeToPlayer(EntityPlayer player, String range) { + public ITextComponent provideInformationOfRangeToPlayer(PlayerEntity player, String range) { if (getListOfRanges().contains(range)) { - return new TextComponentTranslation(this.getTranslationKey() + "." + range + ".info"); + return new TranslationTextComponent(this.getTranslationKey() + "." + range + ".info"); } else { - return new TextComponentTranslation("ritual.bloodmagic.blockRange.noRange"); + return new TranslationTextComponent("ritual.bloodmagic.blockRange.noRange"); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/RitualComponent.java b/src/main/java/WayofTime/bloodmagic/ritual/RitualComponent.java index 92feb8ec..9af0c1ab 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/RitualComponent.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/RitualComponent.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.ritual; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; /** @@ -16,7 +16,7 @@ public class RitualComponent { this.runeType = runeType; } - public int getX(EnumFacing direction) { + public int getX(Direction direction) { switch (direction) { case EAST: return -this.getOffset().getZ(); @@ -33,7 +33,7 @@ public class RitualComponent { return this.getOffset().getY(); } - public int getZ(EnumFacing direction) { + public int getZ(Direction direction) { switch (direction) { case EAST: return this.getOffset().getX(); @@ -46,7 +46,7 @@ public class RitualComponent { } } - public BlockPos getOffset(EnumFacing direction) { + public BlockPos getOffset(Direction direction) { return new BlockPos(getX(direction), offset.getY(), getZ(direction)); } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/RitualManager.java b/src/main/java/WayofTime/bloodmagic/ritual/RitualManager.java index ff8aa0bc..70e5b951 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/RitualManager.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/RitualManager.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.util.BMLog; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.google.common.collect.Sets; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.util.DamageSource; import net.minecraftforge.common.config.Configuration; import net.minecraftforge.fml.common.discovery.ASMDataTable; @@ -107,7 +107,7 @@ public class RitualManager { return ritualsReverse.get(ritual); } - public ImperfectRitual getImperfectRitual(IBlockState state) { + public ImperfectRitual getImperfectRitual(BlockState state) { for (ImperfectRitual ritual : imperfectRituals.values()) if (ritual.getBlockRequirement().test(state)) return ritual; diff --git a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java index 38a405f9..ca4ecf43 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java @@ -2,9 +2,9 @@ package WayofTime.bloodmagic.ritual.harvest; import WayofTime.bloodmagic.util.BMLog; import net.minecraft.block.Block; -import net.minecraft.block.BlockCrops; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; +import net.minecraft.block.BlockState; +import net.minecraft.block.CropsBlock; +import net.minecraft.block.Blocks; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; import net.minecraft.util.ResourceLocation; @@ -51,7 +51,7 @@ public class HarvestHandlerPlantable implements IHarvestHandler { } @Override - public boolean harvest(World world, BlockPos pos, IBlockState state, List drops) { + public boolean harvest(World world, BlockPos pos, BlockState state, List drops) { NonNullList blockDrops = NonNullList.create(); state.getBlock().getDrops(blockDrops, world, pos, state, 0); boolean foundSeed = false; @@ -84,7 +84,7 @@ public class HarvestHandlerPlantable implements IHarvestHandler { } @Override - public boolean test(World world, BlockPos pos, IBlockState state) { + public boolean test(World world, BlockPos pos, BlockState state) { return HarvestRegistry.getStandardCrops().containsKey(state.getBlock()) && state.getBlock().getMetaFromState(state) == HarvestRegistry.getStandardCrops().get(state.getBlock()); } @@ -106,7 +106,7 @@ public class HarvestHandlerPlantable implements IHarvestHandler { Field names = pamRegistry.getDeclaredField("cropNames"); Method getCrop = pamRegistry.getMethod("getCrop", String.class); for (String name : (String[]) names.get(null)) { - BlockCrops crop = (BlockCrops) getCrop.invoke(null, name); + CropsBlock crop = (CropsBlock) getCrop.invoke(null, name); HarvestRegistry.registerStandardCrop(crop, crop.getMaxAge()); } } catch (ClassNotFoundException e) { diff --git a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerStem.java b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerStem.java index 7a0ef364..582b1dff 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerStem.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerStem.java @@ -1,11 +1,11 @@ package WayofTime.bloodmagic.ritual.harvest; -import net.minecraft.block.BlockPumpkin; -import net.minecraft.block.BlockStem; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; +import net.minecraft.block.PumpkinBlock; +import net.minecraft.block.StemBlock; +import net.minecraft.block.BlockState; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.NonNullList; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -17,27 +17,27 @@ import java.util.List; * Harvest handler for crops with stems such as Pumpkins and Melons. Rotation based crop blocks are a good reason * to use this (see pumpkins).
* Register a new crop for this handler with - * {@link HarvestRegistry#registerStemCrop(IBlockState, IBlockState)} + * {@link HarvestRegistry#registerStemCrop(BlockState, BlockState)} */ public class HarvestHandlerStem implements IHarvestHandler { public HarvestHandlerStem() { - for (EnumFacing facing : EnumFacing.HORIZONTALS) - HarvestRegistry.registerStemCrop(Blocks.PUMPKIN.getDefaultState().withProperty(BlockPumpkin.FACING, facing), Blocks.PUMPKIN_STEM.getDefaultState().withProperty(BlockStem.AGE, 7)); + for (Direction facing : Direction.HORIZONTALS) + HarvestRegistry.registerStemCrop(Blocks.PUMPKIN.getDefaultState().withProperty(PumpkinBlock.FACING, facing), Blocks.PUMPKIN_STEM.getDefaultState().withProperty(StemBlock.AGE, 7)); - HarvestRegistry.registerStemCrop(Blocks.MELON_BLOCK.getDefaultState(), Blocks.MELON_STEM.getDefaultState().withProperty(BlockStem.AGE, 7)); + HarvestRegistry.registerStemCrop(Blocks.MELON_BLOCK.getDefaultState(), Blocks.MELON_STEM.getDefaultState().withProperty(StemBlock.AGE, 7)); } @Override - public boolean harvest(World world, BlockPos pos, IBlockState state, List drops) { - EnumFacing cropDir = state.getActualState(world, pos).getValue(BlockStem.FACING); + public boolean harvest(World world, BlockPos pos, BlockState state, List drops) { + Direction cropDir = state.getActualState(world, pos).getValue(StemBlock.FACING); - if (cropDir != EnumFacing.UP) { + if (cropDir != Direction.UP) { BlockPos cropPos = pos.offset(cropDir); - IBlockState probableCrop = world.getBlockState(cropPos); - Collection registeredCrops = HarvestRegistry.getStemCrops().get(state); + BlockState probableCrop = world.getBlockState(cropPos); + Collection registeredCrops = HarvestRegistry.getStemCrops().get(state); - for (IBlockState registeredCrop : registeredCrops) { + for (BlockState registeredCrop : registeredCrops) { if (registeredCrop == probableCrop) { NonNullList blockDrops = NonNullList.create(); probableCrop.getBlock().getDrops(blockDrops, world, cropPos, probableCrop, 0); @@ -52,7 +52,7 @@ public class HarvestHandlerStem implements IHarvestHandler { } @Override - public boolean test(World world, BlockPos pos, IBlockState state) { + public boolean test(World world, BlockPos pos, BlockState state) { return HarvestRegistry.getStemCrops().containsKey(state); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerTall.java b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerTall.java index 544a3d83..7f75934d 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerTall.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestHandlerTall.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.ritual.harvest; -import net.minecraft.block.BlockCactus; -import net.minecraft.block.BlockReed; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; +import net.minecraft.block.CactusBlock; +import net.minecraft.block.SugarCaneBlock; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; import net.minecraft.util.math.BlockPos; @@ -14,20 +14,20 @@ import java.util.List; /** * Harvest handler for crops that grow vertically such as Sugar Cane and Cactus.
* Register a new crop for this handler with - * {@link HarvestRegistry#registerTallCrop(IBlockState)} + * {@link HarvestRegistry#registerTallCrop(BlockState)} */ public class HarvestHandlerTall implements IHarvestHandler { public HarvestHandlerTall() { for (int i = 0; i < 15; i++) { - HarvestRegistry.registerTallCrop(Blocks.REEDS.getDefaultState().withProperty(BlockReed.AGE, i)); - HarvestRegistry.registerTallCrop(Blocks.CACTUS.getDefaultState().withProperty(BlockCactus.AGE, i)); + HarvestRegistry.registerTallCrop(Blocks.REEDS.getDefaultState().withProperty(SugarCaneBlock.AGE, i)); + HarvestRegistry.registerTallCrop(Blocks.CACTUS.getDefaultState().withProperty(CactusBlock.AGE, i)); } } @Override - public boolean harvest(World world, BlockPos pos, IBlockState state, List drops) { - IBlockState up = world.getBlockState(pos.up()); + public boolean harvest(World world, BlockPos pos, BlockState state, List drops) { + BlockState up = world.getBlockState(pos.up()); if (up.getBlock() == state.getBlock()) { NonNullList blockDrops = NonNullList.create(); up.getBlock().getDrops(blockDrops, world, pos.up(), up, 0); @@ -40,7 +40,7 @@ public class HarvestHandlerTall implements IHarvestHandler { } @Override - public boolean test(World world, BlockPos pos, IBlockState state) { + public boolean test(World world, BlockPos pos, BlockState state) { return HarvestRegistry.getTallCrops().contains(state); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestRegistry.java b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestRegistry.java index 82c403e6..2338a34a 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestRegistry.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/harvest/HarvestRegistry.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.ritual.harvest; import com.google.common.collect.*; import net.minecraft.block.Block; -import net.minecraft.block.BlockStem; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; +import net.minecraft.block.StemBlock; import java.util.List; import java.util.Map; @@ -13,9 +13,9 @@ public class HarvestRegistry { private static final List HARVEST_HANDLERS = Lists.newArrayList(); private static final Map STANDARD_CROPS = Maps.newHashMap(); - private static final Set TALL_CROPS = Sets.newHashSet(); - private static final Multimap STEM_CROPS = ArrayListMultimap.create(); - private static final Map AMPLIFIERS = Maps.newHashMap(); + private static final Set TALL_CROPS = Sets.newHashSet(); + private static final Multimap STEM_CROPS = ArrayListMultimap.create(); + private static final Map AMPLIFIERS = Maps.newHashMap(); /** * Registers a handler for the Harvest Ritual to call. @@ -49,7 +49,7 @@ public class HarvestRegistry { * * @param crop - The crop block to handle. */ - public static void registerTallCrop(IBlockState crop) { + public static void registerTallCrop(BlockState crop) { if (!TALL_CROPS.contains(crop)) TALL_CROPS.add(crop); } @@ -62,13 +62,13 @@ public class HarvestRegistry { * Use {@link net.minecraftforge.oredict.OreDictionary#WILDCARD_VALUE} to * accept any meta for the crop block. *

- * The Stem must be instanceof {@link BlockStem} + * The Stem must be instanceof {@link StemBlock} * * @param crop - The crop block to handle. * @param stem - The stem of the crop */ - public static void registerStemCrop(IBlockState crop, IBlockState stem) { - if (!STEM_CROPS.containsKey(crop) && stem.getBlock() instanceof BlockStem) + public static void registerStemCrop(BlockState crop, BlockState stem) { + if (!STEM_CROPS.containsKey(crop) && stem.getBlock() instanceof StemBlock) STEM_CROPS.put(stem, crop); } @@ -78,7 +78,7 @@ public class HarvestRegistry { * @param block - The block for the amplifier. * @param range - The range the amplifier provides. */ - public static void registerRangeAmplifier(IBlockState block, int range) { + public static void registerRangeAmplifier(BlockState block, int range) { if (!AMPLIFIERS.containsKey(block)) AMPLIFIERS.put(block, range); } @@ -91,15 +91,15 @@ public class HarvestRegistry { return ImmutableMap.copyOf(STANDARD_CROPS); } - public static Set getTallCrops() { + public static Set getTallCrops() { return ImmutableSet.copyOf(TALL_CROPS); } - public static Multimap getStemCrops() { + public static Multimap getStemCrops() { return ImmutableMultimap.copyOf(STEM_CROPS); } - public static Map getAmplifiers() { + public static Map getAmplifiers() { return ImmutableMap.copyOf(AMPLIFIERS); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/harvest/IHarvestHandler.java b/src/main/java/WayofTime/bloodmagic/ritual/harvest/IHarvestHandler.java index b8b49316..e2e50824 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/harvest/IHarvestHandler.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/harvest/IHarvestHandler.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.ritual.harvest; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -18,20 +18,20 @@ public interface IHarvestHandler { * Add the items to be dropped to the drops list.
* * @param world - The world - * @param pos - The position of the {@link IBlockState} being checked - * @param state - The {@link IBlockState} being checked + * @param pos - The position of the {@link BlockState} being checked + * @param state - The {@link BlockState} being checked * @param drops - The items to be dropped * @return If the block was successfully harvested. */ - boolean harvest(World world, BlockPos pos, IBlockState state, List drops); + boolean harvest(World world, BlockPos pos, BlockState state, List drops); /** * Tests to see if the block is valid for harvest. * * @param world The world - * @param pos The position in the world of the {@link IBlockState} being checked - * @param state The {@link IBlockState} being checked + * @param pos The position in the world of the {@link BlockState} being checked + * @param state The {@link BlockState} being checked * @return if this block is valid for harvest. */ - boolean test(World world, BlockPos pos, IBlockState state); + boolean test(World world, BlockPos pos, BlockState state); } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/imperfect/IImperfectRitualStone.java b/src/main/java/WayofTime/bloodmagic/ritual/imperfect/IImperfectRitualStone.java index 205bdf87..e18477ed 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/imperfect/IImperfectRitualStone.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/imperfect/IImperfectRitualStone.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.ritual.imperfect; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -11,7 +11,7 @@ import net.minecraft.world.World; */ public interface IImperfectRitualStone { - boolean performRitual(World world, BlockPos pos, ImperfectRitual imperfectRitual, EntityPlayer player); + boolean performRitual(World world, BlockPos pos, ImperfectRitual imperfectRitual, PlayerEntity player); World getRitualWorld(); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/imperfect/ImperfectRitual.java b/src/main/java/WayofTime/bloodmagic/ritual/imperfect/ImperfectRitual.java index 3a314984..5f2169a1 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/imperfect/ImperfectRitual.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/imperfect/ImperfectRitual.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.ritual.imperfect; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.world.World; import java.util.function.Predicate; @@ -12,12 +12,12 @@ import java.util.function.Predicate; public abstract class ImperfectRitual { private final String name; - private final Predicate blockRequirement; + private final Predicate blockRequirement; private final int activationCost; private final boolean lightShow; private final String unlocalizedName; - public ImperfectRitual(String name, Predicate blockRequirement, int activationCost, boolean lightShow, String unlocalizedName) { + public ImperfectRitual(String name, Predicate blockRequirement, int activationCost, boolean lightShow, String unlocalizedName) { this.name = name; this.blockRequirement = blockRequirement; this.activationCost = activationCost; @@ -30,25 +30,25 @@ public abstract class ImperfectRitual { * @param blockRequirement The block required above the ImperfectRitualStone * @param activationCost Base LP cost for activating the ritual */ - public ImperfectRitual(String name, Predicate blockRequirement, int activationCost, String unlocalizedName) { + public ImperfectRitual(String name, Predicate blockRequirement, int activationCost, String unlocalizedName) { this(name, blockRequirement, activationCost, false, unlocalizedName); } /** * Called when the player activates the ritual - * {@link WayofTime.bloodmagic.tile.TileImperfectRitualStone#performRitual(World, net.minecraft.util.math.BlockPos, ImperfectRitual, EntityPlayer)} + * {@link WayofTime.bloodmagic.tile.TileImperfectRitualStone#performRitual(World, net.minecraft.util.math.BlockPos, ImperfectRitual, PlayerEntity)} * * @param imperfectRitualStone - The {@link IImperfectRitualStone} that the ritual is bound to * @param player - The player activating the ritual * @return - Whether activation was successful */ - public abstract boolean onActivate(IImperfectRitualStone imperfectRitualStone, EntityPlayer player); + public abstract boolean onActivate(IImperfectRitualStone imperfectRitualStone, PlayerEntity player); public String getName() { return name; } - public Predicate getBlockRequirement() { + public Predicate getBlockRequirement() { return blockRequirement; } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAltarBuilder.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAltarBuilder.java index 9e3592b9..f28025da 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAltarBuilder.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAltarBuilder.java @@ -10,13 +10,13 @@ import WayofTime.bloodmagic.block.BlockBloodRune; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.util.Utils; import net.minecraft.block.Block; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; +import net.minecraft.entity.effect.LightningBoltEntity; import net.minecraft.inventory.IInventory; +import net.minecraft.item.BlockItem; import net.minecraft.item.Item; -import net.minecraft.item.ItemBlock; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.items.CapabilityItemHandler; @@ -156,7 +156,7 @@ public class RitualAltarBuilder extends Ritual { } public void lightning(World world, BlockPos blockPos) { - world.addWeatherEffect(new EntityLightningBolt(world, blockPos.getX(), blockPos.getY(), blockPos.getZ(), true)); + world.addWeatherEffect(new LightningBoltEntity(world, blockPos.getX(), blockPos.getY(), blockPos.getZ(), true)); } /* @@ -166,8 +166,8 @@ public class RitualAltarBuilder extends Ritual { */ public boolean hasItem(TileEntity tileEntity, Item item, int damage, boolean consumeItem) { if (tileEntity != null) { - if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN)) { - IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN); + if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN)) { + IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN); if (itemHandler.getSlots() <= 0) { return false; @@ -195,15 +195,15 @@ public class RitualAltarBuilder extends Ritual { public BlockStack getBloodRune(TileEntity tileEntity) { if (tileEntity != null) { - if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN)) { - IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN); + if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN)) { + IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN); if (itemHandler.getSlots() <= 0) { return null; } for (int i = 0; i < itemHandler.getSlots(); i++) { - if (!itemHandler.getStackInSlot(i).isEmpty() && itemHandler.getStackInSlot(i).getItem() instanceof ItemBlock && Block.getBlockFromItem(itemHandler.getStackInSlot(i).getItem()) instanceof BlockBloodRune && itemHandler.extractItem(i, 1, true) != null) { + if (!itemHandler.getStackInSlot(i).isEmpty() && itemHandler.getStackInSlot(i).getItem() instanceof BlockItem && Block.getBlockFromItem(itemHandler.getStackInSlot(i).getItem()) instanceof BlockBloodRune && itemHandler.extractItem(i, 1, true) != null) { BlockStack blockStack = new BlockStack(Utils.getBlockForComponent(ComponentType.BLOODRUNE), itemHandler.getStackInSlot(i).getItemDamage()); itemHandler.extractItem(i, 1, false); return blockStack; @@ -212,7 +212,7 @@ public class RitualAltarBuilder extends Ritual { } else if (tileEntity instanceof IInventory) { IInventory inv = (IInventory) tileEntity; for (int i = 0; i < inv.getSizeInventory(); i++) { - if (!inv.getStackInSlot(i).isEmpty() && inv.getStackInSlot(i).getItem() instanceof ItemBlock && Block.getBlockFromItem(inv.getStackInSlot(i).getItem()) instanceof BlockBloodRune) { + if (!inv.getStackInSlot(i).isEmpty() && inv.getStackInSlot(i).getItem() instanceof BlockItem && Block.getBlockFromItem(inv.getStackInSlot(i).getItem()) instanceof BlockBloodRune) { BlockStack blockStack = new BlockStack(Utils.getBlockForComponent(ComponentType.BLOODRUNE), inv.getStackInSlot(i).getItemDamage()); inv.decrStackSize(i, 1); return blockStack; @@ -225,15 +225,15 @@ public class RitualAltarBuilder extends Ritual { public BlockStack getMundaneBlock(TileEntity tileEntity) { if (tileEntity != null) { - if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN)) { - IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN); + if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN)) { + IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN); if (itemHandler.getSlots() <= 0) { return null; } for (int i = 0; i < itemHandler.getSlots(); i++) { - if (!itemHandler.getStackInSlot(i).isEmpty() && itemHandler.getStackInSlot(i).getItem() instanceof ItemBlock && !(Block.getBlockFromItem(itemHandler.getStackInSlot(i).getItem()) instanceof BlockBloodRune) && !itemHandler.extractItem(i, 1, true).isEmpty()) { + if (!itemHandler.getStackInSlot(i).isEmpty() && itemHandler.getStackInSlot(i).getItem() instanceof BlockItem && !(Block.getBlockFromItem(itemHandler.getStackInSlot(i).getItem()) instanceof BlockBloodRune) && !itemHandler.extractItem(i, 1, true).isEmpty()) { Block block = Block.getBlockFromItem(itemHandler.getStackInSlot(i).getItem()); if (block != Blocks.AIR && block != Blocks.GLOWSTONE && block != RegistrarBloodMagicBlocks.DECORATIVE_BRICK) { BlockStack blockStack = new BlockStack(block, itemHandler.getStackInSlot(i).getItemDamage()); @@ -245,7 +245,7 @@ public class RitualAltarBuilder extends Ritual { } else if (tileEntity instanceof IInventory) { IInventory inv = (IInventory) tileEntity; for (int i = 0; i < inv.getSizeInventory(); i++) { - if (!inv.getStackInSlot(i).isEmpty() && inv.getStackInSlot(i).getItem() instanceof ItemBlock && !(Block.getBlockFromItem(inv.getStackInSlot(i).getItem()) instanceof BlockBloodRune)) { + if (!inv.getStackInSlot(i).isEmpty() && inv.getStackInSlot(i).getItem() instanceof BlockItem && !(Block.getBlockFromItem(inv.getStackInSlot(i).getItem()) instanceof BlockBloodRune)) { Block block = Block.getBlockFromItem(inv.getStackInSlot(i).getItem()); if (block != Blocks.GLOWSTONE && block != RegistrarBloodMagicBlocks.DECORATIVE_BRICK) { BlockStack blockStack = new BlockStack(block, inv.getStackInSlot(i).getItemDamage()); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAnimalGrowth.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAnimalGrowth.java index 15bb17ac..a6b61133 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAnimalGrowth.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualAnimalGrowth.java @@ -6,15 +6,15 @@ import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.passive.EntityAnimal; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.passive.AnimalEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.items.IItemHandler; @@ -85,11 +85,11 @@ public class RitualAnimalGrowth extends Ritual { AreaDescriptor growingRange = masterRitualStone.getBlockRange(GROWTH_RANGE); AxisAlignedBB axis = growingRange.getAABB(masterRitualStone.getBlockPos()); - List animalList = world.getEntitiesWithinAABB(EntityAnimal.class, axis); + List animalList = world.getEntitiesWithinAABB(AnimalEntity.class, axis); boolean performedEffect = false; - for (EntityAnimal animal : animalList) { + for (AnimalEntity animal : animalList) { if (animal.getGrowingAge() < 0) { animal.addGrowth(5); totalGrowths++; @@ -109,7 +109,7 @@ public class RitualAnimalGrowth extends Ritual { if (kamikaze) { if (destructiveWill >= destructiveWillDrain) { if (!animal.isPotionActive(RegistrarBloodMagic.SACRIFICIAL_LAMB)) { - animal.addPotionEffect(new PotionEffect(RegistrarBloodMagic.SACRIFICIAL_LAMB, 1200)); + animal.addPotionEffect(new EffectInstance(RegistrarBloodMagic.SACRIFICIAL_LAMB, 1200)); destructiveDrain += destructiveWillDrain; destructiveWill -= destructiveWillDrain; performedEffect = true; @@ -190,14 +190,14 @@ public class RitualAnimalGrowth extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { return new ITextComponent[]{ - new TextComponentTranslation(this.getTranslationKey() + ".info"), - new TextComponentTranslation(this.getTranslationKey() + ".default.info"), - new TextComponentTranslation(this.getTranslationKey() + ".corrosive.info"), - new TextComponentTranslation(this.getTranslationKey() + ".steadfast.info"), - new TextComponentTranslation(this.getTranslationKey() + ".destructive.info"), - new TextComponentTranslation(this.getTranslationKey() + ".vengeful.info") + new TranslationTextComponent(this.getTranslationKey() + ".info"), + new TranslationTextComponent(this.getTranslationKey() + ".default.info"), + new TranslationTextComponent(this.getTranslationKey() + ".corrosive.info"), + new TranslationTextComponent(this.getTranslationKey() + ".steadfast.info"), + new TranslationTextComponent(this.getTranslationKey() + ".destructive.info"), + new TranslationTextComponent(this.getTranslationKey() + ".vengeful.info") }; } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualArmourEvolve.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualArmourEvolve.java index 8f2ed0a5..482acf7c 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualArmourEvolve.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualArmourEvolve.java @@ -5,8 +5,8 @@ import WayofTime.bloodmagic.item.armour.ItemLivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.ritual.*; import com.google.common.collect.Iterables; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.effect.LightningBoltEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -35,9 +35,9 @@ public class RitualArmourEvolve extends Ritual { AreaDescriptor checkRange = masterRitualStone.getBlockRange(CHECK_RANGE); - List playerList = world.getEntitiesWithinAABB(EntityPlayer.class, checkRange.getAABB(pos)); + List playerList = world.getEntitiesWithinAABB(PlayerEntity.class, checkRange.getAABB(pos)); - for (EntityPlayer player : playerList) { + for (PlayerEntity player : playerList) { if (LivingArmour.hasFullSet(player)) { ItemStack chestStack = Iterables.toArray(player.getArmorInventoryList(), ItemStack.class)[2]; LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); @@ -48,7 +48,7 @@ public class RitualArmourEvolve extends Ritual { masterRitualStone.setActive(false); - world.spawnEntity(new EntityLightningBolt(world, pos.getX(), pos.getY() - 1, pos.getZ(), true)); + world.spawnEntity(new LightningBoltEntity(world, pos.getX(), pos.getY() - 1, pos.getZ(), true)); } } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCobblestone.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCobblestone.java index f0617d47..2e91a184 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCobblestone.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCobblestone.java @@ -5,7 +5,7 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.tile.TileAlchemyArray; import net.minecraft.block.Block; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCondor.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCondor.java index 36d31b14..a126275b 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCondor.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCondor.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -29,7 +29,7 @@ public class RitualCondor extends Ritual { int currentEssence = masterRitualStone.getOwnerNetwork().getCurrentEssence(); - List entityPlayers = world.getEntitiesWithinAABB(EntityPlayer.class, aabb); + List entityPlayers = world.getEntitiesWithinAABB(PlayerEntity.class, aabb); int entityCount = entityPlayers.size(); if (currentEssence < getRefreshCost() * entityCount) { @@ -37,8 +37,8 @@ public class RitualCondor extends Ritual { return; } else { entityCount = 0; - for (EntityPlayer player : entityPlayers) { - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.FLIGHT, 20, 0)); + for (PlayerEntity player : entityPlayers) { + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.FLIGHT, 20, 0)); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualContainment.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualContainment.java index a8224955..d458bd29 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualContainment.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualContainment.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -31,8 +31,8 @@ public class RitualContainment extends Ritual { AreaDescriptor containmentRange = masterRitualStone.getBlockRange(CONTAINMENT_RANGE); - for (EntityLivingBase entity : world.getEntitiesWithinAABB(EntityLivingBase.class, containmentRange.getAABB(masterRitualStone.getBlockPos()))) { - if (entity instanceof EntityPlayer && (((EntityPlayer) entity).capabilities.isCreativeMode || ((EntityPlayer) entity).getGameProfile().getId().equals(masterRitualStone.getOwner()))) + for (LivingEntity entity : world.getEntitiesWithinAABB(LivingEntity.class, containmentRange.getAABB(masterRitualStone.getBlockPos()))) { + if (entity instanceof PlayerEntity && (((PlayerEntity) entity).capabilities.isCreativeMode || ((PlayerEntity) entity).getGameProfile().getId().equals(masterRitualStone.getOwner()))) continue; double xDif = entity.posX - (masterRitualStone.getBlockPos().getX() + 0.5); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrushing.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrushing.java index 4b6d7955..99cc2548 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrushing.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrushing.java @@ -2,8 +2,6 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.compress.CompressionRegistry; -import WayofTime.bloodmagic.recipe.alchemyTable.AlchemyTableRecipe; -import WayofTime.bloodmagic.core.registry.AlchemyTableRecipeRegistry; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.ritual.crushing.CrushingRegistry; import WayofTime.bloodmagic.ritual.crushing.ICrushingHandler; @@ -13,25 +11,23 @@ import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.util.Utils; import com.mojang.authlib.GameProfile; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import net.minecraftforge.common.util.FakePlayer; import net.minecraftforge.common.util.FakePlayerFactory; import org.apache.commons.lang3.tuple.Pair; -import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import java.util.function.Consumer; @RitualRegister("crushing") @@ -73,7 +69,7 @@ public class RitualCrushing extends Ritual { AreaDescriptor chestRange = masterRitualStone.getBlockRange(CHEST_RANGE); TileEntity tile = world.getTileEntity(chestRange.getContainedPositions(pos).get(0)); - if (tile != null && Utils.getNumberOfFreeSlots(tile, EnumFacing.DOWN) < 1) { + if (tile != null && Utils.getNumberOfFreeSlots(tile, Direction.DOWN) < 1) { return; } @@ -104,7 +100,7 @@ public class RitualCrushing extends Ritual { continue; } - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); Block block = state.getBlock(); if (block.equals(RegistrarBloodMagicBlocks.RITUAL_CONTROLLER) || block.equals(RegistrarBloodMagicBlocks.RITUAL_STONE) || block.getBlockHardness(state, world, newPos) == -1.0F || Utils.isBlockLiquid(state)) { continue; @@ -134,12 +130,12 @@ public class RitualCrushing extends Ritual { } if (tile != null) { - result = Utils.insertStackIntoTile(result, tile, EnumFacing.DOWN); + result = Utils.insertStackIntoTile(result, tile, Direction.DOWN); if (!result.isEmpty()) { - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, result); + Utils.spawnStackAtBlock(world, pos, Direction.UP, result); } } else { - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, result); + Utils.spawnStackAtBlock(world, pos, Direction.UP, result); } WorldDemonWillHandler.drainWill(world, pos, EnumDemonWillType.CORROSIVE, willDrain, true); @@ -153,7 +149,7 @@ public class RitualCrushing extends Ritual { } - if (!isBlockClaimed && isSilkTouch && block.canSilkHarvest(world, newPos, state, getFakePlayer((WorldServer) world))) { + if (!isBlockClaimed && isSilkTouch && block.canSilkHarvest(world, newPos, state, getFakePlayer((ServerWorld) world))) { ItemStack checkStack = block.getItem(world, newPos, state); if (checkStack.isEmpty()) { continue; @@ -169,12 +165,12 @@ public class RitualCrushing extends Ritual { } if (tile != null) - copyStack = Utils.insertStackIntoTile(copyStack, tile, EnumFacing.DOWN); + copyStack = Utils.insertStackIntoTile(copyStack, tile, Direction.DOWN); else - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, copyStack); + Utils.spawnStackAtBlock(world, pos, Direction.UP, copyStack); if (!copyStack.isEmpty()) { - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, copyStack); + Utils.spawnStackAtBlock(world, pos, Direction.UP, copyStack); } } else if (!isBlockClaimed) { if (fortune > 0 && destructiveWill < destructiveWillDrain) { @@ -187,13 +183,13 @@ public class RitualCrushing extends Ritual { ItemStack copyStack = item.copy(); if (tile != null) { - copyStack = Utils.insertStackIntoTile(copyStack, tile, EnumFacing.DOWN); + copyStack = Utils.insertStackIntoTile(copyStack, tile, Direction.DOWN); } else { - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, copyStack); + Utils.spawnStackAtBlock(world, pos, Direction.UP, copyStack); continue; } if (!copyStack.isEmpty()) { - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, copyStack); + Utils.spawnStackAtBlock(world, pos, Direction.UP, copyStack); } } @@ -220,7 +216,7 @@ public class RitualCrushing extends Ritual { if (pair.getRight()) { ItemStack returned = pair.getLeft(); if (returned != null) { - Utils.spawnStackAtBlock(world, pos, EnumFacing.UP, returned); + Utils.spawnStackAtBlock(world, pos, Direction.UP, returned); } WorldDemonWillHandler.drainWill(world, pos, EnumDemonWillType.VENGEFUL, vengefulWillDrain, true); @@ -259,14 +255,14 @@ public class RitualCrushing extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { return new ITextComponent[]{ - new TextComponentTranslation(this.getTranslationKey() + ".info"), - new TextComponentTranslation(this.getTranslationKey() + ".default.info"), - new TextComponentTranslation(this.getTranslationKey() + ".corrosive.info"), - new TextComponentTranslation(this.getTranslationKey() + ".steadfast.info"), - new TextComponentTranslation(this.getTranslationKey() + ".destructive.info"), - new TextComponentTranslation(this.getTranslationKey() + ".vengeful.info") + new TranslationTextComponent(this.getTranslationKey() + ".info"), + new TranslationTextComponent(this.getTranslationKey() + ".default.info"), + new TranslationTextComponent(this.getTranslationKey() + ".corrosive.info"), + new TranslationTextComponent(this.getTranslationKey() + ".steadfast.info"), + new TranslationTextComponent(this.getTranslationKey() + ".destructive.info"), + new TranslationTextComponent(this.getTranslationKey() + ".vengeful.info") }; } @@ -280,7 +276,7 @@ public class RitualCrushing extends Ritual { cuttingFluidWillMap.put(stack, willDrain); } - private FakePlayer getFakePlayer(WorldServer world) { + private FakePlayer getFakePlayer(ServerWorld world) { return fakePlayer == null ? fakePlayer = FakePlayerFactory.get(world, new GameProfile(null, BloodMagic.MODID + "_ritual_crushing")) : fakePlayer; } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalHarvest.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalHarvest.java index 7382f09f..2e66f058 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalHarvest.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalHarvest.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.tile.TileDemonCrystal; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -44,7 +44,7 @@ public class RitualCrystalHarvest extends Ritual { if (tile instanceof TileDemonCrystal) { TileDemonCrystal demonCrystal = (TileDemonCrystal) tile; if (demonCrystal.dropSingleCrystal()) { - IBlockState state = world.getBlockState(nextPos); + BlockState state = world.getBlockState(nextPos); world.notifyBlockUpdate(nextPos, state, state, 3); totalEffects++; if (totalEffects >= maxEffects) { diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalSplit.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalSplit.java index 70b683f9..7a74317f 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalSplit.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualCrystalSplit.java @@ -3,13 +3,13 @@ package WayofTime.bloodmagic.ritual.types; import java.util.function.Consumer; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; @@ -33,7 +33,7 @@ public class RitualCrystalSplit extends Ritual { } BlockPos pos = masterRitualStone.getBlockPos(); - EnumFacing direction = masterRitualStone.getDirection(); + Direction direction = masterRitualStone.getDirection(); BlockPos rawPos = pos.up(2); TileEntity tile = world.getTileEntity(rawPos); @@ -41,14 +41,14 @@ public class RitualCrystalSplit extends Ritual { return; } - IBlockState rawState = world.getBlockState(rawPos); + BlockState rawState = world.getBlockState(rawPos); TileDemonCrystal rawTile = (TileDemonCrystal) tile; if (rawTile.crystalCount >= 5) { - BlockPos vengefulPos = pos.offset(rotateFacing(EnumFacing.NORTH, direction)).up(); - BlockPos corrosivePos = pos.offset(rotateFacing(EnumFacing.EAST, direction)).up(); - BlockPos steadfastPos = pos.offset(rotateFacing(EnumFacing.SOUTH, direction)).up(); - BlockPos destructivePos = pos.offset(rotateFacing(EnumFacing.WEST, direction)).up(); + BlockPos vengefulPos = pos.offset(rotateFacing(Direction.NORTH, direction)).up(); + BlockPos corrosivePos = pos.offset(rotateFacing(Direction.EAST, direction)).up(); + BlockPos steadfastPos = pos.offset(rotateFacing(Direction.SOUTH, direction)).up(); + BlockPos destructivePos = pos.offset(rotateFacing(Direction.WEST, direction)).up(); int vengefulCrystals = 0; int corrosiveCrystals = 0; @@ -102,7 +102,7 @@ public class RitualCrystalSplit extends Ritual { } } - public EnumFacing rotateFacing(EnumFacing facing, EnumFacing rotation) { + public Direction rotateFacing(Direction facing, Direction rotation) { switch (rotation) { case EAST: return facing.rotateY(); @@ -123,7 +123,7 @@ public class RitualCrystalSplit extends Ritual { TileDemonCrystal tile = (TileDemonCrystal) world.getTileEntity(pos); tile.crystalCount++; tile.markDirty(); - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); world.notifyBlockUpdate(pos, state, state, 3); } } @@ -156,7 +156,7 @@ public class RitualCrystalSplit extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { - return new ITextComponent[]{new TextComponentTranslation(this.getTranslationKey() + ".info")}; + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { + return new ITextComponent[]{new TranslationTextComponent(this.getTranslationKey() + ".info")}; } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEllipsoid.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEllipsoid.java index cece930d..9e6a33bd 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEllipsoid.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEllipsoid.java @@ -3,11 +3,11 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -57,8 +57,8 @@ public class RitualEllipsoid extends Ritual { int maxZ = (int) (sphereBB.maxZ - masterPos.getZ()) - 1; if (tileInventory != null) { - if (tileInventory.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN)) { - IItemHandler itemHandler = tileInventory.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN); + if (tileInventory.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN)) { + IItemHandler itemHandler = tileInventory.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN); if (itemHandler.getSlots() <= 0) { return; @@ -67,7 +67,7 @@ public class RitualEllipsoid extends Ritual { int blockSlot = -1; for (int invSlot = 0; invSlot < itemHandler.getSlots(); invSlot++) { ItemStack stack = itemHandler.extractItem(invSlot, 1, true); - if (stack.isEmpty() || !(stack.getItem() instanceof ItemBlock)) + if (stack.isEmpty() || !(stack.getItem() instanceof BlockItem)) continue; blockSlot = invSlot; @@ -111,7 +111,7 @@ public class RitualEllipsoid extends Ritual { continue; } - IBlockState placeState = Block.getBlockFromItem(itemHandler.getStackInSlot(blockSlot).getItem()).getStateFromMeta(itemHandler.getStackInSlot(blockSlot).getItemDamage()); + BlockState placeState = Block.getBlockFromItem(itemHandler.getStackInSlot(blockSlot).getItem()).getStateFromMeta(itemHandler.getStackInSlot(blockSlot).getItemDamage()); world.setBlockState(newPos, placeState); itemHandler.extractItem(blockSlot, 1, false); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEternalSoul.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEternalSoul.java index e2b668a1..5c03479f 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEternalSoul.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualEternalSoul.java @@ -8,8 +8,8 @@ import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.tile.TileAltar; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.EffectInstance; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -67,12 +67,12 @@ public class RitualEternalSoul extends Ritual { int horizontalRange = 15; int verticalRange = 20; - List list = world.getEntitiesWithinAABB(EntityPlayer.class, + List list = world.getEntitiesWithinAABB(PlayerEntity.class, new AxisAlignedBB(pos.getX() - 0.5f, pos.getY() - 0.5f, pos.getZ() - 0.5f, pos.getX() + 0.5f, pos.getY() + 0.5f, pos.getZ() + 0.5f) .expand(horizontalRange, verticalRange, horizontalRange).expand(0, -verticalRange, 0)); - EntityPlayer entityOwner = PlayerHelper.getPlayerFromUUID(owner); + PlayerEntity entityOwner = PlayerHelper.getPlayerFromUUID(owner); int fillAmount = Math.min(currentEssence / 2, altar.fill(new FluidStack(BlockLifeEssence.getLifeEssence(), 10000), false)); @@ -81,8 +81,8 @@ public class RitualEternalSoul extends Ritual { if (entityOwner != null && list.contains(entityOwner) && entityOwner.getHealth() > 2.0f && fillAmount != 0) entityOwner.setHealth(2.0f); - for (EntityPlayer player : list) - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.SOUL_FRAY, 100)); + for (PlayerEntity player : list) + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.SOUL_FRAY, 100)); masterRitualStone.getOwnerNetwork().syphon(masterRitualStone.ticket(fillAmount * 2)); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualExpulsion.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualExpulsion.java index 358925b5..0ec231d5 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualExpulsion.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualExpulsion.java @@ -6,10 +6,10 @@ import WayofTime.bloodmagic.iface.IBindable; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.Utils; import com.google.common.collect.Lists; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.block.BlockState; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumParticleTypes; @@ -70,7 +70,7 @@ public class RitualExpulsion extends Ritual { final int teleportDistance = 100; - for (EntityPlayer player : world.getEntitiesWithinAABB(EntityPlayer.class, expulsionRange.getAABB(masterRitualStone.getBlockPos()))) { + for (PlayerEntity player : world.getEntitiesWithinAABB(PlayerEntity.class, expulsionRange.getAABB(masterRitualStone.getBlockPos()))) { if (player.capabilities.isCreativeMode || player.getGameProfile().getId().equals(masterRitualStone.getOwner()) || whitelist.contains(player.getGameProfile().getId())) continue; @@ -81,9 +81,9 @@ public class RitualExpulsion extends Ritual { whitelist.clear(); } - public boolean teleportRandomly(EntityLivingBase entityLiving, double distance) { - if (entityLiving instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entityLiving; + public boolean teleportRandomly(LivingEntity entityLiving, double distance) { + if (entityLiving instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entityLiving; if (player.capabilities.isCreativeMode) return false; } @@ -107,7 +107,7 @@ public class RitualExpulsion extends Ritual { return i >= 100; } - public boolean teleportTo(EntityLivingBase entityLiving, double par1, double par3, double par5, double lastX, double lastY, double lastZ) { + public boolean teleportTo(LivingEntity entityLiving, double par1, double par3, double par5, double lastX, double lastY, double lastZ) { EnderTeleportEvent event = new EnderTeleportEvent(entityLiving, par1, par3, par5, 0); if (MinecraftForge.EVENT_BUS.post(event)) { @@ -125,7 +125,7 @@ public class RitualExpulsion extends Ritual { boolean flag1 = false; while (!flag1 && j > 0) { - IBlockState state = entityLiving.getEntityWorld().getBlockState(new BlockPos(i, j - 1, k)); + BlockState state = entityLiving.getEntityWorld().getBlockState(new BlockPos(i, j - 1, k)); if (state.getMaterial().blocksMovement()) { flag1 = true; @@ -163,9 +163,9 @@ public class RitualExpulsion extends Ritual { } } - public void moveEntityViaTeleport(EntityLivingBase entityLiving, double x, double y, double z) { - if (entityLiving instanceof EntityPlayerMP) { - EntityPlayerMP player = (EntityPlayerMP) entityLiving; + public void moveEntityViaTeleport(LivingEntity entityLiving, double x, double y, double z) { + if (entityLiving instanceof ServerPlayerEntity) { + ServerPlayerEntity player = (ServerPlayerEntity) entityLiving; EnderTeleportEvent event = new EnderTeleportEvent(player, x, y, z, 5.0F); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredEarth.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredEarth.java index 823ceb1b..ea4d70e8 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredEarth.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredEarth.java @@ -3,9 +3,9 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.effect.LightningBoltEntity; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -42,22 +42,22 @@ public class RitualFeatheredEarth extends Ritual { int totalEffects = 0; if (masterRitualStone.getCooldown() > 0) { - world.addWeatherEffect(new EntityLightningBolt(world, x + 4, y + 5, z + 4, false)); - world.addWeatherEffect(new EntityLightningBolt(world, x + 4, y + 5, z - 4, false)); - world.addWeatherEffect(new EntityLightningBolt(world, x - 4, y + 5, z - 4, false)); - world.addWeatherEffect(new EntityLightningBolt(world, x - 4, y + 5, z + 4, false)); + world.addWeatherEffect(new LightningBoltEntity(world, x + 4, y + 5, z + 4, false)); + world.addWeatherEffect(new LightningBoltEntity(world, x + 4, y + 5, z - 4, false)); + world.addWeatherEffect(new LightningBoltEntity(world, x - 4, y + 5, z - 4, false)); + world.addWeatherEffect(new LightningBoltEntity(world, x - 4, y + 5, z + 4, false)); masterRitualStone.setCooldown(0); } AreaDescriptor fallProtRange = masterRitualStone.getBlockRange(FALL_PROTECTION_RANGE); AxisAlignedBB fallProtBB = fallProtRange.getAABB(masterRitualStone.getBlockPos()); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, fallProtBB); + List entities = world.getEntitiesWithinAABB(LivingEntity.class, fallProtBB); - for (EntityLivingBase entity : entities) { + for (LivingEntity entity : entities) { if (totalEffects >= maxEffects) { break; } - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.FEATHERED, 20, 0)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.FEATHERED, 20, 0)); totalEffects++; } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredKnife.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredKnife.java index 352725a3..9fe7fa5a 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredKnife.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFeatheredKnife.java @@ -12,15 +12,15 @@ import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.item.armour.ItemLivingArmour; import WayofTime.bloodmagic.livingArmour.LivingArmour; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSelfSacrifice; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; -import net.minecraft.potion.PotionEffect; +import net.minecraft.potion.EffectInstance; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import java.util.List; @@ -105,9 +105,9 @@ public class RitualFeatheredKnife extends Ritual { double destructiveDrain = 0; - List entities = world.getEntitiesWithinAABB(EntityPlayer.class, range); + List entities = world.getEntitiesWithinAABB(PlayerEntity.class, range); - for (EntityPlayer player : entities) { + for (PlayerEntity player : entities) { float healthThreshold = steadfastWill >= steadfastWillThreshold ? 0.7f : 0.3f; if (vengefulWill >= vengefulWillThreshold && !player.getGameProfile().getId().equals(masterRitualStone.getOwner())) { @@ -128,7 +128,7 @@ public class RitualFeatheredKnife extends Ritual { lpModifier *= PlayerSacrificeHelper.getModifier(incenseAmount); PlayerSacrificeHelper.setPlayerIncense(player, 0); - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.SOUL_FRAY, PlayerSacrificeHelper.soulFrayDuration)); + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.SOUL_FRAY, PlayerSacrificeHelper.soulFrayDuration)); } if (destructiveWill >= destructiveWillDrain * sacrificedHealth) { @@ -138,7 +138,7 @@ public class RitualFeatheredKnife extends Ritual { } if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.selfSacrifice", chestStack); @@ -202,8 +202,8 @@ public class RitualFeatheredKnife extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { - return new ITextComponent[]{new TextComponentTranslation(this.getTranslationKey() + ".info"), new TextComponentTranslation(this.getTranslationKey() + ".default.info"), new TextComponentTranslation(this.getTranslationKey() + ".corrosive.info"), new TextComponentTranslation(this.getTranslationKey() + ".steadfast.info"), new TextComponentTranslation(this.getTranslationKey() + ".destructive.info"), new TextComponentTranslation(this.getTranslationKey() + ".vengeful.info")}; + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { + return new ITextComponent[]{new TranslationTextComponent(this.getTranslationKey() + ".info"), new TranslationTextComponent(this.getTranslationKey() + ".default.info"), new TranslationTextComponent(this.getTranslationKey() + ".corrosive.info"), new TranslationTextComponent(this.getTranslationKey() + ".steadfast.info"), new TranslationTextComponent(this.getTranslationKey() + ".destructive.info"), new TranslationTextComponent(this.getTranslationKey() + ".vengeful.info")}; } public double getLPModifierForWill(double destructiveWill) { diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFelling.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFelling.java index c116c0b5..78a31db5 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFelling.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFelling.java @@ -3,11 +3,11 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.block.BlockState; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.items.IItemHandler; @@ -69,7 +69,7 @@ public class RitualFelling extends Ritual { if (blockPosIterator.hasNext() && tileInventory != null) { masterRitualStone.getOwnerNetwork().syphon(masterRitualStone.ticket(getRefreshCost())); currentPos = blockPosIterator.next(); - IItemHandler inventory = Utils.getInventory(tileInventory, EnumFacing.DOWN); + IItemHandler inventory = Utils.getInventory(tileInventory, Direction.DOWN); placeInInventory(world.getBlockState(currentPos), world, currentPos, inventory); world.setBlockToAir(currentPos); blockPosIterator.remove(); @@ -97,14 +97,14 @@ public class RitualFelling extends Ritual { return new RitualFelling(); } - private void placeInInventory(IBlockState choppedState, World world, BlockPos choppedPos, @Nullable IItemHandler inventory) { + private void placeInInventory(BlockState choppedState, World world, BlockPos choppedPos, @Nullable IItemHandler inventory) { if (inventory == null) return; for (ItemStack stack : choppedState.getBlock().getDrops(world, choppedPos, world.getBlockState(choppedPos), 0)) { ItemStack remainder = ItemHandlerHelper.insertItem(inventory, stack, false); if (!remainder.isEmpty()) - world.spawnEntity(new EntityItem(world, choppedPos.getX() + 0.4, choppedPos.getY() + 2, choppedPos.getZ() + 0.4, remainder)); + world.spawnEntity(new ItemEntity(world, choppedPos.getX() + 0.4, choppedPos.getY() + 2, choppedPos.getZ() + 0.4, remainder)); } } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualForsakenSoul.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualForsakenSoul.java index ea908c27..a77b9506 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualForsakenSoul.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualForsakenSoul.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.api.impl.BloodMagicAPI; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.tile.TileDemonCrystal; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.passive.EntityAnimal; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.passive.AnimalEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -42,7 +42,7 @@ public class RitualForsakenSoul extends Ritual { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { super.readFromNBT(tag); willBuffer = tag.getDouble("willBuffer"); @@ -58,7 +58,7 @@ public class RitualForsakenSoul extends Ritual { } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { super.writeToNBT(tag); tag.setDouble("willBuffer", willBuffer); @@ -100,20 +100,20 @@ public class RitualForsakenSoul extends Ritual { AreaDescriptor damageRange = masterRitualStone.getBlockRange(DAMAGE_RANGE); AxisAlignedBB range = damageRange.getAABB(pos); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, range); + List entities = world.getEntitiesWithinAABB(LivingEntity.class, range); - for (EntityLivingBase entity : entities) { + for (LivingEntity entity : entities) { EntityEntry entityEntry = EntityRegistry.getEntry(entity.getClass()); if (entityEntry == null || BloodMagicAPI.INSTANCE.getBlacklist().getSacrifice().contains(entityEntry.getRegistryName())) continue; - if (entity.isEntityAlive() && !(entity instanceof EntityPlayer)) { + if (entity.isEntityAlive() && !(entity instanceof PlayerEntity)) { if (entity.attackEntityFrom(RitualManager.RITUAL_DAMAGE, 1)) { if (!entity.isEntityAlive()) { int uniqueness = calculateUniqueness(entity); double modifier = 1; - if (entity instanceof EntityAnimal && !((EntityAnimal) entity).collided) { + if (entity instanceof AnimalEntity && !((AnimalEntity) entity).collided) { modifier = 4; } @@ -147,7 +147,7 @@ public class RitualForsakenSoul extends Ritual { * @param mob * @return The amount of uniqueness to the last 10 mobs killed */ - public int calculateUniqueness(EntityLivingBase mob) { + public int calculateUniqueness(LivingEntity mob) { int key = mob.getClass().hashCode(); keyList.add(key); if (keyList.size() > MAX_UNIQUENESS) { diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFullStomach.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFullStomach.java index 0618d119..3a193e91 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFullStomach.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualFullStomach.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemFood; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; @@ -47,9 +47,9 @@ public class RitualFullStomach extends Ritual { IItemHandler inventory = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null); int lastSlot = 0; AreaDescriptor fillingRange = masterRitualStone.getBlockRange(FILL_RANGE); - List playerList = world.getEntitiesWithinAABB(EntityPlayer.class, fillingRange.getAABB(pos)); + List playerList = world.getEntitiesWithinAABB(PlayerEntity.class, fillingRange.getAABB(pos)); - for (EntityPlayer player : playerList) { + for (PlayerEntity player : playerList) { FoodStats foodStats = player.getFoodStats(); float satLevel = foodStats.getSaturationLevel(); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGreenGrove.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGreenGrove.java index 4bfddd31..f1ff9f71 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGreenGrove.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGreenGrove.java @@ -9,15 +9,15 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.util.Utils; import net.minecraft.block.*; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.potion.PotionEffect; +import net.minecraft.block.BlockState; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import java.util.List; @@ -36,7 +36,7 @@ public class RitualGreenGrove extends Ritual { public static double steadfastWillDrain = 0.05; public static int defaultRefreshTime = 20; public static double defaultGrowthChance = 0.3; - public static IBlockState farmlandState = Blocks.FARMLAND.getDefaultState().withProperty(BlockFarmland.MOISTURE, 7); + public static BlockState farmlandState = Blocks.FARMLAND.getDefaultState().withProperty(FarmlandBlock.MOISTURE, 7); public int refreshTime = 20; public RitualGreenGrove() { @@ -88,14 +88,14 @@ public class RitualGreenGrove extends Ritual { } for (BlockPos newPos : growingRange.getContainedPositions(pos)) { - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); if (!BloodMagicAPI.INSTANCE.getBlacklist().getGreenGrove().contains(state)) { - boolean flag = state.getBlock() instanceof IGrowable || state.getBlock() instanceof BlockCactus || state.getBlock() instanceof BlockReed; + boolean flag = state.getBlock() instanceof IGrowable || state.getBlock() instanceof CactusBlock || state.getBlock() instanceof SugarCaneBlock; if (flag) { if (world.rand.nextDouble() < growthChance) { state.getBlock().updateTick(world, newPos, state, new Random()); - IBlockState newState = world.getBlockState(newPos); + BlockState newState = world.getBlockState(newPos); if (!newState.equals(state)) { world.playEvent(2005, newPos, 0); totalGrowths++; @@ -139,7 +139,7 @@ public class RitualGreenGrove extends Ritual { break; } - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); Block block = state.getBlock(); boolean hydratedBlock = false; @@ -169,21 +169,21 @@ public class RitualGreenGrove extends Ritual { if (corrosiveWill > corrosiveWillDrain) { AreaDescriptor leechRange = masterRitualStone.getBlockRange(LEECH_RANGE); AxisAlignedBB mobArea = leechRange.getAABB(pos); - List entityList = world.getEntitiesWithinAABB(EntityLivingBase.class, mobArea); - for (EntityLivingBase entityLiving : entityList) { + List entityList = world.getEntitiesWithinAABB(LivingEntity.class, mobArea); + for (LivingEntity entityLiving : entityList) { if (corrosiveWill < corrosiveWillDrain) { break; } - if (entityLiving instanceof EntityPlayer) { + if (entityLiving instanceof PlayerEntity) { continue; } - if (entityLiving.isPotionActive(RegistrarBloodMagic.PLANT_LEECH) || !entityLiving.isPotionApplicable(new PotionEffect(RegistrarBloodMagic.PLANT_LEECH))) { + if (entityLiving.isPotionActive(RegistrarBloodMagic.PLANT_LEECH) || !entityLiving.isPotionApplicable(new EffectInstance(RegistrarBloodMagic.PLANT_LEECH))) { continue; } - entityLiving.addPotionEffect(new PotionEffect(RegistrarBloodMagic.PLANT_LEECH, 200, 0)); + entityLiving.addPotionEffect(new EffectInstance(RegistrarBloodMagic.PLANT_LEECH, 200, 0)); corrosiveWill -= corrosiveWillDrain; corrosiveDrain += corrosiveWillDrain; @@ -266,8 +266,8 @@ public class RitualGreenGrove extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { - return new ITextComponent[]{new TextComponentTranslation(this.getTranslationKey() + ".info"), new TextComponentTranslation(this.getTranslationKey() + ".default.info"), new TextComponentTranslation(this.getTranslationKey() + ".corrosive.info"), new TextComponentTranslation(this.getTranslationKey() + ".steadfast.info"), new TextComponentTranslation(this.getTranslationKey() + ".destructive.info"), new TextComponentTranslation(this.getTranslationKey() + ".vengeful.info")}; + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { + return new ITextComponent[]{new TranslationTextComponent(this.getTranslationKey() + ".info"), new TranslationTextComponent(this.getTranslationKey() + ".default.info"), new TranslationTextComponent(this.getTranslationKey() + ".corrosive.info"), new TranslationTextComponent(this.getTranslationKey() + ".steadfast.info"), new TranslationTextComponent(this.getTranslationKey() + ".destructive.info"), new TranslationTextComponent(this.getTranslationKey() + ".vengeful.info")}; } @Override diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGrounding.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGrounding.java index 2aa7a7d1..f3ee4078 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGrounding.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualGrounding.java @@ -6,13 +6,13 @@ import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.soul.DemonWillHolder; import WayofTime.bloodmagic.soul.EnumDemonWillType; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.entity.MoverType; -import net.minecraft.entity.boss.EntityDragon; -import net.minecraft.entity.boss.EntityWither; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.boss.dragon.EnderDragonEntity; +import net.minecraft.entity.boss.WitherEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -65,19 +65,19 @@ public class RitualGrounding extends Ritual { /* Actual ritual stuff begins here */ AreaDescriptor groundingRange = masterRitualStone.getBlockRange(GROUNDING_RANGE); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, groundingRange.getAABB(pos)); - for (EntityLivingBase entity : entities) { + List entities = world.getEntitiesWithinAABB(LivingEntity.class, groundingRange.getAABB(pos)); + for (LivingEntity entity : entities) { if (totalEffects >= maxEffects) { break; } - if (entity instanceof EntityPlayer && ((EntityPlayer) entity).isCreative()) + if (entity instanceof PlayerEntity && ((PlayerEntity) entity).isCreative()) continue; totalEffects++; - if (entity instanceof EntityPlayer) { + if (entity instanceof PlayerEntity) { /* Raw will effect: Affects players */ if (world.getTotalWorldTime() % 10 == 0) { if (rawWill >= willDrain) { @@ -104,7 +104,7 @@ public class RitualGrounding extends Ritual { (some bosses, like the wither, have a restriction to motion modification, others, like the Ender Dragon, don't do potions) */ if (steadfastWill >= willDrain) { - if (entity instanceof EntityWither || entity instanceof EntityDragon) + if (entity instanceof WitherEntity || entity instanceof EnderDragonEntity) entity.move(MoverType.SELF, 0, -0.05, 0); // to work on Wither and EnderDragon without interfering with other mod author's decisions (looking at you, Vazkii) steadfastDrained += willDrain / 10f; @@ -156,29 +156,29 @@ public class RitualGrounding extends Ritual { return new RitualGrounding(); } - public double[] sharedWillEffects(World world, EntityLivingBase entity, double corrosiveWill, double destructiveWill, double vengefulWill, double corrosiveDrained, double destructiveDrained, double vengefulDrained) { + public double[] sharedWillEffects(World world, LivingEntity entity, double corrosiveWill, double destructiveWill, double vengefulWill, double corrosiveDrained, double destructiveDrained, double vengefulDrained) { /* Combination of corrosive + vengeful will: Levitation */ if (corrosiveWill >= willDrain && vengefulWill >= willDrain) { - entity.addPotionEffect(new PotionEffect(MobEffects.LEVITATION, 20, 10)); + entity.addPotionEffect(new EffectInstance(Effects.LEVITATION, 20, 10)); vengefulDrained += willDrain; corrosiveDrained += willDrain; /* Corrosive will effect: Suspension */ } else if (corrosiveWill >= willDrain) { - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.SUSPENDED, 20, 0)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.SUSPENDED, 20, 0)); corrosiveDrained += willDrain; /* Vengeful will effect: Stronger effect */ } else if (vengefulWill >= willDrain) { vengefulDrained += willDrain; - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.GROUNDED, 40, 20)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.GROUNDED, 40, 20)); } else - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.GROUNDED, 20, 10)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.GROUNDED, 20, 10)); /* Destructive will effect: Increased fall damage */ if (destructiveWill >= willDrain) { @@ -188,11 +188,11 @@ public class RitualGrounding extends Ritual { if (vengefulWill >= willDrain + vengefulDrained) { if (world.getTotalWorldTime() % 100 == 0) { vengefulDrained += willDrain; - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.HEAVY_HEART, 200, 2)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.HEAVY_HEART, 200, 2)); } } else if (world.getTotalWorldTime() % 50 == 0) - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.HEAVY_HEART, 100, 1)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.HEAVY_HEART, 100, 1)); } return new double[]{corrosiveDrained, destructiveDrained, vengefulDrained}; } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualHarvest.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualHarvest.java index 7376d7e7..73cb2ed2 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualHarvest.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualHarvest.java @@ -5,11 +5,11 @@ import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.ritual.harvest.HarvestRegistry; import WayofTime.bloodmagic.ritual.harvest.IHarvestHandler; import com.google.common.collect.Lists; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.inventory.InventoryHelper; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.items.CapabilityItemHandler; @@ -27,7 +27,7 @@ import java.util.function.Consumer; *

* This ritual includes a way to change the range based on what block is above * the MasterRitualStone. You can use - * {@link HarvestRegistry#registerRangeAmplifier(net.minecraft.block.state.IBlockState, int)} to register a + * {@link HarvestRegistry#registerRangeAmplifier(BlockState, int)} to register a * new amplifier. */ @RitualRegister("harvest") @@ -89,11 +89,11 @@ public class RitualHarvest extends Ritual { } public static boolean harvestBlock(World world, BlockPos cropPos, BlockPos controllerPos) { - IBlockState harvestState = world.getBlockState(cropPos); + BlockState harvestState = world.getBlockState(cropPos); TileEntity potentialInventory = world.getTileEntity(controllerPos.up()); IItemHandler itemHandler = null; - if (potentialInventory != null && potentialInventory.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN)) - itemHandler = potentialInventory.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN); + if (potentialInventory != null && potentialInventory.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN)) + itemHandler = potentialInventory.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN); for (IHarvestHandler handler : HarvestRegistry.getHarvestHandlers()) { if (handler.test(world, cropPos, harvestState)) { diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualInterdiction.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualInterdiction.java index a1a38ea0..56d3323b 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualInterdiction.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualInterdiction.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -31,8 +31,8 @@ public class RitualInterdiction extends Ritual { AreaDescriptor interdictionRange = masterRitualStone.getBlockRange(INTERDICTION_RANGE); - for (EntityLivingBase entity : world.getEntitiesWithinAABB(EntityLivingBase.class, interdictionRange.getAABB(masterRitualStone.getBlockPos()))) { - if (entity instanceof EntityPlayer && (((EntityPlayer) entity).capabilities.isCreativeMode || ((EntityPlayer) entity).getGameProfile().getId().equals(masterRitualStone.getOwner()))) + for (LivingEntity entity : world.getEntitiesWithinAABB(LivingEntity.class, interdictionRange.getAABB(masterRitualStone.getBlockPos()))) { + if (entity instanceof PlayerEntity && (((PlayerEntity) entity).capabilities.isCreativeMode || ((PlayerEntity) entity).getGameProfile().getId().equals(masterRitualStone.getOwner()))) continue; double xDif = entity.posX - (masterRitualStone.getBlockPos().getX() + 0.5); @@ -44,7 +44,7 @@ public class RitualInterdiction extends Ritual { entity.motionZ = 0.1 * zDif; entity.fallDistance = 0; - if (entity instanceof EntityPlayer) { + if (entity instanceof PlayerEntity) { entity.velocityChanged = true; } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualJumping.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualJumping.java index d38f2085..bfc32dc2 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualJumping.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualJumping.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -38,8 +38,8 @@ public class RitualJumping extends Ritual { int totalEffects = 0; AreaDescriptor jumpRange = masterRitualStone.getBlockRange(JUMP_RANGE); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, jumpRange.getAABB(masterRitualStone.getBlockPos())); - for (EntityLivingBase entity : entities) { + List entities = world.getEntitiesWithinAABB(LivingEntity.class, jumpRange.getAABB(masterRitualStone.getBlockPos())); + for (LivingEntity entity : entities) { if (totalEffects >= maxEffects) { break; } @@ -54,8 +54,8 @@ public class RitualJumping extends Ritual { entity.motionY = motionY; totalEffects++; - if (entity instanceof EntityPlayer) { - Utils.setPlayerSpeedFromServer((EntityPlayer) entity, entity.motionX, entity.motionY, entity.motionZ); + if (entity instanceof PlayerEntity) { + Utils.setPlayerSpeedFromServer((PlayerEntity) entity, entity.motionX, entity.motionY, entity.motionZ); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLava.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLava.java index 2bddc06b..4c1f8d11 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLava.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLava.java @@ -8,17 +8,17 @@ import WayofTime.bloodmagic.soul.DemonWillHolder; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.potion.PotionEffect; +import net.minecraft.block.BlockState; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.fluids.FluidRegistry; import net.minecraftforge.fluids.FluidStack; @@ -84,7 +84,7 @@ public class RitualLava extends Ritual { } for (BlockPos newPos : lavaRange.getContainedPositions(pos)) { - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); if (world.isAirBlock(newPos) || Utils.isFlowingLiquid(state)) { int lpCost = getLPCostForRawWill(rawWill); if (currentEssence < lpCost) { @@ -134,19 +134,19 @@ public class RitualLava extends Ritual { AreaDescriptor fuseRange = masterRitualStone.getBlockRange(FIRE_FUSE_RANGE); AxisAlignedBB fuseArea = fuseRange.getAABB(pos); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, fuseArea); + List entities = world.getEntitiesWithinAABB(LivingEntity.class, fuseArea); - for (EntityLivingBase entity : entities) { + for (LivingEntity entity : entities) { if (vengefulWill < vengefulWillDrain) { break; } - if (entity instanceof EntityPlayer) { + if (entity instanceof PlayerEntity) { continue; } if (!entity.isPotionActive(RegistrarBloodMagic.FIRE_FUSE)) { - entity.addPotionEffect(new PotionEffect(RegistrarBloodMagic.FIRE_FUSE, 100, 0)); + entity.addPotionEffect(new EffectInstance(RegistrarBloodMagic.FIRE_FUSE, 100, 0)); vengefulDrained += vengefulWillDrain; vengefulWill -= vengefulWillDrain; @@ -165,14 +165,14 @@ public class RitualLava extends Ritual { int duration = getFireResistForWill(steadfastWill); AxisAlignedBB resistArea = resistRange.getAABB(pos); - List entities = world.getEntitiesWithinAABB(EntityPlayer.class, resistArea); + List entities = world.getEntitiesWithinAABB(PlayerEntity.class, resistArea); - for (EntityPlayer entity : entities) { + for (PlayerEntity entity : entities) { if (steadfastWill < steadfastWillDrain) { break; } - if (!entity.isPotionActive(MobEffects.FIRE_RESISTANCE) || (entity.getActivePotionEffect(MobEffects.FIRE_RESISTANCE).getDuration() < 2)) { - entity.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, 100, 0)); + if (!entity.isPotionActive(Effects.FIRE_RESISTANCE) || (entity.getActivePotionEffect(Effects.FIRE_RESISTANCE).getDuration() < 2)) { + entity.addPotionEffect(new EffectInstance(Effects.FIRE_RESISTANCE, 100, 0)); steadfastDrained += steadfastWillDrain; steadfastWill -= steadfastWillDrain; @@ -191,9 +191,9 @@ public class RitualLava extends Ritual { float damage = getCorrosiveDamageForWill(corrosiveWill); AxisAlignedBB damageArea = resistRange.getAABB(pos); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, damageArea); + List entities = world.getEntitiesWithinAABB(LivingEntity.class, damageArea); - for (EntityLivingBase entity : entities) { + for (LivingEntity entity : entities) { if (corrosiveWill < corrosiveWillDrain) { break; } @@ -229,8 +229,8 @@ public class RitualLava extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { - return new ITextComponent[]{new TextComponentTranslation(this.getTranslationKey() + ".info"), new TextComponentTranslation(this.getTranslationKey() + ".default.info"), new TextComponentTranslation(this.getTranslationKey() + ".corrosive.info"), new TextComponentTranslation(this.getTranslationKey() + ".steadfast.info"), new TextComponentTranslation(this.getTranslationKey() + ".destructive.info"), new TextComponentTranslation(this.getTranslationKey() + ".vengeful.info")}; + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { + return new ITextComponent[]{new TranslationTextComponent(this.getTranslationKey() + ".info"), new TranslationTextComponent(this.getTranslationKey() + ".default.info"), new TranslationTextComponent(this.getTranslationKey() + ".corrosive.info"), new TranslationTextComponent(this.getTranslationKey() + ".steadfast.info"), new TranslationTextComponent(this.getTranslationKey() + ".destructive.info"), new TranslationTextComponent(this.getTranslationKey() + ".vengeful.info")}; } @Override diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLivingArmourDowngrade.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLivingArmourDowngrade.java index 0d633b79..dcf2d4d7 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLivingArmourDowngrade.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualLivingArmourDowngrade.java @@ -9,14 +9,14 @@ import WayofTime.bloodmagic.recipe.LivingArmourDowngradeRecipe; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.ChatUtil; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.entity.item.EntityItemFrame; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.effect.LightningBoltEntity; +import net.minecraft.entity.item.ItemFrameEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; @@ -52,7 +52,7 @@ public class RitualLivingArmourDowngrade extends Ritual { AreaDescriptor downgradeRange = masterRitualStone.getBlockRange(DOWNGRADE_RANGE); boolean isActivatorPresent = false; - for (EntityPlayer player : world.getEntitiesWithinAABB(EntityPlayer.class, downgradeRange.getAABB(masterRitualStone.getBlockPos()))) { + for (PlayerEntity player : world.getEntitiesWithinAABB(PlayerEntity.class, downgradeRange.getAABB(masterRitualStone.getBlockPos()))) { if (player.getGameProfile().getId().equals(masterRitualStone.getOwner())) { ItemStack keyStack = getStackFromItemFrame(world, masterPos, masterRitualStone.getDirection()); if (keyStack.isEmpty()) { @@ -67,12 +67,12 @@ public class RitualLivingArmourDowngrade extends Ritual { internalTimer++; if (player.isSneaking()) { - double distance2 = masterPos.offset(EnumFacing.UP).distanceSqToCenter(player.posX, player.posY, player.posZ); + double distance2 = masterPos.offset(Direction.UP).distanceSqToCenter(player.posX, player.posY, player.posZ); if (distance2 > 1) { return; } - BlockPos chestPos = masterPos.offset(masterRitualStone.getDirection(), 2).offset(EnumFacing.UP); + BlockPos chestPos = masterPos.offset(masterRitualStone.getDirection(), 2).offset(Direction.UP); TileEntity tile = world.getTileEntity(chestPos); if (tile == null) { return; @@ -91,7 +91,7 @@ public class RitualLivingArmourDowngrade extends Ritual { if (recipe != null) { LivingArmourUpgrade upgrade = recipe.getRecipeOutput(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { if (armour.canApplyUpgrade(player, upgrade)) { @@ -100,7 +100,7 @@ public class RitualLivingArmourDowngrade extends Ritual { recipe.consumeInventory(inv); - EntityLightningBolt lightning = new EntityLightningBolt(world, chestPos.getX(), chestPos.getY(), chestPos.getZ(), true); + LightningBoltEntity lightning = new LightningBoltEntity(world, chestPos.getX(), chestPos.getY(), chestPos.getZ(), true); world.spawnEntity(lightning); masterRitualStone.setActive(false); @@ -125,26 +125,26 @@ public class RitualLivingArmourDowngrade extends Ritual { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { super.readFromNBT(tag); this.internalTimer = tag.getInteger("internalTimer"); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { super.writeToNBT(tag); tag.setInteger("internalTimer", internalTimer); } - public ItemStack getStackFromItemFrame(World world, BlockPos masterPos, EnumFacing direction) { + public ItemStack getStackFromItemFrame(World world, BlockPos masterPos, Direction direction) { BlockPos offsetPos = new BlockPos(0, 3, 0); offsetPos = offsetPos.offset(direction, 2); AxisAlignedBB bb = new AxisAlignedBB(masterPos.add(offsetPos)); - List frames = world.getEntitiesWithinAABB(EntityItemFrame.class, bb); - for (EntityItemFrame frame : frames) { + List frames = world.getEntitiesWithinAABB(ItemFrameEntity.class, bb); + for (ItemFrameEntity frame : frames) { if (!frame.getDisplayedItem().isEmpty()) { return frame.getDisplayedItem(); } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMagnetic.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMagnetic.java index 108b7c50..5be8d54a 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMagnetic.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMagnetic.java @@ -5,14 +5,14 @@ import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.Utils; import com.mojang.authlib.GameProfile; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.item.ItemStack; import net.minecraft.util.math.Vec3d; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import net.minecraftforge.oredict.OreDictionary; import net.minecraftforge.common.util.FakePlayer; import net.minecraftforge.common.util.FakePlayerFactory; @@ -59,7 +59,7 @@ public class RitualMagnetic extends Ritual { } } - IBlockState downState = world.getBlockState(pos.down()); + BlockState downState = world.getBlockState(pos.down()); int radius = getRadius(downState.getBlock()); if (replace) { @@ -78,9 +78,9 @@ public class RitualMagnetic extends Ritual { while (k <= radius) { BlockPos newPos = pos.add(i, j, k); Vec3d newPosVector = new Vec3d(newPos); - IBlockState state = world.getBlockState(newPos); + BlockState state = world.getBlockState(newPos); RayTraceResult fakeRayTrace = world.rayTraceBlocks(MRSpos, newPosVector, false); - ItemStack checkStack = state.getBlock().getPickBlock(state, fakeRayTrace, world, newPos, getFakePlayer((WorldServer) world)); + ItemStack checkStack = state.getBlock().getPickBlock(state, fakeRayTrace, world, newPos, getFakePlayer((ServerWorld) world)); if (isBlockOre(checkStack)) { Utils.swapLocations(world, newPos, world, replacement); masterRitualStone.getOwnerNetwork().syphon(masterRitualStone.ticket(getRefreshCost())); @@ -145,7 +145,7 @@ public class RitualMagnetic extends Ritual { return new RitualMagnetic(); } - private FakePlayer getFakePlayer(WorldServer world) { + private FakePlayer getFakePlayer(ServerWorld world) { return fakePlayer == null ? fakePlayer = FakePlayerFactory.get(world, new GameProfile(null, BloodMagic.MODID + "_ritual_magnetic")) : fakePlayer; } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMeteor.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMeteor.java index 9579495f..38919ab6 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMeteor.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualMeteor.java @@ -8,7 +8,7 @@ import WayofTime.bloodmagic.meteor.Meteor; import WayofTime.bloodmagic.meteor.MeteorRegistry; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.soul.EnumDemonWillType; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -44,7 +44,7 @@ public class RitualMeteor extends Ritual { double vengefulWill = this.getWillRespectingConfig(world, pos, EnumDemonWillType.VENGEFUL, willConfig); AreaDescriptor itemDetectionRange = masterRitualStone.getBlockRange(ITEM_RANGE); - List itemList = world.getEntitiesWithinAABB(EntityItem.class, itemDetectionRange.getAABB(pos)); + List itemList = world.getEntitiesWithinAABB(ItemEntity.class, itemDetectionRange.getAABB(pos)); double radiusModifier = getRadiusModifier(rawWill); double explosionModifier = getExplosionModifier(steadfastWill); @@ -52,7 +52,7 @@ public class RitualMeteor extends Ritual { boolean successful = false; - for (EntityItem entityItem : itemList) { + for (ItemEntity entityItem : itemList) { ItemStack stack = entityItem.getItem(); Meteor meteor = MeteorRegistry.getMeteorForItem(stack); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPlacer.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPlacer.java index 5407b258..a5173a28 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPlacer.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPlacer.java @@ -3,11 +3,11 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.item.ItemBlock; +import net.minecraft.block.BlockState; +import net.minecraft.item.BlockItem; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.items.CapabilityItemHandler; @@ -46,8 +46,8 @@ public class RitualPlacer extends Ritual { AreaDescriptor areaDescriptor = masterRitualStone.getBlockRange(PLACER_RANGE); if (tileEntity != null) { - if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN)) { - IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, EnumFacing.DOWN); + if (tileEntity.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN)) { + IItemHandler itemHandler = tileEntity.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN); if (itemHandler.getSlots() <= 0) { return; @@ -60,10 +60,10 @@ public class RitualPlacer extends Ritual { for (int invSlot = 0; invSlot < itemHandler.getSlots(); invSlot++) { ItemStack stack = itemHandler.extractItem(invSlot, 1, true); - if (stack.isEmpty() || !(stack.getItem() instanceof ItemBlock)) + if (stack.isEmpty() || !(stack.getItem() instanceof BlockItem)) continue; - IBlockState placeState = Block.getBlockFromItem(itemHandler.getStackInSlot(invSlot).getItem()).getStateFromMeta(itemHandler.getStackInSlot(invSlot).getItemDamage()); + BlockState placeState = Block.getBlockFromItem(itemHandler.getStackInSlot(invSlot).getItem()).getStateFromMeta(itemHandler.getStackInSlot(invSlot).getItemDamage()); world.setBlockState(blockPos, placeState); itemHandler.extractItem(invSlot, 1, false); tileEntity.markDirty(); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPortal.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPortal.java index 8ec0b006..c64a1713 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPortal.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPortal.java @@ -6,10 +6,10 @@ import WayofTime.bloodmagic.teleport.PortalLocation; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.ritual.portal.LocationsHandler; import WayofTime.bloodmagic.tile.TileDimensionalPortal; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.fml.common.registry.ForgeRegistries; @@ -22,28 +22,28 @@ public class RitualPortal extends Ritual { public static final String PORTAL_NBT_TAG = "PortalRitualTag"; public static final String PORTAL_ID_TAG = "PortalRitualID"; - private NBTTagCompound portalRitualTag; + private CompoundNBT portalRitualTag; public RitualPortal() { super("ritualPortal", 0, 50000, "ritual." + BloodMagic.MODID + ".portalRitual"); - portalRitualTag = new NBTTagCompound(); + portalRitualTag = new CompoundNBT(); } @Override - public boolean activateRitual(IMasterRitualStone masterRitualStone, EntityPlayer player, UUID owner) { + public boolean activateRitual(IMasterRitualStone masterRitualStone, PlayerEntity player, UUID owner) { World world = masterRitualStone.getWorldObj(); int x = masterRitualStone.getBlockPos().getX(); int y = masterRitualStone.getBlockPos().getY(); int z = masterRitualStone.getBlockPos().getZ(); - EnumFacing direction = masterRitualStone.getDirection(); + Direction direction = masterRitualStone.getDirection(); String name = owner.toString(); - IBlockState blockState; + BlockState blockState; if (!world.isRemote) { portalRitualTag.removeTag(PORTAL_ID_TAG); - if (direction == EnumFacing.NORTH || direction == EnumFacing.SOUTH) { + if (direction == Direction.NORTH || direction == Direction.SOUTH) { for (int i = x - 3; i <= x + 3; i++) { for (int k = z - 2; k <= z + 2; k++) { if (!world.isAirBlock(new BlockPos(i, y, k)) && !(getBlockState(world, i, y, k).getBlock() == RegistrarBloodMagicBlocks.RITUAL_STONE)) { @@ -64,7 +64,7 @@ public class RitualPortal extends Ritual { name = addStringToEnd(name, ForgeRegistries.BLOCKS.getKey(blockState.getBlock()) + String.valueOf(blockState.getBlock().getMetaFromState(blockState))); } } - } else if (direction == EnumFacing.EAST || direction == EnumFacing.WEST) { + } else if (direction == Direction.EAST || direction == Direction.WEST) { for (int k = z - 3; k <= z + 3; k++) { for (int i = x - 2; i <= x + 2; i++) { if (!world.isAirBlock(new BlockPos(i, y, k)) && !(getBlockState(world, i, y, k).getBlock() == RegistrarBloodMagicBlocks.RITUAL_STONE)) { @@ -105,15 +105,15 @@ public class RitualPortal extends Ritual { int x = masterRitualStone.getBlockPos().getX(); int y = masterRitualStone.getBlockPos().getY(); int z = masterRitualStone.getBlockPos().getZ(); - EnumFacing direction = masterRitualStone.getDirection(); + Direction direction = masterRitualStone.getDirection(); - if (direction == EnumFacing.NORTH || direction == EnumFacing.SOUTH) { + if (direction == Direction.NORTH || direction == Direction.SOUTH) { for (int i = x - 1; i <= x + 1; i++) { for (int j = y + 1; j <= y + 3; j++) { BlockPos tempPos = new BlockPos(i, j, z); if (world.isAirBlock(tempPos)) { - IBlockState blockState = RegistrarBloodMagicBlocks.DIMENSIONAL_PORTAL.getStateFromMeta(0); + BlockState blockState = RegistrarBloodMagicBlocks.DIMENSIONAL_PORTAL.getStateFromMeta(0); world.setBlockState(tempPos, blockState, 3); if (world.getTileEntity(tempPos) != null && world.getTileEntity(tempPos) instanceof TileDimensionalPortal) { @@ -124,12 +124,12 @@ public class RitualPortal extends Ritual { } } } - } else if (direction == EnumFacing.EAST || direction == EnumFacing.WEST) { + } else if (direction == Direction.EAST || direction == Direction.WEST) { for (int k = z - 1; k <= z + 1; k++) { for (int j = y + 1; j <= y + 3; j++) { BlockPos tempPos = new BlockPos(x, j, k); if (world.isAirBlock(tempPos)) { - IBlockState blockState = RegistrarBloodMagicBlocks.DIMENSIONAL_PORTAL.getStateFromMeta(1); + BlockState blockState = RegistrarBloodMagicBlocks.DIMENSIONAL_PORTAL.getStateFromMeta(1); world.setBlockState(tempPos, blockState, 3); if (world.getTileEntity(tempPos) != null && world.getTileEntity(tempPos) instanceof TileDimensionalPortal) { @@ -150,11 +150,11 @@ public class RitualPortal extends Ritual { int x = masterRitualStone.getBlockPos().getX(); int y = masterRitualStone.getBlockPos().getY(); int z = masterRitualStone.getBlockPos().getZ(); - EnumFacing direction = masterRitualStone.getDirection(); + Direction direction = masterRitualStone.getDirection(); LocationsHandler.getLocationsHandler().removeLocation(portalRitualTag.getString(PORTAL_ID_TAG), new PortalLocation(x, y + 1, z, world.provider.getDimension())); - if (direction == EnumFacing.NORTH || direction == EnumFacing.SOUTH) { + if (direction == Direction.NORTH || direction == Direction.SOUTH) { for (int i = x - 2; i <= x + 2; i++) { for (int j = y + 1; j <= y + 3; j++) { if (getBlockState(world, i, j, z).getBlock() == RegistrarBloodMagicBlocks.DIMENSIONAL_PORTAL) { @@ -162,7 +162,7 @@ public class RitualPortal extends Ritual { } } } - } else if (direction == EnumFacing.EAST || direction == EnumFacing.WEST) { + } else if (direction == Direction.EAST || direction == Direction.WEST) { for (int k = z - 2; k <= z + 2; k++) { for (int j = y + 1; j <= y + 3; j++) { if (getBlockState(world, x, j, k).getBlock() == RegistrarBloodMagicBlocks.DIMENSIONAL_PORTAL) { @@ -207,20 +207,20 @@ public class RitualPortal extends Ritual { } @Override - public void readFromNBT(NBTTagCompound tag) { + public void readFromNBT(CompoundNBT tag) { super.readFromNBT(tag); portalRitualTag = tag.getCompoundTag(PORTAL_NBT_TAG); } @Override - public void writeToNBT(NBTTagCompound tag) { + public void writeToNBT(CompoundNBT tag) { super.writeToNBT(tag); tag.setTag(PORTAL_NBT_TAG, portalRitualTag); } - public IBlockState getBlockState(World world, int x, int y, int z) { + public BlockState getBlockState(World world, int x, int y, int z) { return world.getBlockState(new BlockPos(x, y, z)); } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java index 957145c0..c98e359d 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import com.google.common.collect.Lists; import net.minecraft.block.BlockLiquid; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.fluids.FluidStack; @@ -48,16 +48,16 @@ public class RitualPump extends Ritual { return; } - if (tileEntity != null && tileEntity.hasCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, EnumFacing.DOWN)) { - IFluidHandler fluidHandler = tileEntity.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, EnumFacing.DOWN); - IBlockState tankState = world.getBlockState(masterRitualStone.getBlockPos().up()); + if (tileEntity != null && tileEntity.hasCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, Direction.DOWN)) { + IFluidHandler fluidHandler = tileEntity.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, Direction.DOWN); + BlockState tankState = world.getBlockState(masterRitualStone.getBlockPos().up()); int maxDrain = fluidHandler.getTankProperties()[0].getCapacity(); if (fluidHandler.getTankProperties()[0].getContents() != null && fluidHandler.getTankProperties()[0].getContents().amount >= maxDrain) return; for (BlockPos pos : masterRitualStone.getBlockRange(PUMP_RANGE).getContainedPositions(masterRitualStone.getBlockPos())) { - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); IFluidHandler blockHandler = null; if (state.getBlock() instanceof BlockLiquid) blockHandler = new BlockLiquidWrapper((BlockLiquid) state.getBlock(), world, pos); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualRegeneration.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualRegeneration.java index 50db44a2..fcd279d0 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualRegeneration.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualRegeneration.java @@ -6,10 +6,10 @@ import WayofTime.bloodmagic.util.DamageSourceBloodMagic; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.Effects; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -77,17 +77,17 @@ public class RitualRegeneration extends Ritual { AreaDescriptor damageArea = masterRitualStone.getBlockRange(VAMPIRE_RANGE); AxisAlignedBB damageRange = damageArea.getAABB(pos); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, healRange); - List players = world.getEntitiesWithinAABB(EntityPlayer.class, healRange); - List damagedEntities = world.getEntitiesWithinAABB(EntityLivingBase.class, damageRange); + List entities = world.getEntitiesWithinAABB(LivingEntity.class, healRange); + List players = world.getEntitiesWithinAABB(PlayerEntity.class, healRange); + List damagedEntities = world.getEntitiesWithinAABB(LivingEntity.class, damageRange); if (syphonHealth) { - for (EntityPlayer player : players) { + for (PlayerEntity player : players) { if (player.getHealth() <= player.getMaxHealth() - 1) { float syphonedHealthAmount = getSyphonAmountForWill(corrosiveWill); Collections.shuffle(damagedEntities); - for (EntityLivingBase damagedEntity : damagedEntities) { - if (damagedEntity instanceof EntityPlayer) { + for (LivingEntity damagedEntity : damagedEntities) { + if (damagedEntity instanceof PlayerEntity) { continue; } @@ -108,11 +108,11 @@ public class RitualRegeneration extends Ritual { } } - for (EntityLivingBase entity : entities) { + for (LivingEntity entity : entities) { float health = entity.getHealth(); if (health <= entity.getMaxHealth() - 1) { - if (entity.isPotionApplicable(new PotionEffect(MobEffects.REGENERATION))) { - if (entity instanceof EntityPlayer) { + if (entity.isPotionApplicable(new EffectInstance(Effects.REGENERATION))) { + if (entity instanceof PlayerEntity) { totalCost += getRefreshCost(); currentEssence -= getRefreshCost(); } else { @@ -120,7 +120,7 @@ public class RitualRegeneration extends Ritual { currentEssence -= getRefreshCost() / 10; } - entity.addPotionEffect(new PotionEffect(MobEffects.REGENERATION, 50, 0, false, false)); + entity.addPotionEffect(new EffectInstance(Effects.REGENERATION, 50, 0, false, false)); totalEffects++; @@ -129,7 +129,7 @@ public class RitualRegeneration extends Ritual { } } } - if (applyAbsorption && entity instanceof EntityPlayer) { + if (applyAbsorption && entity instanceof PlayerEntity) { if (applyAbsorption) { float added = Utils.addAbsorptionToMaximum(entity, absorptionRate, maxAbsorption, 1000); } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSpeed.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSpeed.java index 244c038e..38ecde78 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSpeed.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSpeed.java @@ -5,12 +5,12 @@ import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.util.EnumFacing; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import java.util.List; @@ -60,7 +60,7 @@ public class RitualSpeed extends Ritual { rawWill = 0; //Simplifies later calculations } - for (EntityLivingBase entity : world.getEntitiesWithinAABB(EntityLivingBase.class, speedRange.getAABB(masterRitualStone.getBlockPos()))) { + for (LivingEntity entity : world.getEntitiesWithinAABB(LivingEntity.class, speedRange.getAABB(masterRitualStone.getBlockPos()))) { if (entity.isSneaking()) continue; @@ -71,7 +71,7 @@ public class RitualSpeed extends Ritual { continue; } - if (entity instanceof EntityPlayer && (transportChildren ^ transportAdults)) { + if (entity instanceof PlayerEntity && (transportChildren ^ transportAdults)) { continue; } @@ -87,7 +87,7 @@ public class RitualSpeed extends Ritual { double motionY = getVerticalSpeedForWill(rawWill); double speed = getHorizontalSpeedForWill(rawWill); - EnumFacing direction = masterRitualStone.getDirection(); + Direction direction = masterRitualStone.getDirection(); if (rawWill >= rawWillDrain) { rawWill -= rawWillDrain; @@ -125,8 +125,8 @@ public class RitualSpeed extends Ritual { break; } - if (entity instanceof EntityPlayer) { - Utils.setPlayerSpeedFromServer((EntityPlayer) entity, entity.motionX, entity.motionY, entity.motionZ); + if (entity instanceof PlayerEntity) { + Utils.setPlayerSpeedFromServer((PlayerEntity) entity, entity.motionX, entity.motionY, entity.motionZ); } } @@ -170,8 +170,8 @@ public class RitualSpeed extends Ritual { } @Override - public ITextComponent[] provideInformationOfRitualToPlayer(EntityPlayer player) { - return new ITextComponent[]{new TextComponentTranslation(this.getTranslationKey() + ".info"), new TextComponentTranslation(this.getTranslationKey() + ".default.info"), new TextComponentTranslation(this.getTranslationKey() + ".corrosive.info"), new TextComponentTranslation(this.getTranslationKey() + ".steadfast.info"), new TextComponentTranslation(this.getTranslationKey() + ".destructive.info"), new TextComponentTranslation(this.getTranslationKey() + ".vengeful.info")}; + public ITextComponent[] provideInformationOfRitualToPlayer(PlayerEntity player) { + return new ITextComponent[]{new TranslationTextComponent(this.getTranslationKey() + ".info"), new TranslationTextComponent(this.getTranslationKey() + ".default.info"), new TranslationTextComponent(this.getTranslationKey() + ".corrosive.info"), new TranslationTextComponent(this.getTranslationKey() + ".steadfast.info"), new TranslationTextComponent(this.getTranslationKey() + ".destructive.info"), new TranslationTextComponent(this.getTranslationKey() + ".vengeful.info")}; } public double getVerticalSpeedForWill(double rawWill) { diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSuppression.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSuppression.java index bbf02e04..157bd08d 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSuppression.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualSuppression.java @@ -4,7 +4,7 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.tile.TileSpectralBlock; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -34,7 +34,7 @@ public class RitualSuppression extends Ritual { AreaDescriptor suppressionRange = masterRitualStone.getBlockRange(SUPPRESSION_RANGE); for (BlockPos blockPos : suppressionRange.getContainedPositions(masterRitualStone.getBlockPos())) { - IBlockState state = world.getBlockState(blockPos); + BlockState state = world.getBlockState(blockPos); if (Utils.isBlockLiquid(state) && world.getTileEntity(blockPos) == null) TileSpectralBlock.createSpectralBlock(world, blockPos, refresh); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualUpgradeRemove.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualUpgradeRemove.java index 1addb3c6..e322fec6 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualUpgradeRemove.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualUpgradeRemove.java @@ -9,9 +9,9 @@ import WayofTime.bloodmagic.livingArmour.StatTracker; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.helper.ItemHelper.LivingUpgrades; import com.google.common.collect.Iterables; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.effect.LightningBoltEntity; +import net.minecraft.entity.item.ItemEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -42,9 +42,9 @@ public class RitualUpgradeRemove extends Ritual { AreaDescriptor checkRange = masterRitualStone.getBlockRange(CHECK_RANGE); - List playerList = world.getEntitiesWithinAABB(EntityPlayer.class, checkRange.getAABB(pos)); + List playerList = world.getEntitiesWithinAABB(PlayerEntity.class, checkRange.getAABB(pos)); - for (EntityPlayer player : playerList) { + for (PlayerEntity player : playerList) { if (LivingArmour.hasFullSet(player)) { boolean removedUpgrade = false; @@ -66,7 +66,7 @@ public class RitualUpgradeRemove extends Ritual { if (successful) { removedUpgrade = true; - world.spawnEntity(new EntityItem(world, player.posX, player.posY, player.posZ, upgradeStack)); + world.spawnEntity(new ItemEntity(world, player.posX, player.posY, player.posZ, upgradeStack)); for (Entry trackerEntry : armour.trackerMap.entrySet()) { StatTracker tracker = trackerEntry.getValue(); if (tracker != null) { @@ -85,7 +85,7 @@ public class RitualUpgradeRemove extends Ritual { masterRitualStone.setActive(false); - world.spawnEntity(new EntityLightningBolt(world, pos.getX(), pos.getY() - 1, pos.getZ(), true)); + world.spawnEntity(new LightningBoltEntity(world, pos.getX(), pos.getY() - 1, pos.getZ(), true)); } } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWater.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWater.java index 27a7b7fd..a06bbfcb 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWater.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWater.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWellOfSuffering.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWellOfSuffering.java index 921963ff..96637f32 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWellOfSuffering.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualWellOfSuffering.java @@ -4,8 +4,8 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.api.impl.BloodMagicAPI; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.tile.TileAltar; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -74,9 +74,9 @@ public class RitualWellOfSuffering extends Ritual { AreaDescriptor damageRange = masterRitualStone.getBlockRange(DAMAGE_RANGE); AxisAlignedBB range = damageRange.getAABB(pos); - List entities = world.getEntitiesWithinAABB(EntityLivingBase.class, range); + List entities = world.getEntitiesWithinAABB(LivingEntity.class, range); - for (EntityLivingBase entity : entities) { + for (LivingEntity entity : entities) { EntityEntry entityEntry = EntityRegistry.getEntry(entity.getClass()); if (entityEntry == null || BloodMagicAPI.INSTANCE.getBlacklist().getSacrifice().contains(entityEntry.getRegistryName())) @@ -87,7 +87,7 @@ public class RitualWellOfSuffering extends Ritual { if (lifeEssenceRatio <= 0) continue; - if (entity.isEntityAlive() && !(entity instanceof EntityPlayer)) { + if (entity.isEntityAlive() && !(entity instanceof PlayerEntity)) { if (entity.attackEntityFrom(RitualManager.RITUAL_DAMAGE, 1)) { if (entity.isChild()) lifeEssenceRatio *= 0.5F; diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualZephyr.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualZephyr.java index 1690ac88..5ca867d6 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualZephyr.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualZephyr.java @@ -3,10 +3,10 @@ package WayofTime.bloodmagic.ritual.types; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.*; import WayofTime.bloodmagic.util.Utils; -import net.minecraft.entity.item.EntityItem; +import net.minecraft.entity.item.ItemEntity; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -42,17 +42,17 @@ public class RitualZephyr extends Ritual { AreaDescriptor zephyrRange = masterRitualStone.getBlockRange(ZEPHYR_RANGE); - List itemList = world.getEntitiesWithinAABB(EntityItem.class, zephyrRange.getAABB(masterRitualStone.getBlockPos())); + List itemList = world.getEntitiesWithinAABB(ItemEntity.class, zephyrRange.getAABB(masterRitualStone.getBlockPos())); int count = 0; - for (EntityItem entityItem : itemList) { + for (ItemEntity entityItem : itemList) { if (entityItem.isDead) { continue; } ItemStack copyStack = entityItem.getItem().copy(); int originalAmount = copyStack.getCount(); - ItemStack newStack = Utils.insertStackIntoTile(copyStack, tileInventory, EnumFacing.DOWN); + ItemStack newStack = Utils.insertStackIntoTile(copyStack, tileInventory, Direction.DOWN); if (!newStack.isEmpty() && newStack.getCount() < originalAmount) { count++; diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualDay.java b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualDay.java index 9d2a87ed..674232c4 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualDay.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualDay.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.ritual.types.imperfect; import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.imperfect.IImperfectRitualStone; import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; //@RitualRegister.Imperfect("day") public class ImperfectRitualDay extends ImperfectRitual { @@ -13,7 +13,7 @@ public class ImperfectRitualDay extends ImperfectRitual { } @Override - public boolean onActivate(IImperfectRitualStone imperfectRitualStone, EntityPlayer player) { + public boolean onActivate(IImperfectRitualStone imperfectRitualStone, PlayerEntity player) { if (!imperfectRitualStone.getRitualWorld().isRemote) imperfectRitualStone.getRitualWorld().setWorldTime((imperfectRitualStone.getRitualWorld().getWorldTime() / 24000) * 24000); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualNight.java b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualNight.java index f5a8746b..31fa5e29 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualNight.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualNight.java @@ -4,8 +4,8 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.RitualRegister; import WayofTime.bloodmagic.ritual.imperfect.IImperfectRitualStone; import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; @RitualRegister.Imperfect("night") public class ImperfectRitualNight extends ImperfectRitual { @@ -14,7 +14,7 @@ public class ImperfectRitualNight extends ImperfectRitual { } @Override - public boolean onActivate(IImperfectRitualStone imperfectRitualStone, EntityPlayer player) { + public boolean onActivate(IImperfectRitualStone imperfectRitualStone, PlayerEntity player) { if (!imperfectRitualStone.getRitualWorld().isRemote) imperfectRitualStone.getRitualWorld().setWorldTime((imperfectRitualStone.getRitualWorld().getWorldTime() / 24000) * 24000 + 13800); diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualRain.java b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualRain.java index b7790a1e..963a77f2 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualRain.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualRain.java @@ -4,8 +4,8 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.RitualRegister; import WayofTime.bloodmagic.ritual.imperfect.IImperfectRitualStone; import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; +import net.minecraft.block.Blocks; +import net.minecraft.entity.player.PlayerEntity; @RitualRegister.Imperfect("rain") public class ImperfectRitualRain extends ImperfectRitual { @@ -14,7 +14,7 @@ public class ImperfectRitualRain extends ImperfectRitual { } @Override - public boolean onActivate(IImperfectRitualStone imperfectRitualStone, EntityPlayer player) { + public boolean onActivate(IImperfectRitualStone imperfectRitualStone, PlayerEntity player) { if (!imperfectRitualStone.getRitualWorld().isRemote) { imperfectRitualStone.getRitualWorld().getWorldInfo().setRaining(true); } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualResistance.java b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualResistance.java index b0281f53..6ba7d951 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualResistance.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualResistance.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.RitualRegister; import WayofTime.bloodmagic.ritual.imperfect.IImperfectRitualStone; import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.potion.Effects; +import net.minecraft.potion.EffectInstance; @RitualRegister.Imperfect("resistance") public class ImperfectRitualResistance extends ImperfectRitual { @@ -16,9 +16,9 @@ public class ImperfectRitualResistance extends ImperfectRitual { } @Override - public boolean onActivate(IImperfectRitualStone imperfectRitualStone, EntityPlayer player) { + public boolean onActivate(IImperfectRitualStone imperfectRitualStone, PlayerEntity player) { - player.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, 1200, 1)); + player.addPotionEffect(new EffectInstance(Effects.FIRE_RESISTANCE, 1200, 1)); return true; } diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualZombie.java b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualZombie.java index bc8cb7cf..a0fc85ec 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualZombie.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/imperfect/ImperfectRitualZombie.java @@ -4,11 +4,11 @@ import WayofTime.bloodmagic.BloodMagic; import WayofTime.bloodmagic.ritual.RitualRegister; import WayofTime.bloodmagic.ritual.imperfect.IImperfectRitualStone; import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; -import net.minecraft.entity.monster.EntityZombie; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.monster.ZombieEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.block.Blocks; +import net.minecraft.potion.EffectInstance; +import net.minecraft.potion.Effects; @RitualRegister.Imperfect("zombie") public class ImperfectRitualZombie extends ImperfectRitual { @@ -17,12 +17,12 @@ public class ImperfectRitualZombie extends ImperfectRitual { } @Override - public boolean onActivate(IImperfectRitualStone imperfectRitualStone, EntityPlayer player) { - EntityZombie zombie = new EntityZombie(imperfectRitualStone.getRitualWorld()); + public boolean onActivate(IImperfectRitualStone imperfectRitualStone, PlayerEntity player) { + ZombieEntity zombie = new ZombieEntity(imperfectRitualStone.getRitualWorld()); zombie.setPosition(imperfectRitualStone.getRitualPos().getX() + 0.5, imperfectRitualStone.getRitualPos().getY() + 2.1, imperfectRitualStone.getRitualPos().getZ() + 0.5); - zombie.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, 2000)); - zombie.addPotionEffect(new PotionEffect(MobEffects.STRENGTH, 20000, 7)); - zombie.addPotionEffect(new PotionEffect(MobEffects.RESISTANCE, 20000, 3)); + zombie.addPotionEffect(new EffectInstance(Effects.FIRE_RESISTANCE, 2000)); + zombie.addPotionEffect(new EffectInstance(Effects.STRENGTH, 20000, 7)); + zombie.addPotionEffect(new EffectInstance(Effects.RESISTANCE, 20000, 3)); if (!imperfectRitualStone.getRitualWorld().isRemote) imperfectRitualStone.getRitualWorld().spawnEntity(zombie); diff --git a/src/main/java/WayofTime/bloodmagic/routing/IFluidRoutingNode.java b/src/main/java/WayofTime/bloodmagic/routing/IFluidRoutingNode.java index 97bfdb01..0c795a44 100644 --- a/src/main/java/WayofTime/bloodmagic/routing/IFluidRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/routing/IFluidRoutingNode.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.routing; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IFluidRoutingNode extends IRoutingNode { - boolean isTankConnectedToSide(EnumFacing side); + boolean isTankConnectedToSide(Direction side); - int getPriority(EnumFacing side); + int getPriority(Direction side); } diff --git a/src/main/java/WayofTime/bloodmagic/routing/IInputFluidRoutingNode.java b/src/main/java/WayofTime/bloodmagic/routing/IInputFluidRoutingNode.java index 8f8e7a6d..697df7dc 100644 --- a/src/main/java/WayofTime/bloodmagic/routing/IInputFluidRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/routing/IInputFluidRoutingNode.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.routing; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IInputFluidRoutingNode extends IFluidRoutingNode { - boolean isFluidInput(EnumFacing side); + boolean isFluidInput(Direction side); - IFluidFilter getInputFluidFilterForSide(EnumFacing side); + IFluidFilter getInputFluidFilterForSide(Direction side); } diff --git a/src/main/java/WayofTime/bloodmagic/routing/IInputItemRoutingNode.java b/src/main/java/WayofTime/bloodmagic/routing/IInputItemRoutingNode.java index 6e833a54..1d19cfa8 100644 --- a/src/main/java/WayofTime/bloodmagic/routing/IInputItemRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/routing/IInputItemRoutingNode.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.routing; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IInputItemRoutingNode extends IItemRoutingNode { - boolean isInput(EnumFacing side); + boolean isInput(Direction side); - IItemFilter getInputFilterForSide(EnumFacing side); + IItemFilter getInputFilterForSide(Direction side); } diff --git a/src/main/java/WayofTime/bloodmagic/routing/IItemRoutingNode.java b/src/main/java/WayofTime/bloodmagic/routing/IItemRoutingNode.java index d52126a0..21dee0c6 100644 --- a/src/main/java/WayofTime/bloodmagic/routing/IItemRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/routing/IItemRoutingNode.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.routing; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IItemRoutingNode extends IRoutingNode { - boolean isInventoryConnectedToSide(EnumFacing side); + boolean isInventoryConnectedToSide(Direction side); - int getPriority(EnumFacing side); + int getPriority(Direction side); } diff --git a/src/main/java/WayofTime/bloodmagic/routing/IOutputFluidRoutingNode.java b/src/main/java/WayofTime/bloodmagic/routing/IOutputFluidRoutingNode.java index 08c3ce67..5ef76540 100644 --- a/src/main/java/WayofTime/bloodmagic/routing/IOutputFluidRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/routing/IOutputFluidRoutingNode.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.routing; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IOutputFluidRoutingNode extends IFluidRoutingNode { - boolean isFluidOutput(EnumFacing side); + boolean isFluidOutput(Direction side); - IFluidFilter getOutputFluidFilterForSide(EnumFacing side); + IFluidFilter getOutputFluidFilterForSide(Direction side); } diff --git a/src/main/java/WayofTime/bloodmagic/routing/IOutputItemRoutingNode.java b/src/main/java/WayofTime/bloodmagic/routing/IOutputItemRoutingNode.java index 819e2813..8bf50ec4 100644 --- a/src/main/java/WayofTime/bloodmagic/routing/IOutputItemRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/routing/IOutputItemRoutingNode.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.routing; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; public interface IOutputItemRoutingNode extends IItemRoutingNode { - boolean isOutput(EnumFacing side); + boolean isOutput(Direction side); - IItemFilter getOutputFilterForSide(EnumFacing side); + IItemFilter getOutputFilterForSide(Direction side); } diff --git a/src/main/java/WayofTime/bloodmagic/soul/DemonWillHolder.java b/src/main/java/WayofTime/bloodmagic/soul/DemonWillHolder.java index 5ac2397d..84c06e33 100644 --- a/src/main/java/WayofTime/bloodmagic/soul/DemonWillHolder.java +++ b/src/main/java/WayofTime/bloodmagic/soul/DemonWillHolder.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.soul; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import java.util.HashMap; import java.util.Map.Entry; @@ -53,8 +53,8 @@ public class DemonWillHolder { return 0; } - public void readFromNBT(NBTTagCompound tag, String key) { - NBTTagCompound willTag = tag.getCompoundTag(key); + public void readFromNBT(CompoundNBT tag, String key) { + CompoundNBT willTag = tag.getCompoundTag(key); willMap.clear(); @@ -66,8 +66,8 @@ public class DemonWillHolder { } } - public void writeToNBT(NBTTagCompound tag, String key) { - NBTTagCompound willTag = new NBTTagCompound(); + public void writeToNBT(CompoundNBT tag, String key) { + CompoundNBT willTag = new CompoundNBT(); for (Entry entry : willMap.entrySet()) { willTag.setDouble("EnumWill" + entry.getKey().getName(), entry.getValue()); } diff --git a/src/main/java/WayofTime/bloodmagic/soul/IDemonWillWeapon.java b/src/main/java/WayofTime/bloodmagic/soul/IDemonWillWeapon.java index f90c2c98..3a56b4c4 100644 --- a/src/main/java/WayofTime/bloodmagic/soul/IDemonWillWeapon.java +++ b/src/main/java/WayofTime/bloodmagic/soul/IDemonWillWeapon.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.soul; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.item.ItemStack; import java.util.List; public interface IDemonWillWeapon { - List getRandomDemonWillDrop(EntityLivingBase killedEntity, EntityLivingBase attackingEntity, ItemStack stack, int looting); + List getRandomDemonWillDrop(LivingEntity killedEntity, LivingEntity attackingEntity, ItemStack stack, int looting); } diff --git a/src/main/java/WayofTime/bloodmagic/soul/PlayerDemonWillHandler.java b/src/main/java/WayofTime/bloodmagic/soul/PlayerDemonWillHandler.java index 89d3b97a..51f080d8 100644 --- a/src/main/java/WayofTime/bloodmagic/soul/PlayerDemonWillHandler.java +++ b/src/main/java/WayofTime/bloodmagic/soul/PlayerDemonWillHandler.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.soul; import WayofTime.bloodmagic.util.helper.NetworkHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.util.NonNullList; @@ -19,7 +19,7 @@ public class PlayerDemonWillHandler { * @param player - The player to check the will of * @return - The amount of will the player contains */ - public static double getTotalDemonWill(EnumDemonWillType type, EntityPlayer player) { + public static double getTotalDemonWill(EnumDemonWillType type, PlayerEntity player) { NonNullList inventory = player.inventory.mainInventory; double souls = 0; @@ -34,7 +34,7 @@ public class PlayerDemonWillHandler { return souls; } - public static EnumDemonWillType getLargestWillType(EntityPlayer player) { + public static EnumDemonWillType getLargestWillType(PlayerEntity player) { EnumDemonWillType type = EnumDemonWillType.DEFAULT; double max = getTotalDemonWill(type, player); @@ -55,7 +55,7 @@ public class PlayerDemonWillHandler { * @param player - The player to check the Will of * @return - True if all Will containers are full, false if not. */ - public static boolean isDemonWillFull(EnumDemonWillType type, EntityPlayer player) { + public static boolean isDemonWillFull(EnumDemonWillType type, PlayerEntity player) { NonNullList inventory = player.inventory.mainInventory; boolean hasGem = false; @@ -77,7 +77,7 @@ public class PlayerDemonWillHandler { * @param amount - The amount of will to consume * @return - The amount of will consumed. */ - public static double consumeDemonWill(EnumDemonWillType type, EntityPlayer player, double amount) { + public static double consumeDemonWill(EnumDemonWillType type, PlayerEntity player, double amount) { double consumed = 0; NonNullList inventory = player.inventory.mainInventory; @@ -107,7 +107,7 @@ public class PlayerDemonWillHandler { * @param willStack - ItemStack that contains an IDemonWill to be added * @return - The modified willStack */ - public static ItemStack addDemonWill(EntityPlayer player, ItemStack willStack) { + public static ItemStack addDemonWill(PlayerEntity player, ItemStack willStack) { if (willStack.isEmpty()) return ItemStack.EMPTY; @@ -133,7 +133,7 @@ public class PlayerDemonWillHandler { * @param amount - The amount of will to add * @return - The amount of will added */ - public static double addDemonWill(EnumDemonWillType type, EntityPlayer player, double amount) { + public static double addDemonWill(EnumDemonWillType type, PlayerEntity player, double amount) { NonNullList inventory = player.inventory.mainInventory; double remaining = amount; @@ -158,7 +158,7 @@ public class PlayerDemonWillHandler { * @param ignored - A stack to ignore * @return - The amount of will added */ - public static double addDemonWill(EnumDemonWillType type, EntityPlayer player, double amount, ItemStack ignored) { + public static double addDemonWill(EnumDemonWillType type, PlayerEntity player, double amount, ItemStack ignored) { NonNullList inventory = player.inventory.mainInventory; double remaining = amount; diff --git a/src/main/java/WayofTime/bloodmagic/structures/BuildTestStructure.java b/src/main/java/WayofTime/bloodmagic/structures/BuildTestStructure.java index bf1d7826..a9897ce0 100644 --- a/src/main/java/WayofTime/bloodmagic/structures/BuildTestStructure.java +++ b/src/main/java/WayofTime/bloodmagic/structures/BuildTestStructure.java @@ -7,15 +7,15 @@ import net.minecraft.util.Mirror; import net.minecraft.util.ResourceLocation; import net.minecraft.util.Rotation; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; -import net.minecraft.world.gen.structure.template.PlacementSettings; -import net.minecraft.world.gen.structure.template.Template; -import net.minecraft.world.gen.structure.template.TemplateManager; +import net.minecraft.world.ServerWorld; +import net.minecraft.world.gen.feature.template.PlacementSettings; +import net.minecraft.world.gen.feature.template.Template; +import net.minecraft.world.gen.feature.template.TemplateManager; import java.util.Random; public class BuildTestStructure { - public boolean placeStructureAtPosition(Random rand, Rotation baseRotation, WorldServer world, BlockPos pos, int iteration) { + public boolean placeStructureAtPosition(Random rand, Rotation baseRotation, ServerWorld world, BlockPos pos, int iteration) { if (pos == null) return false; diff --git a/src/main/java/WayofTime/bloodmagic/structures/Dungeon.java b/src/main/java/WayofTime/bloodmagic/structures/Dungeon.java index dab32935..0575197a 100644 --- a/src/main/java/WayofTime/bloodmagic/structures/Dungeon.java +++ b/src/main/java/WayofTime/bloodmagic/structures/Dungeon.java @@ -2,22 +2,22 @@ package WayofTime.bloodmagic.structures; import WayofTime.bloodmagic.ritual.AreaDescriptor; import WayofTime.bloodmagic.util.BMLog; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.Mirror; import net.minecraft.util.Rotation; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; -import net.minecraft.world.gen.structure.template.PlacementSettings; +import net.minecraft.world.ServerWorld; +import net.minecraft.world.gen.feature.template.PlacementSettings; import org.apache.commons.lang3.tuple.Pair; import java.util.*; import java.util.Map.Entry; public class Dungeon { - public static boolean placeStructureAtPosition(Random rand, WorldServer world, BlockPos pos) { + public static boolean placeStructureAtPosition(Random rand, ServerWorld world, BlockPos pos) { long startTime = System.nanoTime(); - Map> availableDoorMap = new HashMap<>(); //Map of doors. The EnumFacing indicates what way this door faces. + Map> availableDoorMap = new HashMap<>(); //Map of doors. The EnumFacing indicates what way this door faces. List descriptorList = new ArrayList<>(); Map> roomMap = new HashMap<>(); // Placement positions in terms of actual positions @@ -37,7 +37,7 @@ public class Dungeon { DungeonRoom room = getRandomRoom(rand); roomMap.put(pos, Pair.of(room, settings.copy())); descriptorList.addAll(room.getAreaDescriptors(settings, pos)); - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { if (availableDoorMap.containsKey(facing)) { List doorList = availableDoorMap.get(facing); doorList.addAll(room.getDoorOffsetsForFacing(settings, facing, pos)); @@ -49,8 +49,8 @@ public class Dungeon { //Initial AreaDescriptors and door positions are initialized. Time for fun! for (int i = 0; i < 100; i++) { - List facingList = new ArrayList<>(); - for (Entry> entry : availableDoorMap.entrySet()) { + List facingList = new ArrayList<>(); + for (Entry> entry : availableDoorMap.entrySet()) { if (entry.getValue() != null && !entry.getValue().isEmpty()) { facingList.add(entry.getKey()); } @@ -58,12 +58,12 @@ public class Dungeon { Collections.shuffle(facingList); //Shuffle the list so that it is random what is chosen - Pair removedDoor1 = null; - Pair removedDoor2 = null; + Pair removedDoor1 = null; + Pair removedDoor2 = null; BlockPos roomLocation = null; - for (EnumFacing doorFacing : facingList) { - EnumFacing oppositeDoorFacing = doorFacing.getOpposite(); + for (Direction doorFacing : facingList) { + Direction oppositeDoorFacing = doorFacing.getOpposite(); List availableDoorList = availableDoorMap.get(doorFacing); //May need to copy here Collections.shuffle(availableDoorList); @@ -105,7 +105,7 @@ public class Dungeon { } if (removedDoor1 != null) { - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { if (availableDoorMap.containsKey(facing)) { List doorList = availableDoorMap.get(facing); doorList.addAll(room.getDoorOffsetsForFacing(settings, facing, roomLocation)); @@ -115,14 +115,14 @@ public class Dungeon { } } - EnumFacing face = removedDoor1.getKey(); + Direction face = removedDoor1.getKey(); if (availableDoorMap.containsKey(face)) { availableDoorMap.get(face).remove(removedDoor1.getRight()); } } if (removedDoor2 != null) { - EnumFacing face = removedDoor2.getKey(); + Direction face = removedDoor2.getKey(); if (availableDoorMap.containsKey(face)) { availableDoorMap.get(face).remove(removedDoor2.getRight()); } diff --git a/src/main/java/WayofTime/bloodmagic/structures/DungeonRoom.java b/src/main/java/WayofTime/bloodmagic/structures/DungeonRoom.java index cef16685..76b242bd 100644 --- a/src/main/java/WayofTime/bloodmagic/structures/DungeonRoom.java +++ b/src/main/java/WayofTime/bloodmagic/structures/DungeonRoom.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.structures; import WayofTime.bloodmagic.ritual.AreaDescriptor; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; -import net.minecraft.world.gen.structure.template.PlacementSettings; -import net.minecraft.world.gen.structure.template.Template; +import net.minecraft.world.ServerWorld; +import net.minecraft.world.gen.feature.template.PlacementSettings; +import net.minecraft.world.gen.feature.template.Template; import java.util.*; import java.util.Map.Entry; @@ -15,10 +15,10 @@ public class DungeonRoom { public int dungeonWeight = 1; public Map structureMap = new HashMap<>(); - public Map> doorMap = new HashMap<>(); //Map of doors. The EnumFacing indicates what way this door faces. + public Map> doorMap = new HashMap<>(); //Map of doors. The EnumFacing indicates what way this door faces. public List descriptorList = new ArrayList<>(); - public DungeonRoom(Map structureMap, Map> doorMap, List descriptorList) { + public DungeonRoom(Map structureMap, Map> doorMap, List descriptorList) { this.structureMap = structureMap; this.doorMap = doorMap; this.descriptorList = descriptorList; @@ -34,10 +34,10 @@ public class DungeonRoom { return newList; } - public List getDoorOffsetsForFacing(PlacementSettings settings, EnumFacing facing, BlockPos offset) { + public List getDoorOffsetsForFacing(PlacementSettings settings, Direction facing, BlockPos offset) { List offsetList = new ArrayList<>(); - EnumFacing originalFacing = DungeonUtil.reverseRotate(settings.getMirror(), settings.getRotation(), facing); + Direction originalFacing = DungeonUtil.reverseRotate(settings.getMirror(), settings.getRotation(), facing); if (doorMap.containsKey(originalFacing)) { List doorList = doorMap.get(originalFacing); for (BlockPos doorPos : doorList) { @@ -48,7 +48,7 @@ public class DungeonRoom { return offsetList; } - public boolean placeStructureAtPosition(Random rand, PlacementSettings settings, WorldServer world, BlockPos pos) { + public boolean placeStructureAtPosition(Random rand, PlacementSettings settings, ServerWorld world, BlockPos pos) { for (Entry entry : structureMap.entrySet()) { ResourceLocation location = new ResourceLocation(entry.getKey()); DungeonStructure structure = new DungeonStructure(location); diff --git a/src/main/java/WayofTime/bloodmagic/structures/DungeonStructure.java b/src/main/java/WayofTime/bloodmagic/structures/DungeonStructure.java index 198869e6..7f5b8705 100644 --- a/src/main/java/WayofTime/bloodmagic/structures/DungeonStructure.java +++ b/src/main/java/WayofTime/bloodmagic/structures/DungeonStructure.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.util.BMLog; import net.minecraft.server.MinecraftServer; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; -import net.minecraft.world.gen.structure.template.PlacementSettings; -import net.minecraft.world.gen.structure.template.Template; -import net.minecraft.world.gen.structure.template.TemplateManager; +import net.minecraft.world.ServerWorld; +import net.minecraft.world.gen.feature.template.PlacementSettings; +import net.minecraft.world.gen.feature.template.Template; +import net.minecraft.world.gen.feature.template.TemplateManager; import java.util.Random; @@ -18,7 +18,7 @@ public class DungeonStructure { this.resource = resource; } - public boolean placeStructureAtPosition(Random rand, PlacementSettings settings, WorldServer world, BlockPos pos) { + public boolean placeStructureAtPosition(Random rand, PlacementSettings settings, ServerWorld world, BlockPos pos) { if (pos == null) return false; diff --git a/src/main/java/WayofTime/bloodmagic/structures/DungeonTester.java b/src/main/java/WayofTime/bloodmagic/structures/DungeonTester.java index 70bc4aaf..68483ead 100644 --- a/src/main/java/WayofTime/bloodmagic/structures/DungeonTester.java +++ b/src/main/java/WayofTime/bloodmagic/structures/DungeonTester.java @@ -1,16 +1,16 @@ package WayofTime.bloodmagic.structures; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import java.util.Random; public class DungeonTester { - public static void testDungeonGeneration(WorldServer world, BlockPos pos) { + public static void testDungeonGeneration(ServerWorld world, BlockPos pos) { } - public static void testDungeonElementWithOutput(WorldServer world, BlockPos pos) { + public static void testDungeonElementWithOutput(ServerWorld world, BlockPos pos) { Dungeon.placeStructureAtPosition(new Random(), world, pos); // ResourceLocation resource = new ResourceLocation(Constants.Mod.MODID, "Corridor1"); // diff --git a/src/main/java/WayofTime/bloodmagic/structures/DungeonUtil.java b/src/main/java/WayofTime/bloodmagic/structures/DungeonUtil.java index ddf6c518..31cbbb1c 100644 --- a/src/main/java/WayofTime/bloodmagic/structures/DungeonUtil.java +++ b/src/main/java/WayofTime/bloodmagic/structures/DungeonUtil.java @@ -1,25 +1,25 @@ package WayofTime.bloodmagic.structures; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.Mirror; import net.minecraft.util.Rotation; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.gen.structure.template.PlacementSettings; +import net.minecraft.world.gen.feature.template.PlacementSettings; import java.util.ArrayList; import java.util.List; import java.util.Map; public class DungeonUtil { - public static EnumFacing rotate(Mirror mirror, Rotation rotation, EnumFacing original) { + public static Direction rotate(Mirror mirror, Rotation rotation, Direction original) { return rotation.rotate(mirror.mirror(original)); } - public static EnumFacing reverseRotate(Mirror mirror, Rotation rotation, EnumFacing original) { + public static Direction reverseRotate(Mirror mirror, Rotation rotation, Direction original) { return mirror.mirror(getOppositeRotation(rotation).rotate(original)); } - public static EnumFacing getFacingForSettings(PlacementSettings settings, EnumFacing original) { + public static Direction getFacingForSettings(PlacementSettings settings, Direction original) { return rotate(settings.getMirror(), settings.getRotation(), original); } @@ -34,7 +34,7 @@ public class DungeonUtil { } } - public static void addRoom(Map> doorMap, EnumFacing facing, BlockPos offsetPos) { + public static void addRoom(Map> doorMap, Direction facing, BlockPos offsetPos) { if (doorMap.containsKey(facing)) { doorMap.get(facing).add(offsetPos); } else { diff --git a/src/main/java/WayofTime/bloodmagic/teleport/PortalLocation.java b/src/main/java/WayofTime/bloodmagic/teleport/PortalLocation.java index ccb55eeb..37460c8f 100644 --- a/src/main/java/WayofTime/bloodmagic/teleport/PortalLocation.java +++ b/src/main/java/WayofTime/bloodmagic/teleport/PortalLocation.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.teleport; import WayofTime.bloodmagic.util.Constants; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.BlockPos; import java.io.Serializable; @@ -23,8 +23,8 @@ public class PortalLocation implements Serializable { this(blockPos.getX(), blockPos.getY(), blockPos.getZ(), dimension); } - public NBTTagCompound writeToNBT(NBTTagCompound tag) { - NBTTagCompound locationTag = new NBTTagCompound(); + public CompoundNBT writeToNBT(CompoundNBT tag) { + CompoundNBT locationTag = new CompoundNBT(); locationTag.setInteger(Constants.NBT.X_COORD, x); locationTag.setInteger(Constants.NBT.Y_COORD, y); @@ -80,9 +80,9 @@ public class PortalLocation implements Serializable { return dimension; } - public static PortalLocation readFromNBT(NBTTagCompound tag) { + public static PortalLocation readFromNBT(CompoundNBT tag) { if (tag.hasKey(Constants.NBT.PORTAL_LOCATION)) { - NBTTagCompound locationTag = tag.getCompoundTag(Constants.NBT.PORTAL_LOCATION); + CompoundNBT locationTag = tag.getCompoundTag(Constants.NBT.PORTAL_LOCATION); return new PortalLocation(locationTag.getInteger(Constants.NBT.X_COORD), locationTag.getInteger(Constants.NBT.Y_COORD), locationTag.getInteger(Constants.NBT.Z_COORD), locationTag.getInteger(Constants.NBT.DIMENSION_ID)); } return null; diff --git a/src/main/java/WayofTime/bloodmagic/teleport/TeleporterBloodMagic.java b/src/main/java/WayofTime/bloodmagic/teleport/TeleporterBloodMagic.java index 4a02d90a..8ff084ce 100644 --- a/src/main/java/WayofTime/bloodmagic/teleport/TeleporterBloodMagic.java +++ b/src/main/java/WayofTime/bloodmagic/teleport/TeleporterBloodMagic.java @@ -3,10 +3,10 @@ package WayofTime.bloodmagic.teleport; import net.minecraft.entity.Entity; import net.minecraft.util.math.MathHelper; import net.minecraft.world.Teleporter; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; public class TeleporterBloodMagic extends Teleporter { - public TeleporterBloodMagic(WorldServer worldServer) { + public TeleporterBloodMagic(ServerWorld worldServer) { super(worldServer); } diff --git a/src/main/java/WayofTime/bloodmagic/teleport/Teleports.java b/src/main/java/WayofTime/bloodmagic/teleport/Teleports.java index 646480f3..e5ff2b56 100644 --- a/src/main/java/WayofTime/bloodmagic/teleport/Teleports.java +++ b/src/main/java/WayofTime/bloodmagic/teleport/Teleports.java @@ -6,23 +6,22 @@ import WayofTime.bloodmagic.event.TeleposeEvent; import WayofTime.bloodmagic.util.helper.NetworkHelper; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityList; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.SoundEvents; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.network.play.server.SPacketEntityEffect; -import net.minecraft.network.play.server.SPacketPlayerAbilities; -import net.minecraft.network.play.server.SPacketRespawn; -import net.minecraft.network.play.server.SPacketUpdateHealth; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.network.play.server.*; +import net.minecraft.potion.EffectInstance; +import net.minecraft.util.SoundEvents; +import net.minecraft.network.play.server.SPlayEntityEffectPacket; +import net.minecraft.network.play.server.SUpdateHealthPacket; import net.minecraft.server.MinecraftServer; import net.minecraft.server.management.PlayerList; import net.minecraft.util.SoundCategory; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.ChunkPos; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import net.minecraftforge.common.ForgeChunkManager; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.fml.common.FMLCommonHandler; @@ -49,7 +48,7 @@ public class Teleports { BlockPos targetTeleposer = new BlockPos(x, y, z); if (entity.timeUntilPortal <= 0) { entity.timeUntilPortal = 10; - if (entity instanceof EntityPlayer) { + if (entity instanceof PlayerEntity) { SoulNetwork network = NetworkHelper.getSoulNetwork(networkOwner); if (network.getCurrentEssence() < getTeleportCost()) @@ -58,13 +57,13 @@ public class Teleports { if (teleposer && MinecraftForge.EVENT_BUS.post(new TeleposeEvent.Ent(entity, entity.getEntityWorld(), entity.getPosition(), entity.getEntityWorld(), targetTeleposer))) return; - EntityPlayerMP player = (EntityPlayerMP) entity; + ServerPlayerEntity player = (ServerPlayerEntity) entity; network.syphon(ticket(entity.world, player, getTeleportCost())); player.setPositionAndUpdate(x + 0.5, y + 0.5, z + 0.5); player.getEntityWorld().updateEntityWithOptionalForce(player, false); - player.connection.sendPacket(new SPacketUpdateHealth(player.getHealth(), player.getFoodStats().getFoodLevel(), player.getFoodStats().getSaturationLevel())); + player.connection.sendPacket(new SUpdateHealthPacket(player.getHealth(), player.getFoodStats().getFoodLevel(), player.getFoodStats().getSaturationLevel())); player.getEntityWorld().playSound(x, y, z, SoundEvents.ENTITY_ENDERMEN_TELEPORT, SoundCategory.AMBIENT, 1.0F, 1.0F, false); if (teleposer) @@ -77,7 +76,7 @@ public class Teleports { if (teleposer && MinecraftForge.EVENT_BUS.post(new TeleposeEvent.Ent(entity, entity.getEntityWorld(), entity.getPosition(), entity.getEntityWorld(), targetTeleposer))) return; - WorldServer world = (WorldServer) entity.getEntityWorld(); + ServerWorld world = (ServerWorld) entity.getEntityWorld(); network.syphon(ticket(world, entity, getTeleportCost() / 10)); @@ -122,15 +121,15 @@ public class Teleports { if (entity.timeUntilPortal <= 0) { entity.timeUntilPortal = 10; MinecraftServer server = FMLCommonHandler.instance().getMinecraftServerInstance(); - WorldServer oldWorldServer = server.getWorld(entity.dimension); - WorldServer newWorldServer = server.getWorld(newWorldID); + ServerWorld oldWorldServer = server.getWorld(entity.dimension); + ServerWorld newWorldServer = server.getWorld(newWorldID); BlockPos targetTeleposer = new BlockPos(x, y, z); ChunkPos teleposerChunk = new ChunkPos(targetTeleposer); ForgeChunkManager.Ticket chunkTicket = ForgeChunkManager.requestTicket("bloodmagic", newWorldServer, ForgeChunkManager.Type.NORMAL); ForgeChunkManager.forceChunk(chunkTicket, teleposerChunk); - if (entity instanceof EntityPlayer) { - EntityPlayerMP player = (EntityPlayerMP) entity; + if (entity instanceof PlayerEntity) { + ServerPlayerEntity player = (ServerPlayerEntity) entity; if (!player.getEntityWorld().isRemote) { @@ -152,7 +151,7 @@ public class Teleports { PlayerList playerList = server.getPlayerList(); player.dimension = newWorldID; - player.connection.sendPacket(new SPacketRespawn(player.dimension, newWorldServer.getDifficulty(), newWorldServer.getWorldInfo().getTerrainType(), player.interactionManager.getGameType())); + player.connection.sendPacket(new SRespawnPacket(player.dimension, newWorldServer.getDifficulty(), newWorldServer.getWorldInfo().getTerrainType(), player.interactionManager.getGameType())); playerList.updatePermissionLevel(player); oldWorldServer.removeEntityDangerously(player); player.isDead = false; @@ -170,13 +169,13 @@ public class Teleports { playerList.preparePlayer(player, oldWorldServer); player.connection.setPlayerLocation(x + 0.5, y + 0.5, z + 0.5, player.rotationYaw, player.rotationPitch); player.interactionManager.setWorld(newWorldServer); - player.connection.sendPacket(new SPacketPlayerAbilities(player.capabilities)); + player.connection.sendPacket(new SPlayerAbilitiesPacket(player.capabilities)); playerList.updateTimeAndWeatherForPlayer(player, newWorldServer); playerList.syncPlayerInventory(player); - for (PotionEffect potioneffect : player.getActivePotionEffects()) { - player.connection.sendPacket(new SPacketEntityEffect(player.getEntityId(), potioneffect)); + for (EffectInstance potioneffect : player.getActivePotionEffects()) { + player.connection.sendPacket(new SPlayEntityEffectPacket(player.getEntityId(), potioneffect)); } FMLCommonHandler.instance().firePlayerChangedDimensionEvent(player, entity.dimension, newWorldID); player.setLocationAndAngles(x + 0.5, y + 0.5, z + 0.5, player.rotationYaw, player.rotationPitch); @@ -197,7 +196,7 @@ public class Teleports { network.syphon(ticket(oldWorld, entity, getTeleportCost() / 10)); - NBTTagCompound tag = new NBTTagCompound(); + CompoundNBT tag = new CompoundNBT(); entity.writeToNBTOptional(tag); entity.setDead(); @@ -244,6 +243,6 @@ public class Teleports { } public static SoulTicket ticket(World world, Entity entity, int amount) { - return new SoulTicket(new TextComponentString("teleport|" + world.provider.getDimension() + "|" + entity.getName() + "|" + entity.getPosition().toLong()), amount); + return new SoulTicket(new StringTextComponent("teleport|" + world.provider.getDimension() + "|" + entity.getName() + "|" + entity.getPosition().toLong()), amount); } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java index 4173ca2c..8f753ecf 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java @@ -8,10 +8,10 @@ import WayofTime.bloodmagic.core.registry.AlchemyArrayRecipeRegistry; import WayofTime.bloodmagic.iface.IAlchemyArray; import WayofTime.bloodmagic.util.Constants; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.ITickable; import net.minecraft.util.math.AxisAlignedBB; import net.minecraftforge.fml.relauncher.Side; @@ -20,7 +20,7 @@ import net.minecraftforge.fml.relauncher.SideOnly; public class TileAlchemyArray extends TileInventory implements ITickable, IAlchemyArray { public boolean isActive = false; public int activeCounter = 0; - public EnumFacing rotation = EnumFacing.HORIZONTALS[0]; + public Direction rotation = Direction.HORIZONTALS[0]; public int rotateCooldown = 0; private String key = "empty"; @@ -31,14 +31,14 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche super(2, "alchemyArray"); } - public void onEntityCollidedWithBlock(IBlockState state, Entity entity) { + public void onEntityCollidedWithBlock(BlockState state, Entity entity) { if (arrayEffect != null) { arrayEffect.onEntityCollidedWithBlock(this, getWorld(), pos, state, entity); } } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { super.deserialize(tagCompound); this.isActive = tagCompound.getBoolean("isActive"); this.activeCounter = tagCompound.getInteger("activeCounter"); @@ -49,9 +49,9 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche } else { this.doDropIngredients = tagCompound.getBoolean("doDropIngredients"); } - this.rotation = EnumFacing.HORIZONTALS[tagCompound.getInteger(Constants.NBT.DIRECTION)]; + this.rotation = Direction.HORIZONTALS[tagCompound.getInteger(Constants.NBT.DIRECTION)]; - NBTTagCompound arrayTag = tagCompound.getCompoundTag("arrayTag"); + CompoundNBT arrayTag = tagCompound.getCompoundTag("arrayTag"); arrayEffect = AlchemyArrayRecipeRegistry.getAlchemyArrayEffect(key); if (arrayEffect != null) { arrayEffect.readFromNBT(arrayTag); @@ -59,7 +59,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { super.serialize(tagCompound); tagCompound.setBoolean("isActive", isActive); tagCompound.setInteger("activeCounter", activeCounter); @@ -67,7 +67,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche tagCompound.setBoolean("doDropIngredients", doDropIngredients); tagCompound.setInteger(Constants.NBT.DIRECTION, rotation.getHorizontalIndex()); - NBTTagCompound arrayTag = new NBTTagCompound(); + CompoundNBT arrayTag = new CompoundNBT(); if (arrayEffect != null) { arrayEffect.writeToNBT(arrayTag); } @@ -159,11 +159,11 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche } @Override - public EnumFacing getRotation() { + public Direction getRotation() { return rotation; } - public void setRotation(EnumFacing rotation) { + public void setRotation(Direction rotation) { this.rotation = rotation; } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyTable.java b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyTable.java index ac701257..9b9aec1a 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyTable.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyTable.java @@ -12,12 +12,12 @@ import WayofTime.bloodmagic.orb.IBloodOrb; import WayofTime.bloodmagic.recipe.alchemyTable.AlchemyTableRecipe; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.NetworkHelper; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.inventory.ISidedInventory; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ITickable; import net.minecraft.util.math.BlockPos; import net.minecraftforge.common.MinecraftForge; @@ -34,7 +34,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, public static final int toolSlot = 7; public static final int outputSlot = 8; - public EnumFacing direction = EnumFacing.NORTH; + public Direction direction = Direction.NORTH; public boolean isSlave = false; public int burnTime = 0; public int ticksRequired = 1; @@ -46,7 +46,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, super(9, "alchemyTable"); } - public void setInitialTableParameters(EnumFacing direction, boolean isSlave, BlockPos connectedPos) { + public void setInitialTableParameters(Direction direction, boolean isSlave, BlockPos connectedPos) { this.isSlave = isSlave; this.connectedPos = connectedPos; @@ -69,11 +69,11 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); isSlave = tag.getBoolean("isSlave"); - direction = EnumFacing.byIndex(tag.getInteger(Constants.NBT.DIRECTION)); + direction = Direction.byIndex(tag.getInteger(Constants.NBT.DIRECTION)); connectedPos = new BlockPos(tag.getInteger(Constants.NBT.X_COORD), tag.getInteger(Constants.NBT.Y_COORD), tag.getInteger(Constants.NBT.Z_COORD)); burnTime = tag.getInteger("burnTime"); @@ -85,7 +85,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setBoolean("isSlave", isSlave); @@ -107,7 +107,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, @SuppressWarnings("unchecked") @Override - public T getCapability(Capability capability, EnumFacing facing) { + public T getCapability(Capability capability, Direction facing) { if (facing != null && capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) { if (this.isSlave()) { TileEntity tile = getWorld().getTileEntity(connectedPos); @@ -123,7 +123,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } @Override - public int[] getSlotsForFace(EnumFacing side) { + public int[] getSlotsForFace(Direction side) { switch (side) { case DOWN: return new int[]{outputSlot}; @@ -135,7 +135,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } @Override - public boolean canInsertItem(int index, ItemStack stack, EnumFacing direction) { + public boolean canInsertItem(int index, ItemStack stack, Direction direction) { switch (direction) { case DOWN: return index != outputSlot && index != orbSlot && index != toolSlot; @@ -159,7 +159,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } @Override - public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction) { + public boolean canExtractItem(int index, ItemStack stack, Direction direction) { switch (direction) { case DOWN: return index == outputSlot; @@ -182,7 +182,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } } - public List getAccessibleInputSlots(EnumFacing direction) { + public List getAccessibleInputSlots(Direction direction) { List list = new ArrayList<>(); for (int i = 0; i < 6; i++) { @@ -236,7 +236,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, burnTime = 0; - IBlockState state = getWorld().getBlockState(pos); + BlockState state = getWorld().getBlockState(pos); getWorld().notifyBlockUpdate(getPos(), state, state, 3); } else if (burnTime > ticksRequired + 10) { burnTime = 0; @@ -394,7 +394,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory, } } - public EnumFacing getDirection() { + public Direction getDirection() { return direction; } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileAltar.java b/src/main/java/WayofTime/bloodmagic/tile/TileAltar.java index b0ecd0c9..35dc8cdf 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileAltar.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileAltar.java @@ -4,8 +4,8 @@ import WayofTime.bloodmagic.altar.BloodAltar; import WayofTime.bloodmagic.altar.AltarTier; import WayofTime.bloodmagic.altar.IBloodAltar; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.ITickable; import net.minecraftforge.common.capabilities.Capability; import net.minecraftforge.fluids.capability.CapabilityFluidHandler; @@ -22,19 +22,19 @@ public class TileAltar extends TileInventory implements IBloodAltar, ITickable { } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { super.deserialize(tagCompound); - NBTTagCompound altarTag = tagCompound.getCompoundTag("bloodAltar"); + CompoundNBT altarTag = tagCompound.getCompoundTag("bloodAltar"); this.bloodAltar.readFromNBT(altarTag); } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { super.serialize(tagCompound); - NBTTagCompound altarTag = new NBTTagCompound(); + CompoundNBT altarTag = new CompoundNBT(); this.bloodAltar.writeToNBT(altarTag); tagCompound.setTag("bloodAltar", altarTag); @@ -170,7 +170,7 @@ public class TileAltar extends TileInventory implements IBloodAltar, ITickable { } @Override - public boolean hasCapability(@Nonnull Capability capability, @Nullable EnumFacing facing) { + public boolean hasCapability(@Nonnull Capability capability, @Nullable Direction facing) { if (capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY) { return true; } @@ -180,7 +180,7 @@ public class TileAltar extends TileInventory implements IBloodAltar, ITickable { @SuppressWarnings("unchecked") @Override - public T getCapability(@Nonnull Capability capability, @Nullable EnumFacing facing) { + public T getCapability(@Nonnull Capability capability, @Nullable Direction facing) { if (capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY) { return (T) bloodAltar; } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileBloodTank.java b/src/main/java/WayofTime/bloodmagic/tile/TileBloodTank.java index f0b0b41a..8a7cfe0d 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileBloodTank.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileBloodTank.java @@ -2,8 +2,8 @@ package WayofTime.bloodmagic.tile; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.tile.base.TileBase; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraftforge.common.capabilities.Capability; import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fluids.FluidTank; @@ -25,7 +25,7 @@ public class TileBloodTank extends TileBase { } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { super.deserialize(tagCompound); tank.readFromNBT(tagCompound.getCompoundTag(Constants.NBT.TANK)); capacity = tagCompound.getInteger(Constants.NBT.ALTAR_CAPACITY); @@ -33,10 +33,10 @@ public class TileBloodTank extends TileBase { } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { super.serialize(tagCompound); if (tank.getFluidAmount() != 0) - tagCompound.setTag(Constants.NBT.TANK, tank.writeToNBT(new NBTTagCompound())); + tagCompound.setTag(Constants.NBT.TANK, tank.writeToNBT(new CompoundNBT())); tagCompound.setInteger(Constants.NBT.ALTAR_CAPACITY, capacity); return tagCompound; } @@ -66,13 +66,13 @@ public class TileBloodTank extends TileBase { } @Override - public boolean hasCapability(Capability capability, EnumFacing facing) { + public boolean hasCapability(Capability capability, Direction facing) { return capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY || super.hasCapability(capability, facing); } @SuppressWarnings("unchecked") @Override - public T getCapability(Capability capability, EnumFacing facing) { + public T getCapability(Capability capability, Direction facing) { if (capability == CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY) return (T) tank; return super.getCapability(capability, facing); diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrucible.java b/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrucible.java index 52ff0be5..6f4ba7f7 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrucible.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrucible.java @@ -7,8 +7,8 @@ import WayofTime.bloodmagic.soul.IDiscreteDemonWill; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import net.minecraft.inventory.ISidedInventory; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.ITickable; import java.util.HashMap; @@ -89,7 +89,7 @@ public class TileDemonCrucible extends TileInventory implements ITickable, IDemo } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); willMap.clear(); @@ -103,7 +103,7 @@ public class TileDemonCrucible extends TileInventory implements ITickable, IDemo } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); for (Entry entry : willMap.entrySet()) { @@ -198,17 +198,17 @@ public class TileDemonCrucible extends TileInventory implements ITickable, IDemo } @Override - public int[] getSlotsForFace(EnumFacing side) { + public int[] getSlotsForFace(Direction side) { return new int[]{0}; } @Override - public boolean canInsertItem(int index, ItemStack stack, EnumFacing direction) { + public boolean canInsertItem(int index, ItemStack stack, Direction direction) { return !stack.isEmpty() && inventory.get(0).isEmpty() && (stack.getItem() instanceof IDemonWillGem || stack.getItem() instanceof IDiscreteDemonWill); } @Override - public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction) { + public boolean canExtractItem(int index, ItemStack stack, Direction direction) { return true; } } \ No newline at end of file diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystal.java b/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystal.java index 9d2e5c4e..125d3557 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystal.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystal.java @@ -5,11 +5,11 @@ import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.soul.DemonWillHolder; import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.tile.base.TileTicking; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.inventory.InventoryHelper; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.math.MathHelper; public class TileDemonCrystal extends TileTicking { @@ -22,7 +22,7 @@ public class TileDemonCrystal extends TileTicking { public double progressToNextCrystal = 0; public int internalCounter = 0; public int crystalCount = 1; - public EnumFacing placement = EnumFacing.UP; //Side that this crystal is placed on. + public Direction placement = Direction.UP; //Side that this crystal is placed on. public TileDemonCrystal() { this.crystalCount = 1; @@ -84,7 +84,7 @@ public class TileDemonCrystal extends TileTicking { return 0; } - IBlockState state = getWorld().getBlockState(pos); + BlockState state = getWorld().getBlockState(pos); int meta = this.getBlockType().getMetaFromState(state); EnumDemonWillType type = EnumDemonWillType.values()[meta]; @@ -122,7 +122,7 @@ public class TileDemonCrystal extends TileTicking { public boolean dropSingleCrystal() { if (!getWorld().isRemote && crystalCount > 1) { - IBlockState state = getWorld().getBlockState(pos); + BlockState state = getWorld().getBlockState(pos); EnumDemonWillType type = state.getValue(BlockDemonCrystal.TYPE); ItemStack stack = BlockDemonCrystal.getItemStackDropped(type, 1); if (!stack.isEmpty()) { @@ -145,15 +145,15 @@ public class TileDemonCrystal extends TileTicking { } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { holder.readFromNBT(tag, "Will"); crystalCount = tag.getInteger("crystalCount"); - placement = EnumFacing.byIndex(tag.getInteger("placement")); + placement = Direction.byIndex(tag.getInteger("placement")); progressToNextCrystal = tag.getDouble("progress"); } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { holder.writeToNBT(tag, "Will"); tag.setInteger("crystalCount", crystalCount); tag.setInteger("placement", placement.getIndex()); @@ -169,11 +169,11 @@ public class TileDemonCrystal extends TileTicking { this.crystalCount = crystalCount; } - public EnumFacing getPlacement() { + public Direction getPlacement() { return placement; } - public void setPlacement(EnumFacing placement) { + public void setPlacement(Direction placement) { this.placement = placement; } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystallizer.java b/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystallizer.java index e462b767..fe9137c4 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystallizer.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileDemonCrystallizer.java @@ -1,8 +1,8 @@ package WayofTime.bloodmagic.tile; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; @@ -30,7 +30,7 @@ public class TileDemonCrystallizer extends TileTicking implements IDemonWillCond return; } - BlockPos offsetPos = pos.offset(EnumFacing.UP); + BlockPos offsetPos = pos.offset(Direction.UP); if (getWorld().isAirBlock(offsetPos)) //Room for a crystal to grow { EnumDemonWillType highestType = WorldDemonWillHandler.getHighestDemonWillType(getWorld(), pos); @@ -53,7 +53,7 @@ public class TileDemonCrystallizer extends TileTicking implements IDemonWillCond getWorld().setBlockState(position, RegistrarBloodMagicBlocks.DEMON_CRYSTAL.getStateFromMeta(type.ordinal())); TileEntity tile = getWorld().getTileEntity(position); if (tile instanceof TileDemonCrystal) { - ((TileDemonCrystal) tile).setPlacement(EnumFacing.UP); + ((TileDemonCrystal) tile).setPlacement(Direction.UP); return true; } @@ -65,13 +65,13 @@ public class TileDemonCrystallizer extends TileTicking implements IDemonWillCond } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { holder.readFromNBT(tag, "Will"); internalCounter = tag.getDouble("internalCounter"); } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { holder.writeToNBT(tag, "Will"); tag.setDouble("internalCounter", internalCounter); return tag; diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileDemonPylon.java b/src/main/java/WayofTime/bloodmagic/tile/TileDemonPylon.java index 80817ce6..dc4c7def 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileDemonPylon.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileDemonPylon.java @@ -5,8 +5,8 @@ import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.soul.IDemonWillConduit; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.tile.base.TileTicking; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; public class TileDemonPylon extends TileTicking implements IDemonWillConduit { @@ -27,7 +27,7 @@ public class TileDemonPylon extends TileTicking implements IDemonWillConduit { for (EnumDemonWillType type : EnumDemonWillType.values()) { double currentAmount = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, type); - for (EnumFacing side : EnumFacing.HORIZONTALS) { + for (Direction side : Direction.HORIZONTALS) { BlockPos offsetPos = pos.offset(side, 16); double sideAmount = WorldDemonWillHandler.getCurrentWill(getWorld(), offsetPos, type); if (sideAmount > currentAmount) { @@ -40,12 +40,12 @@ public class TileDemonPylon extends TileTicking implements IDemonWillConduit { } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { holder.readFromNBT(tag, "Will"); } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { holder.writeToNBT(tag, "Will"); return tag; } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileDimensionalPortal.java b/src/main/java/WayofTime/bloodmagic/tile/TileDimensionalPortal.java index c58a02be..afabdfe7 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileDimensionalPortal.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileDimensionalPortal.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.tile; import WayofTime.bloodmagic.ritual.types.RitualPortal; import WayofTime.bloodmagic.tile.base.TileBase; import com.google.common.base.Strings; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.BlockPos; public class TileDimensionalPortal extends TileBase { @@ -12,7 +12,7 @@ public class TileDimensionalPortal extends TileBase { public int masterStoneY; public int masterStoneZ; - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { portalID = tagCompound.getString(RitualPortal.PORTAL_ID_TAG); masterStoneX = tagCompound.getInteger("masterStoneX"); @@ -20,7 +20,7 @@ public class TileDimensionalPortal extends TileBase { masterStoneZ = tagCompound.getInteger("masterStoneZ"); } - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { tagCompound.setString(RitualPortal.PORTAL_ID_TAG, Strings.isNullOrEmpty(portalID) ? "" : portalID); tagCompound.setInteger("masterStoneX", masterStoneX); diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileImperfectRitualStone.java b/src/main/java/WayofTime/bloodmagic/tile/TileImperfectRitualStone.java index e10d556e..222dce55 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileImperfectRitualStone.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileImperfectRitualStone.java @@ -7,8 +7,8 @@ import WayofTime.bloodmagic.ritual.imperfect.ImperfectRitual; import WayofTime.bloodmagic.tile.base.TileBase; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; -import net.minecraft.entity.effect.EntityLightningBolt; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.effect.LightningBoltEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -17,13 +17,13 @@ import javax.annotation.Nullable; public class TileImperfectRitualStone extends TileBase implements IImperfectRitualStone { @Override - public boolean performRitual(World world, BlockPos pos, @Nullable ImperfectRitual imperfectRitual, EntityPlayer player) { + public boolean performRitual(World world, BlockPos pos, @Nullable ImperfectRitual imperfectRitual, PlayerEntity player) { if (imperfectRitual != null && BloodMagic.RITUAL_MANAGER.enabled(BloodMagic.RITUAL_MANAGER.getId(imperfectRitual), true)) { if (!PlayerHelper.isFakePlayer(player) && !world.isRemote) { NetworkHelper.getSoulNetwork(player).syphonAndDamage(player, SoulTicket.block(getWorld(), getPos(), imperfectRitual.getActivationCost())); if (imperfectRitual.onActivate(this, player)) { if (imperfectRitual.isLightShow()) - getWorld().addWeatherEffect(new EntityLightningBolt(getWorld(), getPos().getX(), getPos().getY() + 2, getPos().getZ(), true)); + getWorld().addWeatherEffect(new LightningBoltEntity(getWorld(), getPos().getX(), getPos().getY() + 2, getPos().getZ(), true)); return true; } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileIncenseAltar.java b/src/main/java/WayofTime/bloodmagic/tile/TileIncenseAltar.java index f0da8c4a..1f645991 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileIncenseAltar.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileIncenseAltar.java @@ -4,15 +4,15 @@ import WayofTime.bloodmagic.ritual.AreaDescriptor; import WayofTime.bloodmagic.util.helper.PlayerSacrificeHelper; import WayofTime.bloodmagic.incense.*; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.ITickable; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import java.util.HashMap; import java.util.List; @@ -35,7 +35,7 @@ public class TileIncenseAltar extends TileInventory implements ITickable { @Override public void update() { AxisAlignedBB aabb = incenseArea.getAABB(getPos()); - List playerList = getWorld().getEntitiesWithinAABB(EntityPlayer.class, aabb); + List playerList = getWorld().getEntitiesWithinAABB(PlayerEntity.class, aabb); if (playerList.isEmpty()) { return; } @@ -46,29 +46,29 @@ public class TileIncenseAltar extends TileInventory implements ITickable { boolean hasPerformed = false; - for (EntityPlayer player : playerList) { + for (PlayerEntity player : playerList) { if (PlayerSacrificeHelper.incrementIncense(player, 0, incenseAddition, incenseAddition / 100)) { hasPerformed = true; } } if (hasPerformed) { - if (getWorld().rand.nextInt(4) == 0 && getWorld() instanceof WorldServer) { - WorldServer server = (WorldServer) getWorld(); + if (getWorld().rand.nextInt(4) == 0 && getWorld() instanceof ServerWorld) { + ServerWorld server = (ServerWorld) getWorld(); server.spawnParticle(EnumParticleTypes.FLAME, pos.getX() + 0.5, pos.getY() + 1.2, pos.getZ() + 0.5, 1, 0.02, 0.03, 0.02, 0); } } } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); tranquility = tag.getDouble("tranquility"); incenseAddition = tag.getDouble("incenseAddition"); } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setDouble("tranquility", tranquility); tag.setDouble("incenseAddition", incenseAddition); @@ -90,11 +90,11 @@ public class TileIncenseAltar extends TileInventory implements ITickable { canFormRoad = true; level: - for (EnumFacing horizontalFacing : EnumFacing.HORIZONTALS) { + for (Direction horizontalFacing : Direction.HORIZONTALS) { BlockPos facingOffsetPos = verticalPos.offset(horizontalFacing, currentDistance); for (int j = -1; j <= 1; j++) { BlockPos offsetPos = facingOffsetPos.offset(horizontalFacing.rotateY(), j); - IBlockState state = getWorld().getBlockState(offsetPos); + BlockState state = getWorld().getBlockState(offsetPos); Block block = state.getBlock(); if (!(block instanceof IIncensePath && ((IIncensePath) block).getLevelOfPath(getWorld(), offsetPos, state) >= currentDistance - 2)) { canFormRoad = false; @@ -118,7 +118,7 @@ public class TileIncenseAltar extends TileInventory implements ITickable { for (int y = yOffset; y <= 2 + yOffset; y++) { BlockPos offsetPos = pos.add(i, y, j); - IBlockState state = getWorld().getBlockState(offsetPos); + BlockState state = getWorld().getBlockState(offsetPos); Block block = state.getBlock(); TranquilityStack stack = IncenseTranquilityRegistry.getTranquilityOfBlock(getWorld(), offsetPos, block, state); if (stack != null) { diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileInventory.java b/src/main/java/WayofTime/bloodmagic/tile/TileInventory.java index 11e2edf3..5d6607f0 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileInventory.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileInventory.java @@ -2,17 +2,17 @@ package WayofTime.bloodmagic.tile; import WayofTime.bloodmagic.tile.base.TileBase; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.ISidedInventory; import net.minecraft.inventory.InventoryHelper; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; +import net.minecraft.util.Direction; import net.minecraft.util.NonNullList; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.text.StringTextComponent; import net.minecraftforge.common.capabilities.Capability; import net.minecraftforge.items.CapabilityItemHandler; import net.minecraftforge.items.IItemHandler; @@ -50,14 +50,14 @@ public class TileInventory extends TileBase implements IInventory { } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { super.deserialize(tagCompound); - NBTTagList tags = tagCompound.getTagList("Items", 10); + ListNBT tags = tagCompound.getTagList("Items", 10); inventory = NonNullList.withSize(size, ItemStack.EMPTY); for (int i = 0; i < tags.tagCount(); i++) { if (!isSyncedSlot(i)) { - NBTTagCompound data = tags.getCompoundTagAt(i); + CompoundNBT data = tags.getCompoundTagAt(i); byte j = data.getByte("Slot"); if (j >= 0 && j < inventory.size()) { @@ -68,13 +68,13 @@ public class TileInventory extends TileBase implements IInventory { } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { super.serialize(tagCompound); - NBTTagList tags = new NBTTagList(); + ListNBT tags = new ListNBT(); for (int i = 0; i < inventory.size(); i++) { if ((!inventory.get(i).isEmpty()) && !isSyncedSlot(i)) { - NBTTagCompound data = new NBTTagCompound(); + CompoundNBT data = new CompoundNBT(); data.setByte("Slot", (byte) i); inventory.get(i).writeToNBT(data); tags.appendTag(data); @@ -146,12 +146,12 @@ public class TileInventory extends TileBase implements IInventory { } @Override - public void openInventory(EntityPlayer player) { + public void openInventory(PlayerEntity player) { } @Override - public void closeInventory(EntityPlayer player) { + public void closeInventory(PlayerEntity player) { } @@ -192,7 +192,7 @@ public class TileInventory extends TileBase implements IInventory { } @Override - public boolean isUsableByPlayer(EntityPlayer player) { + public boolean isUsableByPlayer(PlayerEntity player) { return true; } @@ -208,17 +208,17 @@ public class TileInventory extends TileBase implements IInventory { @Override public ITextComponent getDisplayName() { - return new TextComponentString(getName()); + return new StringTextComponent(getName()); } protected void initializeItemHandlers() { if (this instanceof ISidedInventory) { - handlerDown = new SidedInvWrapper((ISidedInventory) this, EnumFacing.DOWN); - handlerUp = new SidedInvWrapper((ISidedInventory) this, EnumFacing.UP); - handlerNorth = new SidedInvWrapper((ISidedInventory) this, EnumFacing.NORTH); - handlerSouth = new SidedInvWrapper((ISidedInventory) this, EnumFacing.SOUTH); - handlerWest = new SidedInvWrapper((ISidedInventory) this, EnumFacing.WEST); - handlerEast = new SidedInvWrapper((ISidedInventory) this, EnumFacing.EAST); + handlerDown = new SidedInvWrapper((ISidedInventory) this, Direction.DOWN); + handlerUp = new SidedInvWrapper((ISidedInventory) this, Direction.UP); + handlerNorth = new SidedInvWrapper((ISidedInventory) this, Direction.NORTH); + handlerSouth = new SidedInvWrapper((ISidedInventory) this, Direction.SOUTH); + handlerWest = new SidedInvWrapper((ISidedInventory) this, Direction.WEST); + handlerEast = new SidedInvWrapper((ISidedInventory) this, Direction.EAST); } else { handlerDown = new InvWrapper(this); handlerUp = handlerDown; @@ -231,7 +231,7 @@ public class TileInventory extends TileBase implements IInventory { @SuppressWarnings("unchecked") @Override - public T getCapability(Capability capability, EnumFacing facing) { + public T getCapability(Capability capability, Direction facing) { if (facing != null && capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) { switch (facing) { case DOWN: @@ -255,7 +255,7 @@ public class TileInventory extends TileBase implements IInventory { } @Override - public boolean hasCapability(Capability capability, EnumFacing facing) { + public boolean hasCapability(Capability capability, Direction facing) { return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing); } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileInversionPillar.java b/src/main/java/WayofTime/bloodmagic/tile/TileInversionPillar.java index a947fda7..41ee1d2f 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileInversionPillar.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileInversionPillar.java @@ -10,10 +10,10 @@ import WayofTime.bloodmagic.inversion.InversionPillarHandler; import WayofTime.bloodmagic.tile.base.TileTicking; import com.google.common.collect.ImmutableMap; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; @@ -133,9 +133,9 @@ public class TileInversionPillar extends TileTicking { BlockPos candidatePos = findCandidatePositionForPillar(getWorld(), type, pos, allConnectedPos, 5, 10); if (!candidatePos.equals(BlockPos.ORIGIN)) { currentInversion = 0; - IBlockState pillarState = RegistrarBloodMagicBlocks.INVERSION_PILLAR.getStateFromMeta(type.ordinal()); - IBlockState bottomState = RegistrarBloodMagicBlocks.INVERSION_PILLAR_END.getStateFromMeta(type.ordinal() * 2); - IBlockState topState = RegistrarBloodMagicBlocks.INVERSION_PILLAR_END.getStateFromMeta(type.ordinal() * 2 + 1); + BlockState pillarState = RegistrarBloodMagicBlocks.INVERSION_PILLAR.getStateFromMeta(type.ordinal()); + BlockState bottomState = RegistrarBloodMagicBlocks.INVERSION_PILLAR_END.getStateFromMeta(type.ordinal() * 2); + BlockState topState = RegistrarBloodMagicBlocks.INVERSION_PILLAR_END.getStateFromMeta(type.ordinal() * 2 + 1); getWorld().setBlockState(candidatePos, pillarState); getWorld().setBlockState(candidatePos.down(), bottomState); getWorld().setBlockState(candidatePos.up(), topState); @@ -166,7 +166,7 @@ public class TileInversionPillar extends TileTicking { return; } - for (EnumFacing side : EnumFacing.HORIZONTALS) { + for (Direction side : Direction.HORIZONTALS) { BlockPos offsetPos = pos.offset(side, 16); double sideAmount = WorldDemonWillHandler.getCurrentWill(getWorld(), offsetPos, type); if (currentAmount > sideAmount) { @@ -194,7 +194,7 @@ public class TileInversionPillar extends TileTicking { } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); if (!tag.hasKey(Constants.NBT.WILL_TYPE)) { @@ -211,7 +211,7 @@ public class TileInversionPillar extends TileTicking { } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setString(Constants.NBT.WILL_TYPE, type.toString()); @@ -282,7 +282,7 @@ public class TileInversionPillar extends TileTicking { return 1; //Invalid block (itself!) } - IBlockState state = getWorld().getBlockState(offsetPos); + BlockState state = getWorld().getBlockState(offsetPos); if (!state.getBlock().isAir(state, getWorld(), offsetPos)) { //Consume Will and set this block Block block = state.getBlock(); @@ -314,7 +314,7 @@ public class TileInversionPillar extends TileTicking { } @Override - public boolean hasCapability(Capability capability, EnumFacing side) { + public boolean hasCapability(Capability capability, Direction side) { if (capability == CapabilityAnimation.ANIMATION_CAPABILITY) { return true; } @@ -322,7 +322,7 @@ public class TileInversionPillar extends TileTicking { } @Override - public T getCapability(Capability capability, EnumFacing side) { + public T getCapability(Capability capability, Direction side) { if (capability == CapabilityAnimation.ANIMATION_CAPABILITY) { return CapabilityAnimation.ANIMATION_CAPABILITY.cast(asm); } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileMasterRitualStone.java b/src/main/java/WayofTime/bloodmagic/tile/TileMasterRitualStone.java index 88ae398b..ac7531db 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileMasterRitualStone.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileMasterRitualStone.java @@ -19,12 +19,12 @@ import WayofTime.bloodmagic.util.ChatUtil; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.util.helper.*; import com.google.common.base.Strings; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.World; import net.minecraftforge.common.MinecraftForge; @@ -40,7 +40,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS private int activeTime; private int cooldown; private Ritual currentRitual; - private EnumFacing direction = EnumFacing.NORTH; + private Direction direction = Direction.NORTH; private boolean inverted; private List currentActiveWillConfig = new ArrayList<>(); @@ -73,20 +73,20 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { owner = tag.hasUniqueId("owner") ? tag.getUniqueId("owner") : null; if (owner != null) cachedNetwork = NetworkHelper.getSoulNetwork(owner); currentRitual = BloodMagic.RITUAL_MANAGER.getRitual(tag.getString(Constants.NBT.CURRENT_RITUAL)); if (currentRitual != null) { - NBTTagCompound ritualTag = tag.getCompoundTag(Constants.NBT.CURRENT_RITUAL_TAG); + CompoundNBT ritualTag = tag.getCompoundTag(Constants.NBT.CURRENT_RITUAL_TAG); if (!ritualTag.isEmpty()) { currentRitual.readFromNBT(ritualTag); } } active = tag.getBoolean(Constants.NBT.IS_RUNNING); activeTime = tag.getInteger(Constants.NBT.RUNTIME); - direction = EnumFacing.VALUES[tag.getInteger(Constants.NBT.DIRECTION)]; + direction = Direction.VALUES[tag.getInteger(Constants.NBT.DIRECTION)]; redstoned = tag.getBoolean(Constants.NBT.IS_REDSTONED); for (EnumDemonWillType type : EnumDemonWillType.values()) { @@ -97,13 +97,13 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { String ritualId = BloodMagic.RITUAL_MANAGER.getId(getCurrentRitual()); if (owner != null) tag.setUniqueId("owner", owner); tag.setString(Constants.NBT.CURRENT_RITUAL, Strings.isNullOrEmpty(ritualId) ? "" : ritualId); if (currentRitual != null) { - NBTTagCompound ritualTag = new NBTTagCompound(); + CompoundNBT ritualTag = new CompoundNBT(); currentRitual.writeToNBT(ritualTag); tag.setTag(Constants.NBT.CURRENT_RITUAL_TAG, ritualTag); } @@ -120,7 +120,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } @Override - public boolean activateRitual(ItemStack activationCrystal, @Nullable EntityPlayer activator, Ritual ritual) { + public boolean activateRitual(ItemStack activationCrystal, @Nullable PlayerEntity activator, Ritual ritual) { if (PlayerHelper.isFakePlayer(activator)) return false; @@ -133,7 +133,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS SoulNetwork network = NetworkHelper.getSoulNetwork(binding); if (!isRedstoned() && network.getCurrentEssence() < ritual.getActivationCost() && (activator != null && !activator.capabilities.isCreativeMode)) { - activator.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.weak"), true); + activator.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.weak"), true); return false; } @@ -144,7 +144,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS if (MinecraftForge.EVENT_BUS.post(event)) { if (activator != null) - activator.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.prevent"), true); + activator.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.prevent"), true); return false; } @@ -153,7 +153,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS network.syphon(ticket(ritual.getActivationCost())); if (activator != null) - activator.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.activate"), true); + activator.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.activate"), true); this.active = true; this.owner = binding.getOwnerId(); @@ -174,7 +174,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } } else { if (activator != null) - activator.sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.ritual.notValid"), true); + activator.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.notValid"), true); } return false; @@ -229,11 +229,11 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } @Override - public EnumFacing getDirection() { + public Direction getDirection() { return direction; } - public void setDirection(EnumFacing direction) { + public void setDirection(Direction direction) { this.direction = direction; } @@ -291,26 +291,26 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } @Override - public void provideInformationOfRitualToPlayer(EntityPlayer player) { + public void provideInformationOfRitualToPlayer(PlayerEntity player) { if (this.currentRitual != null) { ChatUtil.sendNoSpam(player, this.currentRitual.provideInformationOfRitualToPlayer(player)); } } @Override - public void provideInformationOfRangeToPlayer(EntityPlayer player, String range) { + public void provideInformationOfRangeToPlayer(PlayerEntity player, String range) { if (this.currentRitual != null && this.currentRitual.getListOfRanges().contains(range)) { ChatUtil.sendNoSpam(player, this.currentRitual.provideInformationOfRangeToPlayer(player, range)); } } @Override - public void setActiveWillConfig(EntityPlayer player, List typeList) { + public void setActiveWillConfig(PlayerEntity player, List typeList) { this.currentActiveWillConfig = typeList; } @Override - public EnumReaderBoundaries setBlockRangeByBounds(EntityPlayer player, String range, BlockPos offset1, BlockPos offset2) { + public EnumReaderBoundaries setBlockRangeByBounds(PlayerEntity player, String range, BlockPos offset1, BlockPos offset2) { AreaDescriptor descriptor = this.getBlockRange(range); DemonWillHolder holder = WorldDemonWillHandler.getWillHolder(world, getBlockPos()); @@ -327,10 +327,10 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } @Override - public void provideInformationOfWillConfigToPlayer(EntityPlayer player, List typeList) { + public void provideInformationOfWillConfigToPlayer(PlayerEntity player, List typeList) { //There is probably an easier way to make expanded chat messages if (typeList.size() >= 1) { - Object[] translations = new TextComponentTranslation[typeList.size()]; + Object[] translations = new TranslationTextComponent[typeList.size()]; StringBuilder constructedString = new StringBuilder("%s"); for (int i = 1; i < typeList.size(); i++) { @@ -338,12 +338,12 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS } for (int i = 0; i < typeList.size(); i++) { - translations[i] = new TextComponentTranslation("tooltip.bloodmagic.currentBaseType." + typeList.get(i).name.toLowerCase()); + translations[i] = new TranslationTextComponent("tooltip.bloodmagic.currentBaseType." + typeList.get(i).name.toLowerCase()); } - ChatUtil.sendNoSpam(player, new TextComponentTranslation("ritual.bloodmagic.willConfig.set", new TextComponentTranslation(constructedString.toString(), translations))); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("ritual.bloodmagic.willConfig.set", new TranslationTextComponent(constructedString.toString(), translations))); } else { - ChatUtil.sendNoSpam(player, new TextComponentTranslation("ritual.bloodmagic.willConfig.void")); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("ritual.bloodmagic.willConfig.void")); } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileMimic.java b/src/main/java/WayofTime/bloodmagic/tile/TileMimic.java index ea0558b6..88829e15 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileMimic.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileMimic.java @@ -8,26 +8,26 @@ import WayofTime.bloodmagic.util.ChatUtil; import WayofTime.bloodmagic.util.Utils; import WayofTime.bloodmagic.util.StateUtil; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.projectile.EntityPotion; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; +import net.minecraft.block.BlockState; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.PotionEntity; +import net.minecraft.block.Blocks; +import net.minecraft.item.BlockItem; +import net.minecraft.item.Items; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.InventoryHelper; -import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; import net.minecraft.potion.PotionUtils; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Direction; +import net.minecraft.util.Hand; import net.minecraft.util.ITickable; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentTranslation; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.util.text.TranslationTextComponent; +import net.minecraft.world.Difficulty; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.ReflectionHelper; @@ -39,9 +39,9 @@ public class TileMimic extends TileInventory implements ITickable { private static Field _blockMetadata = ReflectionHelper.findField(TileEntity.class, "blockMetadata", "field_145847_g"); public boolean dropItemsOnBreak = true; - public NBTTagCompound tileTag = new NBTTagCompound(); + public CompoundNBT tileTag = new CompoundNBT(); public TileEntity mimicedTile = null; - IBlockState stateOfReplacedBlock = Blocks.AIR.getDefaultState(); + BlockState stateOfReplacedBlock = Blocks.AIR.getDefaultState(); public int playerCheckRadius = 5; public int potionSpawnRadius = 5; @@ -64,9 +64,9 @@ public class TileMimic extends TileInventory implements ITickable { ItemStack potionStack = this.getStackInSlot(1); if (!potionStack.isEmpty()) { AxisAlignedBB bb = new AxisAlignedBB(this.getPos()).expand(playerCheckRadius, playerCheckRadius, playerCheckRadius); - List playerList = getWorld().getEntitiesWithinAABB(EntityPlayer.class, bb); + List playerList = getWorld().getEntitiesWithinAABB(PlayerEntity.class, bb); - for (EntityPlayer player : playerList) { + for (PlayerEntity player : playerList) { if (!player.capabilities.isCreativeMode) { double posX = this.pos.getX() + 0.5 + (2 * getWorld().rand.nextDouble() - 1) * potionSpawnRadius; double posY = this.pos.getY() + 0.5 + (2 * getWorld().rand.nextDouble() - 1) * potionSpawnRadius; @@ -75,7 +75,7 @@ public class TileMimic extends TileInventory implements ITickable { ItemStack newStack = new ItemStack(potionStack.getItem() == RegistrarBloodMagicItems.POTION_FLASK ? Items.SPLASH_POTION : potionStack.getItem()); newStack.setTagCompound(potionStack.getTagCompound()); - EntityPotion potionEntity = new EntityPotion(getWorld(), posX, posY, posZ, newStack); + PotionEntity potionEntity = new PotionEntity(getWorld(), posX, posY, posZ, newStack); getWorld().spawnEntity(potionEntity); break; @@ -84,11 +84,11 @@ public class TileMimic extends TileInventory implements ITickable { } } - if (this.getBlockMetadata() == BlockMimic.sentientMimicMeta && getWorld().getDifficulty() != EnumDifficulty.PEACEFUL && !(mimicedTile instanceof IInventory)) { + if (this.getBlockMetadata() == BlockMimic.sentientMimicMeta && getWorld().getDifficulty() != Difficulty.PEACEFUL && !(mimicedTile instanceof IInventory)) { AxisAlignedBB bb = new AxisAlignedBB(this.getPos()).expand(playerCheckRadius, playerCheckRadius, playerCheckRadius); - List playerList = getWorld().getEntitiesWithinAABB(EntityPlayer.class, bb); + List playerList = getWorld().getEntitiesWithinAABB(PlayerEntity.class, bb); - for (EntityPlayer player : playerList) { + for (PlayerEntity player : playerList) { if (!player.capabilities.isCreativeMode && Utils.canEntitySeeBlock(getWorld(), player, getPos())) { spawnMimicEntity(player); break; @@ -98,14 +98,14 @@ public class TileMimic extends TileInventory implements ITickable { } - public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack heldItem, EnumFacing side) { + public boolean onBlockActivated(World world, BlockPos pos, BlockState state, PlayerEntity player, Hand hand, ItemStack heldItem, Direction side) { if (!heldItem.isEmpty() && player.capabilities.isCreativeMode) { - List list = PotionUtils.getEffectsFromStack(heldItem); + List list = PotionUtils.getEffectsFromStack(heldItem); if (!list.isEmpty()) { if (!world.isRemote) { setInventorySlotContents(1, heldItem.copy()); world.notifyBlockUpdate(pos, state, state, 3); - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.potionSet")); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.potionSet")); } return true; } else if (heldItem.getItem() == RegistrarBloodMagicItems.POTION_FLASK) { @@ -113,7 +113,7 @@ public class TileMimic extends TileInventory implements ITickable { if (!world.isRemote) { setInventorySlotContents(1, ItemStack.EMPTY); world.notifyBlockUpdate(pos, state, state, 3); - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.potionRemove")); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.potionRemove")); } return true; } @@ -138,8 +138,8 @@ public class TileMimic extends TileInventory implements ITickable { Utils.insertItemToTile(this, player, 0); ItemStack stack = getStackInSlot(0); if (stateOfReplacedBlock == Blocks.AIR.getDefaultState()) { - if (!stack.isEmpty() && stack.getItem() instanceof ItemBlock) { - Block block = ((ItemBlock) stack.getItem()).getBlock(); + if (!stack.isEmpty() && stack.getItem() instanceof BlockItem) { + Block block = ((BlockItem) stack.getItem()).getBlock(); stateOfReplacedBlock = block.getDefaultState(); } } @@ -153,16 +153,16 @@ public class TileMimic extends TileInventory implements ITickable { return true; } - public boolean performSpecialAbility(EntityPlayer player, EnumFacing sideHit) { + public boolean performSpecialAbility(PlayerEntity player, Direction sideHit) { switch (this.getBlockMetadata()) { case BlockMimic.sentientMimicMeta: if (player.capabilities.isCreativeMode) { if (player.isSneaking()) { playerCheckRadius = Math.max(playerCheckRadius - 1, 0); - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.detectRadius.down", playerCheckRadius)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.detectRadius.down", playerCheckRadius)); } else { playerCheckRadius++; - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.detectRadius.up", playerCheckRadius)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.detectRadius.up", playerCheckRadius)); } return false; @@ -180,30 +180,30 @@ public class TileMimic extends TileInventory implements ITickable { case WEST: if (player.isSneaking()) { potionSpawnRadius = Math.max(potionSpawnRadius - 1, 0); - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.potionSpawnRadius.down", potionSpawnRadius)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.potionSpawnRadius.down", potionSpawnRadius)); } else { potionSpawnRadius++; - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.potionSpawnRadius.up", potionSpawnRadius)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.potionSpawnRadius.up", potionSpawnRadius)); } break; case NORTH: //When the block is clicked on the NORTH or SOUTH side, detectRadius is edited. case SOUTH: if (player.isSneaking()) { playerCheckRadius = Math.max(playerCheckRadius - 1, 0); - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.detectRadius.down", playerCheckRadius)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.detectRadius.down", playerCheckRadius)); } else { playerCheckRadius++; - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.detectRadius.up", playerCheckRadius)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.detectRadius.up", playerCheckRadius)); } break; case UP: //When the block is clicked on the UP or DOWN side, potionSpawnInterval is edited. case DOWN: if (player.isSneaking()) { potionSpawnInterval = Math.max(potionSpawnInterval - 1, 1); - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.potionInterval.down", potionSpawnInterval)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.potionInterval.down", potionSpawnInterval)); } else { potionSpawnInterval++; - ChatUtil.sendNoSpam(player, new TextComponentTranslation("chat.bloodmagic.mimic.potionInterval.up", potionSpawnInterval)); + ChatUtil.sendNoSpam(player, new TranslationTextComponent("chat.bloodmagic.mimic.potionInterval.up", potionSpawnInterval)); } break; default: @@ -217,8 +217,8 @@ public class TileMimic extends TileInventory implements ITickable { return false; } - public boolean spawnMimicEntity(EntityPlayer target) { - if (this.getWorld().getDifficulty() == EnumDifficulty.PEACEFUL) { + public boolean spawnMimicEntity(PlayerEntity target) { + if (this.getWorld().getDifficulty() == Difficulty.PEACEFUL) { return false; } @@ -252,7 +252,7 @@ public class TileMimic extends TileInventory implements ITickable { } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); dropItemsOnBreak = tag.getBoolean("dropItemsOnBreak"); @@ -265,7 +265,7 @@ public class TileMimic extends TileInventory implements ITickable { } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setBoolean("dropItemsOnBreak", dropItemsOnBreak); @@ -293,11 +293,11 @@ public class TileMimic extends TileInventory implements ITickable { } } - public IBlockState getReplacedState() { + public BlockState getReplacedState() { return stateOfReplacedBlock; } - public void setReplacedState(IBlockState state) { + public void setReplacedState(BlockState state) { stateOfReplacedBlock = state; } @@ -313,10 +313,10 @@ public class TileMimic extends TileInventory implements ITickable { replaceMimicWithBlockActual(world, pos, mimic.getStackInSlot(0), mimic.tileTag, mimic.stateOfReplacedBlock); } - public static boolean replaceMimicWithBlockActual(World world, BlockPos pos, ItemStack stack, NBTTagCompound tileTag, IBlockState replacementState) { - if (!stack.isEmpty() && stack.getItem() instanceof ItemBlock) { - Block block = ((ItemBlock) stack.getItem()).getBlock(); - IBlockState state = replacementState; + public static boolean replaceMimicWithBlockActual(World world, BlockPos pos, ItemStack stack, CompoundNBT tileTag, BlockState replacementState) { + if (!stack.isEmpty() && stack.getItem() instanceof BlockItem) { + Block block = ((BlockItem) stack.getItem()).getBlock(); + BlockState state = replacementState; if (world.setBlockState(pos, state, 3)) { TileEntity tile = world.getTileEntity(pos); if (tile != null) { @@ -334,10 +334,10 @@ public class TileMimic extends TileInventory implements ITickable { } @Nullable - public static TileEntity getTileFromStackWithTag(World world, BlockPos pos, ItemStack stack, @Nullable NBTTagCompound tag, IBlockState replacementState) { - if (!stack.isEmpty() && stack.getItem() instanceof ItemBlock) { - Block block = ((ItemBlock) stack.getItem()).getBlock(); - IBlockState state = replacementState; + public static TileEntity getTileFromStackWithTag(World world, BlockPos pos, ItemStack stack, @Nullable CompoundNBT tag, BlockState replacementState) { + if (!stack.isEmpty() && stack.getItem() instanceof BlockItem) { + Block block = ((BlockItem) stack.getItem()).getBlock(); + BlockState state = replacementState; if (block.hasTileEntity(state)) { TileEntity tile = block.createTileEntity(world, state); @@ -345,7 +345,7 @@ public class TileMimic extends TileInventory implements ITickable { return null; if (tag != null) { - NBTTagCompound copyTag = tag.copy(); + CompoundNBT copyTag = tag.copy(); copyTag.setInteger("x", pos.getX()); copyTag.setInteger("y", pos.getY()); copyTag.setInteger("z", pos.getZ()); diff --git a/src/main/java/WayofTime/bloodmagic/tile/TilePhantomBlock.java b/src/main/java/WayofTime/bloodmagic/tile/TilePhantomBlock.java index fc9552ad..b9e2ad30 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TilePhantomBlock.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TilePhantomBlock.java @@ -3,8 +3,8 @@ package WayofTime.bloodmagic.tile; import WayofTime.bloodmagic.item.sigil.ItemSigilPhantomBridge; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.tile.base.TileTicking; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.nbt.CompoundNBT; public class TilePhantomBlock extends TileTicking { private int ticksRemaining = 10; @@ -17,12 +17,12 @@ public class TilePhantomBlock extends TileTicking { } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { this.ticksRemaining = tagCompound.getInteger(Constants.NBT.TICKS_REMAINING); } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { tagCompound.setInteger(Constants.NBT.TICKS_REMAINING, ticksRemaining); return tagCompound; } @@ -30,7 +30,7 @@ public class TilePhantomBlock extends TileTicking { @Override public void onUpdate() { if (!world.isRemote) { - EntityPlayer player = world.getClosestPlayer(getPos().getX(), getPos().getY(), getPos().getZ(), 10.0D, ItemSigilPhantomBridge.IS_PHANTOM_ACTIVE); + PlayerEntity player = world.getClosestPlayer(getPos().getX(), getPos().getY(), getPos().getZ(), 10.0D, ItemSigilPhantomBridge.IS_PHANTOM_ACTIVE); if (player != null && !player.isSneaking()) return; ticksRemaining--; diff --git a/src/main/java/WayofTime/bloodmagic/tile/TilePurificationAltar.java b/src/main/java/WayofTime/bloodmagic/tile/TilePurificationAltar.java index fdcab9f4..e4a74df2 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TilePurificationAltar.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TilePurificationAltar.java @@ -3,14 +3,14 @@ package WayofTime.bloodmagic.tile; import WayofTime.bloodmagic.iface.IPurificationAsh; import WayofTime.bloodmagic.ritual.AreaDescriptor; import WayofTime.bloodmagic.util.helper.PurificationHelper; -import net.minecraft.entity.passive.EntityAnimal; +import net.minecraft.entity.passive.AnimalEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.ITickable; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.WorldServer; +import net.minecraft.world.ServerWorld; import java.util.List; @@ -39,14 +39,14 @@ public class TilePurificationAltar extends TileInventory implements ITickable { } AxisAlignedBB aabb = purityArea.getAABB(getPos()); - List animalList = getWorld().getEntitiesWithinAABB(EntityAnimal.class, aabb); + List animalList = getWorld().getEntitiesWithinAABB(AnimalEntity.class, aabb); if (animalList.isEmpty()) { return; } boolean hasPerformed = false; - for (EntityAnimal animal : animalList) { + for (AnimalEntity animal : animalList) { double added = PurificationHelper.addPurity(animal, Math.min(purityRate, totalPurity), maxPurity); if (added > 0) { totalPurity -= purityRate; @@ -55,15 +55,15 @@ public class TilePurificationAltar extends TileInventory implements ITickable { } if (hasPerformed) { - if (getWorld().rand.nextInt(4) == 0 && getWorld() instanceof WorldServer) { - WorldServer server = (WorldServer) getWorld(); + if (getWorld().rand.nextInt(4) == 0 && getWorld() instanceof ServerWorld) { + ServerWorld server = (ServerWorld) getWorld(); server.spawnParticle(EnumParticleTypes.FLAME, pos.getX() + 0.5, pos.getY() + 1.2, pos.getZ() + 0.5, 1, 0.02, 0.03, 0.02, 0); } } } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); totalPurity = tag.getDouble("totalPurity"); maxPurity = tag.getDouble("maxPurity"); @@ -71,7 +71,7 @@ public class TilePurificationAltar extends TileInventory implements ITickable { } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setDouble("totalPurity", totalPurity); diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileSoulForge.java b/src/main/java/WayofTime/bloodmagic/tile/TileSoulForge.java index 4e737ae9..1ceab097 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileSoulForge.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileSoulForge.java @@ -10,7 +10,7 @@ import WayofTime.bloodmagic.soul.IDemonWillConduit; import WayofTime.bloodmagic.soul.IDemonWillGem; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.ITickable; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.items.ItemHandlerHelper; @@ -34,14 +34,14 @@ public class TileSoulForge extends TileInventory implements ITickable, IDemonWil } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); burnTime = tag.getInteger(Constants.NBT.SOUL_FORGE_BURN); } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setInteger(Constants.NBT.SOUL_FORGE_BURN, burnTime); diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java b/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java index d2d41e2d..54475123 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileSpectralBlock.java @@ -5,8 +5,8 @@ import WayofTime.bloodmagic.core.RegistrarBloodMagicBlocks; import WayofTime.bloodmagic.tile.base.TileTicking; import com.google.common.base.Strings; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.block.BlockState; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -21,14 +21,14 @@ public class TileSpectralBlock extends TileTicking { } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { ticksRemaining = tagCompound.getInteger(Constants.NBT.TICKS_REMAINING); containedBlockName = tagCompound.getString(Constants.NBT.CONTAINED_BLOCK_NAME); containedBlockMeta = tagCompound.getInteger(Constants.NBT.CONTAINED_BLOCK_META); } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { tagCompound.setInteger(Constants.NBT.TICKS_REMAINING, ticksRemaining); tagCompound.setString(Constants.NBT.CONTAINED_BLOCK_NAME, Strings.isNullOrEmpty(containedBlockName) ? "" : containedBlockName); tagCompound.setInteger(Constants.NBT.CONTAINED_BLOCK_META, containedBlockMeta); @@ -48,7 +48,7 @@ public class TileSpectralBlock extends TileTicking { } } - private void setContainedBlockInfo(IBlockState blockState) { + private void setContainedBlockInfo(BlockState blockState) { containedBlockName = blockState.getBlock().getRegistryName().toString(); containedBlockMeta = blockState.getBlock().getMetaFromState(blockState); } @@ -75,7 +75,7 @@ public class TileSpectralBlock extends TileTicking { public static void createSpectralBlock(World world, BlockPos blockPos, int duration) { if (world.isAirBlock(blockPos)) return; - IBlockState cachedState = world.getBlockState(blockPos); + BlockState cachedState = world.getBlockState(blockPos); world.setBlockState(blockPos, RegistrarBloodMagicBlocks.SPECTRAL.getDefaultState()); TileSpectralBlock tile = (TileSpectralBlock) world.getTileEntity(blockPos); tile.setContainedBlockInfo(cachedState); diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileTeleposer.java b/src/main/java/WayofTime/bloodmagic/tile/TileTeleposer.java index b9d665e8..30009812 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileTeleposer.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileTeleposer.java @@ -13,7 +13,7 @@ import WayofTime.bloodmagic.util.Utils; import WayofTime.bloodmagic.util.helper.NetworkHelper; import net.minecraft.entity.Entity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.ITickable; import net.minecraft.util.math.AxisAlignedBB; @@ -35,13 +35,13 @@ public class TileTeleposer extends TileInventory implements ITickable { } @Override - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { super.deserialize(tagCompound); previousInput = tagCompound.getInteger(Constants.NBT.PREVIOUS_INPUT); } @Override - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { super.serialize(tagCompound); tagCompound.setInteger(Constants.NBT.PREVIOUS_INPUT, previousInput); return tagCompound; diff --git a/src/main/java/WayofTime/bloodmagic/tile/base/TileBase.java b/src/main/java/WayofTime/bloodmagic/tile/base/TileBase.java index 18344853..8a05ad0e 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/base/TileBase.java +++ b/src/main/java/WayofTime/bloodmagic/tile/base/TileBase.java @@ -1,9 +1,9 @@ package WayofTime.bloodmagic.tile.base; -import net.minecraft.block.state.IBlockState; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.block.BlockState; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.network.NetworkManager; -import net.minecraft.network.play.server.SPacketUpdateTileEntity; +import net.minecraft.network.play.server.SUpdateTileEntityPacket; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -17,27 +17,27 @@ import net.minecraftforge.fml.relauncher.SideOnly; */ public class TileBase extends TileEntity { @Override - public final void readFromNBT(NBTTagCompound compound) { + public final void readFromNBT(CompoundNBT compound) { super.readFromNBT(compound); deserializeBase(compound); deserialize(compound); } @Override - public final NBTTagCompound writeToNBT(NBTTagCompound compound) { + public final CompoundNBT writeToNBT(CompoundNBT compound) { super.writeToNBT(compound); serializeBase(compound); return serialize(compound); } /** - * Called by {@link #readFromNBT(NBTTagCompound)} + * Called by {@link #readFromNBT(CompoundNBT)} *

* Internal data (such as coordinates) are handled for you. Just read the data you need. * * @param tagCompound - The tag compound to read from */ - public void deserialize(NBTTagCompound tagCompound) { + public void deserialize(CompoundNBT tagCompound) { } @@ -47,19 +47,19 @@ public class TileBase extends TileEntity { * @param tagCompound - The tag compound to read from * @see TileTicking */ - void deserializeBase(NBTTagCompound tagCompound) { + void deserializeBase(CompoundNBT tagCompound) { } /** - * Called by {@link #writeToNBT(NBTTagCompound)} + * Called by {@link #writeToNBT(CompoundNBT)} *

* Internal data (such as coordinates) are handled for you. Just read the data you need. * * @param tagCompound - The tag compound to write to. * @return the modified tag compound */ - public NBTTagCompound serialize(NBTTagCompound tagCompound) { + public CompoundNBT serialize(CompoundNBT tagCompound) { return tagCompound; } @@ -71,30 +71,30 @@ public class TileBase extends TileEntity { * @return the modified tag compound * @see TileTicking */ - NBTTagCompound serializeBase(NBTTagCompound tagCompound) { + CompoundNBT serializeBase(CompoundNBT tagCompound) { return tagCompound; } public void notifyUpdate() { - IBlockState state = getWorld().getBlockState(getPos()); + BlockState state = getWorld().getBlockState(getPos()); getWorld().notifyBlockUpdate(getPos(), state, state, 3); } // Data syncing @Override - public boolean shouldRefresh(World world, BlockPos pos, IBlockState oldState, IBlockState newState) { + public boolean shouldRefresh(World world, BlockPos pos, BlockState oldState, BlockState newState) { return oldState.getBlock() != newState.getBlock(); } @Override - public final SPacketUpdateTileEntity getUpdatePacket() { - return new SPacketUpdateTileEntity(getPos(), -999, writeToNBT(new NBTTagCompound())); + public final SUpdateTileEntityPacket getUpdatePacket() { + return new SUpdateTileEntityPacket(getPos(), -999, writeToNBT(new CompoundNBT())); } @Override @SideOnly(Side.CLIENT) - public final void onDataPacket(NetworkManager net, SPacketUpdateTileEntity pkt) { + public final void onDataPacket(NetworkManager net, SUpdateTileEntityPacket pkt) { super.onDataPacket(net, pkt); readFromNBT(pkt.getNbtCompound()); onDataPacketClientReceived(); @@ -108,12 +108,12 @@ public class TileBase extends TileEntity { } @Override - public final NBTTagCompound getUpdateTag() { - return writeToNBT(new NBTTagCompound()); + public final CompoundNBT getUpdateTag() { + return writeToNBT(new CompoundNBT()); } @Override - public final void handleUpdateTag(NBTTagCompound tag) { + public final void handleUpdateTag(CompoundNBT tag) { readFromNBT(tag); } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/base/TileTicking.java b/src/main/java/WayofTime/bloodmagic/tile/base/TileTicking.java index f0a532ad..33c18025 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/base/TileTicking.java +++ b/src/main/java/WayofTime/bloodmagic/tile/base/TileTicking.java @@ -1,6 +1,6 @@ package WayofTime.bloodmagic.tile.base; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.ITickable; /** @@ -20,13 +20,13 @@ public abstract class TileTicking extends TileBase implements ITickable { } @Override - void deserializeBase(NBTTagCompound tagCompound) { + void deserializeBase(CompoundNBT tagCompound) { this.ticksExisted = tagCompound.getInteger("ticksExisted"); this.shouldTick = tagCompound.getBoolean("shouldTick"); } @Override - NBTTagCompound serializeBase(NBTTagCompound tagCompound) { + CompoundNBT serializeBase(CompoundNBT tagCompound) { tagCompound.setInteger("ticksExisted", getTicksExisted()); tagCompound.setBoolean("shouldTick", shouldTick()); return tagCompound; diff --git a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerAlchemyTable.java b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerAlchemyTable.java index 879a0ed3..5c3f2801 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerAlchemyTable.java +++ b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerAlchemyTable.java @@ -2,18 +2,18 @@ package WayofTime.bloodmagic.tile.container; import WayofTime.bloodmagic.orb.IBloodOrb; import WayofTime.bloodmagic.tile.TileAlchemyTable; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.ClickType; -import net.minecraft.inventory.Container; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.PlayerInventory; +import net.minecraft.inventory.container.ClickType; +import net.minecraft.inventory.container.Container; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.item.ItemStack; public class ContainerAlchemyTable extends Container { private final IInventory tileTable; - public ContainerAlchemyTable(InventoryPlayer inventoryPlayer, IInventory tileTable) { + public ContainerAlchemyTable(PlayerInventory inventoryPlayer, IInventory tileTable) { this.tileTable = tileTable; this.addSlotToContainer(new Slot(tileTable, 0, 62, 15)); this.addSlotToContainer(new Slot(tileTable, 1, 80, 51)); @@ -37,8 +37,8 @@ public class ContainerAlchemyTable extends Container { } @Override - public ItemStack slotClick(int slotId, int dragType, ClickType clickTypeIn, EntityPlayer player) { - InventoryPlayer inventoryPlayer = player.inventory; + public ItemStack slotClick(int slotId, int dragType, ClickType clickTypeIn, PlayerEntity player) { + PlayerInventory inventoryPlayer = player.inventory; if (slotId < 6 && slotId >= 0) { Slot slot = this.getSlot(slotId); @@ -51,7 +51,7 @@ public class ContainerAlchemyTable extends Container { } @Override - public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) { + public ItemStack transferStackInSlot(PlayerEntity playerIn, int index) { ItemStack itemstack = ItemStack.EMPTY; Slot slot = this.inventorySlots.get(index); @@ -95,7 +95,7 @@ public class ContainerAlchemyTable extends Container { } @Override - public boolean canInteractWith(EntityPlayer playerIn) { + public boolean canInteractWith(PlayerEntity playerIn) { return this.tileTable.isUsableByPlayer(playerIn); } diff --git a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerItemRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerItemRoutingNode.java index fa230b5a..d8441416 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerItemRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerItemRoutingNode.java @@ -4,12 +4,12 @@ import WayofTime.bloodmagic.item.inventory.ItemInventory; import WayofTime.bloodmagic.item.routing.IRoutingFilterProvider; import WayofTime.bloodmagic.tile.routing.TileFilteredRoutingNode; import WayofTime.bloodmagic.util.GhostItemHelper; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.ClickType; -import net.minecraft.inventory.Container; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.PlayerInventory; +import net.minecraft.inventory.container.ClickType; +import net.minecraft.inventory.container.Container; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.item.ItemStack; import javax.annotation.Nullable; @@ -21,7 +21,7 @@ public class ContainerItemRoutingNode extends Container { // private final ItemInventory itemInventory; private int slotsOccupied; - public ContainerItemRoutingNode(InventoryPlayer inventoryPlayer, IInventory tileItemRoutingNode) { + public ContainerItemRoutingNode(PlayerInventory inventoryPlayer, IInventory tileItemRoutingNode) { this.tileItemRoutingNode = tileItemRoutingNode; inventory = (TileFilteredRoutingNode) tileItemRoutingNode; @@ -55,8 +55,8 @@ public class ContainerItemRoutingNode extends Container { * Overridden in order to handle ghost item slots. */ @Override - public ItemStack slotClick(int slotId, int dragType, ClickType clickTypeIn, EntityPlayer player) { - InventoryPlayer inventoryPlayer = player.inventory; + public ItemStack slotClick(int slotId, int dragType, ClickType clickTypeIn, PlayerEntity player) { + PlayerInventory inventoryPlayer = player.inventory; // if (!player.worldObj.isRemote) { if (slotId >= 0) { @@ -111,7 +111,7 @@ public class ContainerItemRoutingNode extends Container { } @Override - public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) { + public ItemStack transferStackInSlot(PlayerEntity playerIn, int index) { ItemStack itemstack = ItemStack.EMPTY; Slot slot = this.inventorySlots.get(index); @@ -154,7 +154,7 @@ public class ContainerItemRoutingNode extends Container { } @Override - public boolean canInteractWith(EntityPlayer playerIn) { + public boolean canInteractWith(PlayerEntity playerIn) { return this.tileItemRoutingNode.isUsableByPlayer(playerIn); } @@ -218,7 +218,7 @@ public class ContainerItemRoutingNode extends Container { } @Override - public boolean canTakeStack(EntityPlayer playerIn) { + public boolean canTakeStack(PlayerEntity playerIn) { return false; } diff --git a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerMasterRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerMasterRoutingNode.java index a9959c27..806f657e 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerMasterRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerMasterRoutingNode.java @@ -1,20 +1,20 @@ package WayofTime.bloodmagic.tile.container; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.PlayerInventory; +import net.minecraft.inventory.container.Container; import net.minecraft.inventory.IInventory; public class ContainerMasterRoutingNode extends Container { private final IInventory tileMasterRoutingNode; - public ContainerMasterRoutingNode(InventoryPlayer inventoryPlayer, IInventory tileMasterRoutingNode) { + public ContainerMasterRoutingNode(PlayerInventory inventoryPlayer, IInventory tileMasterRoutingNode) { this.tileMasterRoutingNode = tileMasterRoutingNode; } @Override - public boolean canInteractWith(EntityPlayer playerIn) { + public boolean canInteractWith(PlayerEntity playerIn) { return this.tileMasterRoutingNode.isUsableByPlayer(playerIn); } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerSoulForge.java b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerSoulForge.java index a86e82d4..457cb101 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerSoulForge.java +++ b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerSoulForge.java @@ -3,17 +3,17 @@ package WayofTime.bloodmagic.tile.container; import WayofTime.bloodmagic.soul.IDemonWill; import WayofTime.bloodmagic.soul.IDemonWillGem; import WayofTime.bloodmagic.tile.TileSoulForge; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.PlayerInventory; +import net.minecraft.inventory.container.Container; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.item.ItemStack; public class ContainerSoulForge extends Container { private final IInventory tileForge; - public ContainerSoulForge(InventoryPlayer inventoryPlayer, IInventory tileForge) { + public ContainerSoulForge(PlayerInventory inventoryPlayer, IInventory tileForge) { this.tileForge = tileForge; this.addSlotToContainer(new Slot(tileForge, 0, 8, 15)); this.addSlotToContainer(new Slot(tileForge, 1, 80, 15)); @@ -34,7 +34,7 @@ public class ContainerSoulForge extends Container { } @Override - public ItemStack transferStackInSlot(EntityPlayer playerIn, int index) { + public ItemStack transferStackInSlot(PlayerEntity playerIn, int index) { ItemStack itemstack = ItemStack.EMPTY; Slot slot = this.inventorySlots.get(index); @@ -77,7 +77,7 @@ public class ContainerSoulForge extends Container { } @Override - public boolean canInteractWith(EntityPlayer playerIn) { + public boolean canInteractWith(PlayerEntity playerIn) { return this.tileForge.isUsableByPlayer(playerIn); } diff --git a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerTeleposer.java b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerTeleposer.java index 82588b45..7852a260 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/container/ContainerTeleposer.java +++ b/src/main/java/WayofTime/bloodmagic/tile/container/ContainerTeleposer.java @@ -1,17 +1,17 @@ package WayofTime.bloodmagic.tile.container; import WayofTime.bloodmagic.item.ItemTelepositionFocus; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.InventoryPlayer; -import net.minecraft.inventory.Container; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.PlayerInventory; +import net.minecraft.inventory.container.Container; import net.minecraft.inventory.IInventory; -import net.minecraft.inventory.Slot; +import net.minecraft.inventory.container.Slot; import net.minecraft.item.ItemStack; public class ContainerTeleposer extends Container { private final IInventory tileTeleposer; - public ContainerTeleposer(InventoryPlayer inventoryPlayer, IInventory tileTeleposer) { + public ContainerTeleposer(PlayerInventory inventoryPlayer, IInventory tileTeleposer) { this.tileTeleposer = tileTeleposer; this.addSlotToContainer(new SlotTeleposer(tileTeleposer, 0, 80, 33)); @@ -27,7 +27,7 @@ public class ContainerTeleposer extends Container { } @Override - public ItemStack transferStackInSlot(EntityPlayer player, int slot) { + public ItemStack transferStackInSlot(PlayerEntity player, int slot) { ItemStack stack = ItemStack.EMPTY; Slot slotObject = inventorySlots.get(slot); int slots = inventorySlots.size(); @@ -63,7 +63,7 @@ public class ContainerTeleposer extends Container { } @Override - public boolean canInteractWith(EntityPlayer playerIn) { + public boolean canInteractWith(PlayerEntity playerIn) { return this.tileTeleposer.isUsableByPlayer(playerIn); } diff --git a/src/main/java/WayofTime/bloodmagic/tile/routing/TileFilteredRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/routing/TileFilteredRoutingNode.java index 7fb17330..ccadc1e4 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/routing/TileFilteredRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/routing/TileFilteredRoutingNode.java @@ -3,12 +3,12 @@ package WayofTime.bloodmagic.tile.routing; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.item.inventory.ItemInventory; import WayofTime.bloodmagic.util.GhostItemHelper; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.inventory.ISidedInventory; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; -import net.minecraft.util.EnumFacing; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; +import net.minecraft.util.Direction; import net.minecraft.util.NonNullList; public class TileFilteredRoutingNode extends TileRoutingNode implements ISidedInventory { @@ -21,7 +21,7 @@ public class TileFilteredRoutingNode extends TileRoutingNode implements ISidedIn super(size, name); } - public ItemStack getFilterStack(EnumFacing side) { + public ItemStack getFilterStack(Direction side) { int index = side.getIndex(); return getStackInSlot(index); @@ -37,12 +37,12 @@ public class TileFilteredRoutingNode extends TileRoutingNode implements ISidedIn } @Override - public boolean isInventoryConnectedToSide(EnumFacing side) { + public boolean isInventoryConnectedToSide(Direction side) { return true; } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); currentActiveSlot = tag.getInteger("currentSlot"); priorities = tag.getIntArray(Constants.NBT.ROUTING_PRIORITY); @@ -51,11 +51,11 @@ public class TileFilteredRoutingNode extends TileRoutingNode implements ISidedIn } if (!tag.getBoolean("updated")) { - NBTTagList tags = tag.getTagList("Items", 10); + ListNBT tags = tag.getTagList("Items", 10); inventory = NonNullList.withSize(getSizeInventory(), ItemStack.EMPTY); for (int i = 0; i < tags.tagCount(); i++) { if (!isSyncedSlot(i)) { - NBTTagCompound data = tags.getCompoundTagAt(i); + CompoundNBT data = tags.getCompoundTagAt(i); byte j = data.getByte("Slot"); if (j == 0) { @@ -71,7 +71,7 @@ public class TileFilteredRoutingNode extends TileRoutingNode implements ISidedIn } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); tag.setInteger("currentSlot", currentActiveSlot); tag.setIntArray(Constants.NBT.ROUTING_PRIORITY, priorities); @@ -86,34 +86,34 @@ public class TileFilteredRoutingNode extends TileRoutingNode implements ISidedIn } @Override - public int[] getSlotsForFace(EnumFacing side) { + public int[] getSlotsForFace(Direction side) { return new int[0]; } @Override - public boolean canInsertItem(int index, ItemStack itemStackIn, EnumFacing direction) { + public boolean canInsertItem(int index, ItemStack itemStackIn, Direction direction) { return false; } @Override - public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction) { + public boolean canExtractItem(int index, ItemStack stack, Direction direction) { return false; } @Override - public int getPriority(EnumFacing side) { + public int getPriority(Direction side) { return priorities[side.getIndex()]; } public void incrementCurrentPriotiryToMaximum(int max) { priorities[currentActiveSlot] = Math.min(priorities[currentActiveSlot] + 1, max); - IBlockState state = getWorld().getBlockState(pos); + BlockState state = getWorld().getBlockState(pos); getWorld().notifyBlockUpdate(pos, state, state, 3); } public void decrementCurrentPriority() { priorities[currentActiveSlot] = Math.max(priorities[currentActiveSlot] - 1, 0); - IBlockState state = getWorld().getBlockState(pos); + BlockState state = getWorld().getBlockState(pos); getWorld().notifyBlockUpdate(pos, state, state, 3); } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/routing/TileInputRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/routing/TileInputRoutingNode.java index d758f2b5..bdc0c21c 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/routing/TileInputRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/routing/TileInputRoutingNode.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.routing.*; import WayofTime.bloodmagic.util.Utils; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraftforge.fluids.capability.CapabilityFluidHandler; import net.minecraftforge.fluids.capability.IFluidHandler; import net.minecraftforge.items.IItemHandler; @@ -17,12 +17,12 @@ public class TileInputRoutingNode extends TileFilteredRoutingNode implements IIn } @Override - public boolean isInput(EnumFacing side) { + public boolean isInput(Direction side) { return true; } @Override - public IItemFilter getInputFilterForSide(EnumFacing side) { + public IItemFilter getInputFilterForSide(Direction side) { TileEntity tile = getWorld().getTileEntity(pos.offset(side)); if (tile != null) { IItemHandler handler = Utils.getInventory(tile, side.getOpposite()); @@ -46,12 +46,12 @@ public class TileInputRoutingNode extends TileFilteredRoutingNode implements IIn } @Override - public boolean isFluidInput(EnumFacing side) { + public boolean isFluidInput(Direction side) { return true; } @Override - public IFluidFilter getInputFluidFilterForSide(EnumFacing side) { + public IFluidFilter getInputFluidFilterForSide(Direction side) { TileEntity tile = getWorld().getTileEntity(pos.offset(side)); if (tile != null && tile.hasCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, side)) { IFluidHandler handler = tile.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, side); @@ -67,7 +67,7 @@ public class TileInputRoutingNode extends TileFilteredRoutingNode implements IIn } @Override - public boolean isTankConnectedToSide(EnumFacing side) { + public boolean isTankConnectedToSide(Direction side) { return true; } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/routing/TileMasterRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/routing/TileMasterRoutingNode.java index afbb3410..a0457aee 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/routing/TileMasterRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/routing/TileMasterRoutingNode.java @@ -5,10 +5,10 @@ import WayofTime.bloodmagic.soul.EnumDemonWillType; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.routing.*; import WayofTime.bloodmagic.tile.TileInventory; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ITickable; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -52,7 +52,7 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti if (outputTile instanceof IOutputItemRoutingNode) { IOutputItemRoutingNode outputNode = (IOutputItemRoutingNode) outputTile; - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { if (!outputNode.isInventoryConnectedToSide(facing) || !outputNode.isOutput(facing)) { continue; } @@ -74,7 +74,7 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti if (outputTile instanceof IOutputFluidRoutingNode) { IOutputFluidRoutingNode outputNode = (IOutputFluidRoutingNode) outputTile; - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { if (!outputNode.isTankConnectedToSide(facing) || !outputNode.isFluidOutput(facing)) { continue; } @@ -104,7 +104,7 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti if (inputTile instanceof IInputItemRoutingNode) { IInputItemRoutingNode inputNode = (IInputItemRoutingNode) inputTile; - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { if (!inputNode.isInventoryConnectedToSide(facing) || !inputNode.isInput(facing)) { continue; } @@ -126,7 +126,7 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti if (inputTile instanceof IInputFluidRoutingNode) { IInputFluidRoutingNode inputNode = (IInputFluidRoutingNode) inputTile; - for (EnumFacing facing : EnumFacing.VALUES) { + for (Direction facing : Direction.VALUES) { if (!inputNode.isTankConnectedToSide(facing) || !inputNode.isFluidInput(facing)) { continue; } @@ -186,11 +186,11 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); - NBTTagList tags = new NBTTagList(); + ListNBT tags = new ListNBT(); for (BlockPos pos : generalNodeList) { - NBTTagCompound posTag = new NBTTagCompound(); + CompoundNBT posTag = new CompoundNBT(); posTag.setInteger(Constants.NBT.X_COORD, pos.getX()); posTag.setInteger(Constants.NBT.Y_COORD, pos.getY()); posTag.setInteger(Constants.NBT.Z_COORD, pos.getZ()); @@ -198,9 +198,9 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti } tag.setTag(Constants.NBT.ROUTING_MASTER_GENERAL, tags); - tags = new NBTTagList(); + tags = new ListNBT(); for (BlockPos pos : inputNodeList) { - NBTTagCompound posTag = new NBTTagCompound(); + CompoundNBT posTag = new CompoundNBT(); posTag.setInteger(Constants.NBT.X_COORD, pos.getX()); posTag.setInteger(Constants.NBT.Y_COORD, pos.getY()); posTag.setInteger(Constants.NBT.Z_COORD, pos.getZ()); @@ -208,9 +208,9 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti } tag.setTag(Constants.NBT.ROUTING_MASTER_INPUT, tags); - tags = new NBTTagList(); + tags = new ListNBT(); for (BlockPos pos : outputNodeList) { - NBTTagCompound posTag = new NBTTagCompound(); + CompoundNBT posTag = new CompoundNBT(); posTag.setInteger(Constants.NBT.X_COORD, pos.getX()); posTag.setInteger(Constants.NBT.Y_COORD, pos.getY()); posTag.setInteger(Constants.NBT.Z_COORD, pos.getZ()); @@ -221,26 +221,26 @@ public class TileMasterRoutingNode extends TileInventory implements IMasterRouti } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); - NBTTagList tags = tag.getTagList(Constants.NBT.ROUTING_MASTER_GENERAL, 10); + ListNBT tags = tag.getTagList(Constants.NBT.ROUTING_MASTER_GENERAL, 10); for (int i = 0; i < tags.tagCount(); i++) { - NBTTagCompound blockTag = tags.getCompoundTagAt(i); + CompoundNBT blockTag = tags.getCompoundTagAt(i); BlockPos newPos = new BlockPos(blockTag.getInteger(Constants.NBT.X_COORD), blockTag.getInteger(Constants.NBT.Y_COORD), blockTag.getInteger(Constants.NBT.Z_COORD)); generalNodeList.add(newPos); } tags = tag.getTagList(Constants.NBT.ROUTING_MASTER_INPUT, 10); for (int i = 0; i < tags.tagCount(); i++) { - NBTTagCompound blockTag = tags.getCompoundTagAt(i); + CompoundNBT blockTag = tags.getCompoundTagAt(i); BlockPos newPos = new BlockPos(blockTag.getInteger(Constants.NBT.X_COORD), blockTag.getInteger(Constants.NBT.Y_COORD), blockTag.getInteger(Constants.NBT.Z_COORD)); inputNodeList.add(newPos); } tags = tag.getTagList(Constants.NBT.ROUTING_MASTER_OUTPUT, 10); for (int i = 0; i < tags.tagCount(); i++) { - NBTTagCompound blockTag = tags.getCompoundTagAt(i); + CompoundNBT blockTag = tags.getCompoundTagAt(i); BlockPos newPos = new BlockPos(blockTag.getInteger(Constants.NBT.X_COORD), blockTag.getInteger(Constants.NBT.Y_COORD), blockTag.getInteger(Constants.NBT.Z_COORD)); outputNodeList.add(newPos); } diff --git a/src/main/java/WayofTime/bloodmagic/tile/routing/TileOutputRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/routing/TileOutputRoutingNode.java index 9c57f30c..e52757bd 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/routing/TileOutputRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/routing/TileOutputRoutingNode.java @@ -6,7 +6,7 @@ import WayofTime.bloodmagic.routing.*; import WayofTime.bloodmagic.util.Utils; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraftforge.fluids.capability.CapabilityFluidHandler; import net.minecraftforge.fluids.capability.IFluidHandler; import net.minecraftforge.items.IItemHandler; @@ -17,12 +17,12 @@ public class TileOutputRoutingNode extends TileFilteredRoutingNode implements IO } @Override - public boolean isOutput(EnumFacing side) { + public boolean isOutput(Direction side) { return true; } @Override - public IItemFilter getOutputFilterForSide(EnumFacing side) { + public IItemFilter getOutputFilterForSide(Direction side) { TileEntity tile = getWorld().getTileEntity(pos.offset(side)); if (tile != null) { IItemHandler handler = Utils.getInventory(tile, side.getOpposite()); @@ -46,12 +46,12 @@ public class TileOutputRoutingNode extends TileFilteredRoutingNode implements IO } @Override - public boolean isFluidOutput(EnumFacing side) { + public boolean isFluidOutput(Direction side) { return true; } @Override - public IFluidFilter getOutputFluidFilterForSide(EnumFacing side) { + public IFluidFilter getOutputFluidFilterForSide(Direction side) { TileEntity tile = getWorld().getTileEntity(pos.offset(side)); if (tile != null && tile.hasCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, side)) { IFluidHandler handler = tile.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, side); @@ -67,7 +67,7 @@ public class TileOutputRoutingNode extends TileFilteredRoutingNode implements IO } @Override - public boolean isTankConnectedToSide(EnumFacing side) { + public boolean isTankConnectedToSide(Direction side) { return true; } } diff --git a/src/main/java/WayofTime/bloodmagic/tile/routing/TileRoutingNode.java b/src/main/java/WayofTime/bloodmagic/tile/routing/TileRoutingNode.java index 0062ce60..fb402861 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/routing/TileRoutingNode.java +++ b/src/main/java/WayofTime/bloodmagic/tile/routing/TileRoutingNode.java @@ -5,10 +5,10 @@ import WayofTime.bloodmagic.routing.IItemRoutingNode; import WayofTime.bloodmagic.routing.IMasterRoutingNode; import WayofTime.bloodmagic.routing.IRoutingNode; import WayofTime.bloodmagic.tile.TileInventory; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.nbt.ListNBT; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ITickable; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -36,17 +36,17 @@ public class TileRoutingNode extends TileInventory implements IRoutingNode, IIte } @Override - public NBTTagCompound serialize(NBTTagCompound tag) { + public CompoundNBT serialize(CompoundNBT tag) { super.serialize(tag); - NBTTagCompound masterTag = new NBTTagCompound(); + CompoundNBT masterTag = new CompoundNBT(); masterTag.setInteger(Constants.NBT.X_COORD, masterPos.getX()); masterTag.setInteger(Constants.NBT.Y_COORD, masterPos.getY()); masterTag.setInteger(Constants.NBT.Z_COORD, masterPos.getZ()); tag.setTag(Constants.NBT.ROUTING_MASTER, masterTag); - NBTTagList tags = new NBTTagList(); + ListNBT tags = new ListNBT(); for (BlockPos pos : connectionList) { - NBTTagCompound posTag = new NBTTagCompound(); + CompoundNBT posTag = new CompoundNBT(); posTag.setInteger(Constants.NBT.X_COORD, pos.getX()); posTag.setInteger(Constants.NBT.Y_COORD, pos.getY()); posTag.setInteger(Constants.NBT.Z_COORD, pos.getZ()); @@ -57,15 +57,15 @@ public class TileRoutingNode extends TileInventory implements IRoutingNode, IIte } @Override - public void deserialize(NBTTagCompound tag) { + public void deserialize(CompoundNBT tag) { super.deserialize(tag); connectionList.clear(); - NBTTagCompound masterTag = tag.getCompoundTag(Constants.NBT.ROUTING_MASTER); + CompoundNBT masterTag = tag.getCompoundTag(Constants.NBT.ROUTING_MASTER); masterPos = new BlockPos(masterTag.getInteger(Constants.NBT.X_COORD), masterTag.getInteger(Constants.NBT.Y_COORD), masterTag.getInteger(Constants.NBT.Z_COORD)); - NBTTagList tags = tag.getTagList(Constants.NBT.ROUTING_CONNECTION, 10); + ListNBT tags = tag.getTagList(Constants.NBT.ROUTING_CONNECTION, 10); for (int i = 0; i < tags.tagCount(); i++) { - NBTTagCompound blockTag = tags.getCompoundTagAt(i); + CompoundNBT blockTag = tags.getCompoundTagAt(i); BlockPos newPos = new BlockPos(blockTag.getInteger(Constants.NBT.X_COORD), blockTag.getInteger(Constants.NBT.Y_COORD), blockTag.getInteger(Constants.NBT.Z_COORD)); connectionList.add(newPos); } @@ -159,12 +159,12 @@ public class TileRoutingNode extends TileInventory implements IRoutingNode, IIte } @Override - public boolean isInventoryConnectedToSide(EnumFacing side) { + public boolean isInventoryConnectedToSide(Direction side) { return false; } @Override - public int getPriority(EnumFacing side) { + public int getPriority(Direction side) { return 0; } diff --git a/src/main/java/WayofTime/bloodmagic/util/BlockStack.java b/src/main/java/WayofTime/bloodmagic/util/BlockStack.java index 85428c4d..426b43fd 100644 --- a/src/main/java/WayofTime/bloodmagic/util/BlockStack.java +++ b/src/main/java/WayofTime/bloodmagic/util/BlockStack.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.util; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -10,7 +10,7 @@ import net.minecraft.world.World; public class BlockStack { private final Block block; private final int meta; - private final IBlockState state; + private final BlockState state; public BlockStack(Block block, int meta) { this.block = block; @@ -34,7 +34,7 @@ public class BlockStack { return meta; } - public IBlockState getState() { + public BlockState getState() { return state; } @@ -62,7 +62,7 @@ public class BlockStack { } public static BlockStack getStackFromPos(World world, BlockPos pos) { - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); return new BlockStack(state.getBlock(), state.getBlock().getMetaFromState(state)); } } diff --git a/src/main/java/WayofTime/bloodmagic/util/ChatUtil.java b/src/main/java/WayofTime/bloodmagic/util/ChatUtil.java index b82710f9..68428f47 100644 --- a/src/main/java/WayofTime/bloodmagic/util/ChatUtil.java +++ b/src/main/java/WayofTime/bloodmagic/util/ChatUtil.java @@ -4,12 +4,12 @@ import WayofTime.bloodmagic.network.BloodMagicPacketHandler; import WayofTime.bloodmagic.util.helper.TextHelper; import io.netty.buffer.ByteBuf; import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.GuiNewChat; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; +import net.minecraft.client.gui.NewChatGui; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentString; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.StringTextComponent; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraftforge.fml.common.network.ByteBufUtils; import net.minecraftforge.fml.common.network.simpleimpl.IMessage; import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; @@ -20,7 +20,7 @@ public class ChatUtil { private static int lastAdded; private static void sendNoSpamMessages(ITextComponent[] messages) { - GuiNewChat chat = Minecraft.getMinecraft().ingameGUI.getChatGUI(); + NewChatGui chat = Minecraft.getMinecraft().ingameGUI.getChatGUI(); for (int i = DELETION_ID + messages.length - 1; i <= lastAdded; i++) { chat.deleteChatLine(i); } @@ -31,14 +31,14 @@ public class ChatUtil { } /** - * Returns a standard {@link TextComponentString} for the given + * Returns a standard {@link StringTextComponent} for the given * {@link String} . * * @param s The string to wrap. * @return An {@link ITextComponent} containing the string. */ public static ITextComponent wrap(String s) { - return new TextComponentString(s); + return new StringTextComponent(s); } /** @@ -60,7 +60,7 @@ public class ChatUtil { * @param args The args to apply to the format */ public static ITextComponent wrapFormatted(String s, Object... args) { - return new TextComponentTranslation(s, args); + return new TranslationTextComponent(s, args); } /** @@ -69,16 +69,16 @@ public class ChatUtil { * @param player The player to send the chat to * @param lines The lines to send */ - public static void sendChat(EntityPlayer player, String... lines) { + public static void sendChat(PlayerEntity player, String... lines) { sendChat(player, wrap(lines)); } /** * Localizes the lines before sending them. * - * @see #sendChat(EntityPlayer, String...) + * @see #sendChat(PlayerEntity, String...) */ - public static void sendChatUnloc(EntityPlayer player, String... unlocLines) { + public static void sendChatUnloc(PlayerEntity player, String... unlocLines) { sendChat(player, TextHelper.localizeAll(unlocLines)); } @@ -88,7 +88,7 @@ public class ChatUtil { * @param player The player to send the chat lines to. * @param lines The {@link ITextComponent chat components} to send.yes */ - public static void sendChat(EntityPlayer player, ITextComponent... lines) { + public static void sendChat(PlayerEntity player, ITextComponent... lines) { for (ITextComponent c : lines) { player.sendMessage(c); } @@ -117,7 +117,7 @@ public class ChatUtil { /** * Skips the packet sending, unsafe to call on servers. * - * @see #sendNoSpam(EntityPlayerMP, ITextComponent...) + * @see #sendNoSpam(ServerPlayerEntity, ITextComponent...) */ public static void sendNoSpamClient(ITextComponent... lines) { sendNoSpamMessages(lines); @@ -126,46 +126,46 @@ public class ChatUtil { /** * Localizes the strings before sending them. * - * @see #sendNoSpam(EntityPlayer, String...) + * @see #sendNoSpam(PlayerEntity, String...) */ - public static void sendNoSpamUnloc(EntityPlayer player, String... unlocLines) { + public static void sendNoSpamUnloc(PlayerEntity player, String... unlocLines) { sendNoSpam(player, TextHelper.localizeAll(unlocLines)); } /** * @see #wrap(String) - * @see #sendNoSpam(EntityPlayer, ITextComponent...) + * @see #sendNoSpam(PlayerEntity, ITextComponent...) */ - public static void sendNoSpam(EntityPlayer player, String... lines) { + public static void sendNoSpam(PlayerEntity player, String... lines) { sendNoSpam(player, wrap(lines)); } /** - * First checks if the player is instanceof {@link EntityPlayerMP} before + * First checks if the player is instanceof {@link ServerPlayerEntity} before * casting. * - * @see #sendNoSpam(EntityPlayerMP, ITextComponent...) + * @see #sendNoSpam(ServerPlayerEntity, ITextComponent...) */ - public static void sendNoSpam(EntityPlayer player, ITextComponent... lines) { - if (player instanceof EntityPlayerMP) { - sendNoSpam((EntityPlayerMP) player, lines); + public static void sendNoSpam(PlayerEntity player, ITextComponent... lines) { + if (player instanceof ServerPlayerEntity) { + sendNoSpam((ServerPlayerEntity) player, lines); } } /** * Localizes the strings before sending them. * - * @see #sendNoSpam(EntityPlayerMP, String...) + * @see #sendNoSpam(ServerPlayerEntity, String...) */ - public static void sendNoSpamUnloc(EntityPlayerMP player, String... unlocLines) { + public static void sendNoSpamUnloc(ServerPlayerEntity player, String... unlocLines) { sendNoSpam(player, TextHelper.localizeAll(unlocLines)); } /** * @see #wrap(String) - * @see #sendNoSpam(EntityPlayerMP, ITextComponent...) + * @see #sendNoSpam(ServerPlayerEntity, ITextComponent...) */ - public static void sendNoSpam(EntityPlayerMP player, String... lines) { + public static void sendNoSpam(ServerPlayerEntity player, String... lines) { sendNoSpam(player, wrap(lines)); } @@ -178,7 +178,7 @@ public class ChatUtil { * @param player The player to send the chat message to * @param lines The chat lines to send. */ - public static void sendNoSpam(EntityPlayerMP player, ITextComponent... lines) { + public static void sendNoSpam(ServerPlayerEntity player, ITextComponent... lines) { if (lines.length > 0) BloodMagicPacketHandler.INSTANCE.sendTo(new PacketNoSpamChat(lines), player); } diff --git a/src/main/java/WayofTime/bloodmagic/util/DamageSourceBloodMagic.java b/src/main/java/WayofTime/bloodmagic/util/DamageSourceBloodMagic.java index 28a29658..3025075b 100644 --- a/src/main/java/WayofTime/bloodmagic/util/DamageSourceBloodMagic.java +++ b/src/main/java/WayofTime/bloodmagic/util/DamageSourceBloodMagic.java @@ -1,10 +1,10 @@ package WayofTime.bloodmagic.util; import WayofTime.bloodmagic.util.helper.TextHelper; -import net.minecraft.entity.EntityLivingBase; +import net.minecraft.entity.LivingEntity; import net.minecraft.util.DamageSource; import net.minecraft.util.text.ITextComponent; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.text.StringTextComponent; public class DamageSourceBloodMagic extends DamageSource { @@ -18,7 +18,7 @@ public class DamageSourceBloodMagic extends DamageSource { } @Override - public ITextComponent getDeathMessage(EntityLivingBase livingBase) { - return new TextComponentString(TextHelper.localizeEffect("chat.bloodmagic.damageSource", livingBase.getName())); + public ITextComponent getDeathMessage(LivingEntity livingBase) { + return new StringTextComponent(TextHelper.localizeEffect("chat.bloodmagic.damageSource", livingBase.getName())); } } diff --git a/src/main/java/WayofTime/bloodmagic/util/GhostItemHelper.java b/src/main/java/WayofTime/bloodmagic/util/GhostItemHelper.java index 54a2e614..cb1ef51b 100644 --- a/src/main/java/WayofTime/bloodmagic/util/GhostItemHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/GhostItemHelper.java @@ -2,19 +2,19 @@ package WayofTime.bloodmagic.util; import WayofTime.bloodmagic.util.helper.NBTHelper; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class GhostItemHelper { public static void setItemGhostAmount(ItemStack stack, int amount) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setInteger(Constants.NBT.GHOST_STACK_SIZE, amount); } public static int getItemGhostAmount(ItemStack stack) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getInteger(Constants.NBT.GHOST_STACK_SIZE); } @@ -24,7 +24,7 @@ public class GhostItemHelper { return false; } - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.hasKey(Constants.NBT.GHOST_STACK_SIZE); } @@ -43,7 +43,7 @@ public class GhostItemHelper { public static ItemStack getStackFromGhost(ItemStack ghostStack) { ItemStack newStack = ghostStack.copy(); NBTHelper.checkNBT(newStack); - NBTTagCompound tag = newStack.getTagCompound(); + CompoundNBT tag = newStack.getTagCompound(); int amount = getItemGhostAmount(ghostStack); tag.removeTag(Constants.NBT.GHOST_STACK_SIZE); if (tag.isEmpty()) { diff --git a/src/main/java/WayofTime/bloodmagic/util/ItemStackWrapper.java b/src/main/java/WayofTime/bloodmagic/util/ItemStackWrapper.java index 70b19397..771492c2 100644 --- a/src/main/java/WayofTime/bloodmagic/util/ItemStackWrapper.java +++ b/src/main/java/WayofTime/bloodmagic/util/ItemStackWrapper.java @@ -3,7 +3,7 @@ package WayofTime.bloodmagic.util; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import javax.annotation.Nullable; import java.util.ArrayList; @@ -14,7 +14,7 @@ public class ItemStackWrapper { public final Item item; public final int stackSize; public final int meta; - public NBTTagCompound nbtTag; + public CompoundNBT nbtTag; public ItemStackWrapper(Item item, int stackSize, int meta) { this.item = item; @@ -77,11 +77,11 @@ public class ItemStackWrapper { return meta; } - public NBTTagCompound getNbtTag() { + public CompoundNBT getNbtTag() { return nbtTag; } - public void setNbtTag(NBTTagCompound nbtTag) { + public void setNbtTag(CompoundNBT nbtTag) { this.nbtTag = nbtTag; } diff --git a/src/main/java/WayofTime/bloodmagic/util/SigilFluidWrapper.java b/src/main/java/WayofTime/bloodmagic/util/SigilFluidWrapper.java index 51319174..fb2342a5 100644 --- a/src/main/java/WayofTime/bloodmagic/util/SigilFluidWrapper.java +++ b/src/main/java/WayofTime/bloodmagic/util/SigilFluidWrapper.java @@ -2,7 +2,7 @@ package WayofTime.bloodmagic.util; import WayofTime.bloodmagic.item.sigil.ItemSigilFluidBase; import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraftforge.common.capabilities.Capability; import net.minecraftforge.common.capabilities.ICapabilityProvider; import net.minecraftforge.fluids.FluidStack; @@ -36,12 +36,12 @@ public class SigilFluidWrapper implements ICapabilityProvider { } @Override - public boolean hasCapability(Capability capability, EnumFacing from) { + public boolean hasCapability(Capability capability, Direction from) { return capability == CapabilityFluidHandler.FLUID_HANDLER_ITEM_CAPABILITY; } @Override - public T getCapability(Capability capability, final EnumFacing from) { + public T getCapability(Capability capability, final Direction from) { if (!hasCapability(capability, from)) { return null; } diff --git a/src/main/java/WayofTime/bloodmagic/util/StateUtil.java b/src/main/java/WayofTime/bloodmagic/util/StateUtil.java index 5c3d35b9..ba653735 100644 --- a/src/main/java/WayofTime/bloodmagic/util/StateUtil.java +++ b/src/main/java/WayofTime/bloodmagic/util/StateUtil.java @@ -1,15 +1,15 @@ package WayofTime.bloodmagic.util; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.properties.IProperty; import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.init.Blocks; import net.minecraft.util.ResourceLocation; import net.minecraftforge.fml.common.registry.ForgeRegistries; public class StateUtil { - public static IBlockState parseState(String state) { + public static BlockState parseState(String state) { if (state.contains("[")) { String[] split = state.split("\\["); split[1] = split[1].substring(0, split[1].lastIndexOf("]")); // Make sure brackets are removed from state @@ -19,7 +19,7 @@ public class StateUtil { return block.getDefaultState(); BlockStateContainer blockState = block.getBlockState(); - IBlockState returnState = blockState.getBaseState(); + BlockState returnState = blockState.getBaseState(); // Force our values into the state String[] stateValues = split[1].split(","); // Splits up each value diff --git a/src/main/java/WayofTime/bloodmagic/util/Utils.java b/src/main/java/WayofTime/bloodmagic/util/Utils.java index 26a42fa4..c78454d9 100644 --- a/src/main/java/WayofTime/bloodmagic/util/Utils.java +++ b/src/main/java/WayofTime/bloodmagic/util/Utils.java @@ -10,30 +10,28 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import com.google.common.collect.Iterables; import com.google.common.collect.Maps; import net.minecraft.block.Block; -import net.minecraft.block.BlockPortal; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.Blocks; +import net.minecraft.block.NetherPortalBlock; +import net.minecraft.block.BlockState; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.Blocks; -import net.minecraft.init.MobEffects; -import net.minecraft.init.SoundEvents; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.item.ItemEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.item.*; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.Effects; +import net.minecraft.util.*; import net.minecraft.inventory.IInventory; import net.minecraft.inventory.ISidedInventory; -import net.minecraft.item.EnumDyeColor; -import net.minecraft.item.Item; -import net.minecraft.item.ItemArmor; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; +import net.minecraft.item.DyeColor; +import net.minecraft.item.ArmorItem; +import net.minecraft.potion.Effect; +import net.minecraft.potion.EffectInstance; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.DamageSource; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.SoundCategory; +import net.minecraft.util.Direction; +import net.minecraft.util.SoundEvents; import net.minecraft.util.math.*; import net.minecraft.world.World; import net.minecraftforge.common.IPlantable; @@ -54,13 +52,13 @@ import java.util.*; public class Utils { - public static final EnumMap DYE_COLOR_VALUES = Maps.newEnumMap(EnumDyeColor.class); + public static final EnumMap DYE_COLOR_VALUES = Maps.newEnumMap(DyeColor.class); static { try { - Field colorValue = ObfuscationReflectionHelper.findField(EnumDyeColor.class, "field_193351_w"); + Field colorValue = ObfuscationReflectionHelper.findField(DyeColor.class, "field_193351_w"); colorValue.setAccessible(true); - for (EnumDyeColor color : EnumDyeColor.values()) { + for (DyeColor color : DyeColor.values()) { DYE_COLOR_VALUES.put(color, (int) colorValue.get(color)); } } catch (IllegalAccessException e) { @@ -68,7 +66,7 @@ public class Utils { } } - public static float addAbsorptionToMaximum(EntityLivingBase entity, float added, int maximum, int duration) { + public static float addAbsorptionToMaximum(LivingEntity entity, float added, int maximum, int duration) { float currentAmount = entity.getAbsorptionAmount(); added = Math.min(maximum - currentAmount, added); @@ -78,7 +76,7 @@ public class Utils { if (duration > 0) { int potionLevel = (int) ((currentAmount + added) / 4); - entity.addPotionEffect(new PotionEffect(MobEffects.ABSORPTION, duration, potionLevel, true, false)); + entity.addPotionEffect(new EffectInstance(Effects.ABSORPTION, duration, potionLevel, true, false)); } entity.setAbsorptionAmount(currentAmount + added); @@ -86,21 +84,21 @@ public class Utils { return added; } - public static boolean isImmuneToFireDamage(EntityLivingBase entity) { - return entity.isImmuneToFire() || entity.isPotionActive(MobEffects.FIRE_RESISTANCE); + public static boolean isImmuneToFireDamage(LivingEntity entity) { + return entity.isImmuneToFire() || entity.isPotionActive(Effects.FIRE_RESISTANCE); } - public static boolean isPlayerBesideSolidBlockFace(EntityPlayer player) { + public static boolean isPlayerBesideSolidBlockFace(PlayerEntity player) { World world = player.getEntityWorld(); double minimumDistanceFromAxis = 0.7; BlockPos centralPos = player.getPosition(); - for (EnumFacing facing : EnumFacing.HORIZONTALS) { + for (Direction facing : Direction.HORIZONTALS) { BlockPos offsetPos = centralPos.offset(facing); double distance = Math.min(offsetPos.getX() + 0.5 - player.posX, offsetPos.getZ() + 0.5 - player.posZ); if (distance > minimumDistanceFromAxis) { continue; } - IBlockState state = world.getBlockState(offsetPos); + BlockState state = world.getBlockState(offsetPos); if (state.isSideSolid(world, offsetPos, facing.getOpposite())) { return true; } @@ -109,7 +107,7 @@ public class Utils { return false; } - public static boolean canPlayerSeeDemonWill(EntityPlayer player) { + public static boolean canPlayerSeeDemonWill(PlayerEntity player) { IItemHandler inventory = new PlayerMainInvWrapper(player.inventory); for (int i = 0; i < inventory.getSlots(); i++) { @@ -128,16 +126,16 @@ public class Utils { public static boolean canEntitySeeBlock(World world, Entity entity, BlockPos pos) { Vec3d relativePosition = new Vec3d(entity.posX - pos.getX() - 0.5, entity.posY + (double) entity.getEyeHeight() - pos.getY() - 0.5, entity.posZ - pos.getZ() - 0.5); - EnumFacing dir = EnumFacing.getFacingFromVector((float) relativePosition.x, (float) relativePosition.y, (float) relativePosition.z); + Direction dir = Direction.getFacingFromVector((float) relativePosition.x, (float) relativePosition.y, (float) relativePosition.z); RayTraceResult result = world.rayTraceBlocks(new Vec3d(entity.posX, entity.posY + (double) entity.getEyeHeight(), entity.posZ), new Vec3d(pos.getX() + 0.5 + dir.getXOffset() * 0.4, pos.getY() + 0.5 + dir.getYOffset() * 0.4, pos.getZ() + 0.5 + dir.getZOffset() * 0.4), false, true, true); return result == null || pos.equals(result.getBlockPos()); } public static int plantSeedsInArea(World world, AxisAlignedBB aabb, int horizontalRadius, int verticalRadius) { int placedBlocks = 0; - List itemEntities = world.getEntitiesWithinAABB(EntityItem.class, aabb); + List itemEntities = world.getEntitiesWithinAABB(ItemEntity.class, aabb); - for (EntityItem itemEntity : itemEntities) { + for (ItemEntity itemEntity : itemEntities) { placedBlocks += plantEntityItem(itemEntity, horizontalRadius, verticalRadius); } @@ -167,10 +165,10 @@ public class Utils { BlockPos newPos = centralPos.add(i, j, k); if (world.isAirBlock(newPos)) { - BlockPos offsetPos = newPos.offset(EnumFacing.DOWN); - IBlockState state = world.getBlockState(offsetPos); - if (state.getBlock().canSustainPlant(state, world, offsetPos, EnumFacing.UP, (IPlantable) item)) { - IBlockState plantState = ((IPlantable) item).getPlant(world, newPos); + BlockPos offsetPos = newPos.offset(Direction.DOWN); + BlockState state = world.getBlockState(offsetPos); + if (state.getBlock().canSustainPlant(state, world, offsetPos, Direction.UP, (IPlantable) item)) { + BlockState plantState = ((IPlantable) item).getPlant(world, newPos); world.setBlockState(newPos, plantState, 3); world.playEvent(2001, newPos, Block.getIdFromBlock(plantState.getBlock()) + (plantState.getBlock().getMetaFromState(plantState) << 12)); stack.shrink(1); @@ -189,7 +187,7 @@ public class Utils { return planted; } - public static int plantEntityItem(EntityItem itemEntity, int horizontalRadius, int verticalRadius) { + public static int plantEntityItem(ItemEntity itemEntity, int horizontalRadius, int verticalRadius) { if (itemEntity == null || itemEntity.isDead) { return 0; } @@ -207,7 +205,7 @@ public class Utils { return planted; } - public static int getDemonWillResolution(EntityPlayer player) { + public static int getDemonWillResolution(PlayerEntity player) { IItemHandler inventory = new PlayerMainInvWrapper(player.inventory); for (int i = 0; i < inventory.getSlots(); i++) { @@ -224,22 +222,22 @@ public class Utils { return 1; } - public static NBTTagCompound getPersistentDataTag(EntityPlayer player) { - NBTTagCompound forgeData = player.getEntityData().getCompoundTag(EntityPlayer.PERSISTED_NBT_TAG); - NBTTagCompound beaconData = forgeData.getCompoundTag("BloodMagic"); + public static CompoundNBT getPersistentDataTag(PlayerEntity player) { + CompoundNBT forgeData = player.getEntityData().getCompoundTag(PlayerEntity.PERSISTED_NBT_TAG); + CompoundNBT beaconData = forgeData.getCompoundTag("BloodMagic"); //Creates/sets the tags if they don't exist if (!forgeData.hasKey("BloodMagic")) forgeData.setTag("BloodMagic", beaconData); - if (!player.getEntityData().hasKey(EntityPlayer.PERSISTED_NBT_TAG)) - player.getEntityData().setTag(EntityPlayer.PERSISTED_NBT_TAG, forgeData); + if (!player.getEntityData().hasKey(PlayerEntity.PERSISTED_NBT_TAG)) + player.getEntityData().setTag(PlayerEntity.PERSISTED_NBT_TAG, forgeData); return beaconData; } - public static void setPlayerSpeedFromServer(EntityPlayer player, double motionX, double motionY, double motionZ) { - if (!player.getEntityWorld().isRemote && player instanceof EntityPlayerMP) { - BloodMagicPacketHandler.sendTo(new PlayerVelocityPacketProcessor(motionX, motionY, motionZ), (EntityPlayerMP) player); + public static void setPlayerSpeedFromServer(PlayerEntity player, double motionX, double motionY, double motionZ) { + if (!player.getEntityWorld().isRemote && player instanceof ServerPlayerEntity) { + BloodMagicPacketHandler.sendTo(new PlayerVelocityPacketProcessor(motionX, motionY, motionZ), (ServerPlayerEntity) player); } } @@ -266,9 +264,9 @@ public class Utils { * @param player - The player to take the item from. * @return {@code true} if the ItemStack is inserted, {@code false} * otherwise - * @see #insertItemToTile(TileInventory, EntityPlayer, int) + * @see #insertItemToTile(TileInventory, PlayerEntity, int) */ - public static boolean insertItemToTile(TileInventory tile, EntityPlayer player) { + public static boolean insertItemToTile(TileInventory tile, PlayerEntity player) { return insertItemToTile(tile, player, 0); } @@ -284,7 +282,7 @@ public class Utils { * @return {@code true} if the ItemStack is inserted, {@code false} * otherwise */ - public static boolean insertItemToTile(TileInventory tile, EntityPlayer player, int slot) { + public static boolean insertItemToTile(TileInventory tile, PlayerEntity player, int slot) { ItemStack slotStack = tile.getStackInSlot(slot); if (slotStack.isEmpty() && !player.getHeldItemMainhand().isEmpty()) { ItemStack input = player.getHeldItemMainhand().copy(); @@ -311,9 +309,9 @@ public class Utils { } @Nullable - public static IItemHandler getInventory(TileEntity tile, @Nullable EnumFacing facing) { + public static IItemHandler getInventory(TileEntity tile, @Nullable Direction facing) { if (facing == null) - facing = EnumFacing.DOWN; + facing = Direction.DOWN; IItemHandler itemHandler = null; @@ -358,7 +356,7 @@ public class Utils { } } - public static float getModifiedDamage(EntityLivingBase attackedEntity, DamageSource source, float amount) { + public static float getModifiedDamage(LivingEntity attackedEntity, DamageSource source, float amount) { if (!attackedEntity.isEntityInvulnerable(source)) { if (amount <= 0) return 0; @@ -374,7 +372,7 @@ public class Utils { return 0; } - public static float applyArmor(EntityLivingBase entity, ItemStack[] inventory, DamageSource source, double damage) { + public static float applyArmor(LivingEntity entity, ItemStack[] inventory, DamageSource source, double damage) { damage *= 25; ArrayList dmgVals = new ArrayList<>(); for (int x = 0; x < inventory.length; x++) { @@ -386,8 +384,8 @@ public class Utils { if (stack.getItem() instanceof ISpecialArmor) { ISpecialArmor armor = (ISpecialArmor) stack.getItem(); prop = armor.getProperties(entity, stack, source, damage / 25D, x).copy(); - } else if (stack.getItem() instanceof ItemArmor && !source.isUnblockable()) { - ItemArmor armor = (ItemArmor) stack.getItem(); + } else if (stack.getItem() instanceof ArmorItem && !source.isUnblockable()) { + ArmorItem armor = (ArmorItem) stack.getItem(); prop = new ArmorProperties(0, armor.damageReduceAmount / 25D, Integer.MAX_VALUE); } if (prop != null) { @@ -414,8 +412,8 @@ public class Utils { return (float) (damage / 25.0F); } - public static float applyPotionDamageCalculations(EntityLivingBase attackedEntity, DamageSource source, float damage) { - Potion resistance = MobEffects.RESISTANCE; + public static float applyPotionDamageCalculations(LivingEntity attackedEntity, DamageSource source, float damage) { + Effect resistance = Effects.RESISTANCE; if (source.isDamageAbsolute()) { return damage; @@ -513,7 +511,7 @@ public class Utils { return returned; } - public static ItemStack insertStackIntoTile(ItemStack stack, TileEntity tile, EnumFacing dir) { + public static ItemStack insertStackIntoTile(ItemStack stack, TileEntity tile, Direction dir) { if (tile.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, dir)) { IItemHandler handler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, dir); @@ -525,7 +523,7 @@ public class Utils { return stack; } - public static int getNumberOfFreeSlots(TileEntity tile, EnumFacing dir) { + public static int getNumberOfFreeSlots(TileEntity tile, Direction dir) { int slots = 0; if (tile.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, dir)) { @@ -572,7 +570,7 @@ public class Utils { * @param limit * @return */ - public static ItemStack insertStackIntoTile(ItemStack stack, TileEntity tile, EnumFacing dir, int limit) { + public static ItemStack insertStackIntoTile(ItemStack stack, TileEntity tile, Direction dir, int limit) { if (tile.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, dir)) { IItemHandler handler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, dir); int numberOfSlots = handler.getSlots(); @@ -622,7 +620,7 @@ public class Utils { return stack; } - public static ItemStack insertStackIntoInventory(ItemStack stack, IInventory inventory, EnumFacing dir) { + public static ItemStack insertStackIntoInventory(ItemStack stack, IInventory inventory, Direction dir) { if (stack.isEmpty()) { return ItemStack.EMPTY; } @@ -657,11 +655,11 @@ public class Utils { return stack; } - public static boolean canInsertStackFullyIntoInventory(ItemStack stack, IInventory inventory, EnumFacing dir) { + public static boolean canInsertStackFullyIntoInventory(ItemStack stack, IInventory inventory, Direction dir) { return canInsertStackFullyIntoInventory(stack, inventory, dir, false, 0); } - public static boolean canInsertStackFullyIntoInventory(ItemStack stack, IInventory inventory, EnumFacing dir, boolean fillToLimit, int limit) { + public static boolean canInsertStackFullyIntoInventory(ItemStack stack, IInventory inventory, Direction dir, boolean fillToLimit, int limit) { if (stack.isEmpty()) { return true; } @@ -734,7 +732,7 @@ public class Utils { * @param limit * @return */ - public static ItemStack insertStackIntoInventory(ItemStack stack, IInventory inventory, EnumFacing dir, int limit) { + public static ItemStack insertStackIntoInventory(ItemStack stack, IInventory inventory, Direction dir, int limit) { if (stack.isEmpty()) { return ItemStack.EMPTY; } @@ -793,17 +791,17 @@ public class Utils { return stack; } - public static boolean isBlockLiquid(IBlockState state) { + public static boolean isBlockLiquid(BlockState state) { return (state instanceof IFluidBlock || state.getMaterial().isLiquid()); } - public static boolean isFlowingLiquid(IBlockState state) { + public static boolean isFlowingLiquid(BlockState state) { Block block = state.getBlock(); return isBlockLiquid(state) && !(state == block.getDefaultState()); } - public static boolean spawnStackAtBlock(World world, BlockPos pos, @Nullable EnumFacing pushDirection, ItemStack stack) { - EntityItem entityItem = new EntityItem(world); + public static boolean spawnStackAtBlock(World world, BlockPos pos, @Nullable Direction pushDirection, ItemStack stack) { + ItemEntity entityItem = new ItemEntity(world); BlockPos spawnPos = new BlockPos(pos); double velocity = 0.15D; if (pushDirection != null) { @@ -854,17 +852,17 @@ public class Utils { public static boolean swapLocations(World initialWorld, BlockPos initialPos, World finalWorld, BlockPos finalPos, boolean playSound) { TileEntity initialTile = initialWorld.getTileEntity(initialPos); TileEntity finalTile = finalWorld.getTileEntity(finalPos); - NBTTagCompound initialTag = new NBTTagCompound(); - NBTTagCompound finalTag = new NBTTagCompound(); + CompoundNBT initialTag = new CompoundNBT(); + CompoundNBT finalTag = new CompoundNBT(); if (initialTile != null) initialTile.writeToNBT(initialTag); if (finalTile != null) finalTile.writeToNBT(finalTag); - IBlockState initialState = initialWorld.getBlockState(initialPos); - IBlockState finalState = finalWorld.getBlockState(finalPos); + BlockState initialState = initialWorld.getBlockState(initialPos); + BlockState finalState = finalWorld.getBlockState(finalPos); - if ((initialState.getBlock().equals(Blocks.AIR) && finalState.getBlock().equals(Blocks.AIR)) || initialState.getBlock() instanceof BlockPortal || finalState.getBlock() instanceof BlockPortal) + if ((initialState.getBlock().equals(Blocks.AIR) && finalState.getBlock().equals(Blocks.AIR)) || initialState.getBlock() instanceof NetherPortalBlock || finalState.getBlock() instanceof NetherPortalBlock) return false; if (playSound) { @@ -879,8 +877,8 @@ public class Utils { initialWorld.removeTileEntity(initialPos); //TILES CLEARED - IBlockState initialBlockState = initialWorld.getBlockState(initialPos); - IBlockState finalBlockState = finalWorld.getBlockState(finalPos); + BlockState initialBlockState = initialWorld.getBlockState(initialPos); + BlockState finalBlockState = finalWorld.getBlockState(finalPos); finalWorld.setBlockState(finalPos, initialBlockState, 3); if (initialTile != null) { @@ -950,7 +948,7 @@ public class Utils { } } - public static RayTraceResult rayTrace(EntityPlayer player, boolean useLiquids) { + public static RayTraceResult rayTrace(PlayerEntity player, boolean useLiquids) { float pitch = player.rotationPitch; float yaw = player.rotationYaw; Vec3d eyePosition = new Vec3d(player.posX, player.posY + (double) player.getEyeHeight(), player.posZ); @@ -963,8 +961,8 @@ public class Utils { float f7 = f2 * f4; double reachDistance = 5.0D; - if (player instanceof EntityPlayerMP) - reachDistance = ((EntityPlayerMP) player).interactionManager.getBlockReachDistance(); + if (player instanceof ServerPlayerEntity) + reachDistance = ((ServerPlayerEntity) player).interactionManager.getBlockReachDistance(); Vec3d reachPosition = eyePosition.add((double) f6 * reachDistance, (double) f5 * reachDistance, (double) f7 * reachDistance); return player.getEntityWorld().rayTraceBlocks(eyePosition, reachPosition, useLiquids, !useLiquids, false); diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/ClientHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/ClientHandler.java index b929e0e9..b8bddf1f 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/ClientHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/ClientHandler.java @@ -20,20 +20,20 @@ import com.google.common.base.Stopwatch; import com.google.common.collect.Lists; import com.google.common.collect.SetMultimap; import net.minecraft.client.Minecraft; -import net.minecraft.client.entity.EntityPlayerSP; +import net.minecraft.client.entity.player.ClientPlayerEntity; import net.minecraft.client.renderer.GlStateManager; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.client.renderer.model.ModelResourceLocation; +import net.minecraft.client.renderer.texture.AtlasTexture; import net.minecraft.client.renderer.texture.TextureAtlasSprite; -import net.minecraft.client.renderer.texture.TextureMap; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.RayTraceResult; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.text.StringTextComponent; import net.minecraft.world.World; import net.minecraftforge.client.event.*; import net.minecraftforge.client.event.sound.PlaySoundEvent; @@ -71,7 +71,7 @@ public class ClientHandler { public static Minecraft minecraft = Minecraft.getMinecraft(); private static TileMasterRitualStone mrsHoloTile; private static Ritual mrsHoloRitual; - private static EnumFacing mrsHoloDirection; + private static Direction mrsHoloDirection; private static boolean mrsHoloDisplay; @SubscribeEvent @@ -93,7 +93,7 @@ public class ClientHandler { @SubscribeEvent public static void onSoundEvent(PlaySoundEvent event) { - EntityPlayer player = Minecraft.getMinecraft().player; + PlayerEntity player = Minecraft.getMinecraft().player; if (player != null && player.isPotionActive(RegistrarBloodMagic.DEAFNESS)) { event.setResultSound(null); } @@ -121,7 +121,7 @@ public class ClientHandler { @SubscribeEvent public static void render(RenderWorldLastEvent event) { - EntityPlayerSP player = minecraft.player; + ClientPlayerEntity player = minecraft.player; World world = player.getEntityWorld(); if (mrsHoloTile != null) { @@ -146,7 +146,7 @@ public class ClientHandler { @SubscribeEvent public static void onMouseEvent(MouseEvent event) { - EntityPlayerSP player = Minecraft.getMinecraft().player; + ClientPlayerEntity player = Minecraft.getMinecraft().player; if (event.getDwheel() != 0 && player != null && player.isSneaking()) { ItemStack stack = player.getHeldItemMainhand(); @@ -241,10 +241,10 @@ public class ClientHandler { BMLog.DEBUG.info("Suppressed required texture errors in {}", stopwatch.stop()); } - private static void renderRitualStones(EntityPlayerSP player, float partialTicks) { + private static void renderRitualStones(ClientPlayerEntity player, float partialTicks) { World world = player.getEntityWorld(); ItemRitualDiviner ritualDiviner = (ItemRitualDiviner) player.inventory.getCurrentItem().getItem(); - EnumFacing direction = ritualDiviner.getDirection(player.inventory.getCurrentItem()); + Direction direction = ritualDiviner.getDirection(player.inventory.getCurrentItem()); Ritual ritual = BloodMagic.RITUAL_MANAGER.getRitual(ritualDiviner.getCurrentRitual(player.inventory.getCurrentItem())); if (ritual == null) @@ -303,7 +303,7 @@ public class ClientHandler { GlStateManager.popMatrix(); } - public static void cycleSigil(ItemStack stack, EntityPlayer player, int dWheel) { + public static void cycleSigil(ItemStack stack, PlayerEntity player, int dWheel) { int mode = dWheel; if (!ConfigHandler.client.sigilHoldingSkipsEmptySlots) { mode = ItemSigilHolding.getCurrentItemOrdinal(stack); @@ -313,17 +313,17 @@ public class ClientHandler { ItemSigilHolding.cycleToNextSigil(stack, mode); BloodMagicPacketHandler.INSTANCE.sendToServer(new SigilHoldingPacketProcessor(player.inventory.currentItem, mode)); ItemStack newStack = ItemSigilHolding.getItemStackInSlot(stack, ItemSigilHolding.getCurrentItemOrdinal(stack)); - player.sendStatusMessage(newStack.isEmpty() ? new TextComponentString("") : newStack.getTextComponent(), true); + player.sendStatusMessage(newStack.isEmpty() ? new StringTextComponent("") : newStack.getTextComponent(), true); } - private static TextureAtlasSprite forName(TextureMap textureMap, String name, String dir) { + private static TextureAtlasSprite forName(AtlasTexture textureMap, String name, String dir) { return textureMap.registerSprite(new ResourceLocation(Constants.Mod.DOMAIN + dir + "/" + name)); } public static void renderRitualStones(TileMasterRitualStone masterRitualStone, float partialTicks) { - EntityPlayerSP player = minecraft.player; + ClientPlayerEntity player = minecraft.player; World world = player.getEntityWorld(); - EnumFacing direction = mrsHoloDirection; + Direction direction = mrsHoloDirection; Ritual ritual = mrsHoloRitual; if (ritual == null) @@ -382,7 +382,7 @@ public class ClientHandler { GlStateManager.popMatrix(); } - public static void setRitualHolo(TileMasterRitualStone masterRitualStone, Ritual ritual, EnumFacing direction, boolean displayed) { + public static void setRitualHolo(TileMasterRitualStone masterRitualStone, Ritual ritual, Direction direction, boolean displayed) { mrsHoloDisplay = displayed; mrsHoloTile = masterRitualStone; mrsHoloRitual = ritual; @@ -393,6 +393,6 @@ public class ClientHandler { mrsHoloDisplay = false; mrsHoloTile = null; mrsHoloRitual = null; - mrsHoloDirection = EnumFacing.NORTH; + mrsHoloDirection = Direction.NORTH; } } diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/CraftingHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/CraftingHandler.java index 4d97a8d4..72f4cec8 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/CraftingHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/CraftingHandler.java @@ -12,12 +12,11 @@ import WayofTime.bloodmagic.util.helper.NBTHelper; import WayofTime.bloodmagic.block.BlockLifeEssence; import WayofTime.bloodmagic.core.RegistrarBloodMagicItems; import WayofTime.bloodmagic.item.ItemInscriptionTool; -import net.minecraft.init.Items; -import net.minecraft.item.EnumDyeColor; -import net.minecraft.item.ItemBanner; -import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.tileentity.TileEntityFurnace; +import net.minecraft.item.*; +import net.minecraft.item.BannerItem; +import net.minecraft.item.Items; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.tileentity.FurnaceTileEntity; import net.minecraftforge.common.ForgeModContainer; import net.minecraftforge.event.AnvilUpdateEvent; import net.minecraftforge.event.furnace.FurnaceFuelBurnTimeEvent; @@ -46,7 +45,7 @@ public class CraftingHandler { } if (event.getOutput().getItem() == ForgeModContainer.getInstance().universalBucket && event.getAltarRecipe().getSyphon() == 1000) { - NBTTagCompound bucketTags = FluidUtil.getFilledBucket(new FluidStack(BlockLifeEssence.getLifeEssence(), Fluid.BUCKET_VOLUME)).getTagCompound(); + CompoundNBT bucketTags = FluidUtil.getFilledBucket(new FluidStack(BlockLifeEssence.getLifeEssence(), Fluid.BUCKET_VOLUME)).getTagCompound(); event.getOutput().setTagCompound(bucketTags); } } @@ -73,7 +72,7 @@ public class CraftingHandler { if (event.getRight().getItem() == Items.NAME_TAG) { ItemStack output = event.getLeft().copy(); if (!output.hasTagCompound()) - output.setTagCompound(new NBTTagCompound()); + output.setTagCompound(new CompoundNBT()); output.getTagCompound().setString(Constants.NBT.COLOR, event.getRight().getDisplayName()); event.setCost(1); @@ -83,10 +82,10 @@ public class CraftingHandler { } if (event.getRight().getItem() == Items.DYE) { - EnumDyeColor dyeColor = ItemBanner.getBaseColor(event.getRight()); + DyeColor dyeColor = BannerItem.getBaseColor(event.getRight()); ItemStack output = event.getLeft().copy(); if (!output.hasTagCompound()) - output.setTagCompound(new NBTTagCompound()); + output.setTagCompound(new CompoundNBT()); output.getTagCompound().setString(Constants.NBT.COLOR, String.valueOf(Utils.DYE_COLOR_VALUES.getOrDefault(dyeColor, 0))); event.setCost(1); @@ -145,6 +144,6 @@ public class CraftingHandler { @SubscribeEvent public static void handleFuelLevel(FurnaceFuelBurnTimeEvent event) { if (ItemStack.areItemsEqual(event.getItemStack(), ComponentTypes.SAND_COAL.getStack())) - event.setBurnTime(TileEntityFurnace.getItemBurnTime(new ItemStack(Items.COAL))); + event.setBurnTime(FurnaceTileEntity.getItemBurnTime(new ItemStack(Items.COAL))); } } diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java index 9a2c457d..23165c69 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java @@ -43,31 +43,31 @@ import WayofTime.bloodmagic.util.helper.ItemHelper; import WayofTime.bloodmagic.util.helper.NetworkHelper; import WayofTime.bloodmagic.util.helper.PlayerHelper; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.ai.EntityAIAttackMelee; -import net.minecraft.entity.ai.EntityAIBase; -import net.minecraft.entity.ai.EntityAINearestAttackableTarget; -import net.minecraft.entity.ai.EntityAITarget; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.monster.EntityMob; -import net.minecraft.entity.passive.EntityAnimal; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.Enchantments; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.ai.goal.Goal; +import net.minecraft.entity.ai.goal.NearestAttackableTargetGoal; +import net.minecraft.entity.ai.goal.TargetGoal; +import net.minecraft.entity.ai.goal.MeleeAttackGoal; +import net.minecraft.entity.item.ItemEntity; +import net.minecraft.entity.monster.MonsterEntity; +import net.minecraft.entity.passive.AnimalEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.player.ServerPlayerEntity; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.potion.Effects; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.DamageSource; -import net.minecraft.util.EnumHand; +import net.minecraft.util.Hand; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; -import net.minecraft.util.text.TextComponentTranslation; +import net.minecraft.util.text.TranslationTextComponent; import net.minecraft.world.Explosion; import net.minecraft.world.World; import net.minecraftforge.common.MinecraftForge; @@ -95,18 +95,18 @@ import java.util.*; @Mod.EventBusSubscriber(modid = BloodMagic.MODID) public class GenericHandler { - public static Map> bounceMapMap = new HashMap<>(); - public static Map> filledHandMapMap = new HashMap<>(); - private static Map> targetTaskMapMap = new HashMap<>(); - private static Map> attackTaskMapMap = new HashMap<>(); + public static Map> bounceMapMap = new HashMap<>(); + public static Map> filledHandMapMap = new HashMap<>(); + private static Map> targetTaskMapMap = new HashMap<>(); + private static Map> attackTaskMapMap = new HashMap<>(); public static Map> preventSpawnMap = new HashMap<>(); public static Map> forceSpawnMap = new HashMap<>(); public static Set featherRitualSet; @SubscribeEvent public static void onEntityFall(LivingFallEvent event) { - if (event.getEntityLiving() instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) event.getEntityLiving(); + if (event.getEntityLiving() instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) event.getEntityLiving(); if (player.isPotionActive(RegistrarBloodMagic.BOUNCE) && !player.isSneaking() && event.getDistance() > 2) { event.setDamageMultiplier(0); @@ -125,12 +125,12 @@ public class GenericHandler { @SubscribeEvent public static void playerTickPost(TickEvent.PlayerTickEvent event) { World world = event.player.getEntityWorld(); - Map bounceMap = bounceMapMap.get(world); + Map bounceMap = bounceMapMap.get(world); if (event.phase == TickEvent.Phase.END && bounceMap.containsKey(event.player)) { event.player.motionY = bounceMap.remove(event.player); } - Map filledHandMap = filledHandMapMap.get(world); + Map filledHandMap = filledHandMapMap.get(world); if (event.phase == TickEvent.Phase.END) { if (filledHandMap.containsKey(event.player)) { int value = filledHandMap.get(event.player) - 1; @@ -146,9 +146,9 @@ public class GenericHandler { @SubscribeEvent public static void onPlayerClick(PlayerInteractEvent event) { if (event.isCancelable() && event.getEntityPlayer().isPotionActive(RegistrarBloodMagic.CONSTRICT)) { - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); int level = player.getActivePotionEffect(RegistrarBloodMagic.CONSTRICT).getAmplifier(); - if (event.getHand() == EnumHand.OFF_HAND || level > 1) { + if (event.getHand() == Hand.OFF_HAND || level > 1) { event.setCanceled(true); } } @@ -156,7 +156,7 @@ public class GenericHandler { @SubscribeEvent public static void onPlayerDropItem(ItemTossEvent event) { - EntityItem itemEntity = event.getEntityItem(); + ItemEntity itemEntity = event.getEntityItem(); if (itemEntity != null) { ItemStack stack = itemEntity.getItem(); Item item = stack.getItem(); @@ -192,22 +192,22 @@ public class GenericHandler { if (event.getEntity().getEntityWorld().isRemote) return; - if (event.getSource().getTrueSource() instanceof EntityPlayer && !PlayerHelper.isFakePlayer((EntityPlayer) event.getSource().getTrueSource())) { - EntityPlayer player = (EntityPlayer) event.getSource().getTrueSource(); + if (event.getSource().getTrueSource() instanceof PlayerEntity && !PlayerHelper.isFakePlayer((PlayerEntity) event.getSource().getTrueSource())) { + PlayerEntity player = (PlayerEntity) event.getSource().getTrueSource(); - if (!player.getItemStackFromSlot(EntityEquipmentSlot.CHEST).isEmpty() && player.getItemStackFromSlot(EntityEquipmentSlot.CHEST).getItem() instanceof ItemPackSacrifice) { - ItemPackSacrifice pack = (ItemPackSacrifice) player.getItemStackFromSlot(EntityEquipmentSlot.CHEST).getItem(); + if (!player.getItemStackFromSlot(EquipmentSlotType.CHEST).isEmpty() && player.getItemStackFromSlot(EquipmentSlotType.CHEST).getItem() instanceof ItemPackSacrifice) { + ItemPackSacrifice pack = (ItemPackSacrifice) player.getItemStackFromSlot(EquipmentSlotType.CHEST).getItem(); - boolean shouldSyphon = pack.getStoredLP(player.getItemStackFromSlot(EntityEquipmentSlot.CHEST)) < pack.CAPACITY; + boolean shouldSyphon = pack.getStoredLP(player.getItemStackFromSlot(EquipmentSlotType.CHEST)) < pack.CAPACITY; float damageDone = event.getEntityLiving().getHealth() < event.getAmount() ? event.getAmount() - event.getEntityLiving().getHealth() : event.getAmount(); int totalLP = Math.round(damageDone * ConfigHandler.values.coatOfArmsConversion); if (shouldSyphon) - ItemHelper.LPContainer.addLPToItem(player.getItemStackFromSlot(EntityEquipmentSlot.CHEST), totalLP, pack.CAPACITY); + ItemHelper.LPContainer.addLPToItem(player.getItemStackFromSlot(EquipmentSlotType.CHEST), totalLP, pack.CAPACITY); } if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { @@ -224,21 +224,21 @@ public class GenericHandler { @SubscribeEvent public static void onLivingUpdate(LivingUpdateEvent event) { if (!event.getEntityLiving().getEntityWorld().isRemote) { - EntityLivingBase entity = event.getEntityLiving(); - if (entity instanceof EntityPlayer && entity.ticksExisted % 50 == 0) //TODO: Change to an incremental counter + LivingEntity entity = event.getEntityLiving(); + if (entity instanceof PlayerEntity && entity.ticksExisted % 50 == 0) //TODO: Change to an incremental counter { - sendPlayerDemonWillAura((EntityPlayer) entity); + sendPlayerDemonWillAura((PlayerEntity) entity); } World world = entity.getEntityWorld(); - Map targetTaskMap = targetTaskMapMap.get(world); - Map attackTaskMap = attackTaskMapMap.get(world); - if (event.getEntityLiving() instanceof EntityAnimal) { - EntityAnimal animal = (EntityAnimal) event.getEntityLiving(); + Map targetTaskMap = targetTaskMapMap.get(world); + Map attackTaskMap = attackTaskMapMap.get(world); + if (event.getEntityLiving() instanceof AnimalEntity) { + AnimalEntity animal = (AnimalEntity) event.getEntityLiving(); if (animal.isPotionActive(RegistrarBloodMagic.SACRIFICIAL_LAMB)) { if (!targetTaskMap.containsKey(animal)) { - EntityAITarget task = new EntityAINearestAttackableTarget<>(animal, EntityMob.class, false); - EntityAIBase attackTask = new EntityAIAttackMelee(animal, 1.0D, false); + TargetGoal task = new NearestAttackableTargetGoal<>(animal, MonsterEntity.class, false); + Goal attackTask = new MeleeAttackGoal(animal, 1.0D, false); animal.targetTasks.addTask(1, task); animal.tasks.addTask(1, attackTask); targetTaskMap.put(animal, task); @@ -257,10 +257,10 @@ public class GenericHandler { } } - EntityLivingBase entity = event.getEntityLiving(); + LivingEntity entity = event.getEntityLiving(); - if (entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + if (entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; if (player.isSneaking() && player.isPotionActive(RegistrarBloodMagic.CLING) && Utils.isPlayerBesideSolidBlockFace(player) && !player.onGround) { if (player.getEntityWorld().isRemote) { player.motionY = 0; @@ -272,10 +272,10 @@ public class GenericHandler { } } - if (entity.isPotionActive(MobEffects.NIGHT_VISION)) { - int duration = entity.getActivePotionEffect(MobEffects.NIGHT_VISION).getDuration(); + if (entity.isPotionActive(Effects.NIGHT_VISION)) { + int duration = entity.getActivePotionEffect(Effects.NIGHT_VISION).getDuration(); if (duration == Constants.Misc.NIGHT_VISION_CONSTANT_END) { - entity.removePotionEffect(MobEffects.NIGHT_VISION); + entity.removePotionEffect(Effects.NIGHT_VISION); } } @@ -301,14 +301,14 @@ public class GenericHandler { } // @SideOnly(Side.SERVER) - public static void sendPlayerDemonWillAura(EntityPlayer player) { - if (player instanceof EntityPlayerMP) { + public static void sendPlayerDemonWillAura(PlayerEntity player) { + if (player instanceof ServerPlayerEntity) { BlockPos pos = player.getPosition(); DemonWillHolder holder = WorldDemonWillHandler.getWillHolder(player.getEntityWorld().provider.getDimension(), pos.getX() >> 4, pos.getZ() >> 4); if (holder != null) { - BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(holder), (EntityPlayerMP) player); + BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(holder), (ServerPlayerEntity) player); } else { - BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(new DemonWillHolder()), (EntityPlayerMP) player); + BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(new DemonWillHolder()), (ServerPlayerEntity) player); } } } @@ -316,11 +316,11 @@ public class GenericHandler { // Handles destroying altar @SubscribeEvent public static void harvestEvent(PlayerEvent.HarvestCheck event) { - IBlockState state = event.getTargetBlock(); + BlockState state = event.getTargetBlock(); Block block = state.getBlock(); - if (block instanceof BlockAltar && event.getEntityPlayer() != null && event.getEntityPlayer() instanceof EntityPlayerMP && !event.getEntityPlayer().getHeldItemMainhand().isEmpty() && event.getEntityPlayer().getHeldItemMainhand().getItem() instanceof ItemAltarMaker) { + if (block instanceof BlockAltar && event.getEntityPlayer() != null && event.getEntityPlayer() instanceof ServerPlayerEntity && !event.getEntityPlayer().getHeldItemMainhand().isEmpty() && event.getEntityPlayer().getHeldItemMainhand().getItem() instanceof ItemAltarMaker) { ItemAltarMaker altarMaker = (ItemAltarMaker) event.getEntityPlayer().getHeldItemMainhand().getItem(); - event.getEntityPlayer().sendStatusMessage(new TextComponentTranslation("chat.bloodmagic.altarMaker.destroy", altarMaker.destroyAltar(event.getEntityPlayer())), true); + event.getEntityPlayer().sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.altarMaker.destroy", altarMaker.destroyAltar(event.getEntityPlayer())), true); } } @@ -351,7 +351,7 @@ public class GenericHandler { if (event.getWorld().isRemote) return; - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); if (PlayerHelper.isFakePlayer(player)) return; @@ -390,10 +390,10 @@ public class GenericHandler { @SubscribeEvent public static void selfSacrificeEvent(SacrificeKnifeUsedEvent event) { - EntityPlayer player = event.player; + PlayerEntity player = event.player; if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { StatTrackerSelfSacrifice.incrementCounter(armour, event.healthDrained / 2); @@ -411,18 +411,18 @@ public class GenericHandler { // Drop Blood Shards @SubscribeEvent public static void onLivingDrops(LivingDropsEvent event) { - EntityLivingBase attackedEntity = event.getEntityLiving(); + LivingEntity attackedEntity = event.getEntityLiving(); DamageSource source = event.getSource(); Entity entity = source.getTrueSource(); - if (entity != null && entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + if (entity != null && entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; ItemStack heldStack = player.getHeldItemMainhand(); - if (!heldStack.isEmpty() && heldStack.getItem() == RegistrarBloodMagicItems.BOUND_SWORD && !(attackedEntity instanceof EntityAnimal)) + if (!heldStack.isEmpty() && heldStack.getItem() == RegistrarBloodMagicItems.BOUND_SWORD && !(attackedEntity instanceof AnimalEntity)) for (int i = 0; i <= EnchantmentHelper.getLootingModifier(player); i++) if (attackedEntity.getEntityWorld().rand.nextDouble() < 0.2) - event.getDrops().add(new EntityItem(attackedEntity.getEntityWorld(), attackedEntity.posX, attackedEntity.posY, attackedEntity.posZ, new ItemStack(RegistrarBloodMagicItems.BLOOD_SHARD, 1, 0))); + event.getDrops().add(new ItemEntity(attackedEntity.getEntityWorld(), attackedEntity.posX, attackedEntity.posY, attackedEntity.posZ, new ItemStack(RegistrarBloodMagicItems.BLOOD_SHARD, 1, 0))); } } @@ -438,7 +438,7 @@ public class GenericHandler { // Experience Tome @SubscribeEvent(priority = EventPriority.LOWEST) public static void onExperiencePickup(PlayerPickupXpEvent event) { - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); ItemStack itemstack = EnchantmentHelper.getEnchantedItem(Enchantments.MENDING, player); if (!Loader.isModLoaded("unmending")) { @@ -473,7 +473,7 @@ public class GenericHandler { public static void onLivingSpawnEvent(LivingSpawnEvent.CheckSpawn event) { World world = event.getWorld(); - if (!(event.getEntityLiving() instanceof EntityMob)) { + if (!(event.getEntityLiving() instanceof MonsterEntity)) { return; } diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/LivingArmourHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/LivingArmourHandler.java index 447fffa0..5c65682b 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/LivingArmourHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/LivingArmourHandler.java @@ -18,17 +18,17 @@ import WayofTime.bloodmagic.livingArmour.tracker.StatTrackerJump; import WayofTime.bloodmagic.livingArmour.upgrade.*; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.entity.projectile.EntityArrow; -import net.minecraft.entity.projectile.EntityThrowable; -import net.minecraft.init.Enchantments; -import net.minecraft.init.Items; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.EnumAction; -import net.minecraft.item.ItemArrow; -import net.minecraft.item.ItemSplashPotion; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.entity.projectile.AbstractArrowEntity; +import net.minecraft.entity.projectile.ThrowableEntity; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.*; +import net.minecraft.item.ArrowItem; +import net.minecraft.item.SplashPotionItem; +import net.minecraft.item.Items; +import net.minecraft.item.UseAction; +import net.minecraft.util.Hand; import net.minecraft.world.World; import net.minecraftforge.event.entity.EntityJoinWorldEvent; import net.minecraftforge.event.entity.ProjectileImpactEvent; @@ -49,10 +49,10 @@ public class LivingArmourHandler { @SubscribeEvent public static void onEntityHealed(LivingHealEvent event) { - if (event.getEntityLiving() instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) event.getEntity(); + if (event.getEntityLiving() instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) event.getEntity(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { double modifier = 1; @@ -72,9 +72,9 @@ public class LivingArmourHandler { @SubscribeEvent public static void onMiningSpeedCheck(PlayerEvent.BreakSpeed event) { - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { double modifier = 1; @@ -93,17 +93,17 @@ public class LivingArmourHandler { @SubscribeEvent public static void onEntityJoinedWorld(EntityJoinWorldEvent event) { Entity owner = null; - if (event.getEntity() instanceof EntityArrow) { - owner = ((EntityArrow) event.getEntity()).shootingEntity; - } else if (event.getEntity() instanceof EntityThrowable) { - owner = ((EntityThrowable) event.getEntity()).getThrower(); + if (event.getEntity() instanceof AbstractArrowEntity) { + owner = ((AbstractArrowEntity) event.getEntity()).shootingEntity; + } else if (event.getEntity() instanceof ThrowableEntity) { + owner = ((ThrowableEntity) event.getEntity()).getThrower(); } - if (owner instanceof EntityPlayer) { + if (owner instanceof PlayerEntity) { Entity projectile = event.getEntity(); - EntityPlayer player = (EntityPlayer) owner; + PlayerEntity player = (PlayerEntity) owner; if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.stormTrooper", chestStack); @@ -123,13 +123,13 @@ public class LivingArmourHandler { @SubscribeEvent public static void onPlayerClick(PlayerInteractEvent event) { if (event.isCancelable()) { - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { - if (event.getHand() == EnumHand.OFF_HAND) { + if (event.getHand() == Hand.OFF_HAND) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.crippledArm", chestStack); if (upgrade instanceof LivingArmourUpgradeCrippledArm) { @@ -137,9 +137,9 @@ public class LivingArmourHandler { } } - if (event.getItemStack().getItemUseAction() == EnumAction.DRINK) { + if (event.getItemStack().getItemUseAction() == UseAction.DRINK) { ItemStack drinkStack = event.getItemStack(); - if (!(drinkStack.getItem() instanceof ItemSplashPotion)) { + if (!(drinkStack.getItem() instanceof SplashPotionItem)) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.quenched", chestStack); if (upgrade instanceof LivingArmourUpgradeQuenched) { @@ -155,11 +155,11 @@ public class LivingArmourHandler { // Applies: Grim Reaper @SubscribeEvent(priority = EventPriority.HIGHEST) public static void onEntityDeath(LivingDeathEvent event) { - if (event.getEntityLiving() instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) event.getEntityLiving(); + if (event.getEntityLiving() instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) event.getEntityLiving(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { StatTrackerGrimReaperSprint.incrementCounter(armour); @@ -181,11 +181,11 @@ public class LivingArmourHandler { // Applies: Jump @SubscribeEvent public static void onJumpEvent(LivingEvent.LivingJumpEvent event) { - if (event.getEntityLiving() instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) event.getEntityLiving(); + if (event.getEntityLiving() instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) event.getEntityLiving(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { StatTrackerJump.incrementCounter(armour); @@ -205,15 +205,15 @@ public class LivingArmourHandler { // Applies: Step Assist, Speed Boost @SubscribeEvent(priority = EventPriority.HIGHEST) public static void onEntityUpdate(LivingEvent.LivingUpdateEvent event) { - if (event.getEntityLiving() instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) event.getEntityLiving(); + if (event.getEntityLiving() instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) event.getEntityLiving(); boolean hasAssist = false; if (event.getEntityLiving().isPotionActive(RegistrarBloodMagic.BOOST)) { hasAssist = true; player.stepHeight = Constants.Misc.ALTERED_STEP_HEIGHT; } else { if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmourFromStack(chestStack); if (armour != null) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.stepAssist", chestStack); @@ -236,7 +236,7 @@ public class LivingArmourHandler { float percentIncrease = 0; if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmourFromStack(chestStack); if (armour != null) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgradeFromNBT(BloodMagic.MODID + ".upgrade.movement", chestStack); @@ -266,14 +266,14 @@ public class LivingArmourHandler { public static void onArrowFire(ArrowLooseEvent event) { World world = event.getEntityPlayer().getEntityWorld(); ItemStack stack = event.getBow(); - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); boolean sentientShot = false; if (world.isRemote) return; if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { StatTrackerArrowShot.incrementCounter(armour); @@ -295,8 +295,8 @@ public class LivingArmourHandler { int extraArrows = ((LivingArmourUpgradeArrowShot) upgrade).getExtraArrows(); for (int n = 0; n < extraArrows; n++) { ItemStack arrowStack = new ItemStack(Items.ARROW); - ItemArrow itemarrow = (ItemArrow) ((stack.getItem() instanceof ItemArrow ? arrowStack.getItem() : Items.ARROW)); - EntityArrow entityarrow; + ArrowItem itemarrow = (ArrowItem) ((stack.getItem() instanceof ArrowItem ? arrowStack.getItem() : Items.ARROW)); + AbstractArrowEntity entityarrow; if (sentientShot) { // if the arrow was fired from a sentient bow ItemSentientBow sentientBow = (ItemSentientBow) stack.getItem(); entityarrow = sentientBow.getDuplicateArrow(stack, world, player, 1 / extraArrows); @@ -327,7 +327,7 @@ public class LivingArmourHandler { if (EnchantmentHelper.getEnchantmentLevel(Enchantments.FLAME, stack) > 0) entityarrow.setFire(100); - entityarrow.pickupStatus = EntityArrow.PickupStatus.CREATIVE_ONLY; + entityarrow.pickupStatus = AbstractArrowEntity.PickupStatus.CREATIVE_ONLY; world.spawnEntity(entityarrow); } @@ -339,12 +339,12 @@ public class LivingArmourHandler { // Applies: Softfall @SubscribeEvent public static void onPlayerFall(LivingFallEvent event) { - if (event.getEntityLiving() instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) event.getEntityLiving(); + if (event.getEntityLiving() instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) event.getEntityLiving(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { StatTrackerFallProtect.incrementCounter(armour, event.getDamageMultiplier() * (event.getDistance() - 3)); diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/StatTrackerHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/StatTrackerHandler.java index a894a655..163e3ef9 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/StatTrackerHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/StatTrackerHandler.java @@ -10,11 +10,11 @@ import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeDigging; import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeExperience; import WayofTime.bloodmagic.util.Utils; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.MobEffects; -import net.minecraft.inventory.EntityEquipmentSlot; -import net.minecraft.item.ItemSpade; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.inventory.EquipmentSlotType; +import net.minecraft.item.ShovelItem; +import net.minecraft.potion.Effects; import net.minecraft.item.ItemStack; import net.minecraft.util.DamageSource; import net.minecraft.util.math.MathHelper; @@ -35,10 +35,10 @@ public class StatTrackerHandler { // Tracks: Digging, DigSlowdown @SubscribeEvent public static void blockBreakEvent(BlockEvent.BreakEvent event) { - EntityPlayer player = event.getPlayer(); + PlayerEntity player = event.getPlayer(); if (player != null) { if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); if (chestStack.getItem() instanceof ItemLivingArmour) { LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); @@ -54,15 +54,15 @@ public class StatTrackerHandler { // Tracks: Health Boost @SubscribeEvent public static void onEntityHealed(LivingHealEvent event) { - EntityLivingBase healedEntity = event.getEntityLiving(); - if (!(healedEntity instanceof EntityPlayer)) { + LivingEntity healedEntity = event.getEntityLiving(); + if (!(healedEntity instanceof PlayerEntity)) { return; } - EntityPlayer player = (EntityPlayer) healedEntity; + PlayerEntity player = (PlayerEntity) healedEntity; if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { StatTrackerHealthboost.incrementCounter(armour, event.getAmount()); @@ -83,15 +83,15 @@ public class StatTrackerHandler { public static void entityHurt(LivingHurtEvent event) { DamageSource source = event.getSource(); Entity sourceEntity = event.getSource().getTrueSource(); - EntityLivingBase attackedEntity = event.getEntityLiving(); + LivingEntity attackedEntity = event.getEntityLiving(); - if (attackedEntity instanceof EntityPlayer) { - EntityPlayer attackedPlayer = (EntityPlayer) attackedEntity; + if (attackedEntity instanceof PlayerEntity) { + PlayerEntity attackedPlayer = (PlayerEntity) attackedEntity; // Living Armor Handling if (LivingArmour.hasFullSet(attackedPlayer)) { float amount = Math.min(Utils.getModifiedDamage(attackedPlayer, event.getSource(), event.getAmount()), attackedPlayer.getHealth()); - ItemStack chestStack = attackedPlayer.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = attackedPlayer.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { if (sourceEntity != null && !source.isMagicDamage() && !source.isProjectile()) @@ -104,7 +104,7 @@ public class StatTrackerHandler { StatTrackerArrowProtect.incrementCounter(armour, amount); } } else { - ItemStack chestStack = attackedPlayer.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = attackedPlayer.getItemStackFromSlot(EquipmentSlotType.CHEST); if (chestStack.getItem() instanceof ItemSentientArmour) { ItemSentientArmour armour = (ItemSentientArmour) chestStack.getItem(); armour.onPlayerAttacked(chestStack, source, attackedPlayer); @@ -112,15 +112,15 @@ public class StatTrackerHandler { } } - if (sourceEntity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) sourceEntity; + if (sourceEntity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) sourceEntity; // Living Armor Handling if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { - ItemStack mainWeapon = player.getItemStackFromSlot(EntityEquipmentSlot.MAINHAND); + ItemStack mainWeapon = player.getItemStackFromSlot(EquipmentSlotType.MAINHAND); event.setAmount((float) (event.getAmount() + lastPlayerSwingStrength * armour.getAdditionalDamageOnHit(event.getAmount(), player, attackedEntity, mainWeapon))); @@ -132,13 +132,13 @@ public class StatTrackerHandler { if (player.getEntityWorld().getLight(player.getPosition()) <= 9) StatTrackerNightSight.incrementCounter(armour, amount); - if (mainWeapon.getItem() instanceof ItemSpade) + if (mainWeapon.getItem() instanceof ShovelItem) StatTrackerGraveDigger.incrementCounter(armour, amount); if (player.isSprinting()) StatTrackerSprintAttack.incrementCounter(armour, amount); - boolean isCritical = lastPlayerSwingStrength > 0.9 && player.fallDistance > 0.0F && !player.onGround && !player.isOnLadder() && !player.isInWater() && !player.isPotionActive(MobEffects.BLINDNESS) && !player.isRiding() && !player.isSprinting(); + boolean isCritical = lastPlayerSwingStrength > 0.9 && player.fallDistance > 0.0F && !player.onGround && !player.isOnLadder() && !player.isInWater() && !player.isPotionActive(Effects.BLINDNESS) && !player.isRiding() && !player.isSprinting(); if (isCritical) StatTrackerCriticalStrike.incrementCounter(armour, amount); @@ -154,10 +154,10 @@ public class StatTrackerHandler { // Tracks: Experienced @SubscribeEvent(priority = EventPriority.LOW) public static void onExperiencePickup(PlayerPickupXpEvent event) { - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); if (LivingArmour.hasFullSet(player)) { - ItemStack chestStack = player.getItemStackFromSlot(EntityEquipmentSlot.CHEST); + ItemStack chestStack = player.getItemStackFromSlot(EquipmentSlotType.CHEST); LivingArmour armour = ItemLivingArmour.getLivingArmour(chestStack); if (armour != null) { LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.experienced", chestStack); diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/WillHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/WillHandler.java index 4b735090..acfda0d0 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/WillHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/WillHandler.java @@ -9,18 +9,18 @@ import WayofTime.bloodmagic.demonAura.WillChunk; import WayofTime.bloodmagic.demonAura.WorldDemonWillHandler; import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.item.EntityItem; -import net.minecraft.entity.monster.EntityMob; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.item.ItemEntity; +import net.minecraft.entity.monster.MonsterEntity; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.potion.PotionEffect; +import net.minecraft.nbt.CompoundNBT; +import net.minecraft.potion.EffectInstance; import net.minecraft.util.DamageSource; -import net.minecraft.util.EntityDamageSourceIndirect; +import net.minecraft.util.IndirectEntityDamageSource; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.ChunkPos; -import net.minecraft.world.EnumDifficulty; +import net.minecraft.world.Difficulty; import net.minecraftforge.event.entity.living.LivingDeathEvent; import net.minecraftforge.event.entity.living.LivingDropsEvent; import net.minecraftforge.event.entity.player.EntityItemPickupEvent; @@ -44,7 +44,7 @@ public class WillHandler { public static void onItemPickup(EntityItemPickupEvent event) { ItemStack stack = event.getItem().getItem(); if (stack.getItem() instanceof IDemonWill) { - EntityPlayer player = event.getEntityPlayer(); + PlayerEntity player = event.getEntityPlayer(); EnumDemonWillType pickupType = ((IDemonWill) stack.getItem()).getType(stack); ItemStack remainder = PlayerDemonWillHandler.addDemonWill(player, stack); @@ -57,7 +57,7 @@ public class WillHandler { @SubscribeEvent public static void onEntityAttacked(LivingDeathEvent event) { - if (event.getSource() instanceof EntityDamageSourceIndirect) { + if (event.getSource() instanceof IndirectEntityDamageSource) { Entity sourceEntity = event.getSource().getImmediateSource(); if (sourceEntity instanceof EntitySentientArrow) { @@ -69,21 +69,21 @@ public class WillHandler { // Add/Drop Demon Will for Player @SubscribeEvent public static void onLivingDrops(LivingDropsEvent event) { - EntityLivingBase attackedEntity = event.getEntityLiving(); + LivingEntity attackedEntity = event.getEntityLiving(); DamageSource source = event.getSource(); Entity entity = source.getTrueSource(); - if (attackedEntity.isPotionActive(RegistrarBloodMagic.SOUL_SNARE) && (attackedEntity instanceof EntityMob || attackedEntity.getEntityWorld().getDifficulty() == EnumDifficulty.PEACEFUL)) { - PotionEffect eff = attackedEntity.getActivePotionEffect(RegistrarBloodMagic.SOUL_SNARE); + if (attackedEntity.isPotionActive(RegistrarBloodMagic.SOUL_SNARE) && (attackedEntity instanceof MonsterEntity || attackedEntity.getEntityWorld().getDifficulty() == Difficulty.PEACEFUL)) { + EffectInstance eff = attackedEntity.getActivePotionEffect(RegistrarBloodMagic.SOUL_SNARE); int lvl = eff.getAmplifier(); double amountOfSouls = attackedEntity.getEntityWorld().rand.nextDouble() * (lvl + 1) * (lvl + 1) * 5; ItemStack soulStack = ((IDemonWill) RegistrarBloodMagicItems.MONSTER_SOUL).createWill(0, amountOfSouls); - event.getDrops().add(new EntityItem(attackedEntity.getEntityWorld(), attackedEntity.posX, attackedEntity.posY, attackedEntity.posZ, soulStack)); + event.getDrops().add(new ItemEntity(attackedEntity.getEntityWorld(), attackedEntity.posX, attackedEntity.posY, attackedEntity.posZ, soulStack)); } - if (entity != null && entity instanceof EntityPlayer) { - EntityPlayer player = (EntityPlayer) entity; + if (entity != null && entity instanceof PlayerEntity) { + PlayerEntity player = (PlayerEntity) entity; ItemStack heldStack = player.getHeldItemMainhand(); if (heldStack.getItem() instanceof IDemonWillWeapon && !player.getEntityWorld().isRemote) { IDemonWillWeapon demonWillWeapon = (IDemonWillWeapon) heldStack.getItem(); @@ -96,7 +96,7 @@ public class WillHandler { if (!remainder.isEmpty()) { EnumDemonWillType pickupType = ((IDemonWill) remainder.getItem()).getType(remainder); if (((IDemonWill) remainder.getItem()).getWill(pickupType, remainder) >= 0.0001) { - event.getDrops().add(new EntityItem(attackedEntity.getEntityWorld(), attackedEntity.posX, attackedEntity.posY, attackedEntity.posZ, remainder)); + event.getDrops().add(new ItemEntity(attackedEntity.getEntityWorld(), attackedEntity.posX, attackedEntity.posY, attackedEntity.posZ, remainder)); } } } @@ -138,7 +138,7 @@ public class WillHandler { int dim = event.getWorld().provider.getDimension(); ChunkPos loc = event.getChunk().getPos(); - NBTTagCompound nbt = new NBTTagCompound(); + CompoundNBT nbt = new CompoundNBT(); event.getData().setTag("BloodMagic", nbt); WillChunk ac = WorldDemonWillHandler.getWillChunk(dim, loc.x, loc.z); @@ -154,7 +154,7 @@ public class WillHandler { public static void chunkLoad(ChunkDataEvent.Load event) { int dim = event.getWorld().provider.getDimension(); if (event.getData().getCompoundTag("BloodMagic").hasKey("base")) { - NBTTagCompound nbt = event.getData().getCompoundTag("BloodMagic"); + CompoundNBT nbt = event.getData().getCompoundTag("BloodMagic"); short base = nbt.getShort("base"); DemonWillHolder current = new DemonWillHolder(); current.readFromNBT(nbt, "current"); diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/BindableHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/BindableHelper.java index 2606eae9..63b7dc3b 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/BindableHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/BindableHelper.java @@ -3,20 +3,20 @@ package WayofTime.bloodmagic.util.helper; import WayofTime.bloodmagic.core.data.Binding; import WayofTime.bloodmagic.util.Constants; import WayofTime.bloodmagic.event.ItemBindEvent; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class BindableHelper { - public static void applyBinding(ItemStack stack, EntityPlayer player) { + public static void applyBinding(ItemStack stack, PlayerEntity player) { Binding binding = new Binding(player.getGameProfile().getId(), player.getGameProfile().getName()); applyBinding(stack, binding); } public static void applyBinding(ItemStack stack, Binding binding) { if (!stack.hasTagCompound()) - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); stack.getTagCompound().setTag("binding", binding.serializeNBT()); } diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/IncenseHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/IncenseHelper.java index 5059d631..9e5796f5 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/IncenseHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/IncenseHelper.java @@ -1,14 +1,14 @@ package WayofTime.bloodmagic.util.helper; import WayofTime.bloodmagic.util.Constants; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class IncenseHelper { - public static double getCurrentIncense(EntityPlayer player) { - NBTTagCompound data = player.getEntityData(); + public static double getCurrentIncense(PlayerEntity player) { + CompoundNBT data = player.getEntityData(); if (data.hasKey(Constants.NBT.CURRENT_INCENSE)) { return data.getDouble(Constants.NBT.CURRENT_INCENSE); } @@ -16,25 +16,25 @@ public class IncenseHelper { return 0; } - public static void setCurrentIncense(EntityPlayer player, double amount) { - NBTTagCompound data = player.getEntityData(); + public static void setCurrentIncense(PlayerEntity player, double amount) { + CompoundNBT data = player.getEntityData(); data.setDouble(Constants.NBT.CURRENT_INCENSE, amount); } - public static void setMaxIncense(EntityPlayer player, double amount) { - NBTTagCompound data = player.getEntityData(); + public static void setMaxIncense(PlayerEntity player, double amount) { + CompoundNBT data = player.getEntityData(); data.setDouble(Constants.NBT.MAX_INCENSE, amount); } - public static double getMaxIncense(EntityPlayer player) { - NBTTagCompound data = player.getEntityData(); + public static double getMaxIncense(PlayerEntity player) { + CompoundNBT data = player.getEntityData(); if (data.hasKey(Constants.NBT.MAX_INCENSE)) { return data.getDouble(Constants.NBT.MAX_INCENSE); } return 0; } - public static void setHasMaxIncense(ItemStack stack, EntityPlayer player, boolean isMax) { + public static void setHasMaxIncense(ItemStack stack, PlayerEntity player, boolean isMax) { stack = NBTHelper.checkNBT(stack); stack.getTagCompound().setBoolean(Constants.NBT.HAS_MAX_INCENSE, isMax); } diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/ItemHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/ItemHelper.java index 24912b87..760bf085 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/ItemHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/ItemHelper.java @@ -7,7 +7,7 @@ import WayofTime.bloodmagic.livingArmour.LivingArmourHandler; import WayofTime.bloodmagic.livingArmour.LivingArmourUpgrade; import WayofTime.bloodmagic.item.ItemUpgradeTome; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -91,7 +91,7 @@ public class ItemHelper { public static void setKey(ItemStack stack, String key) { if (stack.getItem() instanceof ItemUpgradeTome || stack.getItem() instanceof IUpgradeTrainer) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setString("key", key); } @@ -100,7 +100,7 @@ public class ItemHelper { public static String getKey(ItemStack stack) { if (stack.getItem() instanceof ItemUpgradeTome || stack.getItem() instanceof IUpgradeTrainer) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getString("key"); } @@ -111,7 +111,7 @@ public class ItemHelper { public static void setLevel(ItemStack stack, int level) { if (stack.getItem() instanceof ItemUpgradeTome || stack.getItem() instanceof IUpgradeTrainer) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); tag.setInteger("level", level); } @@ -120,7 +120,7 @@ public class ItemHelper { public static int getLevel(ItemStack stack) { if (stack.getItem() instanceof ItemUpgradeTome || stack.getItem() instanceof IUpgradeTrainer) { NBTHelper.checkNBT(stack); - NBTTagCompound tag = stack.getTagCompound(); + CompoundNBT tag = stack.getTagCompound(); return tag.getInteger("level"); } diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/NBTHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/NBTHelper.java index 59a73f3e..691fb556 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/NBTHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/NBTHelper.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.util.helper; import net.minecraft.item.ItemStack; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; public class NBTHelper { public static ItemStack checkNBT(ItemStack stack) { if (stack.getTagCompound() == null) - stack.setTagCompound(new NBTTagCompound()); + stack.setTagCompound(new CompoundNBT()); return stack; } diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/NetworkHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/NetworkHelper.java index c87b8209..b16d47b2 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/NetworkHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/NetworkHelper.java @@ -9,7 +9,7 @@ import WayofTime.bloodmagic.orb.IBloodOrb; import WayofTime.bloodmagic.core.registry.OrbRegistry; import WayofTime.bloodmagic.core.data.BMWorldSavedData; import WayofTime.bloodmagic.core.data.SoulNetwork; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.ItemStack; import net.minecraft.world.World; import net.minecraftforge.common.DimensionManager; @@ -53,7 +53,7 @@ public class NetworkHelper { * @param player - The Player * @see NetworkHelper#getSoulNetwork(String) */ - public static SoulNetwork getSoulNetwork(EntityPlayer player) { + public static SoulNetwork getSoulNetwork(PlayerEntity player) { return getSoulNetwork(PlayerHelper.getUUIDFromPlayer(player)); } @@ -98,10 +98,10 @@ public class NetworkHelper { * @param user - User of the item. * @param toSyphon - Amount of LP to syphon * @return - Whether the action should be performed. - * @deprecated Use {@link #getSoulNetwork(EntityPlayer)} and {@link SoulNetwork#syphonAndDamage$(EntityPlayer, SoulTicket)} + * @deprecated Use {@link #getSoulNetwork(PlayerEntity)} and {@link SoulNetwork#syphonAndDamage$(PlayerEntity, SoulTicket)} */ @Deprecated - public static boolean syphonAndDamage(SoulNetwork soulNetwork, EntityPlayer user, int toSyphon) { + public static boolean syphonAndDamage(SoulNetwork soulNetwork, PlayerEntity user, int toSyphon) { // if (soulNetwork.getNewOwner() == null) // { diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/PlayerHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/PlayerHelper.java index 601a9240..505ffbee 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/PlayerHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/PlayerHelper.java @@ -1,7 +1,7 @@ package WayofTime.bloodmagic.util.helper; import com.google.common.collect.Lists; -import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.entity.player.PlayerEntity; import net.minecraftforge.common.UsernameCache; import net.minecraftforge.common.util.FakePlayer; import net.minecraftforge.fml.common.FMLCommonHandler; @@ -18,18 +18,18 @@ public class PlayerHelper { */ private static final ArrayList knownFakePlayers = Lists.newArrayList(); - public static EntityPlayer getPlayerFromId(UUID uuid) { + public static PlayerEntity getPlayerFromId(UUID uuid) { if (FMLCommonHandler.instance().getEffectiveSide() == Side.CLIENT) return null; return FMLCommonHandler.instance().getMinecraftServerInstance().getPlayerList().getPlayerByUUID(uuid); } - public static EntityPlayer getPlayerFromUUID(UUID uuid) { + public static PlayerEntity getPlayerFromUUID(UUID uuid) { return getPlayerFromId(uuid); } - public static UUID getUUIDFromPlayer(EntityPlayer player) { + public static UUID getUUIDFromPlayer(PlayerEntity player) { return player.getGameProfile().getId(); } @@ -43,7 +43,7 @@ public class PlayerHelper { * @param player - The player in question * @return If the player is fake or not */ - public static boolean isFakePlayer(EntityPlayer player) { + public static boolean isFakePlayer(PlayerEntity player) { return player instanceof FakePlayer || (player != null && knownFakePlayers.contains(player.getClass().getCanonicalName())); } } diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/PlayerSacrificeHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/PlayerSacrificeHelper.java index 54ceea6a..da4312d2 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/PlayerSacrificeHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/PlayerSacrificeHelper.java @@ -4,10 +4,10 @@ import WayofTime.bloodmagic.ConfigHandler; import WayofTime.bloodmagic.altar.IBloodAltar; import WayofTime.bloodmagic.core.RegistrarBloodMagic; import WayofTime.bloodmagic.event.SacrificeKnifeUsedEvent; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.potion.Potion; -import net.minecraft.potion.PotionEffect; +import net.minecraft.entity.LivingEntity; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.potion.Effect; +import net.minecraft.potion.EffectInstance; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -16,17 +16,17 @@ import net.minecraftforge.common.MinecraftForge; public class PlayerSacrificeHelper { public static float scalingOfSacrifice = 1f; public static int soulFrayDuration = 400; - public static Potion soulFrayId; + public static Effect soulFrayId; - public static double getPlayerIncense(EntityPlayer player) { + public static double getPlayerIncense(PlayerEntity player) { return IncenseHelper.getCurrentIncense(player); } - public static void setPlayerIncense(EntityPlayer player, double amount) { + public static void setPlayerIncense(PlayerEntity player, double amount) { IncenseHelper.setCurrentIncense(player, amount); } - public static boolean incrementIncense(EntityPlayer player, double min, double incenseAddition, double increment) { + public static boolean incrementIncense(PlayerEntity player, double min, double incenseAddition, double increment) { double amount = getPlayerIncense(player); if (amount < min || amount >= incenseAddition) { return false; @@ -51,7 +51,7 @@ public class PlayerSacrificeHelper { * @param player - The player sacrificing * @return Whether or not the health sacrificing succeeded */ - public static boolean sacrificePlayerHealth(EntityPlayer player) { + public static boolean sacrificePlayerHealth(PlayerEntity player) { if (player.isPotionActive(soulFrayId)) { return false; } @@ -77,7 +77,7 @@ public class PlayerSacrificeHelper { player.setHealth(maxHealth / 10.0f); setPlayerIncense(player, 0); - player.addPotionEffect(new PotionEffect(RegistrarBloodMagic.SOUL_FRAY, soulFrayDuration)); + player.addPotionEffect(new EffectInstance(RegistrarBloodMagic.SOUL_FRAY, soulFrayDuration)); return true; } @@ -96,12 +96,12 @@ public class PlayerSacrificeHelper { * * @param world - The world * @param sacrificingEntity - The entity having the sacrifice done on (can be - * {@link EntityPlayer} for self-sacrifice) + * {@link PlayerEntity} for self-sacrifice) * @param amount - The amount of which the altar should be filled * @param isSacrifice - Whether this is a Sacrifice or a Self-Sacrifice * @return Whether the altar is found and (attempted) filled */ - public static boolean findAndFillAltar(World world, EntityLivingBase sacrificingEntity, int amount, boolean isSacrifice) { + public static boolean findAndFillAltar(World world, LivingEntity sacrificingEntity, int amount, boolean isSacrifice) { IBloodAltar altarEntity = getAltar(world, sacrificingEntity.getPosition()); if (altarEntity == null) diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/PurificationHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/PurificationHelper.java index 49057296..40695916 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/PurificationHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/PurificationHelper.java @@ -1,12 +1,12 @@ package WayofTime.bloodmagic.util.helper; import WayofTime.bloodmagic.util.Constants; -import net.minecraft.entity.passive.EntityAnimal; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.entity.passive.AnimalEntity; +import net.minecraft.nbt.CompoundNBT; public class PurificationHelper { - public static double getCurrentPurity(EntityAnimal animal) { - NBTTagCompound data = animal.getEntityData(); + public static double getCurrentPurity(AnimalEntity animal) { + CompoundNBT data = animal.getEntityData(); if (data.hasKey(Constants.NBT.CURRENT_PURITY)) { return data.getDouble(Constants.NBT.CURRENT_PURITY); } @@ -14,12 +14,12 @@ public class PurificationHelper { return 0; } - public static void setCurrentPurity(EntityAnimal animal, double amount) { - NBTTagCompound data = animal.getEntityData(); + public static void setCurrentPurity(AnimalEntity animal, double amount) { + CompoundNBT data = animal.getEntityData(); data.setDouble(Constants.NBT.CURRENT_PURITY, amount); } - public static double addPurity(EntityAnimal animal, double added, double max) { + public static double addPurity(AnimalEntity animal, double added, double max) { double currentPurity = getCurrentPurity(animal); double newAmount = Math.min(max, currentPurity + added); diff --git a/src/main/java/WayofTime/bloodmagic/util/helper/RitualHelper.java b/src/main/java/WayofTime/bloodmagic/util/helper/RitualHelper.java index b9da4f00..ef5e7bfe 100644 --- a/src/main/java/WayofTime/bloodmagic/util/helper/RitualHelper.java +++ b/src/main/java/WayofTime/bloodmagic/util/helper/RitualHelper.java @@ -9,9 +9,9 @@ import WayofTime.bloodmagic.ritual.RitualComponent; import WayofTime.bloodmagic.tile.TileMasterRitualStone; import com.google.common.collect.Lists; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.tileentity.TileEntity; -import net.minecraft.util.EnumFacing; +import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.common.capabilities.Capability; @@ -38,7 +38,7 @@ public class RitualHelper { */ public static String getValidRitual(World world, BlockPos pos) { for (Ritual ritual : BloodMagic.RITUAL_MANAGER.getRituals()) { - for (EnumFacing direction : EnumFacing.HORIZONTALS) { + for (Direction direction : Direction.HORIZONTALS) { if (checkValidRitual(world, pos, ritual, direction)) return BloodMagic.RITUAL_MANAGER.getId(ritual); } @@ -47,8 +47,8 @@ public class RitualHelper { return ""; } - public static EnumFacing getDirectionOfRitual(World world, BlockPos pos, Ritual ritual) { - for (EnumFacing direction : EnumFacing.HORIZONTALS) { + public static Direction getDirectionOfRitual(World world, BlockPos pos, Ritual ritual) { + for (Direction direction : Direction.HORIZONTALS) { if (checkValidRitual(world, pos, ritual, direction)) return direction; } @@ -56,7 +56,7 @@ public class RitualHelper { return null; } - public static boolean checkValidRitual(World world, BlockPos pos, Ritual ritual, EnumFacing direction) { + public static boolean checkValidRitual(World world, BlockPos pos, Ritual ritual, Direction direction) { if (ritual == null) { return false; } @@ -106,7 +106,7 @@ public class RitualHelper { public static void setRuneType(World world, BlockPos pos, EnumRuneType type) { if (world == null) return; - IBlockState state = world.getBlockState(pos); + BlockState state = world.getBlockState(pos); TileEntity tile = world.getTileEntity(pos); if (state.getBlock() instanceof IRitualStone) @@ -119,21 +119,21 @@ public class RitualHelper { } } - public static boolean createRitual(World world, BlockPos pos, EnumFacing direction, Ritual ritual, boolean safe) { + public static boolean createRitual(World world, BlockPos pos, Direction direction, Ritual ritual, boolean safe) { List components = Lists.newArrayList(); ritual.gatherComponents(components::add); if (abortConstruction(world, pos, direction, safe, components)) return false; - IBlockState mrs = RegistrarBloodMagicBlocks.RITUAL_CONTROLLER.getDefaultState(); + BlockState mrs = RegistrarBloodMagicBlocks.RITUAL_CONTROLLER.getDefaultState(); world.setBlockState(pos, mrs); setRitualStones(direction, world, pos, components); return true; } - public static boolean abortConstruction(World world, BlockPos pos, EnumFacing direction, boolean safe, List components) { + public static boolean abortConstruction(World world, BlockPos pos, Direction direction, boolean safe, List components) { //TODO: can be optimized to check only for the first and last component if every ritual has those at the highest and lowest y-level respectivly. for (RitualComponent component : components) { BlockPos offset = component.getOffset(direction); @@ -146,8 +146,8 @@ public class RitualHelper { public static boolean repairRitualFromRuins(TileMasterRitualStone tile, boolean safe) { Ritual ritual = tile.getCurrentRitual(); - EnumFacing direction; - Pair pair; + Direction direction; + Pair pair; if (ritual == null) { pair = getRitualFromRuins(tile); ritual = pair.getKey(); @@ -167,27 +167,27 @@ public class RitualHelper { return true; } - public static void setRitualStones(EnumFacing direction, World world, BlockPos pos, List gatheredComponents) { + public static void setRitualStones(Direction direction, World world, BlockPos pos, List gatheredComponents) { for (RitualComponent component : gatheredComponents) { BlockPos offset = component.getOffset(direction); BlockPos newPos = pos.add(offset); int meta = component.getRuneType().ordinal(); - IBlockState newState = RegistrarBloodMagicBlocks.RITUAL_STONE.getStateFromMeta(meta); + BlockState newState = RegistrarBloodMagicBlocks.RITUAL_STONE.getStateFromMeta(meta); world.setBlockState(newPos, newState); } } - public static Pair getRitualFromRuins(TileMasterRitualStone tile) { + public static Pair getRitualFromRuins(TileMasterRitualStone tile) { BlockPos pos = tile.getPos(); World world = tile.getWorld(); Ritual possibleRitual = tile.getCurrentRitual(); - EnumFacing possibleDirection = tile.getDirection(); + Direction possibleDirection = tile.getDirection(); int highestCount = 0; if (possibleRitual == null || possibleDirection == null) for (Ritual ritual : BloodMagic.RITUAL_MANAGER.getRituals()) { - for (EnumFacing direction : EnumFacing.HORIZONTALS) { + for (Direction direction : Direction.HORIZONTALS) { List components = Lists.newArrayList(); ritual.gatherComponents(components::add); int currentCount = 0;