2013-07-16 20:56:18 +02:00
|
|
|
--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.
|
|
|
|
|
|
|
|
|
2021-11-22 18:26:46 +01:00
|
|
|
mm_game_theme = {}
|
2013-07-16 20:56:18 +02:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2021-11-22 18:26:46 +01:00
|
|
|
function mm_game_theme.init()
|
|
|
|
mm_game_theme.texturepack = core.settings:get("texture_path")
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2021-11-22 18:26:46 +01:00
|
|
|
mm_game_theme.gameid = nil
|
|
|
|
|
|
|
|
mm_game_theme.music_handle = nil
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2023-10-18 20:18:50 +02:00
|
|
|
function mm_game_theme.set_engine(hide_decorations)
|
|
|
|
mm_game_theme.gameid = nil
|
|
|
|
mm_game_theme.stop_music()
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
core.set_topleft_text("")
|
2013-07-16 20:56:18 +02:00
|
|
|
|
|
|
|
local have_bg = false
|
2023-10-18 20:18:50 +02:00
|
|
|
local have_overlay = mm_game_theme.set_engine_single("overlay")
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2013-07-16 20:56:18 +02:00
|
|
|
if not have_overlay then
|
2023-10-18 20:18:50 +02:00
|
|
|
have_bg = mm_game_theme.set_engine_single("background")
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.clear_single("header")
|
|
|
|
mm_game_theme.clear_single("footer")
|
2014-04-18 15:39:15 +02:00
|
|
|
core.set_clouds(false)
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
if not hide_decorations then
|
|
|
|
mm_game_theme.set_engine_single("header")
|
|
|
|
mm_game_theme.set_engine_single("footer")
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2014-05-17 12:06:36 +02:00
|
|
|
if not have_bg then
|
2014-12-12 20:49:19 +01:00
|
|
|
if core.settings:get_bool("menu_clouds") then
|
2014-04-18 15:39:15 +02:00
|
|
|
core.set_clouds(true)
|
2014-05-17 12:06:36 +02:00
|
|
|
else
|
2021-11-22 18:26:46 +01:00
|
|
|
mm_game_theme.set_dirt_bg()
|
2014-05-17 12:06:36 +02:00
|
|
|
end
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2023-10-18 20:18:50 +02:00
|
|
|
function mm_game_theme.set_game(gamedetails)
|
|
|
|
assert(gamedetails ~= nil)
|
|
|
|
|
2021-11-22 18:26:46 +01:00
|
|
|
if mm_game_theme.gameid == gamedetails.id then
|
2013-07-16 20:56:18 +02:00
|
|
|
return
|
|
|
|
end
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.gameid = gamedetails.id
|
|
|
|
mm_game_theme.set_music(gamedetails)
|
|
|
|
|
|
|
|
core.set_topleft_text(gamedetails.name)
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2014-04-18 15:39:15 +02:00
|
|
|
local have_bg = false
|
2023-10-18 20:18:50 +02:00
|
|
|
local have_overlay = mm_game_theme.set_game_single("overlay", gamedetails)
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2013-07-16 20:56:18 +02:00
|
|
|
if not have_overlay then
|
2023-10-18 20:18:50 +02:00
|
|
|
have_bg = mm_game_theme.set_game_single("background", gamedetails)
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.clear_single("header")
|
|
|
|
mm_game_theme.clear_single("footer")
|
2014-04-18 15:39:15 +02:00
|
|
|
core.set_clouds(false)
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
mm_game_theme.set_game_single("header", gamedetails)
|
|
|
|
mm_game_theme.set_game_single("footer", gamedetails)
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
if not have_bg then
|
2014-12-12 20:49:19 +01:00
|
|
|
if core.settings:get_bool("menu_clouds") then
|
2014-04-18 15:39:15 +02:00
|
|
|
core.set_clouds(true)
|
2014-05-17 12:06:36 +02:00
|
|
|
else
|
2021-11-22 18:26:46 +01:00
|
|
|
mm_game_theme.set_dirt_bg()
|
2014-05-17 12:06:36 +02:00
|
|
|
end
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2023-10-18 20:18:50 +02:00
|
|
|
function mm_game_theme.clear_single(identifier)
|
2014-04-18 15:39:15 +02:00
|
|
|
core.set_background(identifier,"")
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2023-10-18 20:18:50 +02:00
|
|
|
function mm_game_theme.set_engine_single(identifier)
|
2013-07-16 20:56:18 +02:00
|
|
|
--try texture pack first
|
2021-11-22 18:26:46 +01:00
|
|
|
if mm_game_theme.texturepack ~= nil then
|
|
|
|
local path = mm_game_theme.texturepack .. DIR_DELIM .."menu_" ..
|
2013-07-16 20:56:18 +02:00
|
|
|
identifier .. ".png"
|
2014-04-18 15:39:15 +02:00
|
|
|
if core.set_background(identifier,path) then
|
2013-07-16 20:56:18 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2023-10-18 20:18:50 +02:00
|
|
|
local path = defaulttexturedir .. DIR_DELIM .. "menu_" .. identifier .. ".png"
|
|
|
|
if core.set_background(identifier, path) then
|
|
|
|
return true
|
2013-07-16 20:56:18 +02:00
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2013-07-16 20:56:18 +02:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2023-10-18 20:18:50 +02:00
|
|
|
function mm_game_theme.set_game_single(identifier, gamedetails)
|
|
|
|
assert(gamedetails ~= nil)
|
2021-11-22 18:26:46 +01:00
|
|
|
|
|
|
|
if mm_game_theme.texturepack ~= nil then
|
|
|
|
local path = mm_game_theme.texturepack .. DIR_DELIM ..
|
2015-07-18 14:31:34 +02:00
|
|
|
gamedetails.id .. "_menu_" .. identifier .. ".png"
|
|
|
|
if core.set_background(identifier, path) then
|
2013-07-16 20:56:18 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2018-03-13 02:59:01 +01:00
|
|
|
-- Find out how many randomized textures the game provides
|
2015-07-21 21:55:58 +02:00
|
|
|
local n = 0
|
|
|
|
local filename
|
2015-07-18 14:31:34 +02:00
|
|
|
local menu_files = core.get_dir_list(gamedetails.path .. DIR_DELIM .. "menu", false)
|
|
|
|
for i = 1, #menu_files do
|
2015-07-21 21:55:58 +02:00
|
|
|
filename = identifier .. "." .. i .. ".png"
|
2015-07-18 14:31:34 +02:00
|
|
|
if table.indexof(menu_files, filename) == -1 then
|
|
|
|
n = i - 1
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- Select random texture, 0 means standard texture
|
|
|
|
n = math.random(0, n)
|
|
|
|
if n == 0 then
|
|
|
|
filename = identifier .. ".png"
|
|
|
|
else
|
|
|
|
filename = identifier .. "." .. n .. ".png"
|
|
|
|
end
|
|
|
|
|
|
|
|
local path = gamedetails.path .. DIR_DELIM .. "menu" ..
|
|
|
|
DIR_DELIM .. filename
|
|
|
|
if core.set_background(identifier, path) then
|
2013-07-16 20:56:18 +02:00
|
|
|
return true
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2013-07-16 20:56:18 +02:00
|
|
|
return false
|
|
|
|
end
|
2014-05-17 12:06:36 +02:00
|
|
|
|
2021-11-22 18:26:46 +01:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
function mm_game_theme.set_dirt_bg()
|
|
|
|
if mm_game_theme.texturepack ~= nil then
|
|
|
|
local path = mm_game_theme.texturepack .. DIR_DELIM .."default_dirt.png"
|
2014-05-17 12:06:36 +02:00
|
|
|
if core.set_background("background", path, true, 128) then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
2019-08-06 20:30:18 +02:00
|
|
|
|
2016-04-20 08:24:14 +02:00
|
|
|
-- Use universal fallback texture in textures/base/pack
|
|
|
|
local minimalpath = defaulttexturedir .. "menu_bg.png"
|
2014-05-17 12:06:36 +02:00
|
|
|
core.set_background("background", minimalpath, true, 128)
|
|
|
|
end
|
2021-11-22 18:26:46 +01:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2023-10-18 20:18:50 +02:00
|
|
|
function mm_game_theme.stop_music()
|
2021-11-22 18:26:46 +01:00
|
|
|
if mm_game_theme.music_handle ~= nil then
|
|
|
|
core.sound_stop(mm_game_theme.music_handle)
|
|
|
|
end
|
2023-10-18 20:18:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
function mm_game_theme.set_music(gamedetails)
|
|
|
|
mm_game_theme.stop_music()
|
|
|
|
|
|
|
|
assert(gamedetails ~= nil)
|
|
|
|
|
2021-11-22 18:26:46 +01:00
|
|
|
local music_path = gamedetails.path .. DIR_DELIM .. "menu" .. DIR_DELIM .. "theme"
|
|
|
|
mm_game_theme.music_handle = core.sound_play(music_path, true)
|
|
|
|
end
|