minetest-mod-snow/src/sled.lua

250 lines
5.8 KiB
Lua
Raw Normal View History

2014-06-04 00:34:58 +02:00
--[[
--=================
--======================================
LazyJ's Fork of Splizard's "Snow" Mod
by LazyJ
version: Umpteen and 7/5ths something or another.
2014_04_12
--======================================
--=================
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
THE LIST OF CHANGES I'VE MADE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* The HUD message that displayed when a player sat on the sled would not go away after the player
got off the sled. I spent hours on trial-and-error while reading the lua_api.txt and scrounging
the Internet for a needle-in-the-haystack solution as to why the hud_remove wasn't working.
2014-06-04 00:34:58 +02:00
Turns out Splizard's code was mostly correct, just not assembled in the right order.
The key to the solution was found in the code of leetelate's scuba mod:
http://forum.minetest.net/viewtopic.php?id=7175
* Changed the wording of the HUD message for clarity.
~~~~~~
TODO
~~~~~~
* Figure out why the player avatars remain in a seated position, even after getting off the sled,
if they flew while on the sled. 'default.player_set_animation', where is a better explanation
2014-06-04 00:34:58 +02:00
for this and what are it's available options?
* Go through, clean-up my notes and get them better sorted. Some are in the code, some are
scattered in my note-taking program. This "Oh, I'll just make a little tweak here and a
little tweak there" project has evolved into something much bigger and more complex
2014-06-04 00:34:58 +02:00
than I originally planned. :p ~ LazyJ
2015-06-03 19:08:54 +02:00
* find out why the sled disappears after rightclicking it ~ HybridDog
2014-06-04 00:34:58 +02:00
--]]
--=============================================================
-- CODE STUFF
--=============================================================
2013-12-09 07:19:31 +01:00
--
-- Helper functions
--
2015-06-03 18:37:02 +02:00
local function table_find(t, v)
for i = 1,#t do
if t[i] == v then
return true
end
end
return false
end
2013-12-09 07:19:31 +01:00
local function is_water(pos)
return minetest.get_item_group(minetest.get_node(pos).name, "water") ~= 0
2013-12-09 07:19:31 +01:00
end
--
-- Sled entity
--
local sled = {
2015-06-03 19:08:54 +02:00
physical = true,
2013-12-09 07:19:31 +01:00
collisionbox = {-0.6,-0.25,-0.6, 0.6,0.3,0.6},
visual = "mesh",
mesh = "sled.x",
textures = {"sled.png"},
}
local players_sled = {}
2015-06-03 19:30:46 +02:00
local function join_sled(self, player)
2021-04-24 12:05:01 +02:00
local pos = self.object:get_pos()
2015-06-03 19:30:46 +02:00
player:setpos(pos)
local name = player:get_player_name()
players_sled[name] = true
default.player_attached[name] = true
default.player_set_animation(player, "sit" , 30)
self.driver = name
self.object:set_attach(player, "", {x=0,y=-9,z=0}, {x=0,y=90,z=0})
2021-04-24 12:05:01 +02:00
self.object:set_yaw(player:get_look_yaw())-- - math.pi/2)
2015-06-03 19:30:46 +02:00
end
local function leave_sled(self, player)
local name = player:get_player_name()
players_sled[name] = false
self.driver = nil
self.object:set_detach()
2015-06-03 19:30:46 +02:00
default.player_attached[name] = false
default.player_set_animation(player, "stand" , 30)
2015-06-04 00:36:32 +02:00
player:set_physics_override({
speed = 1,
jump = 1,
})
player:hud_remove(self.HUD) -- And here is part 2. ~ LazyJ
self.object:remove()
2015-06-04 00:36:32 +02:00
--Give the sled back again
player:get_inventory():add_item("main", "snow:sled")
2015-06-03 19:30:46 +02:00
end
2013-12-09 07:19:31 +01:00
2016-02-01 02:50:20 +01:00
local function sled_rightclick(self, player)
if self.driver then
2015-06-03 18:37:02 +02:00
return
end
2015-06-03 19:30:46 +02:00
join_sled(self, player)
2015-06-03 18:37:02 +02:00
player:set_physics_override({
speed = 2, -- multiplier to default value
jump = 0, -- multiplier to default value
})
2014-06-04 00:34:58 +02:00
-- Here is part 1 of the fix. ~ LazyJ
2015-06-03 18:37:02 +02:00
self.HUD = player:hud_add({
hud_elem_type = "text",
position = {x=0.5, y=0.89},
name = "sled",
scale = {x=2, y=2},
text = "You are on the sled! Hold the sneak key to get off the sled.", -- LazyJ
2015-06-03 18:37:02 +02:00
direction = 0,
})
-- End part 1
2013-12-09 07:19:31 +01:00
end
local on_sled_click
if snow.sleds then
on_sled_click = sled_rightclick
else
on_sled_click = function() end
end
snow.register_on_configuring(function(name, v)
if name == "sleds" then
if v then
on_sled_click = sled_rightclick
else
on_sled_click = function() end
end
end
end)
function sled:on_rightclick(player)
2016-02-01 02:50:20 +01:00
on_sled_click(self, player)
end
function sled:on_activate(staticdata)
2013-12-09 07:19:31 +01:00
self.object:set_armor_groups({immortal=1})
2021-04-24 12:05:01 +02:00
self.object:set_acceleration({x=0, y=-10, z=0})
2013-12-09 07:19:31 +01:00
if staticdata then
self.v = tonumber(staticdata)
end
end
function sled:get_staticdata()
2015-06-03 19:08:54 +02:00
return tostring(self.v)
2013-12-09 07:19:31 +01:00
end
2015-06-03 18:37:02 +02:00
function sled:on_punch(puncher)
2013-12-09 07:19:31 +01:00
self.object:remove()
if puncher
and puncher:is_player() then
2013-12-09 07:19:31 +01:00
puncher:get_inventory():add_item("main", "snow:sled")
end
end
2015-06-03 18:37:02 +02:00
local driveable_nodes = {"default:snow","default:snowblock","default:ice","default:dirt_with_snow", "group:icemaker"}
local function accelerating_possible(pos)
if is_water(pos) then
return false
end
if table_find(driveable_nodes, minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name) then
return true
end
return false
end
local timer = 0
2013-12-09 07:19:31 +01:00
function sled:on_step(dtime)
if not self.driver then
return
end
timer = timer+dtime
if timer < 1 then
return
end
timer = 0
2015-06-03 18:37:02 +02:00
local player = minetest.get_player_by_name(self.driver)
if not player then
return
end
if player:get_player_control().sneak
2021-04-24 12:05:01 +02:00
or not accelerating_possible(vector.round(self.object:get_pos())) then
2015-06-03 19:30:46 +02:00
leave_sled(self, player)
2013-12-09 07:19:31 +01:00
end
end
minetest.register_entity("snow:sled", sled)
minetest.register_craftitem("snow:sled", {
description = "Sled",
inventory_image = "snow_sled.png",
wield_image = "snow_sled.png",
wield_scale = {x=2, y=2, z=1},
liquids_pointable = true,
stack_max = 1,
2015-06-04 00:36:32 +02:00
on_use = function(itemstack, placer)
if players_sled[placer:get_player_name()] then
return
end
2021-04-24 12:05:01 +02:00
local pos = placer:get_pos()
2015-06-03 18:37:02 +02:00
if accelerating_possible(vector.round(pos)) then
2015-06-03 19:08:54 +02:00
pos.y = pos.y+0.5
2015-06-04 00:36:32 +02:00
--Get on the sled and remove it from inventory.
minetest.add_entity(pos, "snow:sled"):right_click(placer)
itemstack:take_item(); return itemstack
2013-12-09 07:19:31 +01:00
end
end,
})
minetest.register_craft({
output = "snow:sled",
recipe = {
{"", "", ""},
{"group:stick", "", ""},
{"group:wood", "group:wood", "group:wood"},
},
})
minetest.register_craft({
output = "snow:sled",
recipe = {
{"", "", ""},
{"", "", "group:stick"},
{"group:wood", "group:wood", "group:wood"},
},
})