2021-05-14 20:19:09 +03:00
|
|
|
Minecart
|
|
|
|
========
|
|
|
|
|
|
|
|
**Minecart, the lean railway transportation automation system**
|
|
|
|
|
|
|
|
|
|
|
|
Browse on: [GitHub](https://github.com/joe7575/minecart)
|
|
|
|
|
|
|
|
Download: [GitHub](https://github.com/joe7575/minecart/archive/master.zip)
|
|
|
|
|
|
|
|
![minecart](https://github.com/joe7575/minecart/blob/master/screenshot.png)
|
|
|
|
|
|
|
|
|
|
|
|
Minecart is based on carts, which is
|
|
|
|
based almost entirely on the mod boost_cart [1], which
|
|
|
|
itself is based on (and fully compatible with) the carts mod [2].
|
|
|
|
|
|
|
|
The model was originally designed by stujones11 [3] (CC-0).
|
|
|
|
|
|
|
|
Cart textures are based on original work from PixelBOX by Gambit (permissive
|
|
|
|
license).
|
|
|
|
|
|
|
|
|
|
|
|
1. https://github.com/SmallJoker/boost_cart/
|
|
|
|
2. https://github.com/PilzAdam/carts/
|
|
|
|
3. https://github.com/stujones11/railcart/
|
|
|
|
|
|
|
|
|
2023-08-26 11:27:15 +03:00
|
|
|
## Minecart Features
|
2021-05-14 20:19:09 +03:00
|
|
|
|
|
|
|
The mod Minecart has its own cart (called Minecart) in addition to the standard cart.
|
|
|
|
Minecarts are used for automated item transport on private and public rail networks.
|
|
|
|
The mod features are:
|
|
|
|
- a fast cart for your railway or roller coaster (up to 8 m/s!)
|
|
|
|
- boost rails and speed limit signs
|
|
|
|
- rail junction switching with the 'right-left' walking keys
|
|
|
|
- configurable timetables and routes for Minecarts
|
|
|
|
- automated loading/unloading of Minecarts by means of a Minecart Hopper
|
|
|
|
- rail network protection based on protection blocks called Land Marks
|
|
|
|
- protection of minecarts and cargo
|
|
|
|
- Minecarts run through unloaded areas (only the stations/hopper have to be loaded)
|
|
|
|
- Extra Minecart privs for rail workers
|
2023-08-26 11:27:15 +03:00
|
|
|
- Ingame documentation (German and English), based on the mod "doc" and/or
|
|
|
|
doclib/techage
|
2021-05-14 20:19:09 +03:00
|
|
|
- API to register carts from other mods
|
2023-03-05 13:54:37 +03:00
|
|
|
- chat command `/mycart <num>` to output cart state and location
|
2023-02-04 17:45:23 +03:00
|
|
|
- Command interface for Techage (Lua and ICTA) and for Beduino Controllers
|
2021-05-14 20:19:09 +03:00
|
|
|
|
|
|
|
|
2023-08-26 11:27:15 +03:00
|
|
|
## Technical Background
|
2021-05-14 20:19:09 +03:00
|
|
|
|
|
|
|
The Minecart can "run" through unloaded areas. This is done by means of recorded
|
|
|
|
and stored routes. If the area is unloaded the cart will simply follow the
|
|
|
|
predefined route until an area is loaded again. In this case the cart will be
|
|
|
|
spawned and run as usual.
|
|
|
|
|
|
|
|
|
2023-03-05 13:54:37 +03:00
|
|
|
## Manual
|
2021-05-14 20:19:09 +03:00
|
|
|
|
2023-03-05 13:54:37 +03:00
|
|
|
see [Wiki](https://github.com/joe7575/minecart/wiki)
|
2021-05-14 20:19:09 +03:00
|
|
|
|
|
|
|
|
2023-02-04 17:45:23 +03:00
|
|
|
## Command Interface
|
|
|
|
|
|
|
|
### Techage ICTA Controller
|
|
|
|
|
|
|
|
The ICTA Controller support the conditions:
|
|
|
|
|
|
|
|
- "read cart state" (function returns "stopped" or "running")
|
|
|
|
- "read cart location" (function returns the distance or the station/buffer name)
|
|
|
|
|
|
|
|
See help page of the ICTA controller block.
|
|
|
|
|
|
|
|
### Techage Lua Controller
|
|
|
|
|
|
|
|
The Lua controller support the functions:
|
|
|
|
|
|
|
|
- `$cart_state(num)` (function returns "stopped" or "running")
|
|
|
|
- `$cart_location(num)` (function returns the distance or the station/buffer name)
|
|
|
|
|
|
|
|
See help page of the Lua controller block.
|
|
|
|
|
|
|
|
### Cart Terminal
|
|
|
|
|
|
|
|
The Cart Terminal has a Techage command interface with the commands:
|
|
|
|
|
|
|
|
| Command | Data | Description |
|
|
|
|
| ---------- | ---------- | ------------------------------------------------------- |
|
|
|
|
| `state` | \<cart-ID> | Returns `unknown`, `stopped`, or `running` |
|
|
|
|
| `distance` | \<cart-ID> | Returns the distance from the cart to the Cart Terminal |
|
|
|
|
|
|
|
|
### Beduino Controller
|
|
|
|
|
|
|
|
The Cart Terminal has a Beduino command interface with the commands:
|
|
|
|
|
|
|
|
| Command | Topic | Data | Response | Description |
|
|
|
|
| -------- | ----- | --------- | ---------- | ------------------------------------------------------- |
|
|
|
|
| State | 129 | [cart-id] | [state] | Returns 0 = UNKNOWN, 1 = STOPPED, 2 = RUNNING |
|
|
|
|
| Distance | 130 | [cart-id] | [distance] | Returns the distance from the cart to the Cart Terminal |
|
|
|
|
|
|
|
|
|
2023-08-26 11:27:15 +03:00
|
|
|
# History
|
2021-05-14 20:19:09 +03:00
|
|
|
|
|
|
|
2019-04-19 v0.01 first commit
|
|
|
|
2019-04-21 v0.02 functional, with junctions support
|
|
|
|
2019-04-23 v0.03 bug fixes and improvements
|
|
|
|
2019-04-25 v0.04 Landmarks and Minecart protection added
|
|
|
|
2019-05-04 v0.05 Route recording protection added
|
|
|
|
2019-05-22 v0.06 Pick up items from a cart improved
|
|
|
|
2019-06-23 v0.07 'doc' mod support and German translation added
|
|
|
|
2020-01-04 v1.00 Hopper added, buffer improved
|
|
|
|
2020-02-09 v1.01 cart loading bugfix
|
|
|
|
2020-02-24 v1.02 Hopper improved
|
|
|
|
2020-03-05 v1.03 Hopper again improved
|
|
|
|
2020-03-28 v1.04 cart unloading bugfix
|
|
|
|
2020-05-14 v1.05 API changed to be able to register carts
|
|
|
|
2020-06-14 v1.06 API changed and chat command added
|
|
|
|
2020-06-27 v1.07 Route storage and cart command bugfixes
|
|
|
|
2020-07-24 V1.08 Adapted to new techage ICTA style
|
|
|
|
2020-08-14 V1.09 Hopper support for digtron, protector:chest and default:furnace added
|
|
|
|
2020-11-12 V1.10 Make carts more robust against server lag
|
2021-10-30 17:52:44 +03:00
|
|
|
2021-04-10 V2.00 Complete revision to make carts robust against server load/lag,
|
|
|
|
Speed limit signs and cart terminal added
|
|
|
|
2021-09-02 V2.01 Chat command /stopcart added
|
|
|
|
2021-10-18 V2.02 Cart reproduction bug fixed
|
2023-05-09 19:41:56 +03:00
|
|
|
2023-01-04 V2.03 Techage and Beduino command interface added
|
2023-08-26 11:27:15 +03:00
|
|
|
2023-02-05 V2.04 New API functions added, EOL blanks removed
|
|
|
|
2023-08-25 V2.05 Support for doclib added
|