VoxeLibre/mods/mcl_boats/init.lua

178 lines
3.7 KiB
Lua
Raw Normal View History

2015-06-29 19:55:56 +02:00
--
-- Helper functions
--
local init = os.clock()
2015-06-29 19:55:56 +02:00
local function is_water(pos)
local nn = minetest.get_node(pos).name
return minetest.get_item_group(nn, "water") ~= 0
end
local function get_velocity(v, yaw, y)
local x = -math.sin(yaw)*v
local z = math.cos(yaw)*v
return {x=x, y=y, z=z}
end
--
-- boat entity
--
local boat = {
physical = true,
collisionbox = {-1,-0.5,-1, 1,0.5,1},
visual = "mesh",
2017-01-16 18:49:45 +01:00
mesh = "mcl_boats_base.x",
textures = {"mcl_boats_texture.png"},
2017-01-16 18:47:04 +01:00
_driver = nil,
_v = 0,
_stepcount = 0,
_unattended = 0
2015-06-29 19:55:56 +02:00
}
function boat.on_rightclick(self, clicker)
if not clicker or not clicker:is_player() then
return
end
2017-01-16 18:47:04 +01:00
if self._driver and clicker == self._driver then
self._driver = nil
2015-06-29 19:55:56 +02:00
clicker:set_detach()
2017-01-16 18:47:04 +01:00
elseif not self._driver then
self._driver = clicker
2015-06-29 19:55:56 +02:00
clicker:set_attach(self.object, "", {x=0,y=5,z=0}, {x=0,y=0,z=0})
self.object:setyaw(clicker:get_look_yaw())
end
end
function boat.on_activate(self, staticdata, dtime_s)
self.object:set_armor_groups({immortal=1})
if staticdata then
2017-01-16 18:47:04 +01:00
self._v = tonumber(staticdata)
2015-06-29 19:55:56 +02:00
end
end
function boat.get_staticdata()
return tostring(v)
end
function boat.on_punch(self, puncher, time_from_last_punch, tool_capabilities, direction)
2017-01-16 18:47:04 +01:00
if self._driver then
self._driver:set_detach()
self._driver = nil
2015-06-29 19:55:56 +02:00
if not minetest.setting_getbool("creative_mode") then
2017-01-16 18:49:45 +01:00
puncher:get_inventory():add_item("main", "mcl_boats:boat")
2015-06-29 19:55:56 +02:00
end
self.object:remove()
2015-06-29 19:55:56 +02:00
else
if not minetest.setting_getbool("creative_mode") then
2017-01-16 18:49:45 +01:00
puncher:get_inventory():add_item("main", "mcl_boats:boat")
2015-06-29 19:55:56 +02:00
end
self.object:remove()
2015-06-29 19:55:56 +02:00
end
end
function boat.on_step(self, dtime)
2017-01-16 18:47:04 +01:00
self._stepcount=self._stepcount+1
if self._stepcount>9 then
2015-06-29 19:55:56 +02:00
2017-01-16 18:47:04 +01:00
self._stepcount=0
2015-06-29 19:55:56 +02:00
2017-01-16 18:47:04 +01:00
if self._driver then
local ctrl = self._driver:get_player_control()
2015-06-29 19:55:56 +02:00
2017-01-16 18:47:04 +01:00
self._unattended=0
2015-06-29 19:55:56 +02:00
local yaw = self.object:getyaw()
2017-01-16 18:47:04 +01:00
if ctrl.up and self._v<3 then
self._v = self._v + 1
2015-06-29 19:55:56 +02:00
end
2017-01-16 18:47:04 +01:00
if ctrl.down and self._v>=-1 then
self._v = self._v - 1
2015-06-29 19:55:56 +02:00
end
if ctrl.left then
if ctrl.down then
self.object:setyaw(yaw-math.pi/12-dtime*math.pi/12)
else
self.object:setyaw(yaw+math.pi/12+dtime*math.pi/12)
end
end
if ctrl.right then
if ctrl.down then
self.object:setyaw(yaw+math.pi/12+dtime*math.pi/12)
else
self.object:setyaw(yaw-math.pi/12-dtime*math.pi/12)
end
end
end
2017-01-16 18:47:04 +01:00
local tmp_velocity = get_velocity(self._v, self.object:getyaw(), 0)
2015-06-29 19:55:56 +02:00
local tmp_pos = self.object:getpos()
tmp_velocity.y=0
if is_water(tmp_pos) then
tmp_velocity.y=2
end
tmp_pos.y=tmp_pos.y-0.5
if minetest.get_node(tmp_pos).name=="air" then
tmp_velocity.y=-2
end
self.object:setvelocity(tmp_velocity)
end
end
2017-01-16 18:49:45 +01:00
minetest.register_entity("mcl_boats:boat", boat)
2015-06-29 19:55:56 +02:00
2017-01-16 18:49:45 +01:00
minetest.register_craftitem("mcl_boats:boat", {
2015-06-29 19:55:56 +02:00
description = "Boat",
2017-01-16 18:49:45 +01:00
inventory_image = "mcl_boats_inventory.png",
2015-06-29 19:55:56 +02:00
liquids_pointable = true,
2017-01-10 06:43:07 +01:00
groups = { boat = 1, },
2015-06-29 19:55:56 +02:00
on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" then
return
end
if not is_water(pointed_thing.under) then
return
end
pointed_thing.under.y = pointed_thing.under.y+0.5
2017-01-16 18:49:45 +01:00
minetest.add_entity(pointed_thing.under, "mcl_boats:boat")
2015-06-29 19:55:56 +02:00
if not minetest.setting_getbool("creative_mode") then
itemstack:take_item()
end
return itemstack
end,
})
minetest.register_craft({
2017-01-16 18:49:45 +01:00
output = "mcl_boats:boat",
2015-06-29 19:55:56 +02:00
recipe = {
{"", "", ""},
2017-01-04 07:04:47 +01:00
{"default:wood", "", "default:wood"},
{"default:wood", "default:wood", "default:wood"},
2015-06-29 19:55:56 +02:00
},
})
2017-01-10 06:43:07 +01:00
minetest.register_craft({
type = "fuel",
recipe = "group:boat",
burntime = 20,
})
local time_to_load= os.clock() - init
print(string.format("[MOD] "..minetest.get_current_modname().." loaded in %.4f s", time_to_load))