5cfe8d893f
Merge branch 'master' of yunohost.local:mtcontrib/pipeworks into nalc-1.2-dev
2020-03-25 23:00:57 +01:00
62bc13078f
Add translation support
...
- Created `locale/template.txt`
- Fixed some typos
- Replace some `print("[pipeworks]"..` with `pipeworks.logger()`
- Removed "You hacker, you" from descriptions
2020-02-18 17:34:52 +00:00
2693e2ecbb
Merge branch 'master' into nalc-1.2
2019-05-04 19:56:03 +02:00
c93df73a5c
Rend les items du groupe limitcraft non craftable par l'autocrafter
2019-03-02 19:29:26 +01:00
f37b21e632
fix autocrafter recipe
2018-11-15 03:51:56 +03:00
d7dfd11364
use basic_materials mod where possible
2018-10-30 20:45:48 -04:00
acc2b6802e
fix scale on autocrafter's on/off switch
2017-04-12 07:09:35 -04:00
c15023a5d1
Tweak listring behavior of autocrafter
...
Now goes player->source->player and destination->player
2017-03-28 18:02:10 -05:00
1a15a8b453
Add digilines support to autocrafter
...
"on" and "off" messages turn it on or off, "single" crafts one item, and sending nested tables in the shape of the crafting grid sets the craft. Example message:
{
{"default:wood","default:wood","default:wood"},
{"default:wood","","default:wood"},
{"default:wood","default:wood","default:wood"}
}
2017-02-26 15:35:51 -06:00
4fdf73fbcd
add list rings to pipework inventories
2016-08-29 18:28:43 +02:00
b1b9a7e994
Don't use item_drop(, nil,)
2016-04-01 22:20:07 -07:00
6de437b83d
fix 2 other minetest.item_drops
2015-11-18 10:07:00 +01:00
d167aacf4d
add ownership/protection handling for device configuration
...
take any available ownership into account before deciding on area protection
2015-03-11 19:36:41 +01:00
13e878398c
revert accidental revert ( 810ae99
-- autocrafter.lua) of f79956c
2015-02-02 03:16:15 +01:00
810ae99008
reduce texturename repetition via __index
2015-01-31 14:47:06 +01:00
f79956c0b6
improve handling of shapeless recipes in the autocrafter recipe filling function
2015-01-30 21:09:43 +01:00
fcba05fd78
move autocrafter, tp-tube and filter-injector crafts to their respective code files
2015-01-29 20:31:08 +01:00
373c7951d2
add sanity check for upgrade cases of autocrafters with broken metadata (especially for can_dig)
2015-01-29 17:06:09 +01:00
73b3466a7b
improve autocrafter infotext handling
...
use the item description and provide more information in paused states
2015-01-29 17:06:09 +01:00
3bcf3b5f2f
use on_destruct instead of after_dig_node to clean up the cache entry to avoid any leaking during worldediting
2015-01-28 21:47:50 +01:00
b009e46590
call after_recipe_change also when moving the output item to src or dst to stop the crafter as expected
2015-01-28 21:45:43 +01:00
197e433f49
don't add unknown or groupnamed items to the crafting grid when setting it via the output slot
2015-01-28 20:56:26 +01:00
0cb1eb49dc
make sure the autocrafter runs after an upgrade
2015-01-28 19:41:38 +01:00
7dca3393be
improve upgrade of autocrafter from both former versions
2015-01-28 18:55:59 +01:00
d75e1a214a
allow virtual item moving from output to the recipe grid
2015-01-28 16:51:07 +01:00
a74c2212ab
simplify autocrafter code a bit
2015-01-28 16:30:22 +01:00
320a483f4f
add an output field, that is being filled with the crafting result and can be used for quickly emptying or filling the crafting grid with the last registered recipe
...
some of the recipes are still treated wrongly due to minetest/minetest#2222 but are failling gracefully
2015-01-28 06:51:59 +01:00
5fa3e1f626
use the default background colors and hotbar image for the autocrafter formspec
2015-01-28 01:36:13 +01:00
3a46c1266a
allow moving virtual items within the crafting grid
2015-01-28 00:42:22 +01:00
e92ac0f7b3
abstract adding of virtual items
2015-01-28 00:33:07 +01:00
78e081cf25
on_ -> after_ to be consistent with minetest api usage of these prefixes
2015-01-28 00:27:17 +01:00
6d1bc7b3fc
add an enable/disable button to the autocrafter
...
the reaction time of the button might be a bit confusing though until minetest/minetest#2220 is being resolved
2015-01-28 00:22:35 +01:00
5ac0053f8c
let the infotext show what we are crafting, or if we craft at all
2015-01-27 23:41:46 +01:00
f3b636d63e
let the autocrafter catch up on missed crafts
2015-01-27 23:41:46 +01:00
44bafb844a
use nodetimers instead of abm's to run the autocrafters; only run autocrafters when needed
...
autocrafters will stop() when theres no valid recipe, no dst space or enough src material
it will resume again on inventory or recipe changes
2015-01-27 23:41:46 +01:00
2ccce52976
split autocraft into a run function and a function autocrafting a singe step
...
this gives us flexibility for future changes
2015-01-27 23:41:46 +01:00
f427bae557
also cache the recipe consumption to get rid of an additional loop per craft
2015-01-27 23:41:46 +01:00
cee16932be
remove unnecessary looping and testing, since we only check and update the cache if there was actually a reason to assume a recipe change
2015-01-27 23:41:46 +01:00
827d049789
reduce stacksizes and wear of virtual items on update instead of leaving the previous configuration in
2015-01-27 23:41:46 +01:00
d3110a9e20
rename variables to reflect the official api and making the code more clear
2015-01-27 23:41:46 +01:00
7b9571912d
reduce table lookups and hash_node_position calculations
2015-01-27 23:41:46 +01:00
e0039f22f8
sanity checking, stop crash in case of garbage inventory data
...
(i.e. that looks like nil)
2015-01-10 01:31:22 -05:00
3f85f83e35
Make items in autocrafters virtual as well
2014-11-02 09:35:43 +01:00
10cf11e008
A few more fixes (spamming the commit log again...)
2013-12-21 11:11:36 +01:00
9f3b2f1323
fix small typos (False -> false)
2013-12-21 03:26:26 -05:00
6785ba39f4
local-ize one last var
2013-12-15 06:21:39 -05:00
bd80f18cfc
local-ize pretty muchg everything that was previously global except where
...
stuff needs to be globally-visible. Also, fix a bad drop on valve.
2013-12-15 02:53:10 -05:00
bf7993b802
get rid of some extraneous print statements
2013-11-25 23:59:52 -05:00
dc1ef38a58
Fix autocrafter not taking enough items if number of needed items of a kind > stack max for that item.
2013-10-30 08:33:34 +01:00
c80eeadf9c
fix incorrect usage of after_place_node
2013-10-04 14:36:17 -04:00