fabric/fabric-api-lookup-api-v1
Technici4n 1d383bb698 Make BlockApiLookup expose the API and context classes (#1486)
* Make BlockApiLookup expose the API and context classes

* Test API and context classes in testmod
2021-06-11 17:24:04 +02:00
..
src Make BlockApiLookup expose the API and context classes (#1486) 2021-06-11 17:24:04 +02:00
build.gradle Make BlockApiLookup expose the API and context classes (#1486) 2021-06-11 17:24:04 +02:00
README.md Fabric API Lookup (#1234) 2021-03-08 20:35:40 +00:00

Fabric API Lookup API (v1)

This module allows API instances to be associated with game objects without specifying how the association is implemented. This is useful when the same API could be implemented more than once or implemented in different ways. See also the package-info.java file.

  • What we call an API is any object that can be offered or queried, possibly by different mods, to be used in an agreed-upon manner.
  • This module allows flexible retrieving of such APIs from blocks in the world, represented by the generic type A.
  • It also provides building blocks for defining custom ways of retrieving APIs from other game objects.

Retrieving APIs from blocks

See the javadoc of BlockApiLookup for a full usage example.

BlockApiLookup

The primary way of querying API instances for blocks in the world. It exposes a find function to retrieve an API instance, and multiple register* functions to register Apis for blocks and block entities.

Instances can be obtained using the get function.

BlockApiCache

A BlockApiLookup bound to a position and a server world, allowing much faster repeated API queries.

Retrieving APIs from custom objects

The subpackage custom provides helper classes to accelerate implementations of ApiLookups for custom objects, similar to the existing BlockApiLookup, but with different query parameters.

ApiLookupMap

A map meant to be used as the backing storage for custom ApiLookup instances, to implement a custom equivalent of BlockApiLookup#get.

ApiProviderMap

A fast thread-safe copy-on-write map meant to be used as the backing storage for registered providers.