more fix?

This commit is contained in:
SmallJoker 2014-07-29 12:51:57 +02:00
parent e8a8ad4324
commit 6332c670d9
1 changed files with 14 additions and 15 deletions

View File

@ -6,7 +6,15 @@
boost_cart = {} boost_cart = {}
boost_cart.modpath = minetest.get_modpath("boost_cart") boost_cart.modpath = minetest.get_modpath("boost_cart")
boost_cart.speed_max = 12 boost_cart.speed_max = 9
function vector.floor(v)
return {
x = math.floor(v.x),
y = math.floor(v.y),
z = math.floor(v.z)
}
end
dofile(boost_cart.modpath.."/functions.lua") dofile(boost_cart.modpath.."/functions.lua")
dofile(boost_cart.modpath.."/rails.lua") dofile(boost_cart.modpath.."/rails.lua")
@ -64,7 +72,7 @@ function boost_cart.cart:on_punch(puncher, time_from_last_punch, tool_capabiliti
local vel = self.velocity local vel = self.velocity
if puncher:get_player_name() == self.driver then if puncher:get_player_name() == self.driver then
if math.abs(vel.x) > 7 or math.abs(vel.z) > 7 then if math.abs(vel.x) + math.abs(vel.z) > 6 then
return return
end end
end end
@ -96,14 +104,6 @@ function boost_cart.cart:on_punch(puncher, time_from_last_punch, tool_capabiliti
self.punch = true self.punch = true
end end
function vector.floor(v)
return {
x = math.floor(v.x),
y = math.floor(v.y),
z = math.floor(v.z)
}
end
function boost_cart.cart:on_step(dtime) function boost_cart.cart:on_step(dtime)
local vel = self.object:getvelocity() local vel = self.object:getvelocity()
if self.punch then if self.punch then
@ -126,7 +126,6 @@ function boost_cart.cart:on_step(dtime)
z = boost_cart:get_sign(vel.z) z = boost_cart:get_sign(vel.z)
} }
local dir = boost_cart:get_rail_direction(pos, cart_dir) local dir = boost_cart:get_rail_direction(pos, cart_dir)
local real_punch = self.punch
if vector.equals(dir, {x=0, y=0, z=0}) then if vector.equals(dir, {x=0, y=0, z=0}) then
vel = {x=0, y=0, z=0} vel = {x=0, y=0, z=0}
self.object:setacceleration({x=0, y=0, z=0}) self.object:setacceleration({x=0, y=0, z=0})
@ -146,14 +145,14 @@ function boost_cart.cart:on_step(dtime)
self.punch = true self.punch = true
end end
-- Up, down? -- Up, down?
vel.y = dir.y * (math.abs(vel.x) + math.abs(vel.z))
if dir.y ~= self.old_dir.y then if dir.y ~= self.old_dir.y then
vel.y = dir.y * (math.abs(vel.x) + math.abs(vel.z)) pos = vector.round(pos)
pos.y = math.floor(pos.y + 0.5)
self.punch = true self.punch = true
end end
-- Slow down or speed up.. -- Slow down or speed up..
local acc = (dir.y * -1) - 0.6 local acc = (dir.y * -1.4) - 0.4
local new_acc = { local new_acc = {
x = dir.x * acc, x = dir.x * acc,
y = dir.y * acc, y = dir.y * acc,
@ -161,7 +160,7 @@ function boost_cart.cart:on_step(dtime)
} }
for _,v in ipairs({"x","y","z"}) do for _,v in ipairs({"x","y","z"}) do
if math.abs(vel[v]) < math.abs(new_acc[v]) then if math.abs(vel[v]) < math.abs(new_acc[v] * 1.4) then
vel[v] = 0 vel[v] = 0
new_acc[v] = 0 new_acc[v] = 0
self.punch = true self.punch = true