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
|
dofile(minetest.get_modpath("smartfs").."/smartfs.lua")
s = smartfs.create("smartfs:form",function(state)
state:size(10,7)
state:label(2,0,"lbl","SmartFS example formspec!")
state:field(7,1,3,1,"txt","Textbox")
state:image(0,0,2,2,"img","default_stone.png")
state:toggle(0,2,3,1,"tg",{"plenty..","of..","custom..","elements"})
state:checkbox(2,1,"c","Easy code",true)
local res = "smartfs.create(\"smartfs:form\",function(state)\n"
res = res .. "\tstate:size(10,7)\n"
res = res .. "\tstate:label(2,0,\"lbl\",\"SmartFS example formspec!\")\n"
res = res .. "\tstate:field(7,1,3,1,\"txt\",\"Textbox\")\n"
res = res .. "\tstate:image(0,0,2,2,\"img\",\"default_stone.png\")\n"
res = res .. "\tstate:toggle(0,2,3,1,\"tg\",{\"plenty..\",\"of..\",\"custom..\",\"elements\"})\n"
res = res .. "\tstate:checkbox(2,1,\"c\",\"Easy code\",true)\n"
res = res .. "end)"
state:textarea(1,3.5,9,4,"ta","Code:"):setText(res)
return true
end)
l = smartfs.create("smartfs:load",function(state)
state:load(minetest.get_modpath("smartfs").."/example.smartfs")
state:get("btn"):click(function(self,state)
print("Button clicked!")
end)
return true
end)
smartfs.add_to_inventory(l,"icon.png","SmartFS")
minetest.register_chatcommand("sfs_s", {
params = "",
description = "SmartFS test formspec 1: basics",
func = function(name, param)
s:show(name)
end,
})
minetest.register_chatcommand("sfs_l", {
params = "",
description = "SmartFS test formspec 2: loading",
func = function(name, param)
l:show(name)
end,
})
minetest.register_chatcommand("sfs_d", {
params = "",
description = "SmartFS test formspec 3: dynamic",
func = function(name, param)
local state = smartfs.dynamic("smartfs:dyn_form", name)
state:load(minetest.get_modpath("smartfs").."/example.smartfs")
state:get("btn"):click(function(self,state)
print("Button clicked!")
end)
state:show()
end,
})
minetest.register_chatcommand("sfs_lc", {
params = "",
description = "SmartFS test formspec 4: smartfs.create error catching",
func = function(name, param)
smartfs.create("asdinas",function() end)
end
})
|