mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-14 14:40:29 +01:00
60 lines
1.7 KiB
Lua
60 lines
1.7 KiB
Lua
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
df_lorebooks = {}
|
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
dofile(modpath.."/nodes.lua")
|
|
|
|
-- Splits strings into chunks that are approximately length long, dividing at the nearest pattern to the first length mark.
|
|
function splitString(str, length, splitmark)
|
|
if #str <= length then
|
|
return str
|
|
else
|
|
local split_index = string.find(str, splitmark, 1, true)
|
|
local closest_index = split_index or math.huge
|
|
while split_index do
|
|
if math.abs(split_index - length) < math.abs(closest_index - length) then
|
|
closest_index = split_index
|
|
end
|
|
split_index = string.find(str, splitmark, split_index + 2, true)
|
|
end
|
|
if closest_index == math.huge then
|
|
return str
|
|
else
|
|
local str1 = string.sub(str, 1, closest_index)
|
|
local str2 = string.sub(str, closest_index + 2)
|
|
return str1, str2
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
local lorebooks = {}
|
|
|
|
df_lorebooks.lorebooks = lorebooks
|
|
|
|
|
|
df_lorebooks.register_lorebook = function(def)
|
|
|
|
if lorebooks[def.desc] then
|
|
minetest.debug("duplicate title " .. def.desc)
|
|
end
|
|
lorebooks[def.desc] = def
|
|
|
|
end
|
|
|
|
dofile(modpath.."/ecology_sunless_sea.lua")
|
|
dofile(modpath.."/ecology_flora.lua")
|
|
dofile(modpath.."/ecology_trees.lua")
|
|
dofile(modpath.."/ecology_ice_sprites.lua")
|
|
dofile(modpath.."/geology_the_great_caverns.lua")
|
|
dofile(modpath.."/introductions.lua")
|
|
dofile(modpath.."/underworld_and_primordial.lua")
|
|
|
|
for title, lorebook in pairs(lorebooks) do
|
|
if lorebook.text == "\27(T@df_lorebooks)\27E" then
|
|
minetest.debug("empty text for " .. title)
|
|
end
|
|
end
|