mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Merge with develop
This commit is contained in:
parent
9146e406a1
commit
121bb76b97
1 changed files with 22 additions and 18 deletions
|
@ -132,22 +132,29 @@ void CCDBSynchronised::read( const string &fileName )
|
||||||
|
|
||||||
// value
|
// value
|
||||||
token = strtok(buffer," \t");
|
token = strtok(buffer," \t");
|
||||||
if( token == NULL ) continue;
|
|
||||||
|
if (token)
|
||||||
|
{
|
||||||
sint64 value;
|
sint64 value;
|
||||||
fromString((const char*)token, value);
|
fromString((const char*)token, value);
|
||||||
|
|
||||||
// property name
|
// property name
|
||||||
token = strtok(NULL," \n");
|
token = strtok(NULL," \n");
|
||||||
if( token == NULL ) continue;
|
|
||||||
|
if (token)
|
||||||
|
{
|
||||||
string propName(token);
|
string propName(token);
|
||||||
|
|
||||||
// set the value of the property
|
// set the value of the property
|
||||||
ICDBNode::CTextId txtId(propName);
|
ICDBNode::CTextId txtId(propName);
|
||||||
_Database->setProp(txtId, value);
|
_Database->setProp(txtId, value);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
delete [] buffer;
|
||||||
|
}
|
||||||
|
|
||||||
f.close();
|
f.close();
|
||||||
|
|
||||||
} // read //
|
} // read //
|
||||||
|
|
||||||
|
|
||||||
|
@ -177,7 +184,6 @@ void CCDBSynchronised::write( const string &fileName )
|
||||||
{
|
{
|
||||||
nlwarning("<CCDBSynchronised::write> can't write %s : the database has not been initialized",fileName.c_str());
|
nlwarning("<CCDBSynchronised::write> can't write %s : the database has not been initialized",fileName.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
} // write //
|
} // write //
|
||||||
|
|
||||||
|
|
||||||
|
@ -285,11 +291,9 @@ string CCDBSynchronised::getString( uint32 id )
|
||||||
{
|
{
|
||||||
return (*itStr).second;
|
return (*itStr).second;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
nlwarning("<CCDBSynchronised::getString> string with id %d was not found",id);
|
nlwarning("<CCDBSynchronised::getString> string with id %d was not found",id);
|
||||||
return "";
|
return "";
|
||||||
}
|
|
||||||
} // getString //
|
} // getString //
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue