Skip to content

Commit 9eee3c3

Browse files
committedDec 15, 2015
Add option to give every object a nametag
or change the nametag text of players
1 parent 19f73e4 commit 9eee3c3

9 files changed

+111
-95
lines changed
 

‎doc/lua_api.txt

+15-11
Original file line numberDiff line numberDiff line change
@@ -2544,6 +2544,19 @@ This is basically a reference to a C++ `ServerActiveObject`
25442544
* `set_properties(object property table)`
25452545
* `get_properties()`: returns object property table
25462546
* `is_player()`: returns true for players, false otherwise
2547+
* `get_nametag_attributes()`
2548+
* returns a table with the attributes of the nametag of an object
2549+
* {
2550+
color = {a=0..255, r=0..255, g=0..255, b=0..255},
2551+
text = "",
2552+
}
2553+
* `set_nametag_attributes(attributes)`
2554+
* sets the attributes of the nametag of an object
2555+
* `attributes`:
2556+
{
2557+
color = ColorSpec,
2558+
text = "My Nametag",
2559+
}
25472560

25482561
##### LuaEntitySAO-only (no-op for other objects)
25492562
* `setvelocity({x=num, y=num, z=num})`
@@ -2644,17 +2657,6 @@ This is basically a reference to a C++ `ServerActiveObject`
26442657
* in first person view
26452658
* in third person view (max. values `{x=-10/10,y=-10,15,z=-5/5}`)
26462659
* `get_eye_offset()`: returns offset_first and offset_third
2647-
* `get_nametag_attributes()`
2648-
* returns a table with the attributes of the nametag of the player
2649-
* {
2650-
color = {a=0..255, r=0..255, g=0..255, b=0..255},
2651-
}
2652-
* `set_nametag_attributes(attributes)`
2653-
* sets the attributes of the nametag of the player
2654-
* `attributes`:
2655-
{
2656-
color = ColorSpec,
2657-
}
26582660

26592661
### `InvRef`
26602662
An `InvRef` is a reference to an inventory.
@@ -3232,6 +3234,8 @@ Definition tables
32323234
automatic_face_movement_dir = 0.0,
32333235
-- ^ automatically set yaw to movement direction; offset in degrees; false to disable
32343236
backface_culling = true, -- false to disable backface_culling for model
3237+
nametag = "", -- by default empty, for players their name is shown if empty
3238+
nametag_color = <color>, -- sets color of nametag as ColorSpec
32353239
}
32363240

32373241
### Entity definition (`register_entity`)

‎src/content_cao.cpp

+12-10
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,6 @@ GenericCAO::GenericCAO(IGameDef *gamedef, ClientEnvironment *env):
551551
m_animated_meshnode(NULL),
552552
m_wield_meshnode(NULL),
553553
m_spritenode(NULL),
554-
m_nametag_color(video::SColor(255, 255, 255, 255)),
555554
m_textnode(NULL),
556555
m_position(v3f(0,10*BS,0)),
557556
m_velocity(v3f(0,0,0)),
@@ -972,19 +971,19 @@ void GenericCAO::addToScene(scene::ISceneManager *smgr, ITextureSource *tsrc,
972971
updateTextures("");
973972

974973
scene::ISceneNode *node = getSceneNode();
975-
if (node && m_is_player && !m_is_local_player) {
974+
if (node && m_prop.nametag != "" && !m_is_local_player) {
976975
// Add a text node for showing the name
977976
gui::IGUIEnvironment* gui = irr->getGUIEnvironment();
978-
std::wstring wname = utf8_to_wide(m_name);
977+
std::wstring nametag_text = utf8_to_wide(m_prop.nametag);
979978
m_textnode = smgr->addTextSceneNode(gui->getSkin()->getFont(),
980-
wname.c_str(), m_nametag_color, node);
979+
nametag_text.c_str(), m_prop.nametag_color, node);
981980
m_textnode->grab();
982981
m_textnode->setPosition(v3f(0, BS*1.1, 0));
983982

984983
// Enforce hiding nametag,
985984
// because if freetype is enabled, a grey
986985
// shadow can remain.
987-
m_textnode->setVisible(m_nametag_color.getAlpha() > 0);
986+
m_textnode->setVisible(m_prop.nametag_color.getAlpha() > 0);
988987
}
989988

990989
updateNodePos();
@@ -1594,6 +1593,9 @@ void GenericCAO::processMessage(const std::string &data)
15941593
m_tx_basepos = m_prop.initial_sprite_basepos;
15951594
}
15961595

1596+
if ((m_is_player && !m_is_local_player) && m_prop.nametag == "")
1597+
m_prop.nametag = m_name;
1598+
15971599
expireVisuals();
15981600
}
15991601
else if(cmd == GENERIC_CMD_UPDATE_POSITION)
@@ -1772,15 +1774,15 @@ void GenericCAO::processMessage(const std::string &data)
17721774
m_armor_groups[name] = rating;
17731775
}
17741776
} else if (cmd == GENERIC_CMD_UPDATE_NAMETAG_ATTRIBUTES) {
1777+
// Deprecated, for backwards compatibility only.
17751778
readU8(is); // version
1776-
m_nametag_color = readARGB8(is);
1779+
m_prop.nametag_color = readARGB8(is);
17771780
if (m_textnode != NULL) {
1778-
m_textnode->setTextColor(m_nametag_color);
1781+
m_textnode->setTextColor(m_prop.nametag_color);
17791782

17801783
// Enforce hiding nametag,
1781-
// because if freetype is enabled, a grey
1782-
// shadow can remain.
1783-
m_textnode->setVisible(m_nametag_color.getAlpha() > 0);
1784+
// because if freetype is enabled, a grey shadow can remain.
1785+
m_textnode->setVisible(m_prop.nametag_color.getAlpha() > 0);
17841786
}
17851787
}
17861788
}

‎src/content_cao.h

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ class GenericCAO : public ClientActiveObject
7070
scene::IAnimatedMeshSceneNode *m_animated_meshnode;
7171
WieldMeshSceneNode *m_wield_meshnode;
7272
scene::IBillboardSceneNode *m_spritenode;
73-
video::SColor m_nametag_color;
7473
scene::ITextSceneNode* m_textnode;
7574
v3f m_position;
7675
v3f m_velocity;

‎src/content_sao.cpp

+1-23
Original file line numberDiff line numberDiff line change
@@ -757,8 +757,6 @@ PlayerSAO::PlayerSAO(ServerEnvironment *env_, Player *player_, u16 peer_id_,
757757
m_bone_position_sent(false),
758758
m_attachment_parent_id(0),
759759
m_attachment_sent(false),
760-
m_nametag_color(video::SColor(255, 255, 255, 255)),
761-
m_nametag_sent(false),
762760
// public
763761
m_physics_override_speed(1),
764762
m_physics_override_jump(1),
@@ -857,7 +855,7 @@ std::string PlayerSAO::getClientInitializationData(u16 protocol_version)
857855
os<<serializeLongString(gob_cmd_update_physics_override(m_physics_override_speed,
858856
m_physics_override_jump, m_physics_override_gravity, m_physics_override_sneak,
859857
m_physics_override_sneak_glitch)); // 5
860-
os << serializeLongString(gob_cmd_update_nametag_attributes(m_nametag_color)); // 6
858+
os << serializeLongString(gob_cmd_update_nametag_attributes(m_prop.nametag_color)); // 6 (GENERIC_CMD_UPDATE_NAMETAG_ATTRIBUTES) : Deprecated, for backwards compatibility only.
861859
}
862860
else
863861
{
@@ -1012,14 +1010,6 @@ void PlayerSAO::step(float dtime, bool send_recommended)
10121010
ActiveObjectMessage aom(getId(), true, str);
10131011
m_messages_out.push(aom);
10141012
}
1015-
1016-
if (m_nametag_sent == false) {
1017-
m_nametag_sent = true;
1018-
std::string str = gob_cmd_update_nametag_attributes(m_nametag_color);
1019-
// create message and add to list
1020-
ActiveObjectMessage aom(getId(), true, str);
1021-
m_messages_out.push(aom);
1022-
}
10231013
}
10241014

10251015
void PlayerSAO::setBasePosition(const v3f &position)
@@ -1270,17 +1260,6 @@ void PlayerSAO::notifyObjectPropertiesModified()
12701260
m_properties_sent = false;
12711261
}
12721262

1273-
void PlayerSAO::setNametagColor(video::SColor color)
1274-
{
1275-
m_nametag_color = color;
1276-
m_nametag_sent = false;
1277-
}
1278-
1279-
video::SColor PlayerSAO::getNametagColor()
1280-
{
1281-
return m_nametag_color;
1282-
}
1283-
12841263
Inventory* PlayerSAO::getInventory()
12851264
{
12861265
return m_inventory;
@@ -1396,4 +1375,3 @@ bool PlayerSAO::getCollisionBox(aabb3f *toset) {
13961375
bool PlayerSAO::collideWithObjects(){
13971376
return true;
13981377
}
1399-

‎src/content_sao.h

+3-8
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ class LuaEntitySAO : public ServerActiveObject
9191
std::string m_init_state;
9292
bool m_registered;
9393
struct ObjectProperties m_prop;
94-
94+
9595
s16 m_hp;
9696
v3f m_velocity;
9797
v3f m_acceleration;
9898
float m_yaw;
9999
ItemGroupList m_armor_groups;
100-
100+
101101
bool m_properties_sent;
102102
float m_last_sent_yaw;
103103
v3f m_last_sent_position;
@@ -213,8 +213,6 @@ class PlayerSAO : public ServerActiveObject
213213
std::set<int> getAttachmentChildIds();
214214
ObjectProperties* accessObjectProperties();
215215
void notifyObjectPropertiesModified();
216-
void setNametagColor(video::SColor color);
217-
video::SColor getNametagColor();
218216

219217
/*
220218
Inventory interface
@@ -292,7 +290,7 @@ class PlayerSAO : public ServerActiveObject
292290

293291
private:
294292
std::string getPropertyPacket();
295-
293+
296294
Player *m_player;
297295
u16 m_peer_id;
298296
Inventory *m_inventory;
@@ -333,8 +331,6 @@ class PlayerSAO : public ServerActiveObject
333331
v3f m_attachment_rotation;
334332
bool m_attachment_sent;
335333

336-
video::SColor m_nametag_color;
337-
bool m_nametag_sent;
338334

339335
public:
340336
float m_physics_override_speed;
@@ -346,4 +342,3 @@ class PlayerSAO : public ServerActiveObject
346342
};
347343

348344
#endif
349-

‎src/object_properties.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ ObjectProperties::ObjectProperties():
4343
stepheight(0),
4444
automatic_face_movement_dir(false),
4545
automatic_face_movement_dir_offset(0.0),
46-
backface_culling(true)
46+
backface_culling(true),
47+
nametag(""),
48+
nametag_color(255, 255, 255, 255)
4749
{
4850
textures.push_back("unknown_object.png");
4951
colors.push_back(video::SColor(255,255,255,255));
@@ -76,6 +78,9 @@ std::string ObjectProperties::dump()
7678
os<<", makes_footstep_sound="<<makes_footstep_sound;
7779
os<<", automatic_rotate="<<automatic_rotate;
7880
os<<", backface_culling="<<backface_culling;
81+
os << ", nametag=" << nametag;
82+
os << ", nametag_color=" << "\"" << nametag_color.getAlpha() << "," << nametag_color.getRed()
83+
<< "," << nametag_color.getGreen() << "," << nametag_color.getBlue() << "\" ";
7984
return os.str();
8085
}
8186

@@ -109,6 +114,8 @@ void ObjectProperties::serialize(std::ostream &os) const
109114
writeU8(os, automatic_face_movement_dir);
110115
writeF1000(os, automatic_face_movement_dir_offset);
111116
writeU8(os, backface_culling);
117+
os << serializeString(nametag);
118+
writeARGB8(os, nametag_color);
112119
// Add stuff only at the bottom.
113120
// Never remove anything, because we don't want new versions of this
114121
}
@@ -146,6 +153,8 @@ void ObjectProperties::deSerialize(std::istream &is)
146153
automatic_face_movement_dir = readU8(is);
147154
automatic_face_movement_dir_offset = readF1000(is);
148155
backface_culling = readU8(is);
156+
nametag = deSerializeString(is);
157+
nametag_color = readARGB8(is);
149158
}catch(SerializationError &e){}
150159
}
151160
else

‎src/object_properties.h

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ struct ObjectProperties
4848
bool automatic_face_movement_dir;
4949
f32 automatic_face_movement_dir_offset;
5050
bool backface_culling;
51+
std::string nametag;
52+
video::SColor nametag_color;
5153

5254

5355
ObjectProperties();

‎src/script/common/c_content.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,14 @@ 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+
getstringfield(L, -1, "nametag", prop->nametag);
205+
lua_getfield(L, -1, "nametag_color");
206+
if (!lua_isnil(L, -1)) {
207+
video::SColor color = prop->nametag_color;
208+
if (read_color(L, -1, &color))
209+
prop->nametag_color = color;
210+
}
211+
lua_pop(L, 1);
204212
}
205213

206214
/******************************************************************************/
@@ -261,6 +269,11 @@ void push_object_properties(lua_State *L, ObjectProperties *prop)
261269
lua_setfield(L, -2, "automatic_face_movement_dir");
262270
lua_pushboolean(L, prop->backface_culling);
263271
lua_setfield(L, -2, "backface_culling");
272+
lua_pushlstring(L, prop->nametag.c_str(), prop->nametag.size());
273+
lua_setfield(L, -2, "nametag");
274+
lua_newtable(L);
275+
push_ARGB8(L, prop->nametag_color);
276+
lua_setfield(L, -2, "nametag_color");
264277
}
265278

266279
/******************************************************************************/

‎src/script/lua_api/l_object.cpp

+55-41
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,59 @@ int ObjectRef::l_is_player(lua_State *L)
767767
return 1;
768768
}
769769

770+
// set_nametag_attributes(self, attributes)
771+
int ObjectRef::l_set_nametag_attributes(lua_State *L)
772+
{
773+
NO_MAP_LOCK_REQUIRED;
774+
ObjectRef *ref = checkobject(L, 1);
775+
ServerActiveObject *co = getobject(ref);
776+
777+
if (co == NULL)
778+
return 0;
779+
ObjectProperties *prop = co->accessObjectProperties();
780+
if (!prop)
781+
return 0;
782+
783+
lua_getfield(L, 2, "color");
784+
if (!lua_isnil(L, -1)) {
785+
video::SColor color = prop->nametag_color;
786+
read_color(L, -1, &color);
787+
prop->nametag_color = color;
788+
}
789+
lua_pop(L, 1);
790+
791+
std::string nametag = getstringfield_default(L, 2, "text", "");
792+
if (nametag != "")
793+
prop->nametag = nametag;
794+
795+
co->notifyObjectPropertiesModified();
796+
lua_pushboolean(L, true);
797+
return 1;
798+
}
799+
800+
// get_nametag_attributes(self)
801+
int ObjectRef::l_get_nametag_attributes(lua_State *L)
802+
{
803+
NO_MAP_LOCK_REQUIRED;
804+
ObjectRef *ref = checkobject(L, 1);
805+
ServerActiveObject *co = getobject(ref);
806+
807+
if (co == NULL)
808+
return 0;
809+
ObjectProperties *prop = co->accessObjectProperties();
810+
if (!prop)
811+
return 0;
812+
813+
video::SColor color = prop->nametag_color;
814+
815+
lua_newtable(L);
816+
push_ARGB8(L, color);
817+
lua_setfield(L, -2, "color");
818+
lua_pushstring(L, prop->nametag.c_str());
819+
lua_setfield(L, -2, "text");
820+
return 1;
821+
}
822+
770823
/* LuaEntitySAO-only */
771824

772825
// setvelocity(self, {x=num, y=num, z=num})
@@ -1593,45 +1646,6 @@ int ObjectRef::l_get_day_night_ratio(lua_State *L)
15931646
return 1;
15941647
}
15951648

1596-
// set_nametag_attributes(self, attributes)
1597-
int ObjectRef::l_set_nametag_attributes(lua_State *L)
1598-
{
1599-
NO_MAP_LOCK_REQUIRED;
1600-
ObjectRef *ref = checkobject(L, 1);
1601-
PlayerSAO *playersao = getplayersao(ref);
1602-
if (playersao == NULL)
1603-
return 0;
1604-
1605-
lua_getfield(L, 2, "color");
1606-
if (!lua_isnil(L, -1)) {
1607-
video::SColor color = playersao->getNametagColor();
1608-
if (!read_color(L, -1, &color))
1609-
return 0;
1610-
playersao->setNametagColor(color);
1611-
}
1612-
1613-
lua_pushboolean(L, true);
1614-
return 1;
1615-
}
1616-
1617-
// get_nametag_attributes(self)
1618-
int ObjectRef::l_get_nametag_attributes(lua_State *L)
1619-
{
1620-
NO_MAP_LOCK_REQUIRED;
1621-
ObjectRef *ref = checkobject(L, 1);
1622-
PlayerSAO *playersao = getplayersao(ref);
1623-
if (playersao == NULL)
1624-
return 0;
1625-
1626-
video::SColor color = playersao->getNametagColor();
1627-
1628-
lua_newtable(L);
1629-
push_ARGB8(L, color);
1630-
lua_setfield(L, -2, "color");
1631-
1632-
return 1;
1633-
}
1634-
16351649
ObjectRef::ObjectRef(ServerActiveObject *object):
16361650
m_object(object)
16371651
{
@@ -1719,6 +1733,8 @@ const luaL_reg ObjectRef::methods[] = {
17191733
luamethod(ObjectRef, set_detach),
17201734
luamethod(ObjectRef, set_properties),
17211735
luamethod(ObjectRef, get_properties),
1736+
luamethod(ObjectRef, set_nametag_attributes),
1737+
luamethod(ObjectRef, get_nametag_attributes),
17221738
// LuaEntitySAO-only
17231739
luamethod(ObjectRef, setvelocity),
17241740
luamethod(ObjectRef, getvelocity),
@@ -1768,7 +1784,5 @@ const luaL_reg ObjectRef::methods[] = {
17681784
luamethod(ObjectRef, get_local_animation),
17691785
luamethod(ObjectRef, set_eye_offset),
17701786
luamethod(ObjectRef, get_eye_offset),
1771-
luamethod(ObjectRef, set_nametag_attributes),
1772-
luamethod(ObjectRef, get_nametag_attributes),
17731787
{0,0}
17741788
};

0 commit comments

Comments
 (0)
Please sign in to comment.