2018-10-05 21:55:40 +02:00
|
|
|
# Tube Library 2 [tubelib2]
|
|
|
|
|
2018-10-05 22:52:51 +02:00
|
|
|
THIS MOD IS WORK IN PROGRESS !!!
|
|
|
|
|
2018-10-05 21:55:40 +02:00
|
|
|
A library for mods which need connecting tubes / pipes / cables or similar.
|
|
|
|
|
2018-11-22 19:04:08 +01:00
|
|
|
![tubelib2](https://github.com/joe7575/tubelib2/blob/master/screenshot.png)
|
|
|
|
|
|
|
|
|
2018-10-05 22:52:51 +02:00
|
|
|
This mod is not useful for its own. It does not even have any nodes.
|
|
|
|
It only comes with a few test nodes to play around with the tubing algorithm.
|
|
|
|
|
2018-10-05 21:55:40 +02:00
|
|
|
Browse on: ![GitHub](https://github.com/joe7575/tubelib2)
|
|
|
|
|
|
|
|
Download: ![GitHub](https://github.com/joe7575/tubelib2/archive/master.zip)
|
|
|
|
|
|
|
|
|
2018-10-27 17:53:07 +02:00
|
|
|
## Description
|
|
|
|
|
|
|
|
Tubelib2 distinguished two kinds of nodes:
|
|
|
|
- primary nodes are tube like nodes (pipes, cables, ...)
|
|
|
|
- secondary nodes are all kind of nodes, which can be connected by means of primary nodes
|
|
|
|
|
|
|
|
Tubelib2 specific 6D directions (1 = North, 2 = East, 3 = South, 4 = West, 5 = Down, 6 = Up)
|
|
|
|
|
|
|
|
All 6D dirs are the view from the node to the outer side
|
|
|
|
Tubes are based on two node types, "angled" and "straight" tubes.
|
2018-11-11 10:32:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
+-------+
|
|
|
|
/ /| +-------+
|
|
|
|
/ / | / /|
|
|
|
|
/ / + / / |
|
|
|
|
/ / / +-------+ |
|
|
|
|
+-------+ / | | |
|
|
|
|
| | / | |/ |
|
|
|
|
| |/ +-------+| +
|
|
|
|
+-------+ | |/
|
|
|
|
+------+
|
|
|
|
|
|
|
|
|
2018-10-27 17:53:07 +02:00
|
|
|
All other nodes are build by means of axis/rotation variants based on param2
|
|
|
|
(paramtype2 == "facedir").
|
|
|
|
|
|
|
|
The 3 free MSB bits of param2 of tube nodes are used to store the number of connections (0..2).
|
|
|
|
|
2018-12-16 18:53:19 +01:00
|
|
|
The data of the peer head tube are stored in memory 'self.connCache'
|
2018-10-27 17:53:07 +02:00
|
|
|
|
2018-11-09 23:37:23 +01:00
|
|
|
Tubelib2 provides an update mechanism for connected "secondary" nodes. A callback function
|
2018-12-16 18:53:19 +01:00
|
|
|
func(node, pos, out_dir, peer_pos, peer_in_dir) will be called for every change on the connected tubes.
|
2018-10-27 17:53:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-05 21:55:40 +02:00
|
|
|
## Dependencies
|
|
|
|
default
|
2018-12-20 16:28:23 +01:00
|
|
|
optional: intllib
|
|
|
|
|
2018-10-05 21:55:40 +02:00
|
|
|
|
|
|
|
# License
|
|
|
|
Copyright (C) 2017-2018 Joachim Stolberg
|
2018-11-11 10:32:54 +01:00
|
|
|
Code: Licensed under the GNU LGPL version 2.1 or later.
|
|
|
|
See LICENSE.txt and http://www.gnu.org/licenses/lgpl-2.1.txt
|
2018-10-05 21:55:40 +02:00
|
|
|
Textures: CC0
|
|
|
|
|
2018-12-20 16:28:23 +01:00
|
|
|
|
2018-10-27 17:53:07 +02:00
|
|
|
## History
|
|
|
|
- 2018-10-20 v0.1 * Tested against hyperloop elevator.
|
|
|
|
- 2018-10-27 v0.2 * Tested against and enhanced for the hyperloop mod.
|
2018-10-28 18:45:07 +01:00
|
|
|
- 2018-10-27 v0.3 * Further improvements.
|
2018-11-09 23:37:23 +01:00
|
|
|
- 2018-11-09 v0.4 * on_update function for secondary nodes introduced
|
2018-12-16 18:53:19 +01:00
|
|
|
- 2018-12-16 v0.5 * meta data removed, memory cache added instead of
|
2018-12-20 16:28:23 +01:00
|
|
|
- 2018-12-20 v0.6 * intllib support added, max tube length bugfix
|