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
tpearson 838baf3f99
TQt4 port kdegames
13 years ago
..
dialogs TQt4 port kdegames 13 years ago
COMPAT TQt4 port kdegames 13 years ago
DESIGN TQt4 port kdegames 13 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 TQt4 port kdegames 13 years ago
kgame.h TQt4 port kdegames 13 years ago
kgamechat.cpp TQt4 port kdegames 13 years ago
kgamechat.h TQt4 port kdegames 13 years ago
kgameerror.cpp TQt4 port kdegames 13 years ago
kgameerror.h Trinity Qt initial conversion 14 years ago
kgameio.cpp TQt4 port kdegames 13 years ago
kgameio.h TQt4 port kdegames 13 years ago
kgamemessage.cpp TQt4 port kdegames 13 years ago
kgamemessage.h TQt4 port kdegames 13 years ago
kgamenetwork.cpp TQt4 port kdegames 13 years ago
kgamenetwork.h TQt4 port kdegames 13 years ago
kgameprocess.cpp TQt4 port kdegames 13 years ago
kgameprocess.h TQt4 port kdegames 13 years ago
kgameproperty.cpp TQt4 port kdegames 13 years ago
kgameproperty.h TQt4 port kdegames 13 years ago
kgamepropertyarray.h Trinity Qt initial conversion 14 years ago
kgamepropertyhandler.cpp TQt4 port kdegames 13 years ago
kgamepropertyhandler.h TQt4 port kdegames 13 years ago
kgamepropertylist.h TQt4 port kdegames 13 years ago
kgamesequence.cpp Trinity Qt initial conversion 14 years ago
kgamesequence.h TQt4 port kdegames 13 years ago
kgameversion.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kmessageclient.cpp TQt4 port kdegames 13 years ago
kmessageclient.h TQt4 port kdegames 13 years ago
kmessageio.cpp TQt4 port kdegames 13 years ago
kmessageio.h TQt4 port kdegames 13 years ago
kmessageserver.cpp TQt4 port kdegames 13 years ago
kmessageserver.h TQt4 port kdegames 13 years ago
kmessageserver.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kplayer.cpp TQt4 port kdegames 13 years ago
kplayer.h TQt4 port kdegames 13 years ago
libkdegames.html Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
messages.txt TQt4 port kdegames 13 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!