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/libtdegames/kgame
Timothy Pearson cbf01c9f46
Rename kwin to twin (part 1 of 2)
13 years ago
..
dialogs Rename kwin to twin (part 1 of 2) 13 years ago
COMPAT Actually move the kde files that were renamed in the last commit 13 years ago
DESIGN Actually move the kde files that were renamed in the last commit 13 years ago
Makefile.am Actually move the kde files that were renamed in the last commit 13 years ago
README.LIB Actually move the kde files that were renamed in the last commit 13 years ago
TODO Actually move the kde files that were renamed in the last commit 13 years ago
kgame.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgame.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamechat.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgamechat.h Actually move the kde files that were renamed in the last commit 13 years ago
kgameerror.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgameerror.h Actually move the kde files that were renamed in the last commit 13 years ago
kgameio.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgameio.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamemessage.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgamemessage.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamenetwork.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgamenetwork.h Rename kwin to twin (part 1 of 2) 13 years ago
kgameprocess.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgameprocess.h Actually move the kde files that were renamed in the last commit 13 years ago
kgameproperty.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgameproperty.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamepropertyarray.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamepropertyhandler.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgamepropertyhandler.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamepropertylist.h Actually move the kde files that were renamed in the last commit 13 years ago
kgamesequence.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kgamesequence.h Actually move the kde files that were renamed in the last commit 13 years ago
kgameversion.h Actually move the kde files that were renamed in the last commit 13 years ago
kmessageclient.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kmessageclient.h Actually move the kde files that were renamed in the last commit 13 years ago
kmessageio.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kmessageio.h Actually move the kde files that were renamed in the last commit 13 years ago
kmessageserver.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kmessageserver.h Actually move the kde files that were renamed in the last commit 13 years ago
kmessageserver.png Actually move the kde files that were renamed in the last commit 13 years ago
kplayer.cpp Actually move the kde files that were renamed in the last commit 13 years ago
kplayer.h Actually move the kde files that were renamed in the last commit 13 years ago
libtdegames.html Actually move the kde files that were renamed in the last commit 13 years ago
messages.txt Actually move the kde files that were renamed in the last commit 13 years ago
scenario0.png Actually move the kde files that were renamed in the last commit 13 years ago
scenario1.png Actually move the kde files that were renamed in the last commit 13 years ago
scenario2.png Actually move the kde files that were renamed in the last commit 13 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!