2020-03-14 21:51:24 +00:00
|
|
|
local function recursive_multiply(source, multiplier)
|
|
|
|
for key, value in pairs(multiplier) do
|
|
|
|
assert(type(source[key]) == type(value))
|
|
|
|
if type(value) == "table" then
|
|
|
|
recursive_multiply(source[key], value)
|
|
|
|
else
|
|
|
|
source[key] = source[key] * value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-03-22 04:01:36 +00:00
|
|
|
|
2020-03-13 23:26:53 +00:00
|
|
|
local function get_shooter_specs(weapon_name, multiplier)
|
|
|
|
local spec = shooter.registered_weapons[weapon_name]
|
2019-03-22 04:01:36 +00:00
|
|
|
if not spec then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
2020-03-14 21:51:24 +00:00
|
|
|
spec = table.copy(spec.spec)
|
2019-03-22 04:01:36 +00:00
|
|
|
|
2020-03-14 21:51:24 +00:00
|
|
|
if multiplier then
|
|
|
|
recursive_multiply(spec, multiplier)
|
2020-03-14 17:22:55 +00:00
|
|
|
end
|
|
|
|
|
2019-03-22 04:01:36 +00:00
|
|
|
return spec
|
|
|
|
end
|
|
|
|
|
2020-03-14 21:51:24 +00:00
|
|
|
shooter.get_weapon_spec = function(user, weapon_name)
|
2020-03-13 23:26:53 +00:00
|
|
|
local class = ctf_classes.get(user)
|
|
|
|
|
|
|
|
if table.indexof(class.properties.allowed_guns or {}, weapon_name) == -1 then
|
|
|
|
minetest.chat_send_player(user:get_player_name(),
|
|
|
|
"Your class can't use that weapon! Change your class at spawn")
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
local spec = get_shooter_specs(weapon_name, class.properties.shooter_multipliers)
|
2020-03-14 21:51:24 +00:00
|
|
|
if not spec then
|
|
|
|
return nil
|
|
|
|
end
|
2020-03-13 23:26:53 +00:00
|
|
|
|
|
|
|
return spec
|
|
|
|
end
|
|
|
|
|
2019-03-22 04:01:36 +00:00
|
|
|
|
|
|
|
local function check_grapple(itemname)
|
|
|
|
local def = minetest.registered_items[itemname]
|
|
|
|
local old_func = def.on_use
|
|
|
|
minetest.override_item(itemname, {
|
|
|
|
on_use = function(itemstack, user, ...)
|
2020-03-14 19:37:31 +00:00
|
|
|
if not ctf_classes.get(user).properties.allow_grapples then
|
2019-03-22 04:01:36 +00:00
|
|
|
minetest.chat_send_player(user:get_player_name(),
|
2020-03-13 23:26:53 +00:00
|
|
|
"Your class can't use that weapon! Change your class at spawn")
|
2019-03-22 04:01:36 +00:00
|
|
|
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2020-03-13 21:58:42 +00:00
|
|
|
if ctf_flag.has_flag(user:get_player_name()) then
|
|
|
|
minetest.chat_send_player(user:get_player_name(),
|
|
|
|
"You can't use grapples whilst carrying the flag")
|
|
|
|
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2019-03-22 04:01:36 +00:00
|
|
|
return old_func(itemstack, user, ...)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2020-03-14 21:51:24 +00:00
|
|
|
check_grapple("shooter_hook:grapple_gun_loaded")
|
|
|
|
check_grapple("shooter_hook:grapple_gun")
|
|
|
|
check_grapple("shooter_hook:grapple_hook")
|