techage/tools/repairkit.lua

110 lines
3.2 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
2019-06-16 22:06:16 +03:00
--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
-- local mem = tubelib2.get_mem(pos)
-- mem.techage_aging = 999999
-- end
-- end
--end
2019-04-28 22:34:21 +03:00
2019-06-16 22:06:16 +03:00
--local function repair_node(itemstack, user, pointed_thing)
-- local pos = pointed_thing.under
-- if pos then
-- if techage.repair_node(pos) then
-- minetest.chat_send_player(user:get_player_name(), "[TechAge] Node repaired")
-- itemstack:add_wear(13108)
-- return itemstack
-- end
-- end
-- return
--end
2019-04-28 22:34:21 +03:00
local function read_state(itemstack, user, pointed_thing)
local pos = pointed_thing.under
if pos and user 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
local ndef = minetest.registered_nodes[minetest.get_node(pos).name]
if ndef and ndef.description then
local state = techage.send_single(number, "state", nil)
if state and state ~= "" and state ~= "unsupported" then
minetest.chat_send_player(user:get_player_name(), ndef.description.." "..number..": state = "..state.." ")
end
local fuel = techage.send_single(number, "fuel", nil)
if fuel and fuel ~= "" and fuel ~= "unsupported" then
minetest.chat_send_player(user:get_player_name(), ndef.description.." "..number..": fuel = "..fuel.." ")
end
local counter = techage.send_single(number, "counter", nil)
if counter and counter ~= "" and counter ~= "unsupported" then
minetest.chat_send_player(user:get_player_name(), ndef.description.." "..number..": counter = "..counter.." ")
end
local load = techage.send_single(number, "load", nil)
if load and load ~= "" and load ~= "unsupported" then
minetest.chat_send_player(user:get_player_name(), ndef.description.." "..number..": load = "..load.." % ")
end
itemstack:add_wear(65636/200)
return itemstack
2019-04-28 22:34:21 +03:00
end
end
end
end
minetest.register_tool("techage:repairkit", {
2019-05-11 02:21:03 +03:00
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},
2019-06-16 22:06:16 +03:00
on_use = read_state,
2019-04-28 22:34:21 +03:00
node_placement_prediction = "",
stack_max = 1,
2019-04-28 22:34:21 +03:00
})
minetest.register_tool("techage:end_wrench", {
description = "TechAge End Wrench (use = read status, place = cmd: on/off)",
2019-05-11 02:21:03 +03:00
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,
2019-06-16 22:06:16 +03:00
on_place = read_state,
2019-04-28 22:34:21 +03:00
node_placement_prediction = "",
stack_max = 1,
2019-04-28 22:34:21 +03:00
})
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({
output = "techage:end_wrench",
2019-04-28 22:34:21 +03:00
recipe = {
{"", "", "default:steel_ingot"},
{"", "techage:iron_ingot", ""},
2019-04-28 22:34:21 +03:00
{"default:steel_ingot", "", ""},
},
})