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
|
-- Copyright (c) 2016 Gabriel PĂ©rez-Cerezo, licensed under WTFPL.
atm = {}
atm.balance = {}
atm.pth = minetest.get_worldpath().."/atm_accounts"
local modpath = minetest.get_modpath("atm")
function atm.showform (player)
atm.readaccounts()
if not atm.balance[player:get_player_name()] then
atm.balance[player:get_player_name()] = 30
end
local formspec =
"size[8,8.5]"..
default.gui_bg..
default.gui_bg_img..
default.gui_slots..
"label[1,0.5;Money input]" ..
"label[6,0.5;Money output]" ..
"label[3,0.25;Your account balance: $".. atm.balance[player:get_player_name()].. "]" ..
"button_exit[3,2;1,2;Quit;Quit]" ..
"item_image_button[1,1;1,1;".. "currency:minegeld" ..";i1;\n\n\b\b\b\b\b" .. "1" .."]" ..
"item_image_button[2,1;1,1;".. "currency:minegeld_5" ..";i5;\n\n\b\b\b\b\b" .. "1" .."]" ..
"item_image_button[3,1;1,1;".. "currency:minegeld_10" ..";i10;\n\n\b\b\b\b\b" .. "1" .."]" ..
"item_image_button[5,1;1,1;".. "currency:minegeld" ..";i-1;\n\n\b\b\b\b\b" .. "1" .."]" ..
"item_image_button[6,1;1,1;".. "currency:minegeld_5" ..";i-5;\n\n\b\b\b\b\b" .. "1" .."]" ..
"item_image_button[7,1;1,1;".. "currency:minegeld_10" ..";i-10;\n\n\b\b\b\b\b" .. "1" .."]" ..
"list[current_player;main;0,4.25;8,1;]"..
"list[current_player;main;0,5.5;8,3;8]"..
"listring[]"..
default.get_hotbar_bg(0, 4.25)
minetest.after((0.1), function(gui)
return minetest.show_formspec(player:get_player_name(), "atm.form",gui)
end, formspec)
end
function atm.readaccounts ()
local b = atm.balance
local file = io.open(atm.pth, "r")
if file then
repeat
local balance = file:read("*n")
if balance == nil then
break
end
local name = file:read("*l")
b[name:sub(2)] = balance
until file:read(0) == nil
io.close(file)
else
b = {}
end
end
function atm.saveaccounts()
if not atm.balance then
return
end
local data = {}
for k, v in pairs(atm.balance) do
table.insert(data, string.format("%d %s\n", v, k))
end
local output = io.open(atm.pth, "w")
output:write(table.concat(data))
io.close(output)
end
minetest.register_on_joinplayer(function(player)
atm.readaccounts()
end)
minetest.register_node("atm:atm", {
description = "ATM",
tiles = {
"atm_top.png", "atm_top.png",
"atm_side.png", "atm_side.png",
"atm_side.png", "atm_front.png"
},
paramtype2 = "facedir",
groups = {cracky=2},
legacy_facedir_simple = true,
is_ground_content = false,
sounds = default.node_sound_stone_defaults(),
can_dig = can_dig,
on_rightclick = function(pos, node, player, itemstack, pointed_thing)
atm.showform(player)
end,
})
-- Check the form
minetest.register_on_player_receive_fields(function(player, form, pressed)
if form == "atm.form" then
local n = player:get_player_name()
local amount = 0
local pinv=player:get_inventory()
for _,i in pairs({1,5,10, -1, -5, -10}) do
if pressed["i"..i] then
amount = i
break
end
end
if (atm.balance[n] + amount) < 0 then
minetest.chat_send_player(n, "Not enough money in your account")
amount = 0
end
local item = "currency:minegeld"
if amount < 0 then
if amount < -1 then
item = item .. "_" .. -amount
end
if pinv:room_for_item("main", item) then
pinv:add_item("main", item)
atm.balance[n] = atm.balance[n] + amount
else
minetest.chat_send_player(n, "Not enough room in your inventory")
end
elseif amount > 0 then
if amount > 1 then
item = item .. "_" .. amount
end
if pinv:contains_item("main", item) then
pinv:remove_item("main", item)
atm.balance[n] = atm.balance[n] + amount
else
minetest.chat_send_player(n, "Not enough money in your inventory")
end
end
atm.saveaccounts()
if not pressed.Quit and not pressed.quit then
atm.showform(player)
end
end
end)
minetest.register_craft({
output = "atm:atm",
recipe = {
{"default:steel_ingot", "default:mese_crystal", "default:steel_ingot"},
{"default:glass", "currency:minegeld_5", "default:steel_ingot"},
{"default:steel_ingot", "default:mese_crystal", "default:steel_ingot"}
}
})
dofile(modpath .. "/interest.lua")
|