summaryrefslogtreecommitdiff
path: root/builtin/modstore.lua
blob: 73afc38995bb9012c4ad9628222e797718f12ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
--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 = {}

--------------------------------------------------------------------------------
function modstore.init()
	modstore.tabnames = {}
	
	table.insert(modstore.tabnames,"dialog_modstore_unsorted")
	table.insert(modstore.tabnames,"dialog_modstore_search")
	
	modstore.modsperpage = 5
	
	modstore.basetexturedir = engine.get_gamepath() .. DIR_DELIM .. ".." ..
						DIR_DELIM .. "textures" .. DIR_DELIM .. "base" .. 
						DIR_DELIM .. "pack" .. DIR_DELIM
	modstore.update_modlist()
	
	modstore.current_list = nil
	
	modstore.details_cache = {}
end
--------------------------------------------------------------------------------
function modstore.nametoindex(name)

	for i=1,#modstore.tabnames,1 do
		if modstore.tabnames[i] == name then
			return i
		end
	end

	return 1
end

--------------------------------------------------------------------------------
function modstore.gettab(tabname)
	local retval = ""
	
	local is_modstore_tab = false
	
	if tabname == "dialog_modstore_unsorted" then
		retval = modstore.getmodlist(modstore.modlist_unsorted)
		is_modstore_tab = true
	end
	
	if tabname == "dialog_modstore_search" then
	
	
		is_modstore_tab = true
	end
	
	if is_modstore_tab then
		return modstore.tabheader(tabname) .. retval
	end
	
	if tabname == "modstore_mod_installed" then
		return "size[6,2]label[0.25,0.25;Mod: " .. modstore.lastmodtitle .. 
				" installed successfully]" ..
				"button[2.5,1.5;1,0.5;btn_confirm_mod_successfull;ok]"
	end
	
	return ""
end

--------------------------------------------------------------------------------
function modstore.tabheader(tabname)
	local retval  = "size[12,9.25]"
	retval = retval .. "tabheader[-0.3,-0.99;modstore_tab;" ..
				"Unsorted,Search;" ..
				modstore.nametoindex(tabname) .. ";true;false]"
				
	return retval
end

--------------------------------------------------------------------------------
function modstore.handle_buttons(current_tab,fields)

	modstore.lastmodtitle = ""
	
	if fields["modstore_tab"] then
		local index = tonumber(fields["modstore_tab"])
		
		if index > 0 and
			index <= #modstore.tabnames then
			return {
					current_tab = modstore.tabnames[index],
					is_dialog = true,
					show_buttons = false
			}
		end
		
		modstore.modlist_page = 0
	end
	
	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
	end
	
	if fields["btn_modstore_page_down"] then
		if modstore.current_list ~= nil and 
			modstore.current_list.page <modstore.current_list.pagecount then
			modstore.current_list.page = modstore.current_list.page +1
		end
	end
	
	if fields["btn_confirm_mod_successfull"] then
		return {
					current_tab = modstore.tabnames[1],
					is_dialog = true,
					show_buttons = false
			}
	end
	
	for i=1, modstore.modsperpage, 1 do
		local installbtn = "btn_install_mod_" .. i
		
		if fields[installbtn] then
			local modlistentry = 
				modstore.current_list.page * modstore.modsperpage + i
			
			local moddetails = modstore.get_details(modstore.current_list.data[modlistentry].id)
			
			local fullurl = engine.setting_get("modstore_download_url") ..
								moddetails.download_url
			local modfilename = os.tempfolder() .. ".zip"
			print("Downloading mod from: " .. fullurl .. " to ".. modfilename)
			
			if engine.download_file(fullurl,modfilename) then
			
				modmgr.installmod(modfilename,moddetails.basename)
				
				os.remove(modfilename)
				modstore.lastmodtitle = modstore.current_list.data[modlistentry].title
				
				return {
					current_tab = "modstore_mod_installed",
					is_dialog = true,
					show_buttons = false
				}
			else
				gamedata.errormessage = "Unable to download " .. 
					moddetails.download_url .. " (internet connection?)"
			end
		end
	end
