Zefram
2014-04-28 99fd5dfee5a70b0656e40787168d2c67ba417738
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
-- Tool workshop
-- This machine repairs tools.
 
minetest.register_alias("tool_workshop", "technic:tool_workshop")
 
local S = technic.getter
 
minetest.register_craft({
    output = 'technic:tool_workshop',
    recipe = {
        {'group:wood',    'group:wood',           'group:wood'},
        {'group:wood',    'default:diamond',      'group:wood'},
        {'default:stone', 'default:copper_ingot', 'default:stone'},
    }
})
 
local workshop_formspec =
    "invsize[8,9;]"..
    "list[current_name;src;3,1;1,1;]"..
    "label[0,0;"..S("Tool Workshop").."]"..
    "list[current_player;main;0,5;8,4;]"
 
minetest.register_node("technic:tool_workshop", {
    description = S("Tool Workshop"),
    tiles = {"technic_workshop_top.png", "technic_machine_bottom.png", "technic_workshop_side.png",
             "technic_workshop_side.png", "technic_workshop_side.png", "technic_workshop_side.png"},
    groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
    sounds = default.node_sound_wood_defaults(),
    on_construct = function(pos)
        local meta = minetest.get_meta(pos)
        meta:set_string("infotext", S("Tool Workshop"))
        meta:set_string("formspec", workshop_formspec)
        local inv = meta:get_inventory()
        inv:set_size("src", 1)
    end,    
    can_dig = technic.machine_can_dig,
    allow_metadata_inventory_put = technic.machine_inventory_put,
    allow_metadata_inventory_take = technic.machine_inventory_take,
})
 
minetest.register_abm({
    nodenames = {"technic:tool_workshop"},
    interval = 1,
    chance   = 1,
    action = function(pos, node, active_object_count, active_object_count_wider)
        local meta         = minetest.get_meta(pos)
        local inv          = meta:get_inventory()
        local eu_input     = meta:get_int("MV_EU_input")
        local machine_name = S("Tool Workshop")
        local machine_node = "technic:tool_workshop"
        local demand       = 5000
 
        -- Setup meta data if it does not exist.
        if not eu_input then
            meta:set_int("MV_EU_demand", demand)
            meta:set_int("MV_EU_input", 0)
            return
        end
 
        -- Power off automatically if no longer connected to a switching station
        technic.switching_station_timeout_count(pos, "MV")
 
        local repairable = false
        local srcstack = inv:get_stack("src", 1)
        if (not srcstack:is_empty("src")) then
            local itemdef = minetest.registered_items[srcstack:get_name()]
            if (itemdef.wear_represents or "mechanical_wear") == "mechanical_wear" and srcstack:get_wear() ~= 0 then
                repairable = true
            end
        end
        if not repairable then
            meta:set_string("infotext", S("%s Idle"):format(machine_name))
            meta:set_int("MV_EU_demand", 0)
            return
        end
        
        if eu_input < demand then
            meta:set_string("infotext", S("%s Unpowered"):format(machine_name))
        elseif eu_input >= demand then
            meta:set_string("infotext", S("%s Active"):format(machine_name))
            srcstack:add_wear(-1000)
            inv:set_stack("src", 1, srcstack)
        end
        meta:set_int("MV_EU_demand", demand)
    end
}) 
 
technic.register_machine("MV", "technic:tool_workshop", technic.receiver)