Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

Example mod demonstrating the implementation of a TileEntity that can be used from computers.

License

Notifications You must be signed in to change notification settings

MightyPirates/OC-Example-TileEntity

Repository files navigation

This is an example mod, demonstrating how to implement a tile entity that can be accessed from programs on an OpenComputers computer connected to the tile entity.

To run it, after cloning the repository, set up your workspace with gradle as usual:

gradlew setupDecompWorkspace idea

I recommend enabling the Gradle plugin in IDEA. When opening the project in IDEA with it enabled, it will ask you whether you'd like to import the Gradle project. When you do so, it'll automatically set up the library dependency on the OC API for you.

The example tile entity is a simple entity radar, that returns a list of living entities in the range of the tile entity, providing each entity's name and position. When connected to a computer it can be accessed as a component named "radar":

lua> =component.radar.getEntities()
{{name="Steve",x=0,z=-3}, {name="Chicken",x=-14,z=-3},n=2}

The mod is as minimal as possible, while still actually working, so as not to distract from the functionality it is designed to demonstrate. There are no textures, recipes or other details, only a single block with a fixed ID to allow creation of the tile entity. Feel free to base a proper addon on the code in this example.

Feel free to submit pull requests to expand and/or clarify documentation!

About

Example mod demonstrating the implementation of a TileEntity that can be used from computers.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published