2021-06-18 21:49:57 +00:00
|
|
|
---------------------------------------------------
|
|
|
|
-- ___ _ --
|
|
|
|
-- | __| |___ _ __ _____ __ _____ _ _ --
|
|
|
|
-- | _|| / -_) '_ \/ _ \ V V / -_) '_| --
|
|
|
|
-- |___|_\___| .__/\___/\_/\_/\___|_| --
|
|
|
|
-- |_| --
|
|
|
|
-- _____ --
|
|
|
|
-- |_ _|__ _ __ ___ --
|
|
|
|
-- | |/ _ \ ' \/ -_) --
|
|
|
|
-- |_|\___/_|_|_\___| --
|
|
|
|
---------------------------------------------------
|
|
|
|
-- --
|
|
|
|
---------------------------------------------------
|
|
|
|
|
|
|
|
-- Global variable for mod
|
|
|
|
eletome = rawget(_G, "eletome") or {}
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- path, modname and translation
|
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
eletome.S = minetest.get_translator(modname)
|
|
|
|
local S = eletome.S
|
|
|
|
|
|
|
|
-- includes
|
|
|
|
dofile(modpath .. "/i_eletome_additional_info.lua")
|
|
|
|
dofile(modpath .. "/i_functions.lua")
|
|
|
|
dofile(modpath .. "/i_page_contents.lua")
|
|
|
|
dofile(modpath .. "/i_page_crafts.lua")
|
|
|
|
dofile(modpath .. "/i_page_machines.lua")
|
|
|
|
|
|
|
|
-- register our Tome/Book item
|
2021-06-18 21:49:57 +00:00
|
|
|
minetest.register_craftitem("elepower_tome:tome", {
|
|
|
|
description = "Elepower Tome",
|
|
|
|
inventory_image = "elepower_tome.png",
|
|
|
|
groups = {book = 1, flammable = 3},
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
|
|
|
|
|
|
|
local eletome_bg = eletome.tome_bg
|
|
|
|
local eletome_contents = eletome.contents_page()
|
|
|
|
minetest.show_formspec(user:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_contents)
|
|
|
|
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
|
2021-06-18 21:49:57 +00:00
|
|
|
-- Give player elepower tome on initaial logon
|
|
|
|
minetest.register_on_newplayer(function(player)
|
|
|
|
player:get_inventory():add_item("main", "elepower_tome:tome")
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- register our recieve field callback
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
if formname ~= "elepower_tome:tome" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- Clicked contents button on any page.
|
2021-06-18 21:49:57 +00:00
|
|
|
if fields.content then
|
|
|
|
local eletome_bg = eletome.tome_bg
|
|
|
|
local eletome_contents = eletome.contents_page()
|
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_contents)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Clicked a craft link on contents
|
2021-06-25 08:06:16 +00:00
|
|
|
if fields.craft_click then
|
2021-06-18 21:49:57 +00:00
|
|
|
local eletome_bg = eletome.tome_bg
|
2021-06-25 08:06:16 +00:00
|
|
|
local eletome_craft = eletome.craft_page(fields.craft_click)
|
2021-06-18 21:49:57 +00:00
|
|
|
|
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_craft)
|
|
|
|
end
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- Clicked craft bwd/fwd button on craft sub-page
|
|
|
|
if fields.craft_bwd_fwd then
|
|
|
|
local page_num = string.match(fields.craft_bwd_fwd , "%s(%w+)%s")
|
2021-06-18 21:49:57 +00:00
|
|
|
-- eletome.craft_page() expects description in format "something:craft_description"
|
2021-06-25 08:06:16 +00:00
|
|
|
local craft_value = "cd:"..fields.description
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
local eletome_bg = eletome.tome_bg
|
|
|
|
local eletome_craft = eletome.craft_page(craft_value,page_num)
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_craft)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Clicked Machine page
|
|
|
|
if fields.machine then
|
|
|
|
local eletome_bg = eletome.tome_bg
|
|
|
|
local eletome_machine = eletome.machines(fields.machine)
|
|
|
|
|
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_machine)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Clicked Machine bwd/fwd button on Machine page
|
|
|
|
if fields.mach_bwd_fwd then
|
|
|
|
local page_num = string.match(fields.mach_bwd_fwd, "%s(%w+)%s")
|
|
|
|
local mach_value = fields.description
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
local eletome_bg = eletome.tome_bg
|
|
|
|
local eletome_machine = eletome.machines(mach_value,page_num)
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_machine)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Clicked Instructions page
|
|
|
|
if fields.instructions then
|
2021-06-18 21:49:57 +00:00
|
|
|
local eletome_bg = eletome.tome_bg
|
2021-06-25 08:06:16 +00:00
|
|
|
local eletome_instruct = eletome.instructions_page(fields.description)
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_instruct)
|
|
|
|
end
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- Clicked Large Image page
|
|
|
|
if fields.large_image then
|
|
|
|
local eletome_bg = eletome.tome_bg
|
|
|
|
local eletome_lrg_img = eletome.large_image_page(fields.description)
|
|
|
|
|
|
|
|
minetest.show_formspec(player:get_player_name(), "elepower_tome:tome", eletome_bg..eletome_lrg_img)
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
--minetest.debug(dump(fields))
|
|
|
|
end)
|
|
|
|
|
|
|
|
-------------------
|
|
|
|
-- Page Defaults --
|
|
|
|
-------------------
|
2021-06-18 21:49:57 +00:00
|
|
|
|
|
|
|
eletome.tome_bg = "formspec_version[4]size[18,11]"..
|
|
|
|
"bgcolor[#003782;true]".. -- fails (my understanding limitation)
|
|
|
|
"box[0.0,0.0;18,11;#003782]".. -- workaround the above
|
|
|
|
"box[0.5,0.5;8.5,10;#d1caaeFF]"..
|
|
|
|
"box[9.0,0.5;8.5,10;#d1caaeFF]"..
|
2021-06-25 08:06:16 +00:00
|
|
|
"style_type[button;bgcolor=#003782]"..
|
|
|
|
"style_type[button_exit;bgcolor=#003782]"..
|
|
|
|
"button[0,0;2.5,0.5;content;Content]"..
|
|
|
|
"style[fake_back;textcolor=#777777]"..
|
|
|
|
"button[2.5,0;2.5,0.5;fake_back;Back]"..
|
|
|
|
"style[fake_prev_page;textcolor=#777777]"..
|
|
|
|
"button[12.5,0;2.5,0.5;fake_prev_page;<< Prev]"..
|
|
|
|
"style[fake_next_page;textcolor=#777777]"..
|
|
|
|
"button[15,0;2.5,0.5;fake_prev_page;Next >>]"..
|
|
|
|
"button_exit[17.5,0;0.5,0.5;X;X]"
|
|
|
|
|
|
|
|
|
2021-06-18 21:49:57 +00:00
|
|
|
eletome.font_color = "#1f1f1fFF"
|
|
|
|
eletome.y_space_line = 0.4
|
|
|
|
eletome.char_per_line = 60
|
2021-06-25 08:06:16 +00:00
|
|
|
eletome.tooltip_color = "#30434c;#f9f9f9"
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- Common style components - some end duplicates but kept for ease of reading/updating later
|
|
|
|
-- s = start ie pre text
|
|
|
|
-- e = end ie post text
|
2021-06-18 21:49:57 +00:00
|
|
|
-- Used for hypertext
|
|
|
|
eletome.common_styles = {
|
|
|
|
style_h0s = "<style color="..eletome.font_color.." size=26><b><center>",
|
|
|
|
style_h0e = "</center></b></style>",
|
|
|
|
style_h1s = "<style color="..eletome.font_color.." size=20><b><center>",
|
|
|
|
style_h1e = "</center></b></style>",
|
|
|
|
style_h2s = "<style color="..eletome.font_color.." size=18><center>",
|
|
|
|
style_h2e = "</center></style>",
|
2021-06-25 08:06:16 +00:00
|
|
|
style_h3s = "<style color="..eletome.font_color.." size=14><center>",
|
2021-06-18 21:49:57 +00:00
|
|
|
style_h3e = "</center></style>", -- approximate default "label" size
|
|
|
|
style_h4s = "<style color="..eletome.font_color.." size=12><center>",
|
|
|
|
style_h4e = "</center></style>"
|
|
|
|
|
|
|
|
}
|
2021-06-25 08:06:16 +00:00
|
|
|
|
|
|
|
function eletome.instructions_page(machine)
|
|
|
|
-- instructions page structured as 2 pages ie an open book
|
|
|
|
-- a single column on left page and single column on the right
|
|
|
|
-- machine structure; description = "action:machine-Miner"
|
|
|
|
|
|
|
|
-- remove "description = action:machine-" from string
|
|
|
|
local machine_name = string.match(machine, "-(.*)")
|
|
|
|
minetest.debug(machine_name)
|
|
|
|
-- remove "_"
|
|
|
|
local mach_name = string.gsub(machine_name,"_", " ")
|
|
|
|
|
|
|
|
|
2021-06-18 21:49:57 +00:00
|
|
|
-- Assign Common styles to local vars
|
|
|
|
local sty_h0s = eletome.common_styles.style_h0s
|
|
|
|
local sty_h0e = eletome.common_styles.style_h0e
|
|
|
|
local sty_h1s = eletome.common_styles.style_h1s
|
|
|
|
local sty_h1e = eletome.common_styles.style_h1e
|
|
|
|
local sty_h2s = eletome.common_styles.style_h2s
|
|
|
|
local sty_h2e = eletome.common_styles.style_h2e
|
|
|
|
local sty_h3s = eletome.common_styles.style_h3s
|
|
|
|
local sty_h3e = eletome.common_styles.style_h3e
|
2021-06-25 08:06:16 +00:00
|
|
|
local sty_h4s = eletome.common_styles.style_h4s
|
|
|
|
local sty_h4e = eletome.common_styles.style_h4e
|
|
|
|
|
|
|
|
function file_exists(img_name)
|
|
|
|
local file=io.open(img_name,"r")
|
|
|
|
if file~=nil then
|
|
|
|
io.close(file)
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
---------------
|
|
|
|
-- left page --
|
|
|
|
---------------
|
|
|
|
local lp_heading = "hypertext[0.5,0.7;8.5,1.1;lp_heading;"..sty_h0s..mach_name..sty_h0e.."]"
|
|
|
|
local lp_sub_head = "hypertext[0.5,1.4;8.5,1.0;lp_sub_heading;"..sty_h1s.."Instructions"..sty_h1e.."]"
|
|
|
|
local lp_content = ""
|
|
|
|
local rp_content = ""
|
|
|
|
local li = 1
|
|
|
|
local ri = 4
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
while li <= 3 do
|
|
|
|
local img_path = modpath.."/textures/eletome_instructions_"..machine_name:lower().."_".. li ..".png"
|
|
|
|
local file_check = file_exists(img_path)
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
if file_check then
|
|
|
|
if (li % 2 == 0) then -- even
|
|
|
|
lp_content = lp_content.."image[4.5,"..(2.0+(2.5*(li-1)))..";4,3;eletome_instructions_"..machine_name:lower().."_".. li ..".png]"
|
|
|
|
else
|
|
|
|
lp_content = lp_content.."image[1.00,"..(2.0+(2.5*(li-1)))..";4,3;eletome_instructions_"..machine_name:lower().."_".. li ..".png]"
|
|
|
|
end
|
2021-06-18 21:49:57 +00:00
|
|
|
else
|
2021-06-25 08:06:16 +00:00
|
|
|
break
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
2021-06-25 08:06:16 +00:00
|
|
|
|
|
|
|
li=li+1
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
----------------
|
|
|
|
-- right page --
|
|
|
|
----------------
|
|
|
|
while ri <= 7 do
|
|
|
|
local img_path = modpath.."/textures/eletome_instructions_"..machine_name:lower().."_".. ri ..".png"
|
|
|
|
local file_check = file_exists(img_path)
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
if file_check then
|
|
|
|
if (ri % 2 ~= 0) then -- odd
|
|
|
|
rp_content = rp_content.."image[13,"..(0.26+(2.4*(ri-4)))..";4,3;eletome_instructions_"..machine_name:lower().."_".. ri ..".png]"
|
|
|
|
else
|
|
|
|
rp_content = rp_content.."image[9.5,"..(0.26+(2.4*(ri-4)))..";4,3;eletome_instructions_"..machine_name:lower().."_".. ri ..".png]"
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
2021-06-25 08:06:16 +00:00
|
|
|
else
|
|
|
|
break
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
ri=ri+1
|
2021-06-18 21:49:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-------------------
|
|
|
|
-- Assemble page --
|
|
|
|
-------------------
|
|
|
|
local eletome_inst = lp_heading..lp_sub_head..lp_content..rp_content
|
|
|
|
|
|
|
|
return eletome_inst
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function eletome.large_image_page(machine)
|
|
|
|
-- Page to view the complex machine image large size
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- remove "description = action:machine-" from string
|
|
|
|
local machine_name = string.match(machine, "-(.*)")
|
|
|
|
|
|
|
|
-- remove "_"
|
|
|
|
local mach_name = string.gsub(machine_name,"_", " ")
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- Assign Common styles to local vars
|
|
|
|
local sty_h0s = eletome.common_styles.style_h0s
|
|
|
|
local sty_h0e = eletome.common_styles.style_h0e
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
local heading = "hypertext[0.5,0.7;17.5,1.1;lp_heading;"..sty_h0s..mach_name..sty_h0e.."]"
|
|
|
|
local image ="style_type[image_button;bgimg=elepower_tome_bgimg_1.png]"..
|
|
|
|
"image_button[2.33,0.5;13.33,10;"..eletome.ai[machine_name:lower()].img..";instructions;]"..
|
|
|
|
"tooltip[2.33,0.5;13.33,10;Click for detailed\ninstructions;"..eletome.tooltip_color.."]"
|
2021-06-18 21:49:57 +00:00
|
|
|
|
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
-- Pass page reference value to player recieve fields when fwd/bwd pressed - not visible on formspec
|
|
|
|
heading = heading .."field[10,12;1,0.5;description;;action:machine-"..machine_name.."]"
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
local eletome_lrg_img = image..heading
|
2021-06-18 21:49:57 +00:00
|
|
|
|
2021-06-25 08:06:16 +00:00
|
|
|
return eletome_lrg_img
|
|
|
|
end
|