2019-03-21 01:36:59 +00:00
|
|
|
ctf_classes = {
|
|
|
|
__classes = {},
|
|
|
|
__classes_ordered = {},
|
2020-03-13 23:26:53 +00:00
|
|
|
|
|
|
|
default_class = "knight",
|
2019-03-21 01:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dofile(minetest.get_modpath("ctf_classes") .. "/api.lua")
|
|
|
|
dofile(minetest.get_modpath("ctf_classes") .. "/gui.lua")
|
2019-03-22 03:18:45 +00:00
|
|
|
dofile(minetest.get_modpath("ctf_classes") .. "/regen.lua")
|
2019-03-22 04:01:36 +00:00
|
|
|
dofile(minetest.get_modpath("ctf_classes") .. "/ranged.lua")
|
2020-03-13 21:58:42 +00:00
|
|
|
dofile(minetest.get_modpath("ctf_classes") .. "/items.lua")
|
2019-03-21 01:36:59 +00:00
|
|
|
|
2020-03-13 23:26:53 +00:00
|
|
|
|
2019-03-21 01:36:59 +00:00
|
|
|
ctf_classes.register("knight", {
|
|
|
|
description = "Knight",
|
2019-03-22 04:31:57 +00:00
|
|
|
pros = { "+50% Health Points" },
|
2019-03-21 01:36:59 +00:00
|
|
|
cons = { "-10% speed" },
|
|
|
|
color = "#ccc",
|
2019-03-22 04:31:57 +00:00
|
|
|
properties = {
|
|
|
|
max_hp = 30,
|
|
|
|
speed = 0.90,
|
2020-03-13 21:58:42 +00:00
|
|
|
|
2020-03-14 17:50:24 +00:00
|
|
|
initial_stuff = {
|
2020-03-13 23:53:30 +00:00
|
|
|
"default:sword_steel",
|
|
|
|
},
|
|
|
|
|
2020-03-13 23:26:53 +00:00
|
|
|
allowed_guns = {
|
|
|
|
"shooter:pistol",
|
|
|
|
"shooter:smg",
|
|
|
|
"shooter:shotgun",
|
|
|
|
},
|
2019-03-22 04:31:57 +00:00
|
|
|
},
|
2019-03-21 01:36:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
ctf_classes.register("shooter", {
|
2020-03-13 21:58:42 +00:00
|
|
|
description = "Sharp Shooter",
|
2020-03-13 23:53:30 +00:00
|
|
|
pros = { "+50% range", "+20% faster shooting" },
|
2020-03-13 21:58:42 +00:00
|
|
|
cons = {},
|
2019-03-21 01:36:59 +00:00
|
|
|
color = "#c60",
|
2019-03-22 04:31:57 +00:00
|
|
|
properties = {
|
2020-03-14 17:50:24 +00:00
|
|
|
initial_stuff = {
|
2020-03-13 21:58:42 +00:00
|
|
|
"shooter:rifle",
|
|
|
|
"shooter:grapple_gun_loaded",
|
2020-03-13 23:26:53 +00:00
|
|
|
},
|
|
|
|
|
2020-03-14 17:50:24 +00:00
|
|
|
additional_item_blacklist = {
|
|
|
|
"shooter:grapple_gun",
|
|
|
|
"shooter:grapple_hook",
|
|
|
|
},
|
|
|
|
|
2020-03-13 23:26:53 +00:00
|
|
|
allowed_guns = {
|
|
|
|
"shooter:pistol",
|
|
|
|
"shooter:rifle",
|
|
|
|
"shooter:smg",
|
|
|
|
"shooter:shotgun",
|
|
|
|
},
|
|
|
|
|
|
|
|
shooter_multipliers = {
|
|
|
|
range = 1.5,
|
|
|
|
full_punch_interval = 0.8,
|
|
|
|
},
|
2019-03-22 04:31:57 +00:00
|
|
|
},
|
2019-03-21 01:36:59 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
ctf_classes.register("medic", {
|
|
|
|
description = "Medic",
|
2019-03-22 04:31:57 +00:00
|
|
|
pros = { "x2 regen for nearby friendlies" },
|
2020-03-13 23:53:30 +00:00
|
|
|
cons = {},
|
2019-03-21 01:36:59 +00:00
|
|
|
color = "#0af",
|
2019-03-22 04:31:57 +00:00
|
|
|
properties = {
|
2020-03-14 17:50:24 +00:00
|
|
|
initial_stuff = {
|
2020-03-13 21:58:42 +00:00
|
|
|
"ctf_bandages:bandage 20",
|
|
|
|
},
|
2020-03-13 23:26:53 +00:00
|
|
|
|
|
|
|
allowed_guns = {
|
|
|
|
"shooter:pistol",
|
|
|
|
"shooter:smg",
|
|
|
|
"shooter:shotgun",
|
|
|
|
},
|
2019-03-22 04:31:57 +00:00
|
|
|
},
|
2019-03-21 01:36:59 +00:00
|
|
|
})
|
|
|
|
|
2020-03-14 17:22:55 +00:00
|
|
|
ctf_classes.register("rocketeer", {
|
|
|
|
description = "Rocketeer",
|
|
|
|
pros = { "Can craft rockets" },
|
|
|
|
cons = {},
|
|
|
|
color = "#fa0",
|
|
|
|
properties = {
|
2020-03-14 17:50:24 +00:00
|
|
|
initial_stuff = {
|
2020-03-14 17:22:55 +00:00
|
|
|
"shooter:rocket_gun_loaded",
|
|
|
|
"shooter:rocket 4",
|
|
|
|
},
|
|
|
|
|
2020-03-14 17:50:24 +00:00
|
|
|
additional_item_blacklist = {
|
|
|
|
"shooter:rocket_gun",
|
|
|
|
},
|
|
|
|
|
2020-03-14 17:22:55 +00:00
|
|
|
allowed_guns = {
|
|
|
|
"shooter:pistol",
|
|
|
|
"shooter:smg",
|
|
|
|
"shooter:shotgun",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2019-03-22 04:31:57 +00:00
|
|
|
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
|
|
ctf_classes.update(player)
|
|
|
|
|
|
|
|
if minetest.check_player_privs(player, { interact = true }) then
|
|
|
|
ctf_classes.show_gui(player:get_player_name())
|
|
|
|
end
|
|
|
|
end)
|
2019-03-21 01:36:59 +00:00
|
|
|
|
2020-03-13 21:58:42 +00:00
|
|
|
ctf_flag.register_on_pick_up(function(name)
|
|
|
|
ctf_classes.update(minetest.get_player_by_name(name))
|
|
|
|
end)
|
|
|
|
|
|
|
|
ctf_flag.register_on_drop(function(name)
|
|
|
|
ctf_classes.update(minetest.get_player_by_name(name))
|
|
|
|
end)
|
|
|
|
|
2019-03-21 01:36:59 +00:00
|
|
|
minetest.register_chatcommand("class", {
|
|
|
|
func = function(name, params)
|
|
|
|
local player = minetest.get_player_by_name(name)
|
|
|
|
if not player then
|
|
|
|
return false, "You must be online to do this!"
|
|
|
|
end
|
|
|
|
|
|
|
|
if not ctf_classes.can_change(player) then
|
2020-03-13 23:26:53 +00:00
|
|
|
return false, "Move closer to your flag to change classes!"
|
2019-03-21 01:36:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
local cname = params:trim()
|
|
|
|
if params == "" then
|
|
|
|
ctf_classes.show_gui(name)
|
|
|
|
else
|
|
|
|
if ctf_classes.__classes[cname] then
|
|
|
|
ctf_classes.set(player, cname)
|
|
|
|
return true, "Set class to " .. cname
|
|
|
|
else
|
|
|
|
return false, "Class '" .. cname .. "' does not exist"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
ctf_colors.set_skin = function(player, color)
|
|
|
|
ctf_classes.set_skin(player, color, ctf_classes.get(player))
|
|
|
|
end
|
|
|
|
|
|
|
|
local flags = {
|
|
|
|
"ctf_flag:flag",
|
|
|
|
"ctf_flag:flag_top_red",
|
|
|
|
"ctf_flag:flag_top_blue",
|
|
|
|
}
|
|
|
|
|
2019-03-22 03:18:45 +00:00
|
|
|
for _, flagname in pairs(flags) do
|
|
|
|
local old_func = minetest.registered_nodes[flagname].on_punch
|
|
|
|
local function on_punch(pos, node, player, ...)
|
2019-03-22 04:31:57 +00:00
|
|
|
local fpos = pos
|
|
|
|
if node.name:sub(1, 18) == "ctf_flag:flag_top_" then
|
|
|
|
fpos = vector.new(pos)
|
|
|
|
fpos.y = fpos.y - 1
|
|
|
|
end
|
|
|
|
|
|
|
|
local class = ctf_classes.get(player)
|
|
|
|
if not class.properties.can_capture then
|
|
|
|
local pname = player:get_player_name()
|
|
|
|
local flag = ctf_flag.get(fpos)
|
|
|
|
local team = ctf.player(pname).team
|
|
|
|
if flag and flag.team and team and team ~= flag.team then
|
|
|
|
minetest.chat_send_player(pname,
|
|
|
|
"You need to change classes to capture the flag!")
|
2019-03-22 03:18:45 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return old_func(pos, node, player, ...)
|
|
|
|
end
|
2019-03-21 01:36:59 +00:00
|
|
|
local function show(_, _, player)
|
|
|
|
ctf_classes.show_gui(player:get_player_name(), player)
|
|
|
|
end
|
2019-03-22 03:18:45 +00:00
|
|
|
minetest.override_item(flagname, {
|
|
|
|
on_punch = on_punch,
|
|
|
|
on_rightclick = show,
|
|
|
|
})
|
2019-03-21 01:36:59 +00:00
|
|
|
end
|
2020-03-13 21:58:42 +00:00
|
|
|
|
|
|
|
ctf_classes.register_on_changed(function(player, old, new)
|
|
|
|
if not old then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local pname = player:get_player_name()
|
|
|
|
ctf.chat_send_team(ctf.player(pname).team,
|
|
|
|
minetest.colorize("#ABCDEF", pname .. " is now a " .. new.description))
|
|
|
|
end)
|