123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- --Minetest
- --Copyright (C) 2018-24 rubenwardy
- --
- --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 function get_formspec(data)
- local selected_game, selected_game_idx = pkgmgr.find_by_gameid(core.settings:get("menu_last_game"))
- if not selected_game_idx then
- selected_game_idx = 1
- selected_game = pkgmgr.games[1]
- end
- local game_list = {}
- for i, game in ipairs(pkgmgr.games) do
- game_list[i] = core.formspec_escape(game.title)
- end
- local package = data.package
- local will_install_deps = data.will_install_deps
- local deps_to_install = 0
- local deps_not_found = 0
- data.dependencies = contentdb.resolve_dependencies(package, selected_game)
- local formatted_deps = {}
- for _, dep in pairs(data.dependencies) do
- formatted_deps[#formatted_deps + 1] = "#fff"
- formatted_deps[#formatted_deps + 1] = core.formspec_escape(dep.name)
- if dep.installed then
- formatted_deps[#formatted_deps + 1] = "#ccf"
- formatted_deps[#formatted_deps + 1] = fgettext("Already installed")
- elseif dep.package then
- formatted_deps[#formatted_deps + 1] = "#cfc"
- formatted_deps[#formatted_deps + 1] = fgettext("$1 by $2", dep.package.title, dep.package.author)
- deps_to_install = deps_to_install + 1
- else
- formatted_deps[#formatted_deps + 1] = "#f00"
- formatted_deps[#formatted_deps + 1] = fgettext("Not found")
- deps_not_found = deps_not_found + 1
- end
- end
- local message_bg = "#3333"
- local message
- if will_install_deps then
- message = fgettext("$1 and $2 dependencies will be installed.", package.title, deps_to_install)
- else
- message = fgettext("$1 will be installed, and $2 dependencies will be skipped.", package.title, deps_to_install)
- end
- if deps_not_found > 0 then
- message = fgettext("$1 required dependencies could not be found.", deps_not_found) ..
- " " .. fgettext("Please check that the base game is correct.", deps_not_found) ..
- "\n" .. message
- message_bg = mt_color_orange
- end
- local ENABLE_TOUCH = core.settings:get_bool("enable_touch")
- local w = ENABLE_TOUCH and 14 or 7
- local padded_w = w - 2*0.375
- local dropdown_w = ENABLE_TOUCH and 10.2 or 4.25
- local button_w = (padded_w - 0.25) / 3
- local button_pad = button_w / 2
- local formspec = {
- "formspec_version[3]",
- "size[", w, ",9.05]",
- ENABLE_TOUCH and "padding[0.01,0.01]" or "position[0.5,0.55]",
- "style[title;border=false]",
- "box[0,0;", w, ",0.8;#3333]",
- "button[0,0;", w, ",0.8;title;", fgettext("Install $1", package.title) , "]",
- "container[0.375,1]",
- "label[0,0.4;", fgettext("Base Game:"), "]",
- "dropdown[", padded_w - dropdown_w, ",0;", dropdown_w, ",0.8;selected_game;",
- table.concat(game_list, ","), ";", selected_game_idx, "]",
- "label[0,1.1;", fgettext("Dependencies:"), "]",
- "tablecolumns[color;text;color;text]",
- "table[0,1.4;", padded_w, ",3;packages;", table.concat(formatted_deps, ","), "]",
- "container_end[]",
- "checkbox[0.375,5.7;will_install_deps;",
- fgettext("Install missing dependencies"), ";",
- will_install_deps and "true" or "false", "]",
- "box[0,6;", w, ",1.8;", message_bg, "]",
- "textarea[0.375,6.1;", padded_w, ",1.6;;;", message, "]",
- "container[", 0.375 + button_pad, ",8.05]",
- "button[0,0;", button_w, ",0.8;install_all;", fgettext("Install"), "]",
- "button[", 0.25 + button_w, ",0;", button_w, ",0.8;cancel;", fgettext("Cancel"), "]",
- "container_end[]",
- }
- return table.concat(formspec)
- end
- local function handle_submit(this, fields)
- local data = this.data
- if fields.cancel then
- this:delete()
- return true
- end
- if fields.will_install_deps ~= nil then
- data.will_install_deps = core.is_yes(fields.will_install_deps)
- return true
- end
- if fields.install_all then
- contentdb.queue_download(data.package, contentdb.REASON_NEW)
- if data.will_install_deps then
- for _, dep in pairs(data.dependencies) do
- if not dep.is_optional and not dep.installed and dep.package then
- contentdb.queue_download(dep.package, contentdb.REASON_DEPENDENCY)
- end
- end
- end
- this:delete()
- return true
- end
- if fields.selected_game then
- for _, game in pairs(pkgmgr.games) do
- if game.title == fields.selected_game then
- core.settings:set("menu_last_game", game.id)
- break
- end
- end
- return true
- end
- return false
- end
- function create_install_dialog(package)
- local dlg = dialog_create("install_dialog", get_formspec, handle_submit, nil)
- dlg.data.dependencies = nil
- dlg.data.package = package
- dlg.data.will_install_deps = true
- return dlg
- end
|