]> git.lizzy.rs Git - Crafter.git/blob - mods/too_many_items/init.lua
bab0477676d72b063eecb63d777f892834c13a20
[Crafter.git] / mods / too_many_items / init.lua
1 local minetest,pairs = minetest,pairs
2
3 local tmi_master_inventory = {}
4 local pool = {}
5 local max = 7*7
6 --2x2 formspec
7 local base_inv = 
8 "size[17.2,8.75]"..
9 "background[-0.19,-0.25;9.41,9.49;main_inventory.png]"..
10 "listcolors[#8b8a89;#c9c3c6;#3e3d3e;#000000;#FFFFFF]"..
11 "list[current_player;main;0,4.5;9,1;]".. --hot bar
12 "list[current_player;main;0,6;9,3;9]".. --big part
13 "list[current_player;craft;2.5,1;2,2;]"..
14 --armor slots
15 "list[current_player;armor_head;0.25,0;1,1;]"..
16 "list[current_player;armor_torso;0.25,1;1,1;]"..
17 "list[current_player;armor_legs;0.25,2;1,1;]"..
18 "list[current_player;armor_feet;0.25,3;1,1;]"..
19 --craft preview with ring
20 "list[current_player;craftpreview;6.1,1.5;1,1;]"..
21 "listring[current_player;main]"..
22 "listring[current_player;craft]"
23 --this is the 3x3 crafting table formspec
24 local crafting_table_inv = 
25 "size[17.2,8.75]"..
26 "background[-0.19,-0.25;9.41,9.49;crafting_inventory_workbench.png]"..
27 "listcolors[#8b8a89;#c9c3c6;#3e3d3e;#000000;#FFFFFF]"..
28 "list[current_player;main;0,4.5;9,1;]".. --hot bar
29 "list[current_player;main;0,6;9,3;9]".. --big part
30 "list[current_player;craft;1.75,0.5;3,3;]"..
31 --armor slots
32 "list[current_player;armor_head;0.25,0;1,1;]"..
33 "list[current_player;armor_torso;0.25,1;1,1;]"..
34 "list[current_player;armor_legs;0.25,2;1,1;]"..
35 "list[current_player;armor_feet;0.25,3;1,1;]"..
36 --craft preview with ring
37 "list[current_player;craftpreview;6.1,1.5;1,1;]"..
38 "listring[current_player;main]"..
39 "listring[current_player;craft]"
40 --this is from Linuxdirk, thank you AspireMint for showing me this
41 local recipe_converter = function (items, width)
42     local usable_recipe = { {}, {}, {} }
43
44     -- The recipe is a shapeless recipe so all items are in one table
45     if width == 0 then
46         usable_recipe = items
47     end
48
49     -- x _ _
50     -- x _ _
51     -- x _ _
52     if width == 1 then
53         usable_recipe[1][1] = items[1] or ''
54         usable_recipe[2][1] = items[2] or ''
55         usable_recipe[3][1] = items[3] or ''
56     end
57
58     -- x x _
59     -- x x _
60     -- x x _
61     if width == 2 then
62         usable_recipe[1][1] = items[1] or ''
63         usable_recipe[1][2] = items[2] or ''
64         usable_recipe[2][1] = items[3] or ''
65         usable_recipe[2][2] = items[4] or ''
66         usable_recipe[3][1] = items[5] or ''
67         usable_recipe[3][2] = items[6] or ''
68     end
69
70     -- x x x
71     -- x x x
72     -- x x x
73     if width == 3 then
74         usable_recipe[1][1] = items[1] or ''
75         usable_recipe[1][2] = items[2] or ''
76         usable_recipe[1][3] = items[3] or ''
77         usable_recipe[2][1] = items[4] or ''
78         usable_recipe[2][2] = items[5] or ''
79         usable_recipe[2][3] = items[6] or ''
80         usable_recipe[3][1] = items[7] or ''
81         usable_recipe[3][2] = items[8] or ''
82         usable_recipe[3][3] = items[9] or ''
83     end
84     return(usable_recipe)
85 end
86
87 local map_group_to_item = {
88         ["coal"]  = "main:coal",
89         ["glass"] = "main:glass",
90         ["sand"]  = "main:sand",
91         ["stick"] = "main:stick",
92         ["stone"] = "main:cobble",
93         ["tree"]  = "main:tree",
94         ["wood"]  = "main:wood"
95 }
96
97 local get_if_group = function(item)
98         if item ~= nil and item:sub(1,6) == "group:" then
99                 local group_name = item:sub(7, item:len())
100                 local mapped_item = map_group_to_item[group_name]
101                 if mapped_item ~= nil then
102                         return(mapped_item)
103                 end
104         end
105         return(item)
106 end
107
108
109 local base_x = 0.75
110 local base_y = -0.5
111 local output = 
112 "listcolors[#8b8a89;#c9c3c6;#3e3d3e;#000000;#FFFFFF]"..
113 "list[current_player;main;0,4.5;9,1;]"..   --hot bar
114 "list[current_player;main;0,6;9,3;9]"..    --main inventory
115 "button[5,3.5;1,1;toomanyitems.back;back]" --back button
116 local recipe
117 local usable_recipe
118 local function create_craft_formspec(item)
119         --don't do air
120         if item == "" then
121                 return("")
122         end
123
124         recipe = minetest.get_craft_recipe(item)
125         
126         usable_table = recipe_converter(recipe.items, recipe.width)
127         
128         if recipe.method == "normal" then
129                 if usable_table then
130                         --shaped (regular)
131                         if recipe.width > 0 then
132                                 for x = 1,3 do
133                                         for y = 1,3 do
134                                                 item = get_if_group(usable_table[x][y])
135                                                 if item then
136                                                         output = output.."item_image_button["..base_x+y..","..base_y+x..";1,1;"..item..";"..item..";]"
137                                                 else
138                                                         output = output.."item_image_button["..base_x+y..","..base_y+x..";1,1;;;]"
139                                                 end
140                                         end
141                                 end
142                         --shapeless
143                         else
144                                 local i = 1
145                                 for x = 1,3 do
146                                         for y = 1,3 do
147                                                 item = get_if_group(usable_table[i])
148                                                 if item then
149                                                         output = output.."item_image_button["..base_x+y..","..base_y+x..";1,1;"..item..";"..item..";]"
150                                                 else
151                                                         output = output.."item_image_button["..base_x+y..","..base_y+x..";1,1;;;]"
152                                                 end
153                                                 i = i + 1
154                                         end
155                                 end
156                         end
157                 end
158         elseif recipe.method == "cooking" then
159                 item = recipe.items[1]
160                 output = output.."item_image_button["..(base_x+2)..","..(base_y+1)..";1,1;"..item..";"..item..";]"
161                 output = output.."image[2.75,1.5;1,1;default_furnace_fire_fg.png]"
162         end
163         return(output)
164 end
165
166 local function cheat_button(name)
167         if pool[name] and pool[name].cheating then
168                 return("button[11.5,7.6;2,2;toomanyitems.cheat;cheat:on]")
169         else
170                 return("button[11.5,7.6;2,2;toomanyitems.cheat;cheat:off]")
171         end
172 end
173
174
175 local form
176 local id
177 local inv
178 local item
179 local stack
180 local craft_inv
181 local name
182 local temp_pool
183 minetest.register_on_player_receive_fields(function(player, formname, fields)
184         name = player:get_player_name()
185         temp_pool = pool[name]
186
187         if formname == "" then
188                 form = base_inv
189                 id = ""
190         elseif formname == "crafting" then
191                 form = crafting_table_inv
192                 id = "crafting"
193         end
194         
195         --"next" button
196         if fields["toomanyitems.next"] then
197                 temp_pool.page = temp_pool.page + 1
198                 --page loops back to first
199                 if temp_pool.page > tmi_master_inventory.page_limit then
200                         temp_pool.page = 1
201                 end     
202                 minetest.show_formspec(name,id, form..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
203                 minetest.sound_play("lever", {to_player = name,gain=0.7})
204                 player:set_inventory_formspec(base_inv..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
205         --"prev" button
206         elseif fields["toomanyitems.prev"] then
207                 temp_pool.page = temp_pool.page - 1
208                 --page loops back to end
209                 if temp_pool.page < 1 then
210                         temp_pool.page = tmi_master_inventory.page_limit
211                 end     
212                 
213                 minetest.show_formspec(name,id, form..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
214                 minetest.sound_play("lever", {to_player = name,gain=0.7})
215                 player:set_inventory_formspec(base_inv..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
216         elseif fields["toomanyitems.back"] then
217
218                 minetest.show_formspec(name,id, form..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
219                 minetest.sound_play("lever", {to_player = name,gain=0.7})
220         --this resets the craft table
221         elseif fields.quit then
222                 inv = player:get_inventory()
223                 dump_craft(player)
224                 inv:set_width("craft", 2)
225                 inv:set_size("craft", 4)
226                 --reset the player inv
227                 --minetest.show_formspec(name,id, form..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
228         elseif fields["toomanyitems.cheat"] then
229                 --check if the player has the give priv
230                 if (not temp_pool.cheating and minetest.get_player_privs(name).give == true) or temp_pool.cheating == true then
231                         temp_pool.cheating = not temp_pool.cheating
232
233                         minetest.show_formspec(name,id, form..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
234                         minetest.sound_play("lever", {to_player = name,gain=0.7})
235                 else
236                         minetest.chat_send_player(name, "Sorry m8, server says I can't let you do that :(")
237                         minetest.sound_play("lever", {to_player = name,gain=0.7,pitch=0.7})
238                 end
239         --this is the "cheating" aka giveme function and craft recipe
240         elseif fields and type(fields) == "table" and string.match(next(fields),"toomanyitems.") then
241
242                 item = string.gsub(next(fields), "toomanyitems.", "")
243                 stack = ItemStack(item.." 64")
244                 inv = player:get_inventory()
245                 if temp_pool.cheating and minetest.get_player_privs(name).give then
246                         
247                         --room for item
248                         if inv and inv:room_for_item("main",stack) then
249                                 inv:add_item("main", stack)
250                                 minetest.sound_play("pickup", {to_player = name,gain=0.7,pitch = math.random(60,100)/100})
251                         --no room for item
252                         else
253                                 minetest.chat_send_player(name "Might want to clear your inventory")
254                                 minetest.sound_play("lever", {to_player = name,gain=0.7,pitch=0.7})
255                         end
256
257                 --this is to get the craft recipe
258                 else
259                         craft_inv = create_craft_formspec(item)
260                         if craft_inv and craft_inv ~= "" then
261                                 minetest.show_formspec(name, id, tmi_master_inventory["page_"..temp_pool.page]..craft_inv..cheat_button(name))
262                                 minetest.sound_play("lever", {to_player = name,gain=0.7})
263                         end
264                 end
265
266         end
267 end)
268
269
270 --run through the items and then set the pages
271 local item_counter = 0
272 local page = 1
273 local x = 0
274 local y = 0
275
276 minetest.register_on_mods_loaded(function()
277
278 --sort all items (There is definitely a better way to do this)
279
280 --get all craftable items
281 local all_items_table = {}
282 for index,data in pairs(minetest.registered_items) do
283         if data.name ~= "" then
284                 local recipe = minetest.get_craft_recipe(data.name)
285                 --only put in craftable items
286                 if recipe.method then                   
287                         table.insert(all_items_table,data.name)
288                 end
289         end
290 end
291
292 table.sort(all_items_table)
293
294 --dump all the items in
295
296 tmi_master_inventory["page_"..page] = "size[17.2,8.75]background[-0.19,-0.25;9.41,9.49;crafting_inventory_workbench.png]"
297
298 for _,item in pairs(all_items_table) do
299         tmi_master_inventory["page_"..page] = tmi_master_inventory["page_"..page].."item_image_button["..(9.25+x)..","..y..";1,1;"..item..";toomanyitems."..item..";]"
300         x = x + 1
301         if x > 7 then
302                 x = 0
303                 y = y + 1
304         end
305         if y > 7 then
306                 y = 0
307                 page = page + 1
308                 tmi_master_inventory["page_"..page] = "size[17.2,8.75]background[-0.19,-0.25;9.41,9.49;crafting_inventory_workbench.png]"
309         end
310 end
311
312 --add buttons and labels
313 for i = 1,page do
314         --set the last page
315         tmi_master_inventory["page_"..i] = tmi_master_inventory["page_"..i].."button[9.25,7.6;2,2;toomanyitems.prev;prev]"..
316         "button[15.25,7.6;2,2;toomanyitems.next;next]"..
317         --this is +1 so it makes more sense
318         "label[13.75,8.25;page "..i.."/"..page.."]"
319 end
320
321 tmi_master_inventory.page_limit = page
322
323 --override crafting table
324 local name
325 local temp_pool
326
327 minetest.override_item("craftingtable:craftingtable", {
328          on_rightclick = function(pos, node, player, itemstack)
329                 name = player:get_player_name()
330                 temp_pool = pool[name]
331                 player:get_inventory():set_width("craft", 3)
332                 player:get_inventory():set_size("craft", 9)
333                 minetest.show_formspec(name, "crafting", crafting_table_inv..tmi_master_inventory["page_"..temp_pool.page]..cheat_button(name))
334         end
335 })
336 end)
337
338
339 --set new players inventory up
340 local name
341 local temp_pool
342 local inv
343 minetest.register_on_joinplayer(function(player)
344         name = player:get_player_name()
345         pool[name] = {}
346         temp_pool = pool[name]
347
348         temp_pool.page = 1
349         temp_pool.cheating = false
350
351         inv = player:get_inventory()
352         inv:set_width("craft", 2)
353         inv:set_width("main", 9)
354         inv:set_size("main", 9*4)
355         inv:set_size("craft", 4)
356
357         player:set_inventory_formspec(base_inv..tmi_master_inventory["page_1"]..cheat_button(name))
358
359         player:hud_set_hotbar_itemcount(9)
360         player:hud_set_hotbar_image("inventory_hotbar.png")
361         player:hud_set_hotbar_selected_image("hotbar_selected.png")
362 end)
363
364 local name
365 minetest.register_on_leaveplayer(function(player)
366         name = player:get_player_name()
367         pool[name] = nil
368 end)