Skip to content

Commit 70ea5d5

Browse files
SapierSapier
Sapier
authored and
Sapier
committedDec 19, 2015
Add support for limiting rotation of automatic face movement dir entitys
1 parent 0663220 commit 70ea5d5

File tree

5 files changed

+37
-5
lines changed

5 files changed

+37
-5
lines changed
 

‎src/content_cao.cpp

+11-1
Original file line numberDiff line numberDiff line change
@@ -1260,8 +1260,18 @@ void GenericCAO::step(float dtime, ClientEnvironment *env)
12601260
if (getParent() == NULL && m_prop.automatic_face_movement_dir &&
12611261
(fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001))
12621262
{
1263-
m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI
1263+
float optimal_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI
12641264
+ m_prop.automatic_face_movement_dir_offset;
1265+
float max_rotation_delta =
1266+
dtime * m_prop.automatic_face_movement_max_rotation_per_sec;
1267+
1268+
if ((m_prop.automatic_face_movement_max_rotation_per_sec > 0) &&
1269+
(fabs(m_yaw - optimal_yaw) > max_rotation_delta)) {
1270+
1271+
m_yaw = optimal_yaw < m_yaw ? m_yaw - max_rotation_delta : m_yaw + max_rotation_delta;
1272+
} else {
1273+
m_yaw = optimal_yaw;
1274+
}
12651275
updateNodePos();
12661276
}
12671277
}

‎src/content_sao.cpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,20 @@ void LuaEntitySAO::step(float dtime, bool send_recommended)
283283
}
284284

285285
if((m_prop.automatic_face_movement_dir) &&
286-
(fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001)){
287-
m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI + m_prop.automatic_face_movement_dir_offset;
286+
(fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001))
287+
{
288+
float optimal_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI
289+
+ m_prop.automatic_face_movement_dir_offset;
290+
float max_rotation_delta =
291+
dtime * m_prop.automatic_face_movement_max_rotation_per_sec;
292+
293+
if ((m_prop.automatic_face_movement_max_rotation_per_sec > 0) &&
294+
(fabs(m_yaw - optimal_yaw) > max_rotation_delta)) {
295+
296+
m_yaw = optimal_yaw < m_yaw ? m_yaw - max_rotation_delta : m_yaw + max_rotation_delta;
297+
} else {
298+
m_yaw = optimal_yaw;
299+
}
288300
}
289301
}
290302

‎src/object_properties.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ ObjectProperties::ObjectProperties():
4545
automatic_face_movement_dir_offset(0.0),
4646
backface_culling(true),
4747
nametag(""),
48-
nametag_color(255, 255, 255, 255)
48+
nametag_color(255, 255, 255, 255),
49+
automatic_face_movement_max_rotation_per_sec(-1)
4950
{
5051
textures.push_back("unknown_object.png");
5152
colors.push_back(video::SColor(255,255,255,255));
@@ -116,6 +117,8 @@ void ObjectProperties::serialize(std::ostream &os) const
116117
writeU8(os, backface_culling);
117118
os << serializeString(nametag);
118119
writeARGB8(os, nametag_color);
120+
writeF1000(os, automatic_face_movement_max_rotation_per_sec);
121+
119122
// Add stuff only at the bottom.
120123
// Never remove anything, because we don't want new versions of this
121124
}
@@ -155,6 +158,7 @@ void ObjectProperties::deSerialize(std::istream &is)
155158
backface_culling = readU8(is);
156159
nametag = deSerializeString(is);
157160
nametag_color = readARGB8(is);
161+
automatic_face_movement_max_rotation_per_sec = readF1000(is);
158162
}catch(SerializationError &e){}
159163
}
160164
else

‎src/object_properties.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct ObjectProperties
5050
bool backface_culling;
5151
std::string nametag;
5252
video::SColor nametag_color;
53-
53+
f32 automatic_face_movement_max_rotation_per_sec;
5454

5555
ObjectProperties();
5656
std::string dump();

‎src/script/common/c_content.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,19 @@ void read_object_properties(lua_State *L, int index,
201201
}
202202
lua_pop(L, 1);
203203
getboolfield(L, -1, "backface_culling", prop->backface_culling);
204+
204205
getstringfield(L, -1, "nametag", prop->nametag);
205206
lua_getfield(L, -1, "nametag_color");
206207
if (!lua_isnil(L, -1)) {
207208
video::SColor color = prop->nametag_color;
208209
if (read_color(L, -1, &color))
209210
prop->nametag_color = color;
210211
}
212+
Has a conversation. Original line has a conversation.
213+
lua_getfield(L, -1, "automatic_face_movement_max_rotation_per_sec");
214+
if (lua_isnumber(L, -1)) {
215+
prop->automatic_face_movement_max_rotation_per_sec = luaL_checknumber(L, -1);
216+
}
211217
lua_pop(L, 1);
212218
}
213219

1 commit comments

Comments
 (1)

HybridDog commented on Dec 20, 2015

@HybridDog
Contributor

it needs to be added to lua_api.txt, doesn't it?
https://github.com/minetest/minetest/blob/master/doc/lua_api.txt#L3238

Please sign in to comment.