end

--------------------------------------------------------------------------------
function modstore.update_modlist()
	modstore.modlist_unsorted = {}
	modstore.modlist_unsorted.data = engine.get_modstore_list()
		
	if modstore.modlist_unsorted.data ~= nil then
		modstore.modlist_unsorted.pagecount = 
			math.floor((#modstore.modlist_unsorted.data / modstore.modsperpage))
	else
		modstore.modlist_unsorted.data = {}
		modstore.modlist_unsorted.pagecount = 0
	end
	modstore.modlist_unsorted.page = 0
end

--------------------------------------------------------------------------------
function modstore.getmodlist(list)
	local retval = ""
	retval = retval .. "label[10,-0.4;Page " .. (list.page +1) .. 
							" of " .. (list.pagecount +1) .. "]"
	
	retval = retval .. "button[11.6,-0.1;0.5,0.5;btn_modstore_page_up;^]"
	retval = retval .. "box[11.6,0.35;0.28,8.6;BLK]"
	local scrollbarpos = 0.35 + (8.1/list.pagecount) * list.page
	retval = retval .. "box[11.6," ..scrollbarpos .. ";0.28,0.5;LIM]"
	retval = retval .. "button[11.6,9.0;0.5,0.5;btn_modstore_page_down;v]"
	
	
	if #list.data < (list.page * modstore.modsperpage) then
		return retval
	end
	
	local endmod = (list.page * modstore.modsperpage) + modstore.modsperpage
	
	if (endmod > #list.data) then
		endmod = #list.data
	end

	for i=(list.page * modstore.modsperpage) +1, endmod, 1 do
		--getmoddetails
		local details = modstore.get_details(list.data[i].id)
	
		if details ~= nil then
			local screenshot_ypos = (i-1 - (list.page * modstore.modsperpage))*1.9 +0.2
			
			retval = retval .. "box[0," .. screenshot_ypos .. ";11.4,1.75;WHT]"
			
			--screenshot
			if details.screenshot_url ~= nil and
				details.screenshot_url ~= "" then
				if list.data[i].texturename == nil then
					print("downloading screenshot: " .. details.screenshot_url)
					local filename = os.tempfolder()
					
					if engine.download_file(details.screenshot_url,filename) then
						list.data[i].texturename = filename
					end
				end
			end
			
			if list.data[i].texturename == nil then
				list.data[i].texturename = modstore.basetexturedir .. "no_screenshot.png"
			end
			
			retval = retval .. "image[0,".. screenshot_ypos .. ";3,2;" .. 
					list.data[i].texturename .. "]"
			
			--title + author
			retval = retval .."label[2.75," .. screenshot_ypos .. ";" .. 
				fs_escape_string(details.title) .. " (" .. details.author .. ")]"
			
			--description
			local descriptiony = screenshot_ypos + 0.5
			retval = retval .. "textarea[3," .. descriptiony .. ";6.5,1.6;;" .. 
				fs_escape_string(details.description) .. ";]"
			--rating
			local ratingy = screenshot_ypos + 0.6
			retval = retval .."label[10.1," .. ratingy .. ";Rating: " .. details.rating .."]"
			
			--install button
			local buttony = screenshot_ypos + 1.2
			local buttonnumber = (i - (list.page * modstore.modsperpage))
			retval = retval .."button[9.6," .. buttony .. ";2,0.5;btn_install_mod_" .. buttonnumber .. ";"
			
			if modmgr.mod_exists(details.basename) then
				retval = retval .. "re-Install]"
			else
				retval = retval .. "Install]"
			end
		end
	end
	
	modstore.current_list = list
	
	return retval
end

--------------------------------------------------------------------------------
function modstore.get_details(modid) 

	if modstore.details_cache[modid] ~= nil then
		return modstore.details_cache[modid]
	end
	
	local retval = engine.get_modstore_details(tostring(modid))
	modstore.details_cache[modid] = retval
	return retval
end