@@ -1102,7 +1102,7 @@ void Client::sendRemovedSounds(std::vector<s32> &soundList)
1102
1102
}
1103
1103
1104
1104
void Client::sendNodemetaFields (v3s16 p, const std::string &formname,
1105
- const std::map<std::string, std::string> &fields)
1105
+ const StringMap &fields)
1106
1106
{
1107
1107
size_t fields_size = fields.size ();
1108
1108
@@ -1112,10 +1112,10 @@ void Client::sendNodemetaFields(v3s16 p, const std::string &formname,
1112
1112
1113
1113
pkt << p << formname << (u16) (fields_size & 0xFFFF );
1114
1114
1115
- for (std::map<std::string, std::string>:: const_iterator
1116
- i = fields.begin (); i != fields.end (); i++ ) {
1117
- const std::string &name = i ->first ;
1118
- const std::string &value = i ->second ;
1115
+ StringMap:: const_iterator it;
1116
+ for (it = fields.begin (); it != fields.end (); ++it ) {
1117
+ const std::string &name = it ->first ;
1118
+ const std::string &value = it ->second ;
1119
1119
pkt << name;
1120
1120
pkt.putLongString (value);
1121
1121
}
@@ -1124,18 +1124,18 @@ void Client::sendNodemetaFields(v3s16 p, const std::string &formname,
1124
1124
}
1125
1125
1126
1126
void Client::sendInventoryFields (const std::string &formname,
1127
- const std::map<std::string, std::string> &fields)
1127
+ const StringMap &fields)
1128
1128
{
1129
1129
size_t fields_size = fields.size ();
1130
1130
FATAL_ERROR_IF (fields_size > 0xFFFF , " Unsupported number of inventory fields" );
1131
1131
1132
1132
NetworkPacket pkt (TOSERVER_INVENTORY_FIELDS, 0 );
1133
1133
pkt << formname << (u16) (fields_size & 0xFFFF );
1134
1134
1135
- for (std::map<std::string, std::string>:: const_iterator
1136
- i = fields.begin (); i != fields.end (); i++ ) {
1137
- const std::string &name = i ->first ;
1138
- const std::string &value = i ->second ;
1135
+ StringMap:: const_iterator it;
1136
+ for (it = fields.begin (); it != fields.end (); ++it ) {
1137
+ const std::string &name = it ->first ;
1138
+ const std::string &value = it ->second ;
1139
1139
pkt << name;
1140
1140
pkt.putLongString (value);
1141
1141
}
@@ -1918,14 +1918,13 @@ ParticleManager* Client::getParticleManager()
1918
1918
1919
1919
scene::IAnimatedMesh* Client::getMesh (const std::string &filename)
1920
1920
{
1921
- std::map<std::string, std::string>::const_iterator i =
1922
- m_mesh_data.find (filename);
1923
- if (i == m_mesh_data.end ()){
1924
- errorstream<<" Client::getMesh(): Mesh not found: \" " <<filename<<" \" "
1925
- <<std::endl;
1921
+ StringMap::const_iterator it = m_mesh_data.find (filename);
1922
+ if (it == m_mesh_data.end ()) {
1923
+ errorstream << " Client::getMesh(): Mesh not found: \" " << filename
1924
+ << " \" " << std::endl;
1926
1925
return NULL ;
1927
1926
}
1928
- const std::string &data = i ->second ;
1927
+ const std::string &data = it ->second ;
1929
1928
scene::ISceneManager *smgr = m_device->getSceneManager ();
1930
1929
1931
1930
// Create the mesh, remove it from cache and return it
0 commit comments