forked from Lokrates/Biofuel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefinery.lua
525 lines (467 loc) · 18.1 KB
/
refinery.lua
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
--File name: init.lua
--Project name: Biofuel, a Mod for Minetest
--License: General Public License, version 3 or later
--Original Work Copyright (C) 2016 cd2 (cdqwertz) <[email protected]>
--Modified Work Copyright (C) 2017 Vitalie Ciubotaru <vitalie at ciubotaru dot tk>
--Modified Work Copyright (C) 2018 - 2020 Lokrates
--Modified Work Copyright (C) 2018 naturefreshmilk
--Modified Work Copyright (C) 2019 OgelGames
--Modified Work Copyright (C) 2020 6r1d
-- Load support for MT game translation.
local S = minetest.get_translator("biofuel")
-- pipeworks compat
local has_pipeworks = minetest.get_modpath("pipeworks")
local tube_entry = ""
if has_pipeworks then
tube_entry = "^pipeworks_tube_connection_metallic.png"
end
minetest.log('action', 'MOD: Biofuel ' .. S("loading..."))
biofuel_version = '0.6'
food_fuel = minetest.settings:get_bool("food_fuel") -- Enables the conversion of food into fuel (settingtypes.txt)
if food_fuel == nil then food_fuel = false end -- default false
biomass = {}
biomass.convertible_groups = {
'flora', 'leaves', 'flower', 'sapling', 'tree', 'wood', 'stick', 'plant', 'seed',
'leafdecay', 'leafdecay_drop', 'mushroom', 'vines'
}
biomass.convertible_nodes = {
'default:cactus', 'default:large_cactus_seedling', -- default cactus
'default:bush_stem', 'default:pine_bush_stem', 'default:acacia_bush_stem', -- default bush stem
'farming:cotton', 'farming:string', 'farming:wheat', 'farming:straw', -- farming
'farming:hemp_leaf', 'farming:hemp_block', 'farming:hemp_fibre', 'farming:hemp_rope', -- farming_redo hemp
'farming:barley', 'farming:jackolantern',
'default:papyrus', 'default:dry_shrub', 'default:marram_grass_1', 'default:sand_with_kelp', -- default
'pooper:poop_turd', 'pooper:poop_pile', -- pooper
'cucina_vegana:flax', 'cucina_vegana:flax_roasted', 'cucina_vegana:sunflower', -- cucina_vegana
'cucina_vegana:soy', 'cucina_vegana:chives',
'vines:vines', 'vines:rope', 'vines:rope_block', -- Vines
'trunks:twig_1', 'bushes:BushLeaves1', 'bushes:BushLeaves2',
'dryplants:grass', 'dryplants:hay', 'dryplants:reed', 'dryplants:wetreed',
'poisonivy:climbing', 'poisonivy:seedling', 'poisonivy:sproutling',
}
biomass.convertible_food = {
'farming:bread', 'farming:flour', -- default food
'farming:mint_leaf','farming:garlic', 'farming:peas', -- farming_redo crops
'farming:pepper', 'farming:pineapple', 'farming:pineapple_ring', 'farming:potato',
'farming:rye', 'farming:oat', 'farming:rice', 'farming:rice_flour', 'farming:blueberry_pie',
'farming:bread_multigrain', 'farming:flour_multigrain', 'farming:baked_potato', -- farming_redo
'farming:beetroot_soup', 'farming:bread_slice', 'farming:chili_bowl', 'farming:chocolate_block',
'farming:chocolate_dark', 'farming:cookie', 'farming:corn_cob', 'farming:cornstarch',
'farming:muffin_blueberry', 'farming:pea_soup', 'farming:potato_salad', 'farming:pumpkin_bread',
'farming:pumpkin_dough', 'farming:rhubarb_pie', 'farming:rice_bread', 'farming:toast',
'farming:toast_sandwich', 'farming:garlic_braid', 'farming:onion_soup',
'farming:sugar', 'farming:turkish_delight', 'farming:garlic_bread', 'farming:donut', -- farming_redo food
'farming:donut_chocolate', 'farming:donut_apple', 'farming:porridge', 'farming:jaffa_cake',
'farming:apple_pie', 'farming:pasta', 'farming:spaghetti', 'farming:bibimbap',
'wine:agave_syrup', -- Wine
'cucina_vegana:asparagus', 'cucina_vegana:asparagus_hollandaise', -- cucina_vegana
'cucina_vegana:asparagus_hollandaise_cooked', 'cucina_vegana:asparagus_rice', 'cucina_vegana:asparagus_rice_cooked',
'cucina_vegana:asparagus_soup_cooked', 'cucina_vegana:asparagus_soup', 'cucina_vegana:blueberry_jam',
'cucina_vegana:blueberry_pot', 'cucina_vegana:blueberry_pot_cooked', 'cucina_vegana:blueberry_puree',
'cucina_vegana:bowl_rice', 'cucina_vegana:bowl_rice_cooked', 'cucina_vegana:ciabatta_bread',
'cucina_vegana:ciabatta_dough', 'cucina_vegana:dandelion_honey', 'cucina_vegana:dandelion_suds',
'cucina_vegana:dandelion_suds_cooking', 'cucina_vegana:edamame', 'cucina_vegana:edamame_cooked',
'cucina_vegana:fish_parsley_rosemary', 'cucina_vegana:fish_parsley_rosemary_cooked', 'cucina_vegana:fryer',
'cucina_vegana:fryer_raw', 'cucina_vegana:imitation_butter', 'cucina_vegana:imitation_cheese',
'cucina_vegana:imitation_fish', 'cucina_vegana:imitation_meat', 'cucina_vegana:imitation_poultry',
'cucina_vegana:kohlrabi', 'cucina_vegana:kohlrabi_roasted', 'cucina_vegana:kohlrabi_soup',
'cucina_vegana:kohlrabi_soup_cooked', 'cucina_vegana:lettuce', 'cucina_vegana:molasses', 'cucina_vegana:parsley',
'cucina_vegana:peanut', 'cucina_vegana:peanut_butter', 'cucina_vegana:pizza_dough', 'cucina_vegana:pizza_funghi',
'cucina_vegana:pizza_funghi_raw', 'cucina_vegana:pizza_vegana', 'cucina_vegana:pizza_vegana_raw',
'cucina_vegana:rice', 'cucina_vegana:rice_flour', 'cucina_vegana:rosemary', 'cucina_vegana:salad_bowl',
'cucina_vegana:salad_hollandaise', 'cucina_vegana:sauce_hollandaise', 'cucina_vegana:soy_milk',
'cucina_vegana:soy_soup', 'cucina_vegana:soy_soup_cooked', 'cucina_vegana:sunflower_seeds_bread',
'cucina_vegana:sunflower_seeds_dough', 'cucina_vegana:sunflower_seeds_flour', 'cucina_vegana:sunflower_seeds_roasted',
'cucina_vegana:tofu', 'cucina_vegana:tofu_cooked', 'cucina_vegana:tofu_chives_rosemary',
'cucina_vegana:tofu_chives_rosemary_cooked', 'cucina_vegana:vegan_sushi'
}
biomass.convertible_items = {}
for _, v in pairs(biomass.convertible_nodes) do
biomass.convertible_items[v] = true
end
biomass.food_waste = {}
for _, v in pairs(biomass.convertible_food) do
biomass.food_waste[v] = true
end
local function is_convertible(input)
if biomass.convertible_items[input] then
return true
end
if food_fuel then
if biomass.food_waste[input] then
return true
end
else end
for _, v in pairs(biomass.convertible_groups) do
if minetest.get_item_group(input, v) > 0 then
return true
end
end
return false
end
plants_input = tonumber(minetest.settings:get("biomass_input")) or 4 -- The number of biomass required for fuel production (settingtypes.txt)
bottle_output = minetest.settings:get_bool("refinery_output") -- Change of refinery output between vial or bottle (settingtypes.txt)
if bottle_output == nil then bottle_output = false end -- default false
local function formspec(pos)
local spos = pos.x..','..pos.y..','..pos.z
local formspec =
'size[8,8.5]'..
default.gui_bg..
default.gui_bg_img..
default.gui_slots..
'list[nodemeta:'..spos..';src;0.5,0.5;3,3;]'..
'list[nodemeta:'..spos..';dst;5,1;2,2;]'..
'list[current_player;main;0,4.25;8,1;]'..
'list[current_player;main;0,5.5;8,3;8]'..
'listring[nodemeta:'..spos ..';dst]'..
'listring[current_player;main]'..
'listring[nodemeta:'..spos ..';src]'..
'listring[current_player;main]'..
default.get_hotbar_bg(0, 4.25)
return formspec
end
local function swap_node(pos, name)
local node = minetest.get_node(pos)
if node.name == name then
return
end
node.name = name
minetest.swap_node(pos, node)
end
local function count_input(pos)
local q = 0
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local stacks = inv:get_list('src')
for k in pairs(stacks) do
q = q + inv:get_stack('src', k):get_count()
end
return q
end
local function count_output(pos)
local q = 0
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local stacks = inv:get_list('dst')
for k in pairs(stacks) do
q = q + inv:get_stack('dst', k):get_count()
end
return q
end
local function is_empty(pos)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local stacks = inv:get_list('src')
for k in pairs(stacks) do
if not inv:get_stack('src', k):is_empty() then
return false
end
end
stacks = inv:get_list('dst')
for k in pairs(stacks) do
if not inv:get_stack('dst', k):is_empty() then
return false
end
end
return true
end
local function update_nodebox(pos)
if is_empty(pos) then
swap_node(pos, "biofuel:refinery")
else
swap_node(pos, "biofuel:refinery_active")
end
end
local function update_timer(pos)
local timer = minetest.get_node_timer(pos)
local meta = minetest.get_meta(pos)
local has_output_space = (4 * 99) > count_output(pos)
if not has_output_space then
if timer:is_started() then
timer:stop()
meta:set_string('infotext', S("Output is full "))
meta:set_int('progress', 0)
end
return
end
local count = count_input(pos)
local refinery_time = minetest.settings:get("fuel_production_time") or 10 -- Timebase (settingtypes.txt)
if not timer:is_started() and count >= plants_input then -- Input
timer:start((refinery_time)/5) -- Timebase
meta:set_int('progress', 0)
meta:set_string('infotext', S("progress: @1%", "0"))
return
end
if timer:is_started() and count < plants_input then -- Input
timer:stop()
meta:set_string('infotext', S("To start fuel production add biomass "))
meta:set_int('progress', 0)
end
end
local function create_biofuel(pos)
local dirt_count = count_output(pos)
local q = plants_input -- Input
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local stacks = inv:get_list('src')
for k in pairs(stacks) do
local stack = inv:get_stack('src', k)
if not stack:is_empty() then
local count = stack:get_count()
if count <= q then
inv:set_stack('src', k, '')
q = q - count
else
inv:set_stack('src', k, stack:get_name() .. ' ' .. (count - q))
q = 0
break
end
end
end
stacks = inv:get_list('dst')
for k in pairs(stacks) do
local stack = inv:get_stack('dst', k)
local count = stack:get_count()
if 99 > count then
if bottle_output then
inv:set_stack('dst', k, 'biofuel:bottle_fuel ' .. (count + 1))
else
inv:set_stack('dst', k, 'biofuel:phial_fuel ' .. (count + 1))
end
break
end
end
end
local function on_timer(pos)
local timer = minetest.get_node_timer(pos)
local meta = minetest.get_meta(pos)
local progress = meta:get_int('progress') + 20 --Progresss in %
if progress >= 100 then
create_biofuel(pos)
meta:set_int('progress', 0)
else
meta:set_int('progress', progress)
end
if (4 * 99) <= count_output(pos) then
timer:stop()
meta:set_string('infotext', S("Output is full "))
meta:set_int('progress', 0)
return false
end
if count_input(pos) >= plants_input then --Input
meta:set_string('infotext', S("progress: @1%", progress))
return true
else
timer:stop()
meta:set_string('infotext', S("To start fuel production add biomass "))
meta:set_int('progress', 0)
return false
end
end
local function on_construct(pos)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
inv:set_size('src', 9) -- Input Fields
inv:set_size('dst', 4) -- Output Fields
meta:set_string('infotext', S("To start fuel production add biomass "))
meta:set_int('progress', 0)
end
local function on_rightclick(pos, node, clicker, itemstack)
minetest.show_formspec(
clicker:get_player_name(),
'biofuel:refinery',
formspec(pos)
)
end
local function can_dig(pos,player)
if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then
-- protected
return false
end
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
if inv:is_empty('src') and inv:is_empty('dst') then
return true
else
return false
end
end
local tube = {
insert_object = function(pos, node, stack, direction)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local convertible = is_convertible(stack:get_name())
if not convertible then
return stack
end
local result = inv:add_item("src", stack)
update_timer(pos)
update_nodebox(pos)
return result
end,
can_insert = function(pos, node, stack, direction)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
stack = stack:peek_item(1)
return is_convertible(stack:get_name()) and inv:room_for_item("src", stack)
end,
input_inventory = "dst",
connect_sides = {left = 1, right = 1, back = 1, front = 1, bottom = 1, top = 1}
}
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then
-- protected
return 0
end
return stack:get_count()
end
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then
-- protected
return 0
end
if listname == 'src' and is_convertible(stack:get_name()) then
return stack:get_count()
else
return 0
end
end
local function on_metadata_inventory_put(pos, listname, index, stack, player)
update_timer(pos)
update_nodebox(pos)
minetest.log('action', player:get_player_name() .. S(" moves stuff to refinery at ") .. minetest.pos_to_string(pos))
return
end
local function on_metadata_inventory_take(pos, listname, index, stack, player)
update_timer(pos)
update_nodebox(pos)
minetest.log('action', player:get_player_name() .. S(" takes stuff from refinery at ") .. minetest.pos_to_string(pos))
return
end
local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player)
if player and player:is_player() and minetest.is_protected(pos, player:get_player_name()) then
-- protected
return 0
end
local inv = minetest.get_meta(pos):get_inventory()
if from_list == to_list then
return inv:get_stack(from_list, from_index):get_count()
else
return 0
end
end
minetest.register_node("biofuel:refinery", {
description = S("Biofuel Refinery"),
drawtype = "nodebox",
tiles = {
"biofuel_tb.png" .. tube_entry, -- top
"biofuel_tb.png" .. tube_entry, -- bottom
"biofuel_fr.png", -- right
"biofuel_bl.png", -- left
"biofuel_bl.png", -- back
"biofuel_fr.png" -- front
},
node_box = {
type = "fixed",
fixed = {
{-0.4375, 0.4375, 0.4375, 0.4375, 0.5, 0.5}, -- NodeBox1
{0.4375, 0.4375, -0.4375, 0.5, 0.5, 0.4375}, -- NodeBox2
{-0.4375, 0.4375, -0.5, 0.4375, 0.5, -0.4375}, -- NodeBox3
{-0.5, 0.4375, -0.4375, -0.4375, 0.5, 0.4375}, -- NodeBox4
{0.4375, -0.375, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox5
{0.4375, -0.375, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox6
{-0.5, -0.375, -0.5, -0.4375, 0.5, -0.4375}, -- NodeBox7
{-0.5, -0.375, 0.4375, -0.4375, 0.5, 0.5}, -- NodeBox8
{-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, -- NodeBox9
{-0.4375, -0.375, -0.4375, 0, 0.3125, 0}, -- NodeBox10
{0, -0.375, 0.1875, 0.375, 0.3125, 0.1875}, -- NodeBox11
{0.1875, -0.375, 0, 0.1875, 0.3125, 0.375}, -- NodeBox12
{-0.25, 0.3125, -0.25, 0.25, 0.4375, 0.25}, -- NodeBox13
}
},
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
},
collision_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
},
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
groups = {cracky = 3, oddly_breakable_by_hand=1, tubedevice=1, tubedevice_receiver=1},
sounds = default.node_sound_metal_defaults(),
on_timer = on_timer,
on_construct = on_construct,
on_rightclick = on_rightclick,
can_dig = can_dig,
tube = tube,
allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_move = allow_metadata_inventory_move,
allow_metadata_inventory_take = allow_metadata_inventory_take,
on_metadata_inventory_put = on_metadata_inventory_put,
on_metadata_inventory_take = on_metadata_inventory_take,
})
minetest.register_node("biofuel:refinery_active", {
description = S("Biofuel Refinery Active"),
drawtype = "nodebox",
tiles = {
"biofuel_tb.png" .. tube_entry, -- top
"biofuel_tb.png" .. tube_entry, -- bottom
"biofuel_fr_active.png", -- right
"biofuel_bl_active.png", -- left
"biofuel_bl_active.png", -- back
"biofuel_fr_active.png" -- front
},
node_box = {
type = "fixed",
fixed = {
{-0.4375, 0.4375, 0.4375, 0.4375, 0.5, 0.5}, -- NodeBox1
{0.4375, 0.4375, -0.4375, 0.5, 0.5, 0.4375}, -- NodeBox2
{-0.4375, 0.4375, -0.5, 0.4375, 0.5, -0.4375}, -- NodeBox3
{-0.5, 0.4375, -0.4375, -0.4375, 0.5, 0.4375}, -- NodeBox4
{0.4375, -0.375, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox5
{0.4375, -0.375, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox6
{-0.5, -0.375, -0.5, -0.4375, 0.5, -0.4375}, -- NodeBox7
{-0.5, -0.375, 0.4375, -0.4375, 0.5, 0.5}, -- NodeBox8
{-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, -- NodeBox9
{-0.4375, -0.375, -0.4375, 0, 0.3125, 0}, -- NodeBox10
{0, -0.375, 0.1875, 0.375, 0.3125, 0.1875}, -- NodeBox11
{0.1875, -0.375, 0, 0.1875, 0.3125, 0.375}, -- NodeBox12
{-0.25, 0.3125, -0.25, 0.25, 0.4375, 0.25}, -- NodeBox13
}
},
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
},
collision_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
},
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
groups = {cracky = 3, oddly_breakable_by_hand=1, not_in_creative_inventory = 1, tubedevice=1, tubedevice_receiver=1},
sounds = default.node_sound_metal_defaults(),
on_timer = on_timer,
on_construct = on_construct,
on_rightclick = on_rightclick,
can_dig = can_dig,
tube = tube,
allow_metadata_inventory_put = allow_metadata_inventory_put,
allow_metadata_inventory_move = allow_metadata_inventory_move,
allow_metadata_inventory_take = allow_metadata_inventory_take,
on_metadata_inventory_put = on_metadata_inventory_put,
on_metadata_inventory_take = on_metadata_inventory_take,
})
minetest.register_craft({
output = "biofuel:refinery",
recipe = {
{"default:tin_ingot", "default:tin_ingot", "default:tin_ingot"},
{"default:glass", "default:glass", "default:glass"},
{"default:tin_ingot", "default:tin_ingot", "default:tin_ingot"}
}
})
minetest.log('action', "MOD: Biofuel version " .. biofuel_version .. S("loaded."))