@@ -767,6 +767,59 @@ int ObjectRef::l_is_player(lua_State *L)
767
767
return 1 ;
768
768
}
769
769
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
+
770
823
/* LuaEntitySAO-only */
771
824
772
825
// setvelocity(self, {x=num, y=num, z=num})
@@ -1593,45 +1646,6 @@ int ObjectRef::l_get_day_night_ratio(lua_State *L)
1593
1646
return 1 ;
1594
1647
}
1595
1648
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
-
1635
1649
ObjectRef::ObjectRef (ServerActiveObject *object):
1636
1650
m_object(object)
1637
1651
{
@@ -1719,6 +1733,8 @@ const luaL_reg ObjectRef::methods[] = {
1719
1733
luamethod (ObjectRef, set_detach),
1720
1734
luamethod (ObjectRef, set_properties),
1721
1735
luamethod (ObjectRef, get_properties),
1736
+ luamethod (ObjectRef, set_nametag_attributes),
1737
+ luamethod (ObjectRef, get_nametag_attributes),
1722
1738
// LuaEntitySAO-only
1723
1739
luamethod (ObjectRef, setvelocity),
1724
1740
luamethod (ObjectRef, getvelocity),
@@ -1768,7 +1784,5 @@ const luaL_reg ObjectRef::methods[] = {
1768
1784
luamethod (ObjectRef, get_local_animation),
1769
1785
luamethod (ObjectRef, set_eye_offset),
1770
1786
luamethod (ObjectRef, get_eye_offset),
1771
- luamethod (ObjectRef, set_nametag_attributes),
1772
- luamethod (ObjectRef, get_nametag_attributes),
1773
1787
{0 ,0 }
1774
1788
};
0 commit comments