techage/oil/pumpjack.lua

210 lines
5.7 KiB
Lua
Raw Normal View History

2019-06-09 18:20:40 +03:00
--[[
TechAge
=======
Copyright (C) 2019 Joachim Stolberg
GPL v3
2019-06-09 18:20:40 +03:00
See LICENSE.txt for more information
TA3 Pumpjack
]]--
-- for lazy programmers
local P2S = function(pos) if pos then return minetest.pos_to_string(pos) end end
2019-06-09 18:20:40 +03:00
local M = minetest.get_meta
local P = minetest.string_to_pos
local S = techage.S
local Pipe = techage.LiquidPipe
local liquid = techage.liquid
2019-06-09 18:20:40 +03:00
-- Consumer Related Data
local CRD = function(pos) return (minetest.registered_nodes[techage.get_node_lvm(pos).name] or {}).consumer end
2019-06-09 18:20:40 +03:00
local CRDN = function(node) return (minetest.registered_nodes[node.name] or {}).consumer end
local STANDBY_TICKS = 10
local COUNTDOWN_TICKS = 10
local CYCLE_TIME = 8
local function has_oil(pos, meta)
2019-06-09 18:20:40 +03:00
local storage_pos = meta:get_string("storage_pos")
if storage_pos ~= "" then
local amount = techage.explore.get_oil_amount(P(storage_pos))
if amount > 0 then
return true
2019-06-09 18:20:40 +03:00
end
end
end
local function dec_oil_item(pos, meta)
local storage_pos = meta:get_string("storage_pos")
if storage_pos ~= "" then
techage.explore.dec_oil_amount(P(storage_pos))
end
end
2020-01-31 21:55:10 +03:00
local function formspec(self, pos, nvm)
2019-06-09 21:43:41 +03:00
local amount = 0
local storage_pos = M(pos):get_string("storage_pos")
if storage_pos ~= "" then
amount = techage.explore.get_oil_amount(P(storage_pos))
end
return "size[5,3]"..
default.gui_bg..
default.gui_bg_img..
default.gui_slots..
2019-11-17 19:29:02 +03:00
"image[0.5,0;1,1;techage_liquid2_inv.png^[colorize:#000000^techage_liquid1_inv.png]"..
2020-01-31 21:55:10 +03:00
"image[2,0;1,1;"..techage.get_power_image(pos, nvm).."]"..
"label[0,1.3;"..S("Oil amount:")..": "..amount.."]"..
"button[3,1.1;2,1;update;"..S("Update").."]"..
2020-01-31 21:55:10 +03:00
"image_button[2,2.2;1,1;".. self:get_state_button_image(nvm) ..";state_button;]"
2019-06-09 21:43:41 +03:00
end
local function on_rightclick(pos, node, clicker)
2020-01-31 21:55:10 +03:00
local nvm = techage.get_nvm(pos)
M(pos):set_string("formspec", formspec(CRD(pos).State, pos, nvm))
2019-06-09 21:43:41 +03:00
end
2020-01-31 21:55:10 +03:00
local function pumping(pos, crd, meta, nvm)
if has_oil(pos, meta) then
local leftover = liquid.put(pos, 6, "techage:oil_source", 1)
if leftover and leftover > 0 then
2020-01-31 21:55:10 +03:00
crd.State:blocked(pos, nvm)
2019-06-09 18:20:40 +03:00
return
end
dec_oil_item(pos, meta)
2020-01-31 21:55:10 +03:00
crd.State:keep_running(pos, nvm, COUNTDOWN_TICKS)
2019-06-09 18:20:40 +03:00
return
end
2020-01-31 21:55:10 +03:00
crd.State:fault(pos, nvm)
2019-06-09 18:20:40 +03:00
end
local function keep_running(pos, elapsed)
2020-01-31 21:55:10 +03:00
local nvm = techage.get_nvm(pos)
2019-06-09 18:20:40 +03:00
local crd = CRD(pos)
2020-01-31 21:55:10 +03:00
pumping(pos, crd, M(pos), nvm)
return crd.State:is_active(nvm)
2019-06-09 18:20:40 +03:00
end
2019-06-09 21:43:41 +03:00
local function on_receive_fields(pos, formname, fields, player)
if minetest.is_protected(pos, player:get_player_name()) then
return
2019-06-09 18:20:40 +03:00
end
2019-06-10 00:35:43 +03:00
if fields.update then
2020-01-31 21:55:10 +03:00
local nvm = techage.get_nvm(pos)
M(pos):set_string("formspec", formspec(CRD(pos).State, pos, nvm))
2019-06-10 00:35:43 +03:00
else
2020-01-31 21:55:10 +03:00
local nvm = techage.get_nvm(pos)
CRD(pos).State:state_button_event(pos, nvm, fields)
2019-06-10 00:35:43 +03:00
end
2019-06-09 18:20:40 +03:00
end
local tiles = {}
2019-06-09 21:43:41 +03:00
2019-06-09 18:20:40 +03:00
-- '#' will be replaced by the stage number
tiles.pas = {
"techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_hole_pipe.png",
"techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_hole_pipe.png",
2019-06-09 18:20:40 +03:00
"techage_appl_pumpjack.png^techage_frame_ta#.png",
"techage_appl_pumpjack.png^techage_frame_ta#.png",
"techage_filling_ta#.png^techage_frame_ta#_top.png^techage_appl_arrow.png^[transformR90]",
"techage_filling_ta#.png^techage_frame_ta#_top.png^techage_appl_arrow.png^[transformR90]",
}
tiles.act = {
-- up, down, right, left, back, front
"techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_hole_pipe.png",
"techage_filling_ta#.png^techage_frame_ta#.png^techage_appl_hole_pipe.png",
2019-06-09 18:20:40 +03:00
{
image = "techage_appl_pumpjack14.png^techage_frame14_ta#.png",
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 2.0,
},
},
{
image = "techage_appl_pumpjack14.png^techage_frame14_ta#.png",
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 32,
aspect_h = 32,
length = 2.0,
},
},
"techage_filling_ta#.png^techage_frame_ta#_top.png^techage_appl_arrow.png^[transformR90]",
"techage_filling_ta#.png^techage_frame_ta#_top.png^techage_appl_arrow.png^[transformR90]",
}
local tubing = {
on_recv_message = function(pos, src, topic, payload)
2019-06-09 18:20:40 +03:00
local resp = CRD(pos).State:on_receive_message(pos, topic, payload)
if resp then
return resp
else
return "unsupported"
end
end,
on_node_load = function(pos)
CRD(pos).State:on_node_load(pos)
end,
}
local _, node_name_ta3, _ =
2019-08-26 23:19:59 +03:00
techage.register_consumer("pumpjack", S("Oil Pumpjack"), tiles, {
2019-06-09 18:20:40 +03:00
cycle_time = CYCLE_TIME,
standby_ticks = STANDBY_TICKS,
2019-06-09 21:43:41 +03:00
formspec = formspec,
2019-06-09 18:20:40 +03:00
tubing = tubing,
after_place_node = function(pos, placer)
local node = minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z})
if node.name == "techage:oil_drillbit2" then
local info = techage.explore.get_oil_info(pos)
if info then
M(pos):set_string("storage_pos", P2S(info.storage_pos))
2019-06-09 18:20:40 +03:00
end
end
Pipe:after_place_node(pos)
2019-06-09 18:20:40 +03:00
end,
networks = {
2020-01-31 21:55:10 +03:00
pipe2 = {
sides = {U = 1}, -- Pipe connection side
ntype = "pump",
},
},
tubelib2_on_update2 = function(pos, outdir, tlib2, node)
liquid.update_network(pos, outdir)
end,
2019-06-09 18:20:40 +03:00
on_rightclick = on_rightclick,
2019-06-09 21:43:41 +03:00
on_receive_fields = on_receive_fields,
2019-06-09 18:20:40 +03:00
node_timer = keep_running,
on_rotate = screwdriver.disallow,
after_dig_node = function(pos, oldnode, oldmetadata, digger)
Pipe:after_dig_node(pos)
end,
2019-06-09 18:20:40 +03:00
groups = {choppy=2, cracky=2, crumbly=2},
is_ground_content = false,
sounds = default.node_sound_wood_defaults(),
num_items = {0,1,1,1},
2019-06-09 22:24:39 +03:00
power_consumption = {0,16,16,16},
2019-06-09 18:20:40 +03:00
},
{false, false, true, false}) -- TA3 only
minetest.register_craft({
output = "techage:ta3_pumpjack_pas",
recipe = {
2019-06-17 22:24:48 +03:00
{"", "techage:usmium_nuggets", ""},
2019-06-09 18:20:40 +03:00
{"dye:red", "techage:ta3_pusher_pas", "dye:red"},
{"", "techage:oil_drillbit", ""},
},
})
2019-06-11 21:31:53 +03:00
Pipe:add_secondary_node_names({"techage:ta3_pumpjack_pas", "techage:ta3_pumpjack_act"})