awards/triggers.lua

171 lines
4.9 KiB
Lua
Raw Normal View History

2013-02-22 18:53:42 +01:00
-- AWARDS
2014-05-02 19:48:32 +02:00
-- by Rubenwardy, CC-BY-SA
2013-02-22 18:53:42 +01:00
-------------------------------------------------------
-- this is the trigger handler file for the awards mod
-------------------------------------------------------
2013-02-23 15:53:08 +01:00
-- Function and table holders for Triggers
2014-05-02 19:48:32 +02:00
awards.onDig = {}
awards.onPlace = {}
awards.onTick = {}
awards.onDeath = {}
2013-02-22 18:53:42 +01:00
-- Trigger Handles
minetest.register_on_dignode(function(pos, oldnode, digger)
2013-11-06 19:33:01 +01:00
if not digger or not pos or not oldnode then
return
end
2013-02-22 18:53:42 +01:00
local nodedug = string.split(oldnode.name, ":")
2013-11-06 19:33:01 +01:00
if #nodedug ~= 2 then
2014-05-02 19:48:32 +02:00
minetest.log("error","Awards mod: "..oldnode.name.." is in wrong format!")
2013-11-06 19:33:01 +01:00
return
end
2014-05-02 19:48:32 +02:00
local mod = nodedug[1]
local item = nodedug[2]
2013-02-22 19:38:09 +01:00
local playern = digger:get_player_name()
2013-02-22 19:03:32 +01:00
2013-11-06 19:33:01 +01:00
if (not playern or not nodedug or not mod or not item) then
return
end
2013-11-12 20:50:25 +01:00
awards.assertPlayer(playern)
2014-05-02 19:48:32 +02:00
awards.tbv(awards.players[playern].count, mod)
awards.tbv(awards.players[playern].count[mod], item, 0)
2013-11-06 19:33:01 +01:00
2014-05-02 19:48:32 +02:00
-- Increment counter
2013-11-06 19:38:55 +01:00
awards.players[playern].count[mod][item]=awards.players[playern].count[mod][item]+1
2013-11-06 19:33:01 +01:00
-- Run callbacks and triggers
local player=digger
2013-11-06 19:38:55 +01:00
local data=awards.players[playern]
2013-11-06 19:33:01 +01:00
for i=1,# awards.onDig do
local res = nil
if type(awards.onDig[i]) == "function" then
-- Run trigger callback
res = awards.onDig[i](player,data)
elseif type(awards.onDig[i]) == "table" then
-- Handle table trigger
if not awards.onDig[i].node or not awards.onDig[i].target or not awards.onDig[i].award then
-- table running failed!
2013-11-12 20:50:25 +01:00
print("[ERROR] awards - onDig trigger "..i.." is invalid!")
2013-11-06 19:33:01 +01:00
else
-- run the table
local tnodedug = string.split(awards.onDig[i].node, ":")
local tmod=tnodedug[1]
local titem=tnodedug[2]
if tmod==nil or titem==nil or not data.count[tmod] or not data.count[tmod][titem] then
2013-02-23 13:02:02 +01:00
-- table running failed!
2013-11-06 19:33:01 +01:00
elseif data.count[tmod][titem] > awards.onDig[i].target-1 then
res=awards.onDig[i].award
2013-02-23 13:02:02 +01:00
end
end
2013-11-06 19:33:01 +01:00
end
2013-02-22 19:38:09 +01:00
2013-11-06 19:33:01 +01:00
if res then
awards.give_achievement(playern,res)
2013-02-22 19:38:09 +01:00
end
2013-02-22 18:53:42 +01:00
end
end)
2013-11-06 19:33:01 +01:00
minetest.register_on_placenode(function(pos,node,digger)
if not digger or not pos or not node or not digger:get_player_name() or digger:get_player_name()=="" then
return
end
local nodedug = string.split(node.name, ":")
if #nodedug ~= 2 then
2014-05-02 19:48:32 +02:00
minetest.log("error","Awards mod: "..node.name.." is in wrong format!")
2013-11-06 19:33:01 +01:00
return
end
2013-02-22 21:38:01 +01:00
local mod=nodedug[1]
local item=nodedug[2]
2013-11-06 19:33:01 +01:00
local playern = digger:get_player_name()
2013-02-22 21:38:01 +01:00
2013-11-06 19:33:01 +01:00
-- Run checks
if (not playern or not nodedug or not mod or not item) then
return
end
2013-11-12 20:50:25 +01:00
awards.assertPlayer(playern)
2014-05-02 19:48:32 +02:00
awards.tbv(awards.players[playern].place, mod)
awards.tbv(awards.players[playern].place[mod], item, 0)
2013-11-06 19:33:01 +01:00
2014-05-02 19:48:32 +02:00
-- Increment counter
2013-11-06 19:38:55 +01:00
awards.players[playern].place[mod][item] = awards.players[playern].place[mod][item]+1
2013-11-06 19:33:01 +01:00
-- Run callbacks and triggers
local player = digger
2013-11-06 19:38:55 +01:00
local data = awards.players[playern]
2013-11-06 19:33:01 +01:00
for i=1,# awards.onPlace do
local res = nil
if type(awards.onPlace[i]) == "function" then
-- Run trigger callback
res = awards.onPlace[i](player,data)
elseif type(awards.onPlace[i]) == "table" then
-- Handle table trigger
if not awards.onPlace[i].node or not awards.onPlace[i].target or not awards.onPlace[i].award then
2013-11-12 20:50:25 +01:00
print("[ERROR] awards - onPlace trigger "..i.." is invalid!")
2013-11-06 19:33:01 +01:00
else
-- run the table
local tnodedug = string.split(awards.onPlace[i].node, ":")
local tmod = tnodedug[1]
local titem = tnodedug[2]
if tmod==nil or titem==nil or not data.place[tmod] or not data.place[tmod][titem] then
2013-02-23 13:02:02 +01:00
-- table running failed!
2013-11-06 19:33:01 +01:00
elseif data.place[tmod][titem] > awards.onPlace[i].target-1 then
res = awards.onPlace[i].award
2013-02-23 13:02:02 +01:00
end
end
2013-11-06 19:33:01 +01:00
end
2013-02-22 21:38:01 +01:00
2013-11-06 19:33:01 +01:00
if res then
awards.give_achievement(playern,res)
2013-02-22 21:38:01 +01:00
end
end
end)
2013-02-23 16:13:21 +01:00
minetest.register_on_dieplayer(function(player)
2013-11-06 19:33:01 +01:00
-- Run checks
if not player or not player:get_player_name() or player:get_player_name()=="" then
return
end
2013-11-12 20:33:19 +01:00
local playern = player:get_player_name()
2013-11-12 20:50:25 +01:00
awards.assertPlayer(playern)
2013-11-06 19:33:01 +01:00
-- Increment counter
2014-05-02 19:48:32 +02:00
awards.players[player:get_player_name()].deaths = awards.players[player:get_player_name()].deaths + 1
2013-02-23 16:13:21 +01:00
2013-11-06 19:33:01 +01:00
-- Run callbacks and triggers
2013-11-06 19:38:55 +01:00
local data=awards.players[playern]
2013-02-23 16:13:21 +01:00
for i=1,# awards.onDeath do
local res=nil
if type(awards.onDeath[i]) == "function" then
2013-11-06 19:33:01 +01:00
-- Run trigger callback
2013-02-23 16:13:21 +01:00
res=awards.onDeath[i](player,data)
elseif type(awards.onDeath[i]) == "table" then
-- handle table here
2013-11-06 19:33:01 +01:00
if not awards.onDeath[i].target or not awards.onDeath[i].award then
2013-02-23 16:13:21 +01:00
-- table running failed!
2013-11-12 20:50:25 +01:00
print("[ERROR] awards - onDeath trigger "..i.." is invalid!")
2013-02-23 16:13:21 +01:00
else
-- run the table
2013-11-06 19:33:01 +01:00
if not data.deaths then
2013-02-23 16:13:21 +01:00
-- table running failed!
2013-11-06 19:33:01 +01:00
elseif data.deaths > awards.onDeath[i].target-1 then
res=awards.onDeath[i].award
2013-02-23 16:13:21 +01:00
end
end
end
if res~=nil then
awards.give_achievement(playern,res)
end
end
end)
2013-02-23 13:02:02 +01:00
2013-02-23 16:13:21 +01:00
minetest.register_on_newplayer(function(player)
2013-11-12 20:33:19 +01:00
local playern = player:get_player_name()
2013-11-12 20:50:25 +01:00
awards.assertPlayer(playern)
2013-02-22 20:57:24 +01:00
end)
minetest.register_on_shutdown(function()
2014-05-02 19:48:32 +02:00
awards.save()
2013-02-22 18:53:42 +01:00
end)