TARDIM factory closed due to supply chain issues
This commit is contained in:
parent
ff96023b56
commit
3922140f13
2 changed files with 82 additions and 41 deletions
43
README.md
43
README.md
|
@ -1,33 +1,20 @@
|
|||
# CC Tutorial
|
||||
This is a little tutorial on how peripherals in cc work.
|
||||
We use the simple system with the IPeripheral interface.
|
||||
# TARDIM: In Control
|
||||
### All of time and space, *now automated*.
|
||||
|
||||
If you want to see, how I use this system with more functions and blocks, take a look at [Advanced Peripherals](https://github.com/Seniorendi/AdvancedPeripherals)
|
||||
This mod is an addon for the [TARDIM mod](https://www.curseforge.com/minecraft/mc-mods/tardim), and adds a way to control your time (but mostly space) machine using
|
||||
[ComputerCraft: Tweaked](https://tweaked.cc) computers using a new "Digital TARDIM Interface" peripheral.
|
||||
|
||||
We create a peripheral with two functions:
|
||||
* isRaining - a main thread function which will return true when it rains
|
||||
* sendMessage - a function which will send a message to every player
|
||||
### How to use
|
||||
* Place the Digital Interface peripheral inside your TARDIM.
|
||||
* Connect a computer to the peripheral using a wired modem and wrap it with `peripheral.wrap()`.
|
||||
* Call one of the many methods available to you.
|
||||
|
||||
## Supported Versions
|
||||
- [1.19](https://github.com/Seniorendi/CCTutorial/tree/1.19)
|
||||
- [1.18](https://github.com/Seniorendi/CCTutorial/tree/1.18)
|
||||
- [1.16](https://github.com/Seniorendi/CCTutorial/tree/1.16)
|
||||
All the methods can be found in the [API documentation](https:/google.com), and there are some examples in the [examples folder](/examples)
|
||||
|
||||
## Content
|
||||
* CCBlock - Our normal block, nothing special
|
||||
### Example usecases
|
||||
* Monitor to display fuel levels, current location, and other information on a screen in a nice way.
|
||||
* Way to remotely summon your TARDIM to you, or to a specific location. (Using chunkloaders)
|
||||
* Refined control of your TARDIM, such as saving and loading locations, or setting a destination in a GUI.
|
||||
* Visual effects that activate during flight.
|
||||
|
||||
* CCPeripheral - Our peripheral, here we register functions and manage connected computers
|
||||
|
||||
* Registration - Normal registration to register our blocks, items and so on
|
||||
|
||||
* CCTutorial - Our main class
|
||||
|
||||
* CCTileEntity - Our tile entity
|
||||
|
||||
* /src/main/resources/META-INF/mods.toml - Here we have our name of the mod, the mod id, the versiond and more. The most importang thing in the file is the modid and the dependencies for addons like cc-tweaked.
|
||||
|
||||
## Pictures
|
||||
|
||||

|
||||
|
||||

|
||||
The possibilities are endless, the only limit is your imagination! (And coding skills)
|
Loading…
Add table
Add a link
Reference in a new issue