You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
699 B
13 lines
699 B
15 years ago
|
some thoughts and comments about the lib - usually for KGame hackers
|
||
|
|
||
|
- setMin/MaxPlayers() etc. use KGameProperty::changeValue() which is slightly
|
||
|
unclean but as these functions can only called by the ADMIN it doesn't matter.
|
||
|
- AB: KGamePropertyList && KGamePropertyArray:
|
||
|
for PolicyClean||PolicyDirty the values are streamed into a QDataStream as usual
|
||
|
for PolicyDirty||PolicyLocal the values are streamed as well but
|
||
|
additionally command() is called immediately. The values are read from
|
||
|
the stream there. This is some kind of performance loss as it would be
|
||
|
faster *not* to stream it but imediately call e.g. insert(). But it will
|
||
|
probably save a *lot* of bugs!
|
||
|
|