techage/tools/repairkit.lua

94 lines
2.4 KiB
Lua
Raw Normal View History

2019-04-28 22:34:21 +03:00
--[[
2019-05-11 02:21:03 +03:00
TexchAge
========
2019-04-28 22:34:21 +03:00
2019-05-11 02:21:03 +03:00
Copyright (C) 2017-2019 Joachim Stolberg
2019-04-28 22:34:21 +03:00
LGPLv2.1+
See LICENSE.txt for more information
repairkit.lua:
]]--
-- for lazy programmers
local S = function(pos) if pos then return minetest.pos_to_string(pos) end end
local P = minetest.string_to_pos
local M = minetest.get_meta
local function destroy_node(itemstack, placer, pointed_thing)
if pointed_thing.type == "node" then
local pos = pointed_thing.under
if not minetest.is_protected(pos, placer:get_player_name()) then
2019-05-12 15:45:32 +03:00
local mem = tubelib2.get_mem(pos)
mem.techage_aging = 999999
2019-04-28 22:34:21 +03:00
end
end
end
local function repair_node(itemstack, user, pointed_thing)
local pos = pointed_thing.under
if pos then
2019-05-12 15:45:32 +03:00
if techage.repair_node(pos) then
2019-05-11 02:21:03 +03:00
minetest.chat_send_player(user:get_player_name(), "[TechAge] Node repaired")
2019-04-28 22:34:21 +03:00
itemstack:take_item()
return itemstack
end
end
return
end
local function read_state(itemstack, user, pointed_thing)
local pos = pointed_thing.under
if pos then
2019-05-11 02:21:03 +03:00
local number = techage.get_node_number(pos)
2019-04-28 22:34:21 +03:00
if number then
2019-05-11 02:21:03 +03:00
local state = techage.send_request(number, "state", nil)
local counter = techage.send_request(number, "counter", nil)
local aging = techage.send_request(number, "aging", nil)
2019-04-28 22:34:21 +03:00
if state and counter and aging then
if type(counter) ~= "number" then counter = "unknown" end
2019-05-11 02:21:03 +03:00
minetest.chat_send_player(user:get_player_name(), "[TechAge] state ="..state..", counter = "..counter..", aging = "..aging)
2019-04-28 22:34:21 +03:00
end
end
end
end
2019-05-11 02:21:03 +03:00
minetest.register_craftitem("techage:repairkit", {
description = "TechAge Repair Kit",
inventory_image = "techage_repairkit.png",
wield_image = "techage_repairkit.png^[transformR270",
2019-04-28 22:34:21 +03:00
groups = {cracky=1, book=1},
on_use = repair_node,
node_placement_prediction = "",
})
2019-05-11 02:21:03 +03:00
minetest.register_node("techage:end_wrench", {
description = "TechAge End Wrench (use = read status, place = destroy)",
inventory_image = "techage_end_wrench.png",
wield_image = "techage_end_wrench.png",
2019-04-28 22:34:21 +03:00
groups = {cracky=1, book=1},
on_use = read_state,
on_place = destroy_node,
node_placement_prediction = "",
})
minetest.register_craft({
2019-05-11 02:21:03 +03:00
output = "techage:repairkit",
2019-04-28 22:34:21 +03:00
recipe = {
{"", "basic_materials:gear_steel", ""},
2019-05-11 02:21:03 +03:00
{"", "techage:end_wrench", ""},
2019-04-28 22:34:21 +03:00
{"", "basic_materials:oil_extract", ""},
},
})
minetest.register_craft({
2019-05-11 02:21:03 +03:00
output = "techage:end_wrench 4",
2019-04-28 22:34:21 +03:00
recipe = {
{"", "", "default:steel_ingot"},
{"", "default:tin_ingot", ""},
{"default:steel_ingot", "", ""},
},
})