Skip to content

Commit 4feea0a

Browse files
committedSep 10, 2013
Add offset to automatic_face_movement_dir
1 parent 681e136 commit 4feea0a

7 files changed

+24
-8
lines changed
 

‎doc/lua_api.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1888,7 +1888,8 @@ Object Properties
18881888
makes_footstep_sound = false,
18891889
automatic_rotate = false,
18901890
stepheight = 0,
1891-
automatic_face_movement_dir = false,
1891+
automatic_face_movement_dir = 0.0,
1892+
^ automatically set yaw to movement direction; offset in degrees; false to disable
18921893
}
18931894

18941895
Entity definition (register_entity)

‎src/clientserver.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
9898
drowning, leveled and liquid_range added to ContentFeatures
9999
stepheight and collideWithObjects added to object properties
100100
version, heat and humidity transfer in MapBock
101-
added new property to entities automatic_face_movement_dir
101+
automatic_face_movement_dir and automatic_face_movement_dir_offset
102+
added to object properties
102103
*/
103104

104105
#define LATEST_PROTOCOL_VERSION 21

‎src/content_cao.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1211,8 +1211,9 @@ class GenericCAO : public ClientActiveObject
12111211
updateNodePos();
12121212
}
12131213

1214-
if (getParent() == NULL && m_prop.automatic_face_movement_dir){
1215-
m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI;
1214+
if (getParent() == NULL && m_prop.automatic_face_movement_dir &&
1215+
(fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001)){
1216+
m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI + m_prop.automatic_face_movement_dir_offset;
12161217
updateNodePos();
12171218
}
12181219
}

‎src/content_sao.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -527,8 +527,9 @@ void LuaEntitySAO::step(float dtime, bool send_recommended)
527527
m_velocity += dtime * m_acceleration;
528528
}
529529

530-
if(m_prop.automatic_face_movement_dir){
531-
m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI;
530+
if((m_prop.automatic_face_movement_dir) &&
531+
(fabs(m_velocity.Z) > 0.001 || fabs(m_velocity.X) > 0.001)){
532+
m_yaw = atan2(m_velocity.Z,m_velocity.X) * 180 / M_PI + m_prop.automatic_face_movement_dir_offset;
532533
}
533534
}
534535

‎src/object_properties.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ ObjectProperties::ObjectProperties():
4141
makes_footstep_sound(false),
4242
automatic_rotate(0),
4343
stepheight(0),
44-
automatic_face_movement_dir(false)
44+
automatic_face_movement_dir(false),
45+
automatic_face_movement_dir_offset(0.0)
4546
{
4647
textures.push_back("unknown_object.png");
4748
colors.push_back(video::SColor(255,255,255,255));
@@ -104,6 +105,7 @@ void ObjectProperties::serialize(std::ostream &os) const
104105
writeU8(os, collideWithObjects);
105106
writeF1000(os,stepheight);
106107
writeU8(os, automatic_face_movement_dir);
108+
writeF1000(os, automatic_face_movement_dir_offset);
107109
// Add stuff only at the bottom.
108110
// Never remove anything, because we don't want new versions of this
109111
}
@@ -139,6 +141,7 @@ void ObjectProperties::deSerialize(std::istream &is)
139141
collideWithObjects = readU8(is);
140142
stepheight = readF1000(is);
141143
automatic_face_movement_dir = readU8(is);
144+
automatic_face_movement_dir_offset = readF1000(is);
142145
}catch(SerializationError &e){}
143146
}
144147
else

‎src/object_properties.h

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ struct ObjectProperties
4646
float automatic_rotate;
4747
f32 stepheight;
4848
bool automatic_face_movement_dir;
49+
f32 automatic_face_movement_dir_offset;
4950

5051

5152
ObjectProperties();

‎src/script/common/c_content.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,15 @@ void read_object_properties(lua_State *L, int index,
191191
getfloatfield(L, -1, "automatic_rotate", prop->automatic_rotate);
192192
getfloatfield(L, -1, "stepheight", prop->stepheight);
193193
prop->stepheight*=BS;
194-
getboolfield(L, -1, "automatic_face_movement_dir", prop->automatic_face_movement_dir);
194+
lua_getfield(L, -1, "automatic_face_movement_dir");
195+
if (lua_isnumber(L, -1)) {
196+
prop->automatic_face_movement_dir = true;
197+
prop->automatic_face_movement_dir_offset = luaL_checknumber(L, -1);
198+
} else if (lua_isboolean(L, -1)) {
199+
prop->automatic_face_movement_dir = lua_toboolean(L, -1);
200+
prop->automatic_face_movement_dir_offset = 0.0;
201+
}
202+
lua_pop(L, 1);
195203
}
196204

197205
/******************************************************************************/

0 commit comments

Comments
 (0)