2013-07-17 15:34:35 -04:00
|
|
|
-- A geothermal EU generator
|
|
|
|
-- Using hot lava and water this device can create energy from steam
|
|
|
|
-- The machine is only producing LV EUs and can thus not drive more advanced equipment
|
|
|
|
-- The output is a little more than the coal burning generator (max 300EUs)
|
|
|
|
|
|
|
|
minetest.register_alias("geothermal", "technic:geothermal")
|
|
|
|
|
2013-10-30 13:45:32 -04:00
|
|
|
local S = technic.getter
|
|
|
|
|
2013-07-17 15:34:35 -04:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:geothermal',
|
|
|
|
recipe = {
|
2014-07-07 21:48:38 +01:00
|
|
|
{'technic:granite', 'default:diamond', 'technic:granite'},
|
|
|
|
{'technic:fine_copper_wire', 'technic:machine_casing', 'technic:fine_copper_wire'},
|
|
|
|
{'technic:granite', 'technic:lv_cable0', 'technic:granite'},
|
2013-07-17 15:34:35 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem("technic:geothermal", {
|
Rationalise machine terminology
All electrically-powered machines now consistently indicate their
tier (supply voltage) in their names. As this implies that they are
electrically powered, the furnaces no longer have "Electric" in their
names. The fuel-fired equivalents of electric machines, which exist
for alloy furnace and furnace, now say "Fuel-Fired" to distinguish them.
(The fuel-fired alloy furnace used to say "Coal", which was inaccurate
because it uses any fuel. The fuel-fired furnace, from the default mod,
used to just be called "Furnace", which is ambiguous.)
Electric power generators now consistently indicate their tier and have
the word "Generator" in their names. This makes their purpose much
clearer, and makes obvious craft guide searches produce useful results.
The fuel-fired generators, previously just (ambiguously) called
"Generator", are now explicitly "Fuel-Fired".
2014-06-20 16:58:52 +01:00
|
|
|
description = S("Geothermal %s Generator"):format("LV"),
|
2013-07-17 15:34:35 -04:00
|
|
|
})
|
|
|
|
|
2014-07-11 11:00:46 +02:00
|
|
|
local check_node_around = function(pos)
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
if node.name == "default:water_source" or node.name == "default:water_flowing" then return 1 end
|
|
|
|
if node.name == "default:lava_source" or node.name == "default:lava_flowing" then return 2 end
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
|
|
|
local run = function(pos, node)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local water_nodes = 0
|
|
|
|
local lava_nodes = 0
|
|
|
|
local production_level = 0
|
|
|
|
local eu_supply = 0
|
|
|
|
|
|
|
|
-- Correct positioning is water on one side and lava on the other.
|
|
|
|
-- The two cannot be adjacent because the lava the turns into obsidian or rock.
|
|
|
|
-- To get to 100% production stack the water and lava one extra block down as well:
|
|
|
|
-- WGL (W=Water, L=Lava, G=the generator, |=an LV cable)
|
|
|
|
-- W|L
|
|
|
|
|
|
|
|
local positions = {
|
|
|
|
{x=pos.x+1, y=pos.y, z=pos.z},
|
|
|
|
{x=pos.x+1, y=pos.y-1, z=pos.z},
|
|
|
|
{x=pos.x-1, y=pos.y, z=pos.z},
|
|
|
|
{x=pos.x-1, y=pos.y-1, z=pos.z},
|
|
|
|
{x=pos.x, y=pos.y, z=pos.z+1},
|
|
|
|
{x=pos.x, y=pos.y-1, z=pos.z+1},
|
|
|
|
{x=pos.x, y=pos.y, z=pos.z-1},
|
|
|
|
{x=pos.x, y=pos.y-1, z=pos.z-1},
|
|
|
|
}
|
|
|
|
for _, p in pairs(positions) do
|
|
|
|
local check = check_node_around(p)
|
|
|
|
if check == 1 then water_nodes = water_nodes + 1 end
|
|
|
|
if check == 2 then lava_nodes = lava_nodes + 1 end
|
|
|
|
end
|
|
|
|
|
|
|
|
if water_nodes == 1 and lava_nodes == 1 then production_level = 25; eu_supply = 50 end
|
|
|
|
if water_nodes == 2 and lava_nodes == 1 then production_level = 50; eu_supply = 100 end
|
|
|
|
if water_nodes == 1 and lava_nodes == 2 then production_level = 75; eu_supply = 200 end
|
|
|
|
if water_nodes == 2 and lava_nodes == 2 then production_level = 100; eu_supply = 300 end
|
|
|
|
|
|
|
|
if production_level > 0 then
|
|
|
|
meta:set_int("LV_EU_supply", eu_supply)
|
|
|
|
end
|
|
|
|
|
|
|
|
meta:set_string("infotext",
|
|
|
|
S("Geothermal %s Generator"):format("LV").." ("..production_level.."%)")
|
|
|
|
|
|
|
|
if production_level > 0 and minetest.get_node(pos).name == "technic:geothermal" then
|
|
|
|
technic.swap_node (pos, "technic:geothermal_active")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if production_level == 0 then
|
|
|
|
technic.swap_node(pos, "technic:geothermal")
|
|
|
|
meta:set_int("LV_EU_supply", 0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-17 15:34:35 -04:00
|
|
|
minetest.register_node("technic:geothermal", {
|
Rationalise machine terminology
All electrically-powered machines now consistently indicate their
tier (supply voltage) in their names. As this implies that they are
electrically powered, the furnaces no longer have "Electric" in their
names. The fuel-fired equivalents of electric machines, which exist
for alloy furnace and furnace, now say "Fuel-Fired" to distinguish them.
(The fuel-fired alloy furnace used to say "Coal", which was inaccurate
because it uses any fuel. The fuel-fired furnace, from the default mod,
used to just be called "Furnace", which is ambiguous.)
Electric power generators now consistently indicate their tier and have
the word "Generator" in their names. This makes their purpose much
clearer, and makes obvious craft guide searches produce useful results.
The fuel-fired generators, previously just (ambiguously) called
"Generator", are now explicitly "Fuel-Fired".
2014-06-20 16:58:52 +01:00
|
|
|
description = S("Geothermal %s Generator"):format("LV"),
|
2013-07-17 15:34:35 -04:00
|
|
|
tiles = {"technic_geothermal_top.png", "technic_machine_bottom.png", "technic_geothermal_side.png",
|
|
|
|
"technic_geothermal_side.png", "technic_geothermal_side.png", "technic_geothermal_side.png"},
|
|
|
|
paramtype2 = "facedir",
|
2014-07-11 11:00:46 +02:00
|
|
|
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, technic_machine=1},
|
2013-07-17 15:34:35 -04:00
|
|
|
legacy_facedir_simple = true,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
Rationalise machine terminology
All electrically-powered machines now consistently indicate their
tier (supply voltage) in their names. As this implies that they are
electrically powered, the furnaces no longer have "Electric" in their
names. The fuel-fired equivalents of electric machines, which exist
for alloy furnace and furnace, now say "Fuel-Fired" to distinguish them.
(The fuel-fired alloy furnace used to say "Coal", which was inaccurate
because it uses any fuel. The fuel-fired furnace, from the default mod,
used to just be called "Furnace", which is ambiguous.)
Electric power generators now consistently indicate their tier and have
the word "Generator" in their names. This makes their purpose much
clearer, and makes obvious craft guide searches produce useful results.
The fuel-fired generators, previously just (ambiguously) called
"Generator", are now explicitly "Fuel-Fired".
2014-06-20 16:58:52 +01:00
|
|
|
meta:set_string("infotext", S("Geothermal %s Generator"):format("LV"))
|
2013-07-17 15:34:35 -04:00
|
|
|
meta:set_int("LV_EU_supply", 0)
|
2014-07-11 11:00:46 +02:00
|
|
|
end,
|
|
|
|
technic_run = run,
|
2013-07-17 15:34:35 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("technic:geothermal_active", {
|
Rationalise machine terminology
All electrically-powered machines now consistently indicate their
tier (supply voltage) in their names. As this implies that they are
electrically powered, the furnaces no longer have "Electric" in their
names. The fuel-fired equivalents of electric machines, which exist
for alloy furnace and furnace, now say "Fuel-Fired" to distinguish them.
(The fuel-fired alloy furnace used to say "Coal", which was inaccurate
because it uses any fuel. The fuel-fired furnace, from the default mod,
used to just be called "Furnace", which is ambiguous.)
Electric power generators now consistently indicate their tier and have
the word "Generator" in their names. This makes their purpose much
clearer, and makes obvious craft guide searches produce useful results.
The fuel-fired generators, previously just (ambiguously) called
"Generator", are now explicitly "Fuel-Fired".
2014-06-20 16:58:52 +01:00
|
|
|
description = S("Geothermal %s Generator"):format("LV"),
|
2013-07-17 15:34:35 -04:00
|
|
|
tiles = {"technic_geothermal_top_active.png", "technic_machine_bottom.png", "technic_geothermal_side.png",
|
|
|
|
"technic_geothermal_side.png", "technic_geothermal_side.png", "technic_geothermal_side.png"},
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, not_in_creative_inventory=1},
|
|
|
|
legacy_facedir_simple = true,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
drop = "technic:geothermal",
|
2014-07-11 11:00:46 +02:00
|
|
|
technic_run = run,
|
2013-07-17 15:34:35 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
technic.register_machine("LV", "technic:geothermal", technic.producer)
|
|
|
|
technic.register_machine("LV", "technic:geothermal_active", technic.producer)
|
|
|
|
|