123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- local formspec_good =
- 'formspec_version[3]'..
- 'size[10,10]'..
- 'bgcolor[;neither]'..
- 'background[0,0;10,10;tasks_printing_press_working_bg.png]'..
- 'hypertext[2.5,9;5,1;nil;<global halign=center valign=middle><style color=black size=30>Paper stock OK.<style>]'
- local function formspec_bad(pos)
- local spos = pos.x ..','.. pos.y ..','.. pos.z
- local formspec =
- 'formspec_version[3]'..
- 'size[10,10]'..
- 'bgcolor[;neither]'..
- 'background[0,0;10,10;tasks_printing_press_broken_bg.png]'..
- 'textarea[.5,.5;3,2;;;No paper!\nPrinting halted!]' ..
- 'button_exit[6.75,6.25;3,1;gimme;Grab a request form]'..
- 'list[nodemeta:'..spos..';part;4.5,4.5;1,1;]'..
- 'list[current_player;main;.125,7.5;8,2;]'..
- 'listring[current_player;main]'..
- 'listring[nodemeta:'..spos..';part]'..
- 'image[4.5,4.5;1,1;tasks_paper_stack_line.png]'
- return formspec
- end
- local box = {
- type = 'fixed',
- fixed = {
- {-.5, .4, -.5, 0, 1, .5},
- {-.5, -.5, -.5, 1, .4, .5}},}
- minetest.register_node('tasks:printing_press_on',{
- description = 'Printing Press',
- drawtype = 'mesh',
- mesh = 'tasks_printing_press_on.obj',
- tiles = {'tasks_printing_press_on.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = box,
- collision_box = box,
- groups = {breakable = 1, tasks=1},
- on_construct = function(pos)
- tasks.on_construct(pos, 'Printing Press', 'Needs paper')
- end,
- on_rightclick = function(pos, node, clicker)
- tasks.right_click_on(pos, node, clicker, formspec_good)
- end,
- on_timer = function(pos)
- local node = minetest.get_node(pos)
- local meta = minetest.get_meta(pos)
- local infotext = meta:get_string('info_repair')
- meta:set_string('infotext', infotext)
- minetest.swap_node(pos, {name = 'tasks:printing_press_off', param2 = node.param2})
- end,
- })
- minetest.register_node('tasks:printing_press_off',{
- description = 'Printing Press',
- drawtype = 'mesh',
- mesh = 'tasks_printing_press_off.obj',
- tiles = {'tasks_printing_press_off.png'},
- paramtype = 'light',
- paramtype2 = 'facedir',
- selection_box = box,
- collision_box = box,
- groups = {breakable = 1, not_in_creative_inventory=1, tasks=1},
- drop = 'tasks:printing_press_on',
- req_form = 'tasks:paper_stack_req',
- req_count = 1,
- on_rightclick = function(pos, node, clicker)
- tasks.right_click_off(pos, node, clicker, formspec_bad(pos))
- end,
- allow_metadata_inventory_put = function(pos, listname, index, stack)
- if listname == 'part' then
- if stack:get_name() == 'tasks:paper_stack' then
- return 1
- else
- return 0
- end
- end
- end,
- on_metadata_inventory_put = function(pos, listname, index, stack, player)
- local name = player:get_player_name()
- local meta = minetest.get_meta(pos)
- local xp = meta:get_int('xp') or 10
- local inv = meta:get_inventory()
- local node = minetest.get_node(pos)
- local timer = minetest.get_node_timer(pos)
- local min = meta:get_int('time_min') or 300
- local max = meta:get_int('time_max') or 600
- local random_number = math.random(min,max)
- local infotext = meta:get_string('info_working')
- inv:set_stack('part', 1, '')
- minetest.swap_node(pos, {name = 'tasks:printing_press_on', param2 = node.param2})
- minetest.close_formspec(name, 'tasks:part_req_form')
- meta:set_string('infotext', infotext)
- tasks.only_add_xp(xp, name)
- timer:start(random_number)
- end,
- })
|