Mod Update: Open Computers 1.4.0 - New block handling (No downgrading or BOOM!) + New additions

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

ModMyMC

New Member
Jul 29, 2019
411
0
0
Open Computers 1.4.0 - New block handling (No downgrading or BOOM!) + New additions

http://minecraft.curseforge.com/mc-mods/223008-opencomputers/files

Changes:
  • Added: More NEI integration. When showing the usage information of an item (default is `U`, at least for me), for OC items there are now one or two new pages. One with a manual, describing the item, and one with API documentation (i.e. callbacks exposed by the component provided by the item).
  • Added: `geolyzer.analyze` callback, allows reading more in-depth information on blocks directly adjacent to the geolyzer / robot / whatever the geolyzer is built into.
  • Added: Database component; primarily used for AE2 export bus driver for now. Allows storing representations of item stacks to be referenced by other components. This was added to allow passing item stacks with NBT information to some callbacks without having to expose the actual NBT to scripts.
  • Added: Password char support for `term.read` (e.g. `term.read(nil, nil, nil, "*")`).
  • Added: Access lights to computer cases, disk drives and servers to indicate disk / floppy access.
  • Added: Permission check when changing sign text via sign upgrade.
  • Added: Better support for custom CPU architectures. In particular, when registered, OC's CPUs can be simply reconfigured to another architecture by shift-right-clicking them. Not that there are any released ones, yet, to my knowledge.
  • Added: Logic to prevent putting components into devices where they could not be used anyway, e.g. redstone cards in tablets.
  • Added: Wobbo's rc script system to OpenOS.
  • Added: Loot disk with Magik6k's network stack.
  • Changed: Integrated OpenComponents (interaction with other Mods). The OpenComponents addon is no longer required in OC 1.4 (on the contrary, it mustn't be present, because it uses the OC 1.3 API).
  • Changed: Reworked power conversion. Different blocks now accept external power at different speeds. Check the tooltips!
  • Changed: Reworked call limits. The speed with which certain operations can be performed in OC are controlled by "call limits", e.g. how many times per tick a computer may tell the graphics card to update. This is no longer per component but per computer now, and different CPUs have a different call budget - that means T3 CPUs are actually faster than T1 CPUs now.
  • Changed: Improved and updated some third-party block drivers.
  • Changed: The adapter now has an inventory with one slot, which can take certain upgrades such as the inventory controller, tank controller and sign upgrade. Some functionality previously provided out of the box is now only available via these upgrades when put in an adapter.
  • Changed: Updated some mods' APIs.
  • Changed: `robot.durability()` now returns a single number, 0 = broken, 1 = no damage. Internally this now uses handlers for specific mods' items. If you know of items from a mod that are not working as expected, let me know.
  • Removed: MJ support.
  • Fixed: Stuff. Probably. (Honestly, I can't remember if the recent fixes were fixes for changes introduced by 1.4, or something older...)

VERY IMPORTANT
You cannot downgrade to OC1.3, after loading your world in OC1.4, without losing converted blocks. To future-proof things, the way blocks are handled internally has been switched around a bit in 1.4. This means all of the old blocks have to be converted to the new format. For blocks that are in the worldthis happens automatically. For blocks in inventories, this also happens automatically if they are in a player's inventory. It's really not that big a deal, but I want to make sure you're aware of this, to avoid unnecessary confusion.

Post Author: @Sangar