Navigation Menu

Skip to content

Commit

Permalink
Add slippery group for nodes (players/items slide)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy authored and paramat committed Aug 13, 2017
1 parent 4381fe0 commit 2ea26e6
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 17 deletions.
30 changes: 21 additions & 9 deletions builtin/game/item_entity.lua
Expand Up @@ -99,8 +99,8 @@ core.register_entity(":__builtin:item", {
self.itemstring = staticdata
end
self.object:set_armor_groups({immortal = 1})
self.object:setvelocity({x = 0, y = 2, z = 0})
self.object:setacceleration({x = 0, y = -10, z = 0})
self.object:set_velocity({x = 0, y = 2, z = 0})
self.object:set_acceleration({x = 0, y = -10, z = 0})
self:set_item(self.itemstring)
end,

Expand Down Expand Up @@ -177,16 +177,17 @@ core.register_entity(":__builtin:item", {
local in_unloaded = (node == nil)
if in_unloaded then
-- Don't infinetly fall into unloaded map
self.object:setvelocity({x = 0, y = 0, z = 0})
self.object:setacceleration({x = 0, y = 0, z = 0})
self.object:set_velocity({x = 0, y = 0, z = 0})
self.object:set_acceleration({x = 0, y = 0, z = 0})
self.physical_state = false
self.object:set_properties({physical = false})
return
end
local nn = node.name
-- If node is not registered or node is walkably solid and resting on nodebox
local v = self.object:getvelocity()
if not core.registered_nodes[nn] or core.registered_nodes[nn].walkable and v.y == 0 then
if not core.registered_nodes[nn] or (core.registered_nodes[nn].walkable and
core.get_item_group(nn, "slippery") == 0) and v.y == 0 then
if self.physical_state then
local own_stack = ItemStack(self.object:get_luaentity().itemstring)
-- Merge with close entities of the same item
Expand All @@ -199,17 +200,28 @@ core.register_entity(":__builtin:item", {
end
end
end
self.object:setvelocity({x = 0, y = 0, z = 0})
self.object:setacceleration({x = 0, y = 0, z = 0})
self.object:set_velocity({x = 0, y = 0, z = 0})
self.object:set_acceleration({x = 0, y = 0, z = 0})
self.physical_state = false
self.object:set_properties({physical = false})
end
else
if not self.physical_state then
self.object:setvelocity({x = 0, y = 0, z = 0})
self.object:setacceleration({x = 0, y = -10, z = 0})
self.object:set_velocity({x = 0, y = 0, z = 0})
self.object:set_acceleration({x = 0, y = -10, z = 0})
self.physical_state = true
self.object:set_properties({physical = true})
elseif minetest.get_item_group(nn, "slippery") ~= 0 then
if math.abs(v.x) < 0.2 and math.abs(v.z) < 0.2 then
self.object:set_velocity({x = 0, y = 0, z = 0})
self.object:set_acceleration({x = 0, y = 0, z = 0})
self.physical_state = false
self.object:set_properties({
physical = false
})
else
self.object:set_acceleration({x = -v.x, y = -10, z = -v.z})
end
end
end
end,
Expand Down
3 changes: 3 additions & 0 deletions doc/lua_api.txt
Expand Up @@ -1424,6 +1424,9 @@ Another example: Make red wool from white wool and red dye:
* `soil`: saplings will grow on nodes in this group
* `connect_to_raillike`: makes nodes of raillike drawtype with same group value
connect to each other
* `slippery`: Players and items will slide on the node.
Only use `slippery = 3` for now to ensure forwards compatibility.


### Known damage and digging time defining groups
* `crumbly`: dirt, sand
Expand Down
2 changes: 1 addition & 1 deletion src/client.cpp
Expand Up @@ -403,7 +403,7 @@ void Client::step(float dtime)
// Control local player (0ms)
LocalPlayer *player = m_env.getLocalPlayer();
assert(player);
player->applyControl(dtime);
player->applyControl(dtime, &m_env);

// Step environment
m_env.step(dtime);
Expand Down
25 changes: 20 additions & 5 deletions src/localplayer.cpp
Expand Up @@ -444,7 +444,7 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d)
move(dtime, env, pos_max_d, NULL);
}

void LocalPlayer::applyControl(float dtime)
void LocalPlayer::applyControl(float dtime, ClientEnvironment *env)
{
// Clear stuff
swimming_vertical = false;
Expand Down Expand Up @@ -660,9 +660,16 @@ void LocalPlayer::applyControl(float dtime)
else
incH = incV = movement_acceleration_default * BS * dtime;

INodeDefManager *nodemgr = env->getGameDef()->ndef();
Map *map = &env->getMap();
bool slippery = false;
const ContentFeatures &f = nodemgr->get(map->getNodeNoEx(getStandingNodePos()));
slippery = itemgroup_get(f.groups, "slippery");
// Accelerate to target speed with maximum increment
accelerateHorizontal(speedH * physics_override_speed, incH * physics_override_speed);
accelerateVertical(speedV * physics_override_speed, incV * physics_override_speed);
accelerateHorizontal(speedH * physics_override_speed,
incH * physics_override_speed, slippery);
accelerateVertical(speedV * physics_override_speed,
incV * physics_override_speed);
}

v3s16 LocalPlayer::getStandingNodePos()
Expand Down Expand Up @@ -699,12 +706,20 @@ v3f LocalPlayer::getEyeOffset() const
}

// Horizontal acceleration (X and Z), Y direction is ignored
void LocalPlayer::accelerateHorizontal(const v3f &target_speed, const f32 max_increase)
void LocalPlayer::accelerateHorizontal(const v3f &target_speed,
const f32 max_increase, bool slippery)
{
if (max_increase == 0)
return;

v3f d_wanted = target_speed - m_speed;
v3f d_wanted = target_speed - m_speed;
if (slippery) {
if (target_speed == v3f(0))
d_wanted = -m_speed * 0.05f;
else
d_wanted = target_speed * 0.1f - m_speed * 0.1f;
}

d_wanted.Y = 0;
f32 dl = d_wanted.getLength();
if (dl > max_increase)
Expand Down
6 changes: 4 additions & 2 deletions src/localplayer.h
Expand Up @@ -29,6 +29,7 @@ class Client;
class Environment;
class GenericCAO;
class ClientActiveObject;
class ClientEnvironment;
class IGameDef;

enum LocalPlayerAnimations
Expand Down Expand Up @@ -78,7 +79,7 @@ class LocalPlayer : public Player
void old_move(f32 dtime, Environment *env, f32 pos_max_d,
std::vector<CollisionInfo> *collision_info);

void applyControl(float dtime);
void applyControl(float dtime, ClientEnvironment *env);

v3s16 getStandingNodePos();
v3s16 getFootstepNodePos();
Expand Down Expand Up @@ -143,7 +144,8 @@ class LocalPlayer : public Player
void setCollisionbox(const aabb3f &box) { m_collisionbox = box; }

private:
void accelerateHorizontal(const v3f &target_speed, const f32 max_increase);
void accelerateHorizontal(const v3f &target_speed,
const f32 max_increase, bool slippery);
void accelerateVertical(const v3f &target_speed, const f32 max_increase);
bool updateSneakNode(Map *map, const v3f &position, const v3f &sneak_max);

Expand Down

0 comments on commit 2ea26e6

Please sign in to comment.