BlockColor-Win64/builtin/mainmenu/tab_credits.lua

86 lines
2.7 KiB
Lua
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

--Minetest
--Copyright (C) 2013 sapier
--
--This program is free software; you can redistribute it and/or modify
--it under the terms of the GNU Lesser General Public License as published by
--the Free Software Foundation; either version 2.1 of the License, or
--(at your option) any later version.
--
--This program is distributed in the hope that it will be useful,
--but WITHOUT ANY WARRANTY; without even the implied warranty of
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
--GNU Lesser General Public License for more details.
--
--You should have received a copy of the GNU Lesser General Public License along
--with this program; if not, write to the Free Software Foundation, Inc.,
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
--------------------------------------------------------------------------------
local engine = {
"Minetest 5.0.1 : celeron55, Core Devs and Community Minetest",
}
local developers = {
"Mrchiantos",
}
local contributors = {
"Animal Model : AspireMint",
"Ships Spawn Mod : SokoMine",
"Furnitures Mod : Gerold55",
"Slope Simple : Nigel",
"Awards : RubenWardy",
"Mainmenu : RubenWardy (I have use Pr 5.0 Modify for 0.4)",
"SurfBoard : Archfan7411",
"Airboat : Paramat",
"DriftCar : Paramat",
"Spaceship : Paramat (Code) & SpaceShip'Model (Viktor Hahn )",
"Textures 16px : Peak (Since 1.46.4b)",
"Trampoline : hkzorman",
"Mobs mod : TenPlus1",
"Player Model : Quaternius (Human Low Poly / Since 1.53)",
"Player Model b3d : Kroukuk",
"Trees : Kenney.nl (Since 1.53)",
"Hdb Model (Homedecor) : Vanessa",
"Hovercraft : Stuart Jones ",
"HotAirBallons : Me Me and Me // mbb (Flying Carpet - Wuzzy)",
"ComboBlock : Pithydon",
"ComboBlock & ComboStair Model : Nathan (MinetestVideo)",
"Header and Logo : LMD, azekill_DIABLO & MrChiantos",
"Inventory Icons : Xenon (xenonca)",
}
local function buildCreditList(source)
local ret = {}
for i = 1, #source do
ret[i] = core.formspec_escape(source[i])
end
return table.concat(ret, ",,")
end
return {
name = "credits",
caption = fgettext("Credits"),
cbf_formspec = function(tabview, name, tabdata)
local logofile = defaulttexturedir .. "logo.png"
local version = core.get_version()
return "image[0.25,1;" .. core.formspec_escape(logofile) .. "]" ..
"tablecolumns[color;text]" ..
"tableoptions[background=#00000000;highlight=#00000000;border=false]" ..
"table[5,0;6.75,6.05;list_credits;" ..
"#FFFF00," .. fgettext("Engine") .. ",," ..
buildCreditList(engine) .. "," ..
",," ..
"#FFFF00," .. fgettext("Developers") .. ",," ..
buildCreditList(developers) .. "," ..
",," ..
"#FFFF00," .. fgettext("Contributors") .. ",," ..
buildCreditList(contributors) .. ","
..";1]"
end
}