summaryrefslogtreecommitdiff
path: root/chatcommands.lua
blob: 22c4d8e120f569b708ea06e40010ab3991e2ace4 (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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
minetest.register_chatcommand("protect", {
	params = "<AreaName>",
	description = "Protect your own area",
	privs = {[areas.self_protection_privilege]=true},
	func = function(name, param)
		if param ~= "" then

			local pos1, pos2 = {}, {}
			if areas:getPos1(name) and areas:getPos2(name) then
				pos1 = areas:getPos1(name)
				pos2 = areas:getPos2(name)
				pos1, pos2 = areas:sortPos(pos1, pos2)
			else
				minetest.chat_send_player(name, 'You need to select an area first')
				return
			end

			minetest.log("action", "/protect invoked, owner="..name..
					" areaname="..param..
					" startpos="..minetest.pos_to_string(pos1)..
					" endpos="  ..minetest.pos_to_string(pos2))

			local canAdd, errMsg = areas:canPlayerAddArea(pos1, pos2, name)
			if not canAdd then
				minetest.chat_send_player(name, "You can't protect that area: "..errMsg)
				return
			end

			areas:add(name, param, pos1, pos2, nil)
			areas:save()
		
			minetest.chat_send_player(name, "Area protected")
		else
			minetest.chat_send_player(name, 'Invalid usage, see /help protect')
		end
end})


minetest.register_chatcommand("set_owner", {
	params = "<PlayerName> <AreaName>",
	description = "Protect an area beetween two positions and give a player access to it without setting the parent of the area to any existing area",
	privs = {areas=true},
	func = function(name, param)
		if param and param ~= "" then
			local found, _, ownername, areaname = param:find('^([^%s]+)%s(.+)$')

			if not found then
				minetest.chat_send_player(name, "Incorrect usage, see /help set_owner")
				return
			end

			local pos1, pos2 = {}, {}
			if areas:getPos1(name) and areas:getPos2(name) then
				pos1 = areas:getPos1(name)
				pos2 = areas:getPos2(name)
				pos1, pos2 = areas:sortPos(pos1, pos2)
			else
				minetest.chat_send_player(name, 'You need to select an area first')
				return
			end

			if not areas:player_exists(ownername) then
				minetest.chat_send_player(name, 'The player "'..ownername..'" does not exist')
				return
			end

			--local canAdd, errMsg = areas:canPlayerAddArea(pos1, pos2, name)
			--if not canAdd then
			--	minetest.chat_send_player(name, "You can't protect that area: "..errMsg)
			--	return
			--end

			minetest.log("action", "/set_owner invoked, Owner="..ownername..
					" AreaName="..areaname..
					" StartPos="..minetest.pos_to_string(pos1)..
					" EndPos="  ..minetest.pos_to_string(pos2))

			areas:add(ownername, areaname, pos1, pos2, nil)
			areas:save()
		
			minetest.chat_send_player(ownername, "A concession has been granted to you! Type /list_areas to show your concessions.")
			minetest.chat_send_player(name, "Area protected")
		else
			minetest.chat_send_player(name, 'Invalid usage, see /help set_owner')
		end
end})


minetest.register_chatcommand("add_owner", {
	params = "<ParentID> <Player> <AreaName>",
	description = "Give a player access to a sub-area beetween two positions that have already been protected, use set_owner if you don't want the parent to be set",
	privs = {},
	func = function(name, param)
		if param and param ~= "" then
			local found, _, pid, ownername, areaname = param:find('^(%d+)%s([^%s]+)%s(.+)$')

			if not found then
				minetest.chat_send_player(name, "Incorrect usage, see /help set_owner")
				return
			end

			local pos1, pos2 = {}, {}
			if areas:getPos1(name) and areas:getPos2(name) then
				pos1 = areas:getPos1(name)
				pos2 = areas:getPos2(name)
				pos1, pos2 = areas:sortPos(pos1, pos2)
			else
				minetest.chat_send_player(name, 'You need to select an area first')
				return
			end

			if not areas:player_exists(ownername) then
				minetest.chat_send_player(name, 'The player "'..ownername..'" does not exist')
				return
			end

			minetest.log("action", "add_owner invoked, Owner = "..ownername..
					" AreaName = "..areaname.." ParentID = "..pid..
					" StartPos = "..pos1.x..","..pos1.y..","..pos1.z..
					" EndPos = "  ..pos2.x..","..pos2.y..","..pos2.z)

			--Look to see if this new area is inside an area owned by the player using this function
			pid = tonumber(pid)
			if (not areas:isAreaOwner(pid, name)) or
			   (not areas:isSubarea(pos1, pos2, pid)) then
				minetest.chat_send_player(name, "You can't protect that area")
				return
			end

			areas:add(ownername, areaname, pos1, pos2, pid)
			areas:save()
		
			minetest.chat_send_player(ownername, "A concession has been granted to you! Type /list_areas to show your concessions.")
			minetest.chat_send_player(name, "You granted "..ownername.." a concession successfully!")
		else
			minetest.chat_send_player(name, 'Invalid usage, see /help add_owner')
		end
end})


minetest.register_chatcommand("rename_area", {
	params = "<ID> <newName>",
	description = "Rename a area that you own",
	privs = {},
	func = function(name, param)
	local found, _, id, newName = param:find("^(%d+)%s(.+)$")

	if not found then
		minetest.chat_send_player(name, "Invalid usage, see /help rename_area")
		return
	end

	index = areas:getIndexById(tonumber(id))

	if not index then
		minetest.chat_send_player(name, "That area doesn't exist")
		return
	end

	if not areas:isAreaOwner(id, name) then
		minetest.chat_send_player(name, "You don't own that area")
		return
	end

	areas.areas[index].name = newName
	areas:save()
end})


minetest.register_chatcommand("list_owners", {
	params = "",
	description = "list the players that can edit the area you are in",
	privs = {},
	func = function(name, param)
		local owners = areas:getNodeOwners(vector.round(minetest.get_player_by_name(name):getpos()))
		if #owners > 0 then
			minetest.chat_send_player(name, "Owners: "..table.concat(owners, ", "))
		else
			minetest.chat_send_player(name, "Your position is unowned")
		end
end})


minetest.register_chatcommand("find_areas", {
	params = "<regexp>",
	description = "Find areas using a Lua regular expression",
	privs = {},
	func = function(name, param)
		if param and param ~= "" then
			local found = false
			for _, area in pairs(areas.areas) do
				if areas:isAreaOwner(area.id, name) and
				   areas:toString(area):find(param) then
					minetest.chat_send_player(name, areas:toString(area))
					found = true
				end
			end
			if not found then
				minetest.chat_send_player(name, "No matches found")
			end
		else
			minetest.chat_send_player(name, "Regular expression required")
		end
end})


minetest.register_chatcommand("list_areas", {
	params = "",
	description = "list the areas you own, or all areas if you have privileges",
	privs = {},
	func = function(name, param)
		admin = minetest.check_player_privs(name, {areas=true})
		if admin then
			minetest.chat_send_player(name, "Showing all owner entries.")
		else
			minetest.chat_send_player(name, "Showing your owner entries (You can only modify these).")
		end
		for _, area in pairs(areas.areas) do
			if admin or area.owner == name then
				minetest.chat_send_player(name, areas:toString(area))
			end
		end
end})


minetest.register_chatcommand("recursive_remove_areas", {
	params = "<id>",
	description = "Recursively remove areas using an id",
	privs = {},
	func = function(name, param)
		local id = tonumber(param)
		if not id then
			minetest.chat_send_player(name, 'Invalid usage, see /help recursive_remove_areas')
			minetest.chat_send_player(name, 'Use /list_areas to see entries')
			return
		end

		if areas:isAreaOwner(id, name) then
			areas:remove(id, true)
			areas:sort()
			areas:save()
		else
			minetest.chat_send_player(name, "Area "..id.." does not exist or is not owned by you")
			return
		end
		minetest.chat_send_player(name, 'Removed area '..id..'and sub areas')
end})


minetest.register_chatcommand("remove_area", {
	params = "<id>",
	description = "Remove an area using an id",
	privs = {},
	func = function(name, param)
		local id = tonumber(param)
		if not id then
			minetest.chat_send_player(name, 'Invalid usage, see /help remove_area')
			minetest.chat_send_player(name, 'Use /list_areas to see entries')
			return
		end

		if areas:isAreaOwner(id, name) then
			areas:remove(id, false)
			areas:sort()
			areas:save()
		else
			minetest.chat_send_player(name, "Area "..id.." does not exist or is not owned by you")
			return
		end
		minetest.chat_send_player(name, 'Removed area '..id)
end})


minetest.register_chatcommand("change_owner", {
	params = "<id> <newplayer>",
	description = "change the owner of an area using its id",
	privs = {},
	func = function(name, param)
		local found, _, id, new_owner = param:find('^(%d+)%s+([^%s]+)$')
		
		if not found then
			minetest.chat_send_player(name, 'Invalid usage, see /help change_area_owner')
			minetest.chat_send_player(name, 'Use /list_areas to see entries')
			return
		end
		
		if not areas:player_exists(new_owner) then
			minetest.chat_send_player(name, 'The player "'..new_owner..'" does not exist')
			return
		end

		id = tonumber(id)
		if areas:isAreaOwner(id, name) then
			areas.areas[areas:getIndexById(id)].owner = new_owner
			areas:save()
			minetest.chat_send_player(name, 'Owner changed succesfully')
			minetest.chat_send_player(new_owner, name..'" has granted you a concession!')
		else
			minetest.chat_send_player(new_owner, "Area "..id.." does not exist or is not owned by you")
		end
end})