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.
tdegames/libkdegames/kgame
toma c90c389a8a
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
15 years ago
..
dialogs Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
COMPAT Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
DESIGN Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
Makefile.am Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README.LIB Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgame.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgame.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamechat.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamechat.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameerror.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameerror.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameio.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameio.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamemessage.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamemessage.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamenetwork.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamenetwork.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameprocess.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameprocess.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameproperty.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameproperty.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamepropertyarray.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamepropertyhandler.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamepropertyhandler.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamepropertylist.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamesequence.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgamesequence.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kgameversion.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageclient.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageclient.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageio.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageio.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageserver.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageserver.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageserver.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kplayer.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kplayer.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
libkdegames.html Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
messages.txt Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
scenario0.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
scenario1.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
scenario2.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README.LIB

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!