2017-07-13 12:33:00 +00:00
|
|
|
minetest.register_craftitem("shooter_rocket:rocket", {
|
2014-07-26 20:18:10 +00:00
|
|
|
description = "Rocket",
|
|
|
|
stack_max = 1,
|
|
|
|
inventory_image = "shooter_rocket_inv.png",
|
|
|
|
})
|
|
|
|
|
2017-07-13 12:33:00 +00:00
|
|
|
minetest.register_entity("shooter_rocket:rocket_entity", {
|
2014-07-26 20:18:10 +00:00
|
|
|
physical = false,
|
|
|
|
timer = 0,
|
|
|
|
visual = "cube",
|
|
|
|
visual_size = {x=1/8, y=1/8},
|
|
|
|
textures = {
|
|
|
|
"shooter_bullet.png",
|
|
|
|
"shooter_bullet.png",
|
|
|
|
"shooter_bullet.png",
|
|
|
|
"shooter_bullet.png",
|
|
|
|
"shooter_bullet.png",
|
|
|
|
"shooter_bullet.png",
|
|
|
|
},
|
2019-03-15 17:55:37 +00:00
|
|
|
user = nil,
|
2014-07-26 20:18:10 +00:00
|
|
|
collisionbox = {0,0,0, 0,0,0},
|
|
|
|
on_activate = function(self, staticdata)
|
|
|
|
if staticdata == "expired" then
|
|
|
|
self.object:remove()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
self.timer = self.timer + dtime
|
|
|
|
if self.timer > 0.2 then
|
2019-03-15 17:55:37 +00:00
|
|
|
local pos = self.object:get_pos()
|
2015-12-16 18:18:23 +00:00
|
|
|
local above = {x=pos.x, y=pos.y + 1, z=pos.z}
|
2014-07-26 20:18:10 +00:00
|
|
|
if minetest.get_node(pos).name ~= "air" then
|
2019-03-15 17:55:37 +00:00
|
|
|
if self.user then
|
|
|
|
local player = minetest.get_player_by_name(self.user)
|
|
|
|
if player then
|
2019-03-16 19:33:08 +00:00
|
|
|
shooter.blast(above, 4, 50, 8, player)
|
2019-03-15 17:55:37 +00:00
|
|
|
end
|
|
|
|
end
|
2014-07-26 20:18:10 +00:00
|
|
|
self.object:remove()
|
|
|
|
end
|
|
|
|
self.timer = 0
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
get_staticdata = function(self)
|
|
|
|
return "expired"
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2017-07-13 12:33:00 +00:00
|
|
|
minetest.register_tool("shooter_rocket:rocket_gun_loaded", {
|
2014-07-26 20:18:10 +00:00
|
|
|
description = "Rocket Gun",
|
|
|
|
inventory_image = "shooter_rocket_gun_loaded.png",
|
|
|
|
groups = {not_in_creative_inventory=1},
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
2019-03-15 17:55:37 +00:00
|
|
|
itemstack:add_wear(65535 / 50)
|
2014-07-26 20:18:10 +00:00
|
|
|
end
|
2017-07-13 12:33:00 +00:00
|
|
|
itemstack = "shooter_rocket:rocket_gun 1 "..itemstack:get_wear()
|
2014-07-26 20:18:10 +00:00
|
|
|
if pointed_thing.type ~= "nothing" then
|
|
|
|
local pointed = minetest.get_pointed_thing_position(pointed_thing)
|
2019-03-15 17:55:37 +00:00
|
|
|
if vector.distance(user:get_pos(), pointed) < 8 then
|
2019-03-16 19:33:08 +00:00
|
|
|
shooter.blast(pointed, 2, 50, 7)
|
2014-07-26 20:18:10 +00:00
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
end
|
2019-03-15 17:55:37 +00:00
|
|
|
local pos = user:get_pos()
|
2014-07-26 20:18:10 +00:00
|
|
|
local dir = user:get_look_dir()
|
2019-03-15 17:55:37 +00:00
|
|
|
local yaw = user:get_look_horizontal()
|
2014-07-26 20:18:10 +00:00
|
|
|
if pos and dir and yaw then
|
2019-03-15 17:55:37 +00:00
|
|
|
pos.y = pos.y + shooter.config.camera_height
|
2017-07-13 12:33:00 +00:00
|
|
|
local obj = minetest.add_entity(pos, "shooter_rocket:rocket_entity")
|
2014-07-26 20:18:10 +00:00
|
|
|
if obj then
|
|
|
|
minetest.sound_play("shooter_rocket_fire", {object=obj})
|
2019-03-15 17:55:37 +00:00
|
|
|
obj:set_velocity(vector.multiply(dir, 20))
|
|
|
|
obj:set_acceleration({x=dir.x * -3, y=-10, z=dir.z * -3})
|
|
|
|
obj:set_yaw(yaw + math.pi / 2)
|
2014-07-26 20:18:10 +00:00
|
|
|
local ent = obj:get_luaentity()
|
|
|
|
if ent then
|
2019-03-15 17:55:37 +00:00
|
|
|
ent.user = user:get_player_name()
|
2014-07-26 20:18:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return itemstack
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2017-07-13 12:33:00 +00:00
|
|
|
minetest.register_tool("shooter_rocket:rocket_gun", {
|
2014-07-26 20:18:10 +00:00
|
|
|
description = "Rocket Gun",
|
|
|
|
inventory_image = "shooter_rocket_gun.png",
|
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
|
|
|
local inv = user:get_inventory()
|
2017-07-13 12:33:00 +00:00
|
|
|
if inv:contains_item("main", "shooter_rocket:rocket") then
|
2014-07-26 20:18:10 +00:00
|
|
|
minetest.sound_play("shooter_reload", {object=user})
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
2017-07-13 12:33:00 +00:00
|
|
|
inv:remove_item("main", "shooter_rocket:rocket 1")
|
2014-07-26 20:18:10 +00:00
|
|
|
end
|
2017-07-13 12:33:00 +00:00
|
|
|
itemstack = "shooter_rocket:rocket_gun_loaded 1 "..itemstack:get_wear()
|
2014-07-26 20:18:10 +00:00
|
|
|
else
|
|
|
|
minetest.sound_play("shooter_click", {object=user})
|
|
|
|
end
|
|
|
|
return itemstack
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2018-01-05 20:02:18 +00:00
|
|
|
if shooter.config.enable_crafting == true then
|
2014-07-26 20:18:10 +00:00
|
|
|
minetest.register_craft({
|
2017-07-13 12:33:00 +00:00
|
|
|
output = "shooter_rocket:rocket_gun",
|
2014-07-26 20:18:10 +00:00
|
|
|
recipe = {
|
|
|
|
{"default:bronze_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
|
|
{"", "", "default:diamond"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
2017-07-13 12:33:00 +00:00
|
|
|
output = "shooter_rocket:rocket",
|
2014-07-26 20:18:10 +00:00
|
|
|
recipe = {
|
|
|
|
{"default:bronze_ingot", "tnt:gunpowder", "default:bronze_ingot"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2017-07-13 12:33:00 +00:00
|
|
|
--Backwards compatibility
|
|
|
|
minetest.register_alias("shooter:rocket", "shooter_rocket:rocket")
|
|
|
|
minetest.register_alias("shooter:rocket_gun", "shooter_rocket:rocket_gun")
|
|
|
|
minetest.register_alias("shooter:rocket_gun_loaded", "shooter_rocket:rocket_gun_loaded")
|
|
|
|
|
|
|
|
|