Sunday, January 1, 2017

CompatLayer for Minecraft 1.11/1.10.2



Description

CompatLayer 1.11/1.10.2 is a small library/mod that allows you to write mods that run on 1.10.2 and 1.11 with the same binary jar. At least upto some point. At the very least it helps to minimize the source changes between your 1.10.2 version and 1.11 version of your mod in case you do need to have two versions for whatever reason.

Basically CompatLayer is nothing more then a set of classes and functions that help abstract away the differences between 1.10.2 and 1.11. At this moment it contains:

  • CompatBlock: A simple extension of Block that overrides methods that have changed in 1.11 and calls CompatLayer specific versions that you can override instead in your code. Currently supports ‘neighborChanged’ and ‘onBlockActivated’
  • CompatItem: A simple extension of Item that basically does the same thing as CompatBlock but then for items. Currently contains ‘onItemRightClick’
  • CompatInventory: an interface that inherits from IInventory and adds a default implementation for the new func_191420_l function.
  • CompatSidedInventory: same for ISidedInventory.
  • ChatTools: contains a simple message ‘addChatMessage’ that avoids the new parameter that player.addChatComponentMessage() has.
  • ItemStackTools: this is the biggest reason for this mod. ItemStack handling has changed a lot in 1.11. Basically itemstacks are never ‘null’. Instead there is a new empty itemstack. This class makes abstraction of that. If you carefully go through all your code that uses itemstacks and replace all calls and tests (especially things like ‘stack = null’ or ‘if (stack == null)’) with methods from this class.



  • Download here :
    CompatLayer for Minecraft 1.11/1.10.2

    See more :
    Minecraft 1.11.2 Mods
    Command Blocks 1.11.2
    Minecraft 1.11 Maps

    Related Posts:

    • Rebellion 3D Medieval Resource Pack 1.11.2/1.10.2 Description Who has been waiting for a long time of period for something like this to become real? Some lads say this is Skyrim, yet another speak of kingdom come deliverance or Witcher 3. I could say it’s quite all in… Read More
    • OasisCraft Resource Pack 1.11.2/1.10.2 Description Hey Guys! OasisCraft Resource Pack 1.11.2/1.10.2 is Barry Allen’s first texture pack, we hope you like it! if you guys have any questions ill be glade to answer them I would like to thank my friend for help… Read More
    • Pure Satisfaction Resource Pack 1.11.2/1.10.2 Description Hello! Pure Satisfaction Resource Pack 1.11.2/1.10.2 has multiple items that looks great! It’s pvp/ realistic! In alot of peoples opinion, it looks nice! Nice sunshine and dark sky, clouds, blocks, etc. -AJ… Read More
    • CTKor Library for Minecraft 1.10.2 Description CTKor Library 1.10.2 contains shared code for codetaylor’s mods.How to install CTKor Library 1.10.2:Download and install Minecraft Forge. Download the mod. Click on the Start Menu in Windows. Type run in… Read More
    • Instant Structures Mod by MaggiCraft 1.11.2/1.10.2/1.7.10 Description Instant Structures Mod 1.11.2/1.10.2 (ISM) allows players to place structures by putting down a single block. This feature is quite useful as now you can build whole houses or a city with only one mous… Read More

    0 comments:

    Post a Comment