-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
…e just extracts the documentation in a more readable format This makes development of new features easier, as documentation can automatically be updated on the website without modifying the website's code! Every mod that has nodes in the mesecons modpack has a "doc" folder that contains subfolders with recipe, description and preview of the block. The website will discover which documentation is available by reading the documentation.json file.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"Conductors" : { | ||
"Mesecon" : "mesecons/doc/mesecon", | ||
"Insulated Wire" : "mesecons_insulated/doc/insulated", | ||
"T-Junction" : "mesecons_extrawires/doc/tjunction", | ||
"Crossing" : "mesecons_extrawires/doc/crossing", | ||
"Corner" : "mesecons_extrawires/doc/corner", | ||
"Vertical Wire" : "mesecons_extrawires/doc/vertical", | ||
"Mese" : "mesecons_extrawires/doc/mese" | ||
}, | ||
"Receptors" : { | ||
"Power Plant" : "mesecons_powerplant/doc/powerplant", | ||
"Blinky Plant" : "mesecons_blinkyplant/doc/blinkyplant", | ||
"Switch" : "mesecons_switch/doc/switch", | ||
"Object Detector" : "mesecons_detector/doc/objectdetector", | ||
"Node Detector" : "mesecons_detector/doc/nodedetector", | ||
"Wall Lever" : "mesecons_walllever/doc/walllever", | ||
"Pressure Plate" : "mesecons_pressureplates/doc/pressureplate_wood", | ||
"Pressure Plate" : "mesecons_pressureplates/doc/pressureplate_stone", | ||
"Water Turbine" : "mesecons_hydroturbine/doc/waterturbine", | ||
"Solar Panel" : "mesecons_solarpanel/doc/solarpanel", | ||
"Wall Button" : "mesecons_button/doc/button" | ||
}, | ||
"Effectors" : { | ||
"Noteblock" : "mesecons_noteblock/doc/noteblock", | ||
"Lamp" : "mesecons_lamp/doc/lamp", | ||
"Piston" : "mesecons_pistons/doc/piston", | ||
"Sticky Piston" : "mesecons_pistons/doc/piston_sticky", | ||
"Movestone" : "mesecons_movestones/doc/movestone", | ||
"Sticky Movestone" : "mesecons_movestones/doc/movestone_sticky", | ||
"Removestone" : "mesecons_random/doc/removestone", | ||
"Ghoststone" : "mesecons_random/doc/ghoststone", | ||
"Command Block" : "mesecons_commandblock/doc/commandblock", | ||
"Lightstones" : { | ||
"Dark Grey" : "mesecons_lightstone/doc/lightstone_darkgrey", | ||
"Light Grey" : "mesecons_lightstone/doc/lightstone_lightgrey", | ||
"Green" : "mesecons_lightstone/doc/lightstone_green", | ||
"Red" : "mesecons_lightstone/doc/lightstone_red", | ||
"Blue" : "mesecons_lightstone/doc/lightstone_blue", | ||
"Yellow" : "mesecons_lightstone/doc/lightstone_yellow" | ||
} | ||
}, | ||
"Logic" : { | ||
"Luacontroller" : "mesecons_luacontroller/doc/luacontroller", | ||
"Torch" : "mesecons_torch/doc/torch", | ||
"Delayer" : "mesecons_delayer/doc/delayer", | ||
"Gates" : { | ||
"Diode" : "mesecons_gates/doc/diode", | ||
"NOT Gate" : "mesecons_gates/doc/not", | ||
"AND Gate" : "mesecons_gates/doc/and", | ||
"NAND Gate" : "mesecons_gates/doc/nand", | ||
"OR Gate" : "mesecons_gates/doc/or", | ||
"NOR Gate" : "mesecons_gates/doc/nor", | ||
"XOR Gate" : "mesecons_gates/doc/xor" | ||
} | ||
}, | ||
"Crafts" : { | ||
"Silicon" : "mesecons_materials/doc/silicon", | ||
"Glue" : "mesecons_materials/doc/glue", | ||
"Fiber" : "mesecons_materials/doc/fiber" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Mesecons are the wires, use them to connect effectors with receptors. |
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The blinky plants toggles between on and off state every three seconds. Can be used to make clocks. Also works after having restarted the game. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This receptor can be attached to walls. It turns on for 1 second if it's punched. |
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
There is no crafting recipe as this should only be available for server admins. Quite similar to the Minecraft counterpart. Executes server commands. |
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The delayer delays the signal from the input for a determined time. The time can be set by punching the delayer. Possible delays are: 0.1 seconds, 0.3 seconds, 0.5 seconds and 1 second. You may try to use it for creating songs with the noteblock. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The node detector is a receptor. It changes its state when either any node | ||
or a specific node is detected. Right-click it to set a nodename to scan for. | ||
It can also receive digiline signals. You can either send "GET" and it will | ||
respond with the detected nodename or you can send any other string and it will | ||
set this string as the node to scan for. | ||
Nodenames must include the mod they reside in, so for instance default:dirt, not just dirt. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The object detector is a receptor. It changes its state when a player approaches. | ||
Right-click it to set a name to scan for. | ||
It can also receive digiline signals which are the name to scan for on the specified channel in the right-click menu. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Insulated corners are conductors that only conduct between the inputs (also not up or down). When placing they always point to the left in direction of your vision. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Insulated crossing are conductors that conduct two signals between the opposing sides, the signals are insulated to each other. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The basic prerequesite for mesecons, can be crafted into wires and other stuff. Have a look at the <a href="http://wiki.minetest.net/Mese">Minetest Wiki</a> for more information. Mese is a conductor. It conducts in all six directions: Up/Down/Left/Right/Forward/Backward |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Insulated T-Junctions are conductors that only conduct between the inputs (also not up or down). |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Vertical Mesecons only conduct up and down. Plates appear at the ends, at that place they also conduct to the side. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
And gates power their output if both inputs (from left and right) are powered. |
Unable to render rich display
Invalid image source.
Unable to render rich display
Invalid image source.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Mesecon diodes, just like real ones, only transfer power (signals) in one direction only. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Nand gates do not power their output if both inputs (from left and right) are powered, but power it in every other case. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Nor gates only power their output if none of their two inputs is powered. They are basically or gates with a not gate at their output. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Not gates invert signals, just like a mesecon torch does, but faster. The input is at the opposite side of the output. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Or gates power their output if either of their inputs (or both) are powered. You could basically get the same behaviour with two diodes, but or gates save some space. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
XOR gates power their output if only one input is powered, they're off if either both or none of the inputs is powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Water turbines are receptors that turn on if flowing water is above them. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Insulated mesecons are conductors that only conduct in one direction (and also not up or down). |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Lamps are effectors that if powered emit light. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Effector, glows blue when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Effector, glows dark grey when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Effector, glows green when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Effector, glows light grey when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Effector, glows red when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Effector, glows yellow when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
The luacontroller is an advanced programmable component. | ||
You can simply code it in the language mesecons uses itself: Lua! | ||
All the code runs in a sandbox, so it's completely safe (but I won't guarantee that for absolute certainty!). | ||
|
||
<a href="http://mesecons.net/luacontroller/">Documentation is available here!</a> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Craftitem: It can't be placed! Made by cooking glue in the furnace. Used for insulated mesecon crafting. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Craftitem: It can't be placed! Made by cooking saplings in furnace. Used for sticky pistons and sticky movestones. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Silicon is just a craftitem: It can't be placed. You'll need it in order to craft other items. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Movestones are effectors that push the blocks in front of them. They move along on the right side of a mesecon wire track. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Movestones are effectors that push the blocks in front of them. They move along on the right side of a mesecon wire track. Sticky ones also pull blocks. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
This effector makes a sound if powered and can be used for making music. Normally it makes piano sounds. The sound frequency can be changed by punching the block. There are some special sounds that depend on the block below: | ||
<table colspace="5"> | ||
<tr><th>Block Below</th><th>Effect</th></tr> | ||
<tr><td>Glass</td><td>Hihat</td></tr> | ||
<tr><td>Stone</td><td>Kick</td></tr> | ||
<tr><td>Chest</td><td>Snare</td></tr> | ||
<tr><td>Tree</td><td>Crash</td></tr> | ||
<tr><td>Glass</td><td>Hihat</td></tr> | ||
<tr><td>Wood</td><td>Lite Crash</td></tr> | ||
<tr><td>Coal Block</td><td>Explosion Sound </td></tr> | ||
<tr><td>Lava Source</td><td>Fire Sound</td></tr> | ||
<tr><td>Steel Block</td><td>Raises the pitch by one octave</td></tr> | ||
</table> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Pistons are effectors, they push up to 20 blocks in front of them. The push direction can be set by placing them from different angles. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Sticky pistons are effectors, they push up to 20 blocks in front of them. The push direction can be set by placing them from different angles. Sticky ones also pull 1 block. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
A power plant is a receptor that is always turned on: It provides energy. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This receptor turns on if there's an object above it. And object can be a player, an item, a mob... |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This receptor turns on if there's an object above it. And object can be a player, an item, a mob... |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Ghoststones disappear when powered, just like Removestones. But in contrast to Removestones, they Reappear again when not powered anymore and they are also conductive. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Removestones are propably the simplest effectors possible. They simply disappear when powered. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Solar Panel are light receptors: they turn on if there is enough light. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The switch is a receptor. It changes its state as when punched. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The torch is an inverter, it may take up to 1 second until the signal has passed through. The input is 2 blocks away in the direction of the stick, outputs are around the mesecon glow. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
A receptor just like a switch, but it can be attached to walls. |