2012-08-05 10:20:07 +00:00
|
|
|
#Main Forge Access Transformer configuration file
|
2014-08-03 23:52:59 +00:00
|
|
|
# EntityFishHook
|
|
|
|
public net.minecraft.entity.projectile.EntityFishHook field_146041_e
|
|
|
|
public net.minecraft.entity.projectile.EntityFishHook field_146036_f
|
|
|
|
public net.minecraft.entity.projectile.EntityFishHook field_146039_d
|
2012-08-06 22:07:53 +00:00
|
|
|
# ItemPickaxe
|
2013-12-13 07:32:36 +00:00
|
|
|
public net.minecraft.item.ItemPickaxe <init>(Lnet.minecraft.item.Item$ToolMaterial;)
|
|
|
|
public net.minecraft.item.ItemAxe <init>(Lnet.minecraft.item.Item$ToolMaterial;)
|
|
|
|
public net.minecraft.item.ItemSpade <init>(Lnet.minecraft.item.Item$ToolMaterial;)
|
2012-08-06 22:07:53 +00:00
|
|
|
# EntityEnderman
|
2013-12-10 02:47:55 +00:00
|
|
|
#public tg.br #FD:EntityEnderman/field_70827_d #carriableBlocks
|
2012-08-07 00:52:23 +00:00
|
|
|
# SoundManager
|
2014-04-03 10:12:22 +00:00
|
|
|
public net.minecraft.client.audio.SoundManager field_148622_c #sndHandler
|
2012-08-13 03:40:57 +00:00
|
|
|
# Block
|
2013-12-24 06:38:39 +00:00
|
|
|
public net.minecraft.block.Block <init>(Lnet/minecraft/src/Material;)V
|
|
|
|
public net.minecraft.block.Block func_149658_d(Ljava/lang/String;)Lnet.minecraft.block.Block; #setIconName
|
|
|
|
public net.minecraft.block.Block func_149672_a(Lnet.minecraft.block.Block$SoundType;)Lnet.minecraft.block.Block; #setStepSound
|
|
|
|
public net.minecraft.block.Block func_149752_b(F)Lnet.minecraft.block.Block; #setResistance
|
|
|
|
public net.minecraft.block.Block func_149711_c(F)Lnet.minecraft.block.Block; #setHardness
|
|
|
|
public net.minecraft.block.Block func_149713_g(I)Lnet.minecraft.block.Block; #setLightOpacity
|
|
|
|
public net.minecraft.block.Block func_149715_a(F)Lnet.minecraft.block.Block; #setLightValue
|
|
|
|
public net.minecraft.block.Block func_149722_s()Lnet.minecraft.block.Block; #setBlockUnbreakable
|
|
|
|
public net.minecraft.block.Block func_149675_a(Z)Lnet.minecraft.block.Block; #setTickRandomly
|
|
|
|
public net.minecraft.block.Block func_149676_a(FFFFFF)V #setBlockBounds
|
Initial update to 1.8, Super beta. Most rendering related hooks are out due to major changes in 1.8.
Some notes:
Almost all int x, int y, int z parameters have been changed to BlockPos class
ForgeDirection has been removed, replaced by net.minecraft.util.EnumFacing.
All FML classes have moved from packet cpw.mods.fml to net.minecraftforge.fml
Fluid Rendering has been disabled for the time being, to be re-evaulated and a test mod created for it.
Minecraft now uses a Model based system for rendering blocks and Items. The intention is to expand the model format to better suit modder's needed once it is evaulated.
As such, The model loaders from Forge have been removed, to be replaced by expanding vanilla's model format.
Metadata has been extracted out in Minecraft to IBlockState, which holds a list of properties instead of magic number metadata. DO NOT listen to the fearmongering, you can do EVERYTHING with block states you could previously with metadata.
Stencil Bits are disabled entirely by for the main Display, Modders must enable and recreate the FrameBuffer if they wish to use Stencil Bits.
2014-11-26 03:56:35 +00:00
|
|
|
public net.minecraft.block.Block func_180637_b(Lnet/minecraft/world/World;Lnet/minecraft/util/BlockPos;I)V # dropXpOnBlockBreak
|
|
|
|
# BlockFire
|
|
|
|
public net.minecraft.block.BlockFire func_176532_c(Lnet/minecraft/block/Block;)I # getFireSpreadSpeed
|
|
|
|
public net.minecraft.block.BlockFire func_176534_d(Lnet/minecraft/block/Block;)I # getFireSpreadSpeed
|
2012-08-19 00:25:08 +00:00
|
|
|
# Item
|
2013-12-24 06:38:39 +00:00
|
|
|
public net.minecraft.item.Item func_77656_e(I)Lnet.minecraft.item.Item; #setMaxDamage
|
|
|
|
public-f net.minecraft.item.Item func_77650_f(Lnet.minecraft.item.ItemStack;)Lnet.minecraft.util.IIcon; #getIcon is Final for unknown reason
|
|
|
|
public net.minecraft.item.Item func_77627_a(Z)Lnet.minecraft.item.Item; #setHasSubtypes
|
|
|
|
public net.minecraft.item.Item func_77631_c(Ljava.lang.String;)Lnet.minecraft.item.Item; #setPotionEffect
|
|
|
|
public net.minecraft.item.Item func_111206_d(Ljava.lang.String;)Lnet.minecraft.item.Item; #setTextureName
|
2012-09-21 01:45:33 +00:00
|
|
|
# EntityPlayer
|
2013-12-21 08:10:35 +00:00
|
|
|
public net.minecraft.entity.player.EntityPlayer func_71012_a(Lnet/minecraft/entity/item/EntityItem;)V #joinEntityItemWithWorld
|
Initial update to 1.8, Super beta. Most rendering related hooks are out due to major changes in 1.8.
Some notes:
Almost all int x, int y, int z parameters have been changed to BlockPos class
ForgeDirection has been removed, replaced by net.minecraft.util.EnumFacing.
All FML classes have moved from packet cpw.mods.fml to net.minecraftforge.fml
Fluid Rendering has been disabled for the time being, to be re-evaulated and a test mod created for it.
Minecraft now uses a Model based system for rendering blocks and Items. The intention is to expand the model format to better suit modder's needed once it is evaulated.
As such, The model loaders from Forge have been removed, to be replaced by expanding vanilla's model format.
Metadata has been extracted out in Minecraft to IBlockState, which holds a list of properties instead of magic number metadata. DO NOT listen to the fearmongering, you can do EVERYTHING with block states you could previously with metadata.
Stencil Bits are disabled entirely by for the main Display, Modders must enable and recreate the FrameBuffer if they wish to use Stencil Bits.
2014-11-26 03:56:35 +00:00
|
|
|
public net.minecraft.client.entity.EntityPlayerSP func_71012_a(Lnet/minecraft/entity/item/EntityItem;)V #joinEntityItemWithWorld
|
2014-04-03 09:01:15 +00:00
|
|
|
public net.minecraft.entity.player.EntityPlayer func_71053_j()V #closeScreen
|
2013-12-10 02:47:55 +00:00
|
|
|
#public uf.b #FD:EntityPlayer/field_71076_b #sleepTimer
|
2012-09-21 01:45:33 +00:00
|
|
|
# World Gen Chests Related
|
2013-12-13 07:32:36 +00:00
|
|
|
public net.minecraft.util.WeightedRandomChestContent *
|
2013-12-21 08:10:35 +00:00
|
|
|
# Save Location
|
|
|
|
public net.minecraft.world.chunk.storage.AnvilChunkLoader field_75825_d # chunkSaveLocation
|
|
|
|
public net.minecraft.world.gen.ChunkProviderServer field_73247_e # currentChunkLoader
|
2012-10-21 17:00:43 +00:00
|
|
|
# World
|
2013-12-21 08:10:35 +00:00
|
|
|
public-f net.minecraft.world.World field_72982_D #villageCollectionObj
|
2013-12-10 02:47:55 +00:00
|
|
|
#public abw.G #FD:World/field_72993_I #activeChunkSet
|
2012-10-28 14:38:38 +00:00
|
|
|
# BiomeGenBase
|
2013-12-13 07:32:36 +00:00
|
|
|
public net.minecraft.world.biome.BiomeGenBase *() #Everything protected->public
|
2013-12-21 08:10:35 +00:00
|
|
|
public net.minecraft.world.biome.BiomeGenForest *()
|
|
|
|
public net.minecraft.world.biome.BiomeGenHills *()
|
|
|
|
public net.minecraft.world.biome.BiomeGenMesa *()
|
|
|
|
public net.minecraft.world.biome.BiomeGenPlains *()
|
|
|
|
public net.minecraft.world.biome.BiomeGenSavanna *()
|
|
|
|
public net.minecraft.world.biome.BiomeGenSnow *()
|
|
|
|
public net.minecraft.world.biome.BiomeGenTaiga *()
|
|
|
|
# Map Gen Biome Lists
|
|
|
|
public+f net.minecraft.world.gen.structure.MapGenStronghold field_151546_e
|
2012-10-28 14:38:38 +00:00
|
|
|
# MapGenVillage
|
2013-12-13 07:32:36 +00:00
|
|
|
public-f net.minecraft.world.gen.structure.MapGenVillage field_75055_e #villageSpawnBiomes
|
2012-11-06 00:15:43 +00:00
|
|
|
# ShapedRecipes
|
2013-12-13 07:32:36 +00:00
|
|
|
public+f net.minecraft.item.crafting.ShapedRecipes field_77574_d #recipeItems
|
|
|
|
public+f net.minecraft.item.crafting.ShapedRecipes field_77576_b #recipeWidth
|
|
|
|
public+f net.minecraft.item.crafting.ShapedRecipes field_77577_c #recipeHeight
|
2012-11-06 00:15:43 +00:00
|
|
|
# ShapelessRecipes
|
2013-12-13 07:32:36 +00:00
|
|
|
public net.minecraft.item.crafting.ShapelessRecipes field_77579_b #recipeItems
|
2014-08-04 20:54:35 +00:00
|
|
|
# ContainerRepair
|
|
|
|
public net.minecraft.inventory.ContainerRepair field_82856_l #ContainerRepair/stackSizeToBeUsedInRepair
|
2012-12-12 10:42:13 +00:00
|
|
|
# BiomeDecorator
|
2013-12-13 07:32:36 +00:00
|
|
|
public net.minecraft.world.biome.BiomeDecorator *
|
2012-12-18 06:33:28 +00:00
|
|
|
# CreativeTabs
|
2013-12-21 08:10:35 +00:00
|
|
|
public-f net.minecraft.creativetab.CreativeTabs field_78032_a # creativeTabArray non-final
|
2012-12-23 20:32:25 +00:00
|
|
|
# World stuff
|
2014-04-03 09:01:15 +00:00
|
|
|
public net.minecraft.world.World field_73003_n #prevRainingStrength
|
|
|
|
public net.minecraft.world.World field_73004_o #rainingStrength
|
|
|
|
public net.minecraft.world.World field_73017_q #thunderingStrength
|
|
|
|
public net.minecraft.world.World field_73018_p #prevThunderingStrength
|
|
|
|
public net.minecraft.world.World func_72923_a(Lnet/minecraft/entity/Entity;)V #onEntityAdded
|
|
|
|
public net.minecraft.world.World func_72847_b(Lnet/minecraft/entity/Entity;)V #onEntityRemoved
|
|
|
|
public net.minecraft.world.WorldServer func_72923_a(Lnet/minecraft/entity/Entity;)V #onEntityAdded
|
|
|
|
public net.minecraft.world.WorldServer func_72847_b(Lnet/minecraft/entity/Entity;)V #onEntityRemoved
|
|
|
|
public net.minecraft.client.multiplayer.WorldClient func_72923_a(Lnet/minecraft/entity/Entity;)V #onEntityAdded
|
|
|
|
public net.minecraft.client.multiplayer.WorldClient func_72847_b(Lnet/minecraft/entity/Entity;)V #onEntityRemoved
|
2013-12-10 02:47:55 +00:00
|
|
|
# GuiIngame
|
2013-12-13 07:32:36 +00:00
|
|
|
protected net.minecraft.client.gui.GuiIngame *
|
|
|
|
protected net.minecraft.client.gui.GuiIngame *()
|
2013-12-10 02:47:55 +00:00
|
|
|
# ItemStack
|
2013-12-21 08:10:35 +00:00
|
|
|
default net.minecraft.item.ItemStack field_77991_e
|
2013-12-10 02:47:55 +00:00
|
|
|
# MapGenStructureIO
|
2014-01-25 00:04:41 +00:00
|
|
|
public net.minecraft.world.gen.structure.MapGenStructureIO func_143034_b(Ljava/lang/Class;Ljava/lang/String;)V # registerStart
|
|
|
|
public net.minecraft.world.gen.structure.MapGenStructureIO func_143031_a(Ljava/lang/Class;Ljava/lang/String;)V # registerPiece
|
2013-12-10 05:59:12 +00:00
|
|
|
# Stronghold
|
2013-12-21 08:10:35 +00:00
|
|
|
public net.minecraft.world.gen.structure.StructureStrongholdPieces$Stronghold
|
|
|
|
# Packets
|
|
|
|
public net.minecraft.network.play.server.S23PacketBlockChange field_148883_d # Block
|
2013-12-24 06:38:39 +00:00
|
|
|
public net.minecraft.network.play.server.S23PacketBlockChange field_148884_e # Metadata
|
|
|
|
# WorldType
|
|
|
|
public-f net.minecraft.world.WorldType field_77139_a #worldTypes
|
|
|
|
# DamageSource
|
2014-01-25 00:02:39 +00:00
|
|
|
public net.minecraft.util.DamageSource *() #All methods public, most are already
|
|
|
|
# ItemBlock
|
2014-01-25 00:04:41 +00:00
|
|
|
public net.minecraft.item.ItemBlock field_150939_a # block
|
|
|
|
# EntityAITasks
|
2014-01-25 00:31:38 +00:00
|
|
|
public net.minecraft.entity.ai.EntityAITasks field_75782_a # taskEntries
|
|
|
|
# EntityXPOrb
|
2014-03-11 05:12:46 +00:00
|
|
|
public net.minecraft.entity.item.EntityXPOrb field_70530_e # xpValue
|
|
|
|
# Village
|
2014-04-03 09:01:15 +00:00
|
|
|
public net.minecraft.world.gen.structure.StructureVillagePieces$Village
|
|
|
|
# RenderPlayer
|
|
|
|
public net.minecraft.client.renderer.entity.RenderBiped field_77071_a #modelBipedMain
|
|
|
|
public net.minecraft.client.renderer.entity.RenderPlayer field_77109_a #modelBipedMain
|
|
|
|
public net.minecraft.client.renderer.entity.RenderPlayer field_77108_b #modelArmorChestplate
|
|
|
|
public net.minecraft.client.renderer.entity.RenderPlayer field_77111_i #modelArmor
|
2014-01-13 19:11:39 +00:00
|
|
|
# ChunkProviderServer
|
|
|
|
public net.minecraft.world.gen.ChunkProviderServer field_73246_d # currentChunkProvider
|
|
|
|
public net.minecraft.world.gen.ChunkProviderServer field_73244_f # loadedChunkHashMap
|
|
|
|
public net.minecraft.world.gen.ChunkProviderServer field_73245_g # loadedChunks
|
|
|
|
public net.minecraft.world.gen.ChunkProviderServer field_73251_h # worldObj
|
Initial update to 1.8, Super beta. Most rendering related hooks are out due to major changes in 1.8.
Some notes:
Almost all int x, int y, int z parameters have been changed to BlockPos class
ForgeDirection has been removed, replaced by net.minecraft.util.EnumFacing.
All FML classes have moved from packet cpw.mods.fml to net.minecraftforge.fml
Fluid Rendering has been disabled for the time being, to be re-evaulated and a test mod created for it.
Minecraft now uses a Model based system for rendering blocks and Items. The intention is to expand the model format to better suit modder's needed once it is evaulated.
As such, The model loaders from Forge have been removed, to be replaced by expanding vanilla's model format.
Metadata has been extracted out in Minecraft to IBlockState, which holds a list of properties instead of magic number metadata. DO NOT listen to the fearmongering, you can do EVERYTHING with block states you could previously with metadata.
Stencil Bits are disabled entirely by for the main Display, Modders must enable and recreate the FrameBuffer if they wish to use Stencil Bits.
2014-11-26 03:56:35 +00:00
|
|
|
# RenderEntityItem
|
|
|
|
protected net.minecraft.client.renderer.entity.RenderEntityItem func_177078_a(Lnet/minecraft/item/ItemStack;)I # getMiniItemCount
|
2014-11-28 16:20:10 +00:00
|
|
|
public net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern
|
2014-11-27 03:56:35 +00:00
|
|
|
public net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern
|
2014-12-12 22:42:49 +00:00
|
|
|
public net.minecraft.block.state.BlockState$StateImplementation
|
2014-11-27 03:56:35 +00:00
|
|
|
protected net.minecraft.block.state.BlockState$StateImplementation <init>(Lnet/minecraft/block/Block;Lcom/google/common/collect/ImmutableMap;)V
|
|
|
|
protected net.minecraft.block.state.BlockState$StateImplementation field_177238_c # propertyValueTable
|
2015-02-08 12:24:30 +00:00
|
|
|
public net.minecraft.client.renderer.block.model.ModelBlock field_178318_c # textures
|
2014-12-28 04:10:54 +00:00
|
|
|
public net.minecraft.client.renderer.block.model.ModelBlock field_178315_d # parent
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177602_b # LOCATIONS_BUILTIN_TEXTURES
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177598_f # resourceManager
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177599_g # sprites
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177609_j # textureMap
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177610_k # blockModelShapes
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177605_n # bakedRegistry
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177606_o # MODEL_GENERATED
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177618_p # MODEL_COMPASS
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177617_q # MODEL_CLOCK
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery field_177616_r # MODEL_ENTITY
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177591_a(Ljava/util/Collection;)V # loadVariants
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177569_a(Lnet/minecraft/client/renderer/block/model/ModelBlockDefinition;Lnet/minecraft/client/resources/model/ModelResourceLocation;)V # registerVariant
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177596_a(Lnet/minecraft/item/Item;)Ljava/util/List; # getVariantNames
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177583_a(Ljava/lang/String;)Lnet/minecraft/util/ResourceLocation; # getItemLocation
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177594_c(Lnet/minecraft/util/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/ModelBlock; # loadModel
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177592_e()V # registerVariantNames
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177596_a(Lnet/minecraft/item/Item;)Ljava/util/List; # getVariantNames
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177583_a(Ljava/lang/String;)Lnet/minecraft/util/ResourceLocation; # getItemLocation
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177585_a(Lnet/minecraft/client/renderer/block/model/ModelBlock;)Ljava/util/Set; # getTextureLocations
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177581_b(Lnet/minecraft/client/renderer/block/model/ModelBlock;)Z # hasItemModel
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177587_c(Lnet/minecraft/client/renderer/block/model/ModelBlock;)Z # isCustomRenderer
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177582_d(Lnet/minecraft/client/renderer/block/model/ModelBlock;)Lnet/minecraft/client/renderer/block/model/ModelBlock; # makeItemModel
|
|
|
|
protected net.minecraft.client.resources.model.ModelBakery func_177580_d(Lnet/minecraft/util/ResourceLocation;)Lnet/minecraft/util/ResourceLocation; # getModelLocation
|