2013-06-23 12:30:21 -04: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.
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
--modstore implementation
|
|
|
|
modstore = {}
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
-- @function [parent=#modstore] init
|
2014-04-18 09:39:15 -04:00
|
|
|
function modstore.init(size, unsortedmods, searchmods)
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
modstore.mods_on_unsorted_page = unsortedmods
|
|
|
|
modstore.mods_on_search_page = searchmods
|
|
|
|
modstore.modsperpage = modstore.mods_on_unsorted_page
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
modstore.basetexturedir = core.get_texturepath() .. DIR_DELIM .. "base" ..
|
2013-06-23 12:30:21 -04:00
|
|
|
DIR_DELIM .. "pack" .. DIR_DELIM
|
2013-11-26 12:15:31 -05:00
|
|
|
|
|
|
|
modstore.lastmodtitle = ""
|
2013-12-11 17:07:38 -05:00
|
|
|
modstore.last_search = ""
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
modstore.searchlist = filterlist.create(
|
|
|
|
function()
|
|
|
|
if modstore.modlist_unsorted ~= nil and
|
|
|
|
modstore.modlist_unsorted.data ~= nil then
|
|
|
|
return modstore.modlist_unsorted.data
|
|
|
|
end
|
|
|
|
return {}
|
|
|
|
end,
|
|
|
|
function(element,modid)
|
|
|
|
if element.id == modid then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end, --compare fct
|
|
|
|
nil, --uid match fct
|
|
|
|
function(element,substring)
|
|
|
|
if substring == nil or
|
|
|
|
substring == "" then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
substring = substring:upper()
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if element.title ~= nil and
|
|
|
|
element.title:upper():find(substring) ~= nil then
|
|
|
|
return true
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if element.details ~= nil and
|
|
|
|
element.details.author ~= nil and
|
|
|
|
element.details.author:upper():find(substring) ~= nil then
|
|
|
|
return true
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if element.details ~= nil and
|
|
|
|
element.details.description ~= nil and
|
|
|
|
element.details.description:upper():find(substring) ~= nil then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end --filter fct
|
|
|
|
)
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
modstore.current_list = nil
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2014-06-14 05:22:09 -04:00
|
|
|
modstore.tv_store = tabview_create("modstore",size,{x=0,y=0})
|
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
modstore.tv_store:set_global_event_handler(modstore.handle_events)
|
|
|
|
|
|
|
|
modstore.tv_store:add(
|
|
|
|
{
|
|
|
|
name = "unsorted",
|
|
|
|
caption = fgettext("Unsorted"),
|
|
|
|
cbf_formspec = modstore.unsorted_tab,
|
|
|
|
cbf_button_handler = modstore.handle_buttons,
|
|
|
|
on_change =
|
|
|
|
function() modstore.modsperpage = modstore.mods_on_unsorted_page end
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
modstore.tv_store:add(
|
|
|
|
{
|
|
|
|
name = "search",
|
|
|
|
caption = fgettext("Search"),
|
|
|
|
cbf_formspec = modstore.getsearchpage,
|
|
|
|
cbf_button_handler = modstore.handle_buttons,
|
|
|
|
on_change = modstore.activate_search_tab
|
|
|
|
}
|
|
|
|
)
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
-- @function [parent=#modstore] nametoindex
|
2013-06-23 12:30:21 -04:00
|
|
|
function modstore.nametoindex(name)
|
|
|
|
|
|
|
|
for i=1,#modstore.tabnames,1 do
|
|
|
|
if modstore.tabnames[i] == name then
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2014-04-18 09:39:15 -04:00
|
|
|
-- @function [parent=#modstore] showdownloading
|
|
|
|
function modstore.showdownloading(title)
|
|
|
|
local new_dlg = dialog_create("store_downloading",
|
|
|
|
function(data)
|
2015-02-11 11:00:20 -05:00
|
|
|
return "size[6,2]label[0.25,0.75;" ..
|
|
|
|
fgettext("Downloading $1, please wait...", data.title) .. "]"
|
2014-04-18 09:39:15 -04:00
|
|
|
end,
|
|
|
|
function(this,fields)
|
|
|
|
if fields["btn_hidden_close_download"] ~= nil then
|
|
|
|
if fields["btn_hidden_close_download"].successfull then
|
|
|
|
modstore.lastmodentry = fields["btn_hidden_close_download"]
|
2015-02-11 11:00:20 -05:00
|
|
|
modstore.successfulldialog(this)
|
2014-04-18 09:39:15 -04:00
|
|
|
else
|
2015-02-11 11:00:20 -05:00
|
|
|
this.parent:show()
|
|
|
|
this:delete()
|
2014-04-18 09:39:15 -04:00
|
|
|
modstore.lastmodtitle = ""
|
|
|
|
end
|
2013-12-11 17:07:38 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
|
|
|
end
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
return false
|
|
|
|
end,
|
2015-02-11 11:00:20 -05:00
|
|
|
nil)
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2015-02-11 11:00:20 -05:00
|
|
|
new_dlg:set_parent(modstore.tv_store)
|
|
|
|
modstore.tv_store:hide()
|
2014-04-18 09:39:15 -04:00
|
|
|
new_dlg.data.title = title
|
|
|
|
new_dlg:show()
|
|
|
|
end
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- @function [parent=#modstore] successfulldialog
|
2015-02-11 11:00:20 -05:00
|
|
|
function modstore.successfulldialog(downloading_dlg)
|
2014-04-18 09:39:15 -04:00
|
|
|
local new_dlg = dialog_create("store_downloading",
|
|
|
|
function(data)
|
|
|
|
local retval = ""
|
|
|
|
retval = retval .. "size[6,2,true]"
|
|
|
|
if modstore.lastmodentry ~= nil then
|
|
|
|
retval = retval .. "label[0,0.25;" .. fgettext("Successfully installed:") .. "]"
|
|
|
|
retval = retval .. "label[3,0.25;" .. modstore.lastmodentry.moddetails.title .. "]"
|
|
|
|
retval = retval .. "label[0,0.75;" .. fgettext("Shortname:") .. "]"
|
|
|
|
retval = retval .. "label[3,0.75;" .. core.formspec_escape(modstore.lastmodentry.moddetails.basename) .. "]"
|
|
|
|
end
|
2015-02-11 11:00:20 -05:00
|
|
|
retval = retval .. "button[2.2,1.5;1.5,0.5;btn_confirm_mod_successfull;" .. fgettext("Ok") .. "]"
|
|
|
|
return retval
|
2014-04-18 09:39:15 -04:00
|
|
|
end,
|
|
|
|
function(this,fields)
|
|
|
|
if fields["btn_confirm_mod_successfull"] ~= nil then
|
|
|
|
this.parent:show()
|
2015-02-11 11:00:20 -05:00
|
|
|
downloading_dlg:delete()
|
2014-04-18 09:39:15 -04:00
|
|
|
this:delete()
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
|
|
|
end
|
2013-06-23 12:30:21 -04:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
return false
|
|
|
|
end,
|
2015-02-11 11:00:20 -05:00
|
|
|
nil)
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2015-02-11 11:00:20 -05:00
|
|
|
new_dlg:set_parent(modstore.tv_store)
|
|
|
|
modstore.tv_store:hide()
|
2014-04-18 09:39:15 -04:00
|
|
|
new_dlg:show()
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
-- @function [parent=#modstore] handle_buttons
|
2014-04-18 09:39:15 -04:00
|
|
|
function modstore.handle_buttons(parent, fields, name, data)
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
if fields["btn_modstore_page_up"] then
|
|
|
|
if modstore.current_list ~= nil and modstore.current_list.page > 0 then
|
|
|
|
modstore.current_list.page = modstore.current_list.page - 1
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
if fields["btn_modstore_page_down"] then
|
2013-11-26 12:15:31 -05:00
|
|
|
if modstore.current_list ~= nil and
|
2013-08-16 09:44:09 -04:00
|
|
|
modstore.current_list.page <modstore.current_list.pagecount-1 then
|
2013-06-23 12:30:21 -04:00
|
|
|
modstore.current_list.page = modstore.current_list.page +1
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if fields["btn_modstore_search"] or
|
|
|
|
(fields["key_enter"] and fields["te_modstore_search"] ~= nil) then
|
|
|
|
modstore.last_search = fields["te_modstore_search"]
|
|
|
|
filterlist.set_filtercriteria(modstore.searchlist,fields["te_modstore_search"])
|
|
|
|
filterlist.refresh(modstore.searchlist)
|
|
|
|
modstore.currentlist = {
|
|
|
|
page = 0,
|
|
|
|
pagecount = math.ceil(filterlist.size(modstore.searchlist) / modstore.modsperpage),
|
|
|
|
data = filterlist.get_list(modstore.searchlist),
|
|
|
|
}
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if fields["btn_modstore_close"] then
|
2015-02-11 11:00:20 -05:00
|
|
|
local maintab = ui.find_by_name("maintab")
|
2014-04-18 09:39:15 -04:00
|
|
|
parent:hide()
|
2015-02-11 11:00:20 -05:00
|
|
|
maintab:show()
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
for key,value in pairs(fields) do
|
|
|
|
local foundat = key:find("btn_install_mod_")
|
|
|
|
if ( foundat == 1) then
|
|
|
|
local modid = tonumber(key:sub(17))
|
|
|
|
for i=1,#modstore.modlist_unsorted.data,1 do
|
|
|
|
if modstore.modlist_unsorted.data[i].id == modid then
|
|
|
|
local moddetails = modstore.modlist_unsorted.data[i].details
|
2015-02-11 11:00:20 -05:00
|
|
|
modstore.lastmodtitle = moddetails.title
|
2014-04-18 09:39:15 -04:00
|
|
|
|
|
|
|
if not core.handle_async(
|
2013-12-11 17:07:38 -05:00
|
|
|
function(param)
|
2014-04-18 09:39:15 -04:00
|
|
|
local fullurl = core.setting_get("modstore_download_url") ..
|
2013-12-11 17:07:38 -05:00
|
|
|
param.moddetails.download_url
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if param.version ~= nil then
|
|
|
|
local found = false
|
|
|
|
for i=1,#param.moddetails.versions, 1 do
|
|
|
|
if param.moddetails.versions[i].date:sub(1,10) == param.version then
|
2014-04-18 09:39:15 -04:00
|
|
|
fullurl = core.setting_get("modstore_download_url") ..
|
2013-12-11 17:07:38 -05:00
|
|
|
param.moddetails.versions[i].download_url
|
|
|
|
found = true
|
|
|
|
end
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if not found then
|
2014-04-18 09:39:15 -04:00
|
|
|
core.log("error","no download url found for version " .. dump(param.version))
|
2013-12-11 17:07:38 -05:00
|
|
|
return {
|
|
|
|
moddetails = param.moddetails,
|
|
|
|
successfull = false
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
|
|
|
if core.download_file(fullurl,param.filename) then
|
2013-12-11 17:07:38 -05:00
|
|
|
return {
|
|
|
|
texturename = param.texturename,
|
|
|
|
moddetails = param.moddetails,
|
|
|
|
filename = param.filename,
|
|
|
|
successfull = true
|
|
|
|
}
|
|
|
|
else
|
2014-04-18 09:39:15 -04:00
|
|
|
core.log("error","downloading " .. dump(fullurl) .. " failed")
|
2013-12-11 17:07:38 -05:00
|
|
|
return {
|
2014-01-24 15:22:22 -05:00
|
|
|
moddetails = param.moddetails,
|
2013-12-11 17:07:38 -05:00
|
|
|
successfull = false
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
{
|
|
|
|
moddetails = moddetails,
|
|
|
|
version = fields["dd_version" .. modid],
|
|
|
|
filename = os.tempfolder() .. "_MODNAME_" .. moddetails.basename .. ".zip",
|
|
|
|
texturename = modstore.modlist_unsorted.data[i].texturename
|
|
|
|
},
|
|
|
|
function(result)
|
2015-02-11 11:00:20 -05:00
|
|
|
--print("Result from async: " .. dump(result.successfull))
|
2013-12-11 17:07:38 -05:00
|
|
|
if result.successfull then
|
|
|
|
modmgr.installmod(result.filename,result.moddetails.basename)
|
|
|
|
os.remove(result.filename)
|
|
|
|
else
|
|
|
|
gamedata.errormessage = "Failed to download " .. result.moddetails.title
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if gamedata.errormessage == nil then
|
2014-04-18 09:39:15 -04:00
|
|
|
core.button_handler({btn_hidden_close_download=result})
|
2013-12-11 17:07:38 -05:00
|
|
|
else
|
2014-04-18 09:39:15 -04:00
|
|
|
core.button_handler({btn_hidden_close_download={successfull=false}})
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
) then
|
|
|
|
print("ERROR: async event failed")
|
|
|
|
gamedata.errormessage = "Failed to download " .. modstore.lastmodtitle
|
|
|
|
end
|
2015-02-11 11:00:20 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
modstore.showdownloading(modstore.lastmodtitle)
|
|
|
|
return true
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
return true
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
|
|
|
end
|
2014-06-14 05:22:09 -04:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- @function [parent=#modstore] handle_events
|
|
|
|
function modstore.handle_events(this,event)
|
|
|
|
if (event == "MenuQuit") then
|
|
|
|
this:hide()
|
|
|
|
return true
|
|
|
|
end
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
-- @function [parent=#modstore] update_modlist
|
2013-06-23 12:30:21 -04:00
|
|
|
function modstore.update_modlist()
|
|
|
|
modstore.modlist_unsorted = {}
|
2013-11-26 12:15:31 -05:00
|
|
|
modstore.modlist_unsorted.data = {}
|
|
|
|
modstore.modlist_unsorted.pagecount = 1
|
2013-06-23 12:30:21 -04:00
|
|
|
modstore.modlist_unsorted.page = 0
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
core.handle_async(
|
2013-11-26 12:15:31 -05:00
|
|
|
function(param)
|
2014-04-18 09:39:15 -04:00
|
|
|
return core.get_modstore_list()
|
2013-11-26 12:15:31 -05:00
|
|
|
end,
|
|
|
|
nil,
|
|
|
|
function(result)
|
|
|
|
if result ~= nil then
|
|
|
|
modstore.modlist_unsorted = {}
|
|
|
|
modstore.modlist_unsorted.data = result
|
|
|
|
|
|
|
|
if modstore.modlist_unsorted.data ~= nil then
|
|
|
|
modstore.modlist_unsorted.pagecount =
|
|
|
|
math.ceil((#modstore.modlist_unsorted.data / modstore.modsperpage))
|
|
|
|
else
|
|
|
|
modstore.modlist_unsorted.data = {}
|
|
|
|
modstore.modlist_unsorted.pagecount = 1
|
|
|
|
end
|
|
|
|
modstore.modlist_unsorted.page = 0
|
|
|
|
modstore.fetchdetails()
|
2014-04-18 09:39:15 -04:00
|
|
|
core.event_handler("Refresh")
|
2013-11-26 12:15:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
-- @function [parent=#modstore] fetchdetails
|
2013-11-26 12:15:31 -05:00
|
|
|
function modstore.fetchdetails()
|
|
|
|
|
|
|
|
for i=1,#modstore.modlist_unsorted.data,1 do
|
2014-04-18 09:39:15 -04:00
|
|
|
core.handle_async(
|
2013-11-26 12:15:31 -05:00
|
|
|
function(param)
|
2014-04-18 09:39:15 -04:00
|
|
|
param.details = core.get_modstore_details(tostring(param.modid))
|
2013-11-26 12:15:31 -05:00
|
|
|
return param
|
|
|
|
end,
|
|
|
|
{
|
|
|
|
modid=modstore.modlist_unsorted.data[i].id,
|
|
|
|
listindex=i
|
|
|
|
},
|
|
|
|
function(result)
|
|
|
|
if result ~= nil and
|
|
|
|
modstore.modlist_unsorted ~= nil
|
|
|
|
and modstore.modlist_unsorted.data ~= nil and
|
|
|
|
modstore.modlist_unsorted.data[result.listindex] ~= nil and
|
|
|
|
modstore.modlist_unsorted.data[result.listindex].id ~= nil then
|
|
|
|
|
|
|
|
modstore.modlist_unsorted.data[result.listindex].details = result.details
|
2014-04-18 09:39:15 -04:00
|
|
|
core.event_handler("Refresh")
|
2013-11-26 12:15:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
2013-12-11 17:07:38 -05:00
|
|
|
|
2013-11-26 12:15:31 -05:00
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
-- @function [parent=#modstore] getscreenshot
|
|
|
|
function modstore.getscreenshot(ypos,listentry)
|
|
|
|
|
|
|
|
if listentry.details ~= nil and
|
|
|
|
(listentry.details.screenshot_url == nil or
|
|
|
|
listentry.details.screenshot_url == "") then
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if listentry.texturename == nil then
|
2015-02-12 05:26:26 -05:00
|
|
|
listentry.texturename = defaulttexturedir .. "no_screenshot.png"
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
return "image[0,".. ypos .. ";3,2;" ..
|
2014-04-18 09:39:15 -04:00
|
|
|
core.formspec_escape(listentry.texturename) .. "]"
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if listentry.details ~= nil and
|
|
|
|
listentry.texturename == nil then
|
|
|
|
--make sure we don't download multiple times
|
|
|
|
listentry.texturename = "in progress"
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
--prepare url and filename
|
2014-04-18 09:39:15 -04:00
|
|
|
local fullurl = core.setting_get("modstore_download_url") ..
|
2013-12-11 17:07:38 -05:00
|
|
|
listentry.details.screenshot_url
|
|
|
|
local filename = os.tempfolder() .. "_MID_" .. listentry.id
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
--trigger download
|
2014-04-18 09:39:15 -04:00
|
|
|
core.handle_async(
|
2013-12-11 17:07:38 -05:00
|
|
|
--first param is downloadfct
|
|
|
|
function(param)
|
2014-04-18 09:39:15 -04:00
|
|
|
param.successfull = core.download_file(param.fullurl,param.filename)
|
2013-12-11 17:07:38 -05:00
|
|
|
return param
|
|
|
|
end,
|
|
|
|
--second parameter is data passed to async job
|
|
|
|
{
|
|
|
|
fullurl = fullurl,
|
|
|
|
filename = filename,
|
|
|
|
modid = listentry.id
|
|
|
|
},
|
|
|
|
--integrate result to raw list
|
|
|
|
function(result)
|
|
|
|
if result.successfull then
|
|
|
|
local found = false
|
|
|
|
for i=1,#modstore.modlist_unsorted.data,1 do
|
|
|
|
if modstore.modlist_unsorted.data[i].id == result.modid then
|
|
|
|
found = true
|
|
|
|
modstore.modlist_unsorted.data[i].texturename = result.filename
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if found then
|
2014-04-18 09:39:15 -04:00
|
|
|
core.event_handler("Refresh")
|
2013-12-11 17:07:38 -05:00
|
|
|
else
|
2014-04-18 09:39:15 -04:00
|
|
|
core.log("error","got screenshot but didn't find matching mod: " .. result.modid)
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
if listentry.texturename ~= nil and
|
|
|
|
listentry.texturename ~= "in progress" then
|
|
|
|
return "image[0,".. ypos .. ";3,2;" ..
|
2014-04-18 09:39:15 -04:00
|
|
|
core.formspec_escape(listentry.texturename) .. "]"
|
2013-12-11 17:07:38 -05:00
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
return ""
|
|
|
|
end
|
2013-06-23 12:30:21 -04:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
--@function [parent=#modstore] getshortmodinfo
|
|
|
|
function modstore.getshortmodinfo(ypos,listentry,details)
|
2013-06-23 12:30:21 -04:00
|
|
|
local retval = ""
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
retval = retval .. "box[0," .. ypos .. ";11.4,1.75;#FFFFFF]"
|
|
|
|
|
|
|
|
--screenshot
|
|
|
|
retval = retval .. modstore.getscreenshot(ypos,listentry)
|
|
|
|
|
|
|
|
--title + author
|
|
|
|
retval = retval .."label[2.75," .. ypos .. ";" ..
|
2014-04-18 09:39:15 -04:00
|
|
|
core.formspec_escape(details.title) .. " (" .. details.author .. ")]"
|
2013-12-11 17:07:38 -05:00
|
|
|
|
|
|
|
--description
|
|
|
|
local descriptiony = ypos + 0.5
|
|
|
|
retval = retval .. "textarea[3," .. descriptiony .. ";6.5,1.55;;" ..
|
2014-04-18 09:39:15 -04:00
|
|
|
core.formspec_escape(details.description) .. ";]"
|
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
--rating
|
|
|
|
local ratingy = ypos
|
|
|
|
retval = retval .."label[7," .. ratingy .. ";" ..
|
|
|
|
fgettext("Rating") .. ":]"
|
|
|
|
retval = retval .. "label[8.7," .. ratingy .. ";" .. details.rating .."]"
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
--versions (IMPORTANT has to be defined AFTER rating)
|
|
|
|
if details.versions ~= nil and
|
|
|
|
#details.versions > 1 then
|
|
|
|
local versiony = ypos + 0.05
|
|
|
|
retval = retval .. "dropdown[9.1," .. versiony .. ";2.48,0.25;dd_version" .. details.id .. ";"
|
|
|
|
local versions = ""
|
|
|
|
for i=1,#details.versions , 1 do
|
|
|
|
if versions ~= "" then
|
|
|
|
versions = versions .. ","
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
versions = versions .. details.versions[i].date:sub(1,10)
|
|
|
|
end
|
|
|
|
retval = retval .. versions .. ";1]"
|
|
|
|
end
|
|
|
|
|
|
|
|
if details.basename then
|
|
|
|
--install button
|
|
|
|
local buttony = ypos + 1.2
|
|
|
|
retval = retval .."button[9.1," .. buttony .. ";2.5,0.5;btn_install_mod_" .. details.id .. ";"
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if modmgr.mod_exists(details.basename) then
|
|
|
|
retval = retval .. fgettext("re-Install") .."]"
|
|
|
|
else
|
|
|
|
retval = retval .. fgettext("Install") .."]"
|
|
|
|
end
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
return retval
|
|
|
|
end
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
--@function [parent=#modstore] getmodlist
|
|
|
|
function modstore.getmodlist(list,yoffset)
|
|
|
|
modstore.current_list = list
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if yoffset == nil then
|
|
|
|
yoffset = 0
|
|
|
|
end
|
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
local sb_y_start = 0.2 + yoffset
|
|
|
|
local sb_y_end = (modstore.modsperpage * 1.75) + ((modstore.modsperpage-1) * 0.15)
|
|
|
|
local close_button = "button[4," .. (sb_y_end + 0.3 + yoffset) ..
|
|
|
|
";4,0.5;btn_modstore_close;" .. fgettext("Close store") .. "]"
|
|
|
|
|
|
|
|
if #list.data == 0 then
|
|
|
|
return close_button
|
|
|
|
end
|
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
local scrollbar = ""
|
2014-04-18 09:39:15 -04:00
|
|
|
scrollbar = scrollbar .. "label[0.1,".. (sb_y_end + 0.25 + yoffset) ..";"
|
2013-12-11 17:07:38 -05:00
|
|
|
.. fgettext("Page $1 of $2", list.page+1, list.pagecount) .. "]"
|
2014-04-18 09:39:15 -04:00
|
|
|
scrollbar = scrollbar .. "box[11.6," .. sb_y_start .. ";0.28," .. sb_y_end .. ";#000000]"
|
|
|
|
local scrollbarpos = (sb_y_start + 0.5) +
|
|
|
|
((sb_y_end -1.6)/(list.pagecount-1)) * list.page
|
2013-12-11 17:07:38 -05:00
|
|
|
scrollbar = scrollbar .. "box[11.6," ..scrollbarpos .. ";0.28,0.5;#32CD32]"
|
2014-04-18 09:39:15 -04:00
|
|
|
scrollbar = scrollbar .. "button[11.6," .. (sb_y_start)
|
2013-12-11 17:07:38 -05:00
|
|
|
.. ";0.5,0.5;btn_modstore_page_up;^]"
|
2014-04-18 09:39:15 -04:00
|
|
|
scrollbar = scrollbar .. "button[11.6," .. (sb_y_start + sb_y_end - 0.5)
|
2013-12-11 17:07:38 -05:00
|
|
|
.. ";0.5,0.5;btn_modstore_page_down;v]"
|
|
|
|
|
|
|
|
local retval = ""
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
local endmod = (list.page * modstore.modsperpage) + modstore.modsperpage
|
2013-11-26 12:15:31 -05:00
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
if (endmod > #list.data) then
|
|
|
|
endmod = #list.data
|
|
|
|
end
|
|
|
|
|
|
|
|
for i=(list.page * modstore.modsperpage) +1, endmod, 1 do
|
|
|
|
--getmoddetails
|
2013-11-26 12:15:31 -05:00
|
|
|
local details = list.data[i].details
|
|
|
|
|
|
|
|
if details == nil then
|
|
|
|
details = {}
|
|
|
|
details.title = list.data[i].title
|
|
|
|
details.author = ""
|
|
|
|
details.rating = -1
|
|
|
|
details.description = ""
|
|
|
|
end
|
|
|
|
|
2013-06-23 12:30:21 -04:00
|
|
|
if details ~= nil then
|
2013-12-11 17:07:38 -05:00
|
|
|
local screenshot_ypos =
|
|
|
|
yoffset +(i-1 - (list.page * modstore.modsperpage))*1.9 +0.2
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
retval = retval .. modstore.getshortmodinfo(screenshot_ypos,
|
|
|
|
list.data[i],
|
|
|
|
details)
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
|
|
|
end
|
2014-04-18 09:39:15 -04:00
|
|
|
|
|
|
|
return retval .. scrollbar .. close_button
|
2013-06-23 12:30:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
2013-12-11 17:07:38 -05:00
|
|
|
--@function [parent=#modstore] getsearchpage
|
2014-04-18 09:39:15 -04:00
|
|
|
function modstore.getsearchpage(tabview, name, tabdata)
|
2013-11-26 12:15:31 -05:00
|
|
|
local retval = ""
|
2013-12-11 17:07:38 -05:00
|
|
|
local search = ""
|
2014-04-18 09:39:15 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
if modstore.last_search ~= nil then
|
|
|
|
search = modstore.last_search
|
|
|
|
end
|
2013-06-23 12:30:21 -04:00
|
|
|
|
2013-12-11 17:07:38 -05:00
|
|
|
retval = retval ..
|
|
|
|
"button[9.5,0.2;2.5,0.5;btn_modstore_search;".. fgettext("Search") .. "]" ..
|
|
|
|
"field[0.5,0.5;9,0.5;te_modstore_search;;" .. search .. "]"
|
|
|
|
|
|
|
|
retval = retval ..
|
|
|
|
modstore.getmodlist(
|
|
|
|
modstore.currentlist,
|
|
|
|
1.75)
|
2013-11-26 12:15:31 -05:00
|
|
|
|
|
|
|
return retval;
|
2013-07-06 04:32:58 -04:00
|
|
|
end
|
2013-07-07 15:53:40 -04:00
|
|
|
|
2014-04-18 09:39:15 -04:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
--@function [parent=#modstore] unsorted_tab
|
|
|
|
function modstore.unsorted_tab()
|
|
|
|
return modstore.getmodlist(modstore.modlist_unsorted)
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
--@function [parent=#modstore] activate_search_tab
|
|
|
|
function modstore.activate_search_tab(type, old_tab, new_tab)
|
|
|
|
|
|
|
|
if old_tab == new_tab then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
filterlist.set_filtercriteria(modstore.searchlist,modstore.last_search)
|
|
|
|
filterlist.refresh(modstore.searchlist)
|
|
|
|
modstore.modsperpage = modstore.mods_on_search_page
|
|
|
|
modstore.currentlist = {
|
|
|
|
page = 0,
|
|
|
|
pagecount =
|
|
|
|
math.ceil(filterlist.size(modstore.searchlist) / modstore.modsperpage),
|
|
|
|
data = filterlist.get_list(modstore.searchlist),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|