├── .flatpak-manifest.json ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── .krazy ├── AUTHORS ├── CMakeLists.txt ├── CMakePresets.json.license ├── COPYING ├── COPYING.DOC ├── COPYING.LIB ├── ChangeLog ├── Doxyfile ├── INSTALL ├── KsirK.kdevelop ├── README ├── TODO ├── doc ├── CMakeLists.txt ├── ksirk │ ├── CMakeLists.txt │ ├── application-exit.png │ ├── attackOne.png │ ├── attackThree.png │ ├── attackTwo.png │ ├── attackmenu.png │ ├── autoattack.png │ ├── defensedialog.png │ ├── displaygoalmessage.png │ ├── displaygoalwarningmessage.png │ ├── document-new.png │ ├── firing-screenshot.png │ ├── index.docbook │ ├── introscreen.png │ ├── invasionslider.png │ ├── joinnetgame.png │ ├── joueurSuivant.png │ ├── justjoined.png │ ├── messagesent.png │ ├── moveArmies.png │ ├── newgamedialog.png │ ├── numnetplayersdialog.png │ ├── placingarmies.png │ ├── playersetupdialog.png │ ├── preferences.png │ ├── recycling.png │ ├── recyclingFinished.png │ └── shownumberofarmies.png └── ksirkskineditor │ ├── CMakeLists.txt │ ├── alaska.png │ ├── attackOne.png │ ├── attackThree.png │ ├── attackTwo.png │ ├── bluedices.png │ ├── cannon.png │ ├── cavalry.png │ ├── defendOne.png │ ├── defendTwo.png │ ├── document-open.png │ ├── document-save.png │ ├── exploding.png │ ├── firing.png │ ├── index.docbook │ ├── infantry.png │ ├── italy.png │ ├── main-snapshot.png │ ├── map-mask.png │ ├── map.png │ ├── mark1.png │ ├── moveArmies.png │ ├── newNetGame.png │ ├── nextPlayer.png │ ├── recycling.png │ ├── recyclingFinished.png │ └── reddices.png ├── favicon.ico ├── ksirk.xpm ├── ksirk ├── CMakeLists.txt ├── Dialogs │ ├── InvasionSlider.cpp │ ├── InvasionSlider.h │ ├── joingame.cpp │ ├── joingame.h │ ├── joingame.ui │ ├── kplayersetupwidget.cpp │ ├── kplayersetupwidget.h │ ├── kwaitedplayersetupdialog.cpp │ ├── kwaitedplayersetupdialog.h │ ├── newGameDialog.ui │ ├── newGameDialogImpl.cpp │ ├── newGameDialogImpl.h │ ├── newGameSummary.ui │ ├── newGameSummaryWidget.cpp │ ├── newGameSummaryWidget.h │ ├── qplayersetupdialog.ui │ ├── qwaitedplayersetupdialog.ui │ ├── restartOrExitDialog.ui │ ├── restartOrExitDialogImpl.cpp │ ├── restartOrExitDialogImpl.h │ ├── tcpconnectwidget.cpp │ ├── tcpconnectwidget.h │ └── tcpconnectwidget.ui ├── GameLogic │ ├── KMessageParts.cpp │ ├── KMessageParts.h │ ├── KsirkChatDelegate.cpp │ ├── KsirkChatDelegate.h │ ├── KsirkChatItem.cpp │ ├── KsirkChatItem.h │ ├── KsirkChatModel.cpp │ ├── KsirkChatModel.h │ ├── aiColsonPlayer.cpp │ ├── aiColsonPlayer.h │ ├── aiplayer.cpp │ ├── aiplayer.h │ ├── aiplayerio.cpp │ ├── aiplayerio.h │ ├── continent.cpp │ ├── continent.h │ ├── country.cpp │ ├── country.h │ ├── dice.cpp │ ├── dice.h │ ├── distributiondata.cpp │ ├── distributiondata.h │ ├── eventslistproperty.cpp │ ├── eventslistproperty.h │ ├── gameautomaton.cpp │ ├── gameautomaton.h │ ├── gamesequence.cpp │ ├── gamesequence.h │ ├── goal.cpp │ ├── goal.h │ ├── nationality.cpp │ ├── nationality.h │ ├── newplayerdata.cpp │ ├── newplayerdata.h │ ├── onu.cpp │ ├── onu.h │ ├── player.cpp │ ├── player.h │ └── xfriskaiclient.h ├── KsirkGlobalDefinitions.h ├── Messages.sh ├── SaveLoad │ ├── ksirkgamexmlhandler.cpp │ ├── ksirkgamexmlhandler.h │ ├── ksirkgamexmlloader.cpp │ └── ksirkgamexmlloader.h ├── Sprites │ ├── animsprite.cpp │ ├── animsprite.h │ ├── animspritesgroup.cpp │ ├── animspritesgroup.h │ ├── animspriteslist.cpp │ ├── animspriteslist.h │ ├── animspritespool.cpp │ ├── animspritespool.h │ ├── armysprite.h │ ├── arrowsprite.cpp │ ├── arrowsprite.h │ ├── backgnd.cpp │ ├── backgnd.h │ ├── cannonsprite.cpp │ ├── cannonsprite.h │ ├── cavalrysprite.cpp │ ├── cavalrysprite.h │ ├── flagsprite.h │ ├── infantrysprite.cpp │ ├── infantrysprite.h │ ├── skinSpritesData.cpp │ └── skinSpritesData.h ├── config-ksirk.h.in ├── decoratedgameframe.cpp ├── decoratedgameframe.h ├── extract-onu-names.pl ├── fightArena.cpp ├── fightArena.h ├── gestionSprites.cpp ├── icons │ ├── CMakeLists.txt │ └── hicolor │ │ ├── 128-apps-ksirk.png │ │ ├── 16-apps-ksirk.png │ │ ├── 22-apps-ksirk.png │ │ ├── 32-apps-ksirk.png │ │ ├── 48-apps-ksirk.png │ │ ├── 64-apps-ksirk.png │ │ ├── CMakeLists.txt │ │ └── sc-apps-ksirk.svgz ├── kgamewin.cpp ├── kgamewin.h ├── kgamewinslots.cpp ├── krightdialog.cpp ├── krightdialog.h ├── ksirk.knsrc ├── ksirk.qrc ├── ksirkConfigDialog.cpp ├── ksirkConfigDialog.h ├── ksirksettings.kcfg ├── ksirksettings.kcfgc ├── ksirkui.rc ├── main.cpp ├── mainMenu.cpp ├── mainMenu.h ├── mainMenu.ui ├── newgamesetup.cpp ├── newgamesetup.h ├── org.kde.ksirk.appdata.xml ├── org.kde.ksirk.desktop ├── preferences.ui ├── skins │ ├── CMakeLists.txt │ ├── README-skins.txt │ ├── default │ │ ├── CMakeLists.txt │ │ ├── Data │ │ │ ├── CMakeLists.txt │ │ │ └── world.desktop │ │ ├── Images │ │ │ ├── 2DownArrow.png │ │ │ ├── 2UpArrow.png │ │ │ ├── CMakeLists.txt │ │ │ ├── arena.svg │ │ │ ├── attackAuto.png │ │ │ ├── attackOne.png │ │ │ ├── attackThree.png │ │ │ ├── attackTwo.png │ │ │ ├── cancel.png │ │ │ ├── cannon.png │ │ │ ├── cavalry.png │ │ │ ├── defendOne.png │ │ │ ├── defendTwo.png │ │ │ ├── downArrow.png │ │ │ ├── flag.png │ │ │ ├── infantry.png │ │ │ ├── loader.gif │ │ │ ├── logoLeft.png │ │ │ ├── logoRight.png │ │ │ ├── map-mask.png │ │ │ ├── map.png │ │ │ ├── moveArmies.png │ │ │ ├── moveBackFive.png │ │ │ ├── moveBackOne.png │ │ │ ├── moveBackTen.png │ │ │ ├── moveFinish.png │ │ │ ├── moveFive.png │ │ │ ├── moveOne.png │ │ │ ├── moveTen.png │ │ │ ├── newNetGame.png │ │ │ ├── nextPlayer.png │ │ │ ├── pool.svg │ │ │ ├── recycling.png │ │ │ ├── recyclingFinished.png │ │ │ ├── snapshot.jpg │ │ │ ├── soldierKneeling.png │ │ │ ├── stopAttackAuto.png │ │ │ ├── upArrow.png │ │ │ └── work │ │ │ │ ├── README │ │ │ │ ├── aide.png │ │ │ │ ├── aide.svg │ │ │ │ ├── annuler.svg │ │ │ │ ├── attackOne.svg │ │ │ │ ├── attackThree.svg │ │ │ │ ├── attackTwo.svg │ │ │ │ ├── bluedice1.png │ │ │ │ ├── bluedice1.svg │ │ │ │ ├── bluedice2.png │ │ │ │ ├── bluedice2.svg │ │ │ │ ├── bluedice3.png │ │ │ │ ├── bluedice3.svg │ │ │ │ ├── bluedice4.png │ │ │ │ ├── bluedice4.svg │ │ │ │ ├── bluedice5.png │ │ │ │ ├── bluedice5.svg │ │ │ │ ├── bluedice6.png │ │ │ │ ├── bluedice6.svg │ │ │ │ ├── countries │ │ │ │ ├── alaska.png │ │ │ │ ├── alberta.png │ │ │ │ ├── algeria.png │ │ │ │ ├── arabia.png │ │ │ │ ├── benelux.png │ │ │ │ ├── brazil.png │ │ │ │ ├── chile.png │ │ │ │ ├── china.png │ │ │ │ ├── columbia.png │ │ │ │ ├── eastus.png │ │ │ │ ├── egypt.png │ │ │ │ ├── france.png │ │ │ │ ├── gabon.png │ │ │ │ ├── groenland.png │ │ │ │ ├── india.png │ │ │ │ ├── indonesia.png │ │ │ │ ├── iran.png │ │ │ │ ├── island.png │ │ │ │ ├── japan.png │ │ │ │ ├── kazakstan.png │ │ │ │ ├── madagascar.png │ │ │ │ ├── mexico.png │ │ │ │ ├── middleeast.png │ │ │ │ ├── mongolia.png │ │ │ │ ├── newsouthwalles.png │ │ │ │ ├── newzealand.png │ │ │ │ ├── niger.png │ │ │ │ ├── ontario.png │ │ │ │ ├── pakistan.png │ │ │ │ ├── papouasia.png │ │ │ │ ├── paraguay.png │ │ │ │ ├── prussia.png │ │ │ │ ├── quebec.png │ │ │ │ ├── russia.png │ │ │ │ ├── scandinavia.png │ │ │ │ ├── siberia.png │ │ │ │ ├── southafrica.png │ │ │ │ ├── uk.png │ │ │ │ ├── vietnam.png │ │ │ │ ├── westernaustralia.png │ │ │ │ ├── westus.png │ │ │ │ └── zair.png │ │ │ │ ├── defendOne.svg │ │ │ │ ├── defendTwo.svg │ │ │ │ ├── distributionArmees.svg │ │ │ │ ├── distributionArmeesFinie.svg │ │ │ │ ├── joueurSuivant.svg │ │ │ │ ├── logoLeft.svg │ │ │ │ ├── logoRight.svg │ │ │ │ ├── map-mask.svg │ │ │ │ ├── map.png │ │ │ │ ├── map.svg │ │ │ │ ├── moveArmies.svg │ │ │ │ ├── moveBackFive.svg │ │ │ │ ├── moveBackOne.svg │ │ │ │ ├── moveBackTen.svg │ │ │ │ ├── moveFinish.svg │ │ │ │ ├── moveFive.svg │ │ │ │ ├── moveOne.svg │ │ │ │ ├── moveTen.svg │ │ │ │ ├── newNetGame.svg │ │ │ │ ├── nouveauJeu.png │ │ │ │ ├── nouveauJeu.svg │ │ │ │ ├── ouvrirJeu.png │ │ │ │ ├── ouvrirJeu.svg │ │ │ │ ├── pool-en.png │ │ │ │ ├── pool.png │ │ │ │ ├── preferences.png │ │ │ │ ├── preferences.svg │ │ │ │ ├── quitter.png │ │ │ │ ├── quitter.svg │ │ │ │ ├── reddice1.png │ │ │ │ ├── reddice1.svg │ │ │ │ ├── reddice2.png │ │ │ │ ├── reddice2.svg │ │ │ │ ├── reddice3.png │ │ │ │ ├── reddice3.svg │ │ │ │ ├── reddice4.png │ │ │ │ ├── reddice4.svg │ │ │ │ ├── reddice5.png │ │ │ │ ├── reddice5.svg │ │ │ │ ├── reddice6.png │ │ │ │ ├── reddice6.svg │ │ │ │ ├── saveGame.png │ │ │ │ ├── saveGame.svg │ │ │ │ └── sprites │ │ │ │ ├── 8020.png │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── belgium.png │ │ │ │ ├── belgium.svg │ │ │ │ ├── cannon.png │ │ │ │ ├── cannon.svg │ │ │ │ ├── cavalry.png │ │ │ │ ├── cavalry.svg │ │ │ │ ├── exploding.png │ │ │ │ ├── exploding.svg │ │ │ │ ├── firing.png │ │ │ │ ├── firing.svg │ │ │ │ ├── france.png │ │ │ │ ├── france.svg │ │ │ │ ├── infantry.png │ │ │ │ ├── infantry.svg │ │ │ │ ├── infantry1.svg │ │ │ │ ├── infantry2.svg │ │ │ │ ├── infantry3.svg │ │ │ │ ├── italy.png │ │ │ │ ├── italy.svg │ │ │ │ ├── japan.png │ │ │ │ ├── japan.svg │ │ │ │ ├── uk.png │ │ │ │ ├── uk.svg │ │ │ │ ├── us.png │ │ │ │ └── us.svg │ │ └── Sounds │ │ │ ├── CMakeLists.txt │ │ │ ├── cannon.wav │ │ │ ├── crash.wav │ │ │ └── roll.wav │ ├── jriskmap2ksirkskin.pl │ ├── legacy │ │ ├── CMakeLists.txt │ │ ├── Data │ │ │ ├── CMakeLists.txt │ │ │ └── world.desktop │ │ ├── Images │ │ │ ├── 2DownArrow.png │ │ │ ├── 2UpArrow.png │ │ │ ├── CMakeLists.txt │ │ │ ├── arena.svg │ │ │ ├── attackAuto.png │ │ │ ├── attackOne.png │ │ │ ├── attackThree.png │ │ │ ├── attackTwo.png │ │ │ ├── cancel.png │ │ │ ├── cannon.png │ │ │ ├── cavalry.png │ │ │ ├── defendOne.png │ │ │ ├── defendTwo.png │ │ │ ├── downArrow.png │ │ │ ├── flag.png │ │ │ ├── infantry.png │ │ │ ├── loader.gif │ │ │ ├── logoLeft.png │ │ │ ├── logoRight.png │ │ │ ├── map-mask.png │ │ │ ├── map.png │ │ │ ├── moveArmies.png │ │ │ ├── moveBackFive.png │ │ │ ├── moveBackOne.png │ │ │ ├── moveBackTen.png │ │ │ ├── moveFinish.png │ │ │ ├── moveFive.png │ │ │ ├── moveOne.png │ │ │ ├── moveTen.png │ │ │ ├── newNetGame.png │ │ │ ├── nextPlayer.png │ │ │ ├── pool.svg │ │ │ ├── recycling.png │ │ │ ├── recyclingFinished.png │ │ │ ├── snapshot.jpg │ │ │ ├── soldierKneeling.png │ │ │ ├── stopAttackAuto.png │ │ │ ├── upArrow.png │ │ │ └── work │ │ │ │ ├── README │ │ │ │ ├── aide.png │ │ │ │ ├── aide.svg │ │ │ │ ├── annuler.svg │ │ │ │ ├── attackOne.svg │ │ │ │ ├── attackThree.svg │ │ │ │ ├── attackTwo.svg │ │ │ │ ├── bluedice1.png │ │ │ │ ├── bluedice1.svg │ │ │ │ ├── bluedice2.png │ │ │ │ ├── bluedice2.svg │ │ │ │ ├── bluedice3.png │ │ │ │ ├── bluedice3.svg │ │ │ │ ├── bluedice4.png │ │ │ │ ├── bluedice4.svg │ │ │ │ ├── bluedice5.png │ │ │ │ ├── bluedice5.svg │ │ │ │ ├── bluedice6.png │ │ │ │ ├── bluedice6.svg │ │ │ │ ├── countries │ │ │ │ ├── alaska.png │ │ │ │ ├── alberta.png │ │ │ │ ├── algeria.png │ │ │ │ ├── arabia.png │ │ │ │ ├── benelux.png │ │ │ │ ├── brazil.png │ │ │ │ ├── chile.png │ │ │ │ ├── china.png │ │ │ │ ├── columbia.png │ │ │ │ ├── eastus.png │ │ │ │ ├── egypt.png │ │ │ │ ├── france.png │ │ │ │ ├── gabon.png │ │ │ │ ├── groenland.png │ │ │ │ ├── india.png │ │ │ │ ├── indonesia.png │ │ │ │ ├── iran.png │ │ │ │ ├── island.png │ │ │ │ ├── japan.png │ │ │ │ ├── kazakstan.png │ │ │ │ ├── madagascar.png │ │ │ │ ├── mexico.png │ │ │ │ ├── middleeast.png │ │ │ │ ├── mongolia.png │ │ │ │ ├── newsouthwalles.png │ │ │ │ ├── newzealand.png │ │ │ │ ├── niger.png │ │ │ │ ├── ontario.png │ │ │ │ ├── pakistan.png │ │ │ │ ├── papouasia.png │ │ │ │ ├── paraguay.png │ │ │ │ ├── prussia.png │ │ │ │ ├── quebec.png │ │ │ │ ├── russia.png │ │ │ │ ├── scandinavia.png │ │ │ │ ├── siberia.png │ │ │ │ ├── southafrica.png │ │ │ │ ├── uk.png │ │ │ │ ├── vietnam.png │ │ │ │ ├── westernaustralia.png │ │ │ │ ├── westus.png │ │ │ │ └── zair.png │ │ │ │ ├── defendOne.svg │ │ │ │ ├── defendTwo.svg │ │ │ │ ├── distributionArmees.svg │ │ │ │ ├── distributionArmeesFinie.svg │ │ │ │ ├── joueurSuivant.svg │ │ │ │ ├── logoLeft.svg │ │ │ │ ├── logoRight.svg │ │ │ │ ├── map-mask.svg │ │ │ │ ├── map.png │ │ │ │ ├── map.svg │ │ │ │ ├── moveArmies.svg │ │ │ │ ├── moveBackFive.svg │ │ │ │ ├── moveBackOne.svg │ │ │ │ ├── moveBackTen.svg │ │ │ │ ├── moveFinish.svg │ │ │ │ ├── moveFive.svg │ │ │ │ ├── moveOne.svg │ │ │ │ ├── moveTen.svg │ │ │ │ ├── newNetGame.svg │ │ │ │ ├── nouveauJeu.png │ │ │ │ ├── nouveauJeu.svg │ │ │ │ ├── ouvrirJeu.png │ │ │ │ ├── ouvrirJeu.svg │ │ │ │ ├── pool-en.png │ │ │ │ ├── pool.png │ │ │ │ ├── preferences.png │ │ │ │ ├── preferences.svg │ │ │ │ ├── quitter.png │ │ │ │ ├── quitter.svg │ │ │ │ ├── reddice1.png │ │ │ │ ├── reddice1.svg │ │ │ │ ├── reddice2.png │ │ │ │ ├── reddice2.svg │ │ │ │ ├── reddice3.png │ │ │ │ ├── reddice3.svg │ │ │ │ ├── reddice4.png │ │ │ │ ├── reddice4.svg │ │ │ │ ├── reddice5.png │ │ │ │ ├── reddice5.svg │ │ │ │ ├── reddice6.png │ │ │ │ ├── reddice6.svg │ │ │ │ ├── saveGame.png │ │ │ │ ├── saveGame.svg │ │ │ │ └── sprites │ │ │ │ ├── 8020.png │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── belgium.png │ │ │ │ ├── belgium.svg │ │ │ │ ├── cannon.png │ │ │ │ ├── cannon.svg │ │ │ │ ├── cavalry.png │ │ │ │ ├── cavalry.svg │ │ │ │ ├── exploding.png │ │ │ │ ├── exploding.svg │ │ │ │ ├── firing.png │ │ │ │ ├── firing.svg │ │ │ │ ├── france.png │ │ │ │ ├── france.svg │ │ │ │ ├── infantry.png │ │ │ │ ├── infantry.svg │ │ │ │ ├── infantry1.svg │ │ │ │ ├── infantry2.svg │ │ │ │ ├── infantry3.svg │ │ │ │ ├── italy.png │ │ │ │ ├── italy.svg │ │ │ │ ├── japan.png │ │ │ │ ├── japan.svg │ │ │ │ ├── uk.png │ │ │ │ ├── uk.svg │ │ │ │ ├── us.png │ │ │ │ └── us.svg │ │ └── Sounds │ │ │ ├── CMakeLists.txt │ │ │ ├── cannon.wav │ │ │ ├── crash.wav │ │ │ └── roll.wav │ ├── realpol │ │ ├── CMakeLists.txt │ │ ├── Data │ │ │ ├── CMakeLists.txt │ │ │ └── onu.xml │ │ ├── Images │ │ │ ├── 2DownArrow.png │ │ │ ├── 2UpArrow.png │ │ │ ├── CMakeLists.txt │ │ │ ├── SoldatAGenoux1.png │ │ │ ├── aide.png │ │ │ ├── aide.svg │ │ │ ├── annuler.png │ │ │ ├── annuler.svg │ │ │ ├── arena.svg │ │ │ ├── attackAuto.png │ │ │ ├── attackOne.png │ │ │ ├── attackOne.svg │ │ │ ├── attackThree.png │ │ │ ├── attackThree.svg │ │ │ ├── attackTwo.png │ │ │ ├── attackTwo.svg │ │ │ ├── bluedice1.png │ │ │ ├── bluedice1.svg │ │ │ ├── bluedice2.png │ │ │ ├── bluedice2.svg │ │ │ ├── bluedice3.png │ │ │ ├── bluedice3.svg │ │ │ ├── bluedice4.png │ │ │ ├── bluedice4.svg │ │ │ ├── bluedice5.png │ │ │ ├── bluedice5.svg │ │ │ ├── bluedice6.png │ │ │ ├── bluedice6.svg │ │ │ ├── countries │ │ │ │ ├── alaska.png │ │ │ │ ├── alberta.png │ │ │ │ ├── algeria.png │ │ │ │ ├── arabia.png │ │ │ │ ├── benelux.png │ │ │ │ ├── brazil.png │ │ │ │ ├── chile.png │ │ │ │ ├── china.png │ │ │ │ ├── columbia.png │ │ │ │ ├── eastus.png │ │ │ │ ├── egypt.png │ │ │ │ ├── france.png │ │ │ │ ├── gabon.png │ │ │ │ ├── groenland.png │ │ │ │ ├── india.png │ │ │ │ ├── indonesia.png │ │ │ │ ├── iran.png │ │ │ │ ├── island.png │ │ │ │ ├── japan.png │ │ │ │ ├── kazakstan.png │ │ │ │ ├── madagascar.png │ │ │ │ ├── mexico.png │ │ │ │ ├── middleeast.png │ │ │ │ ├── mongolia.png │ │ │ │ ├── newsouthwalles.png │ │ │ │ ├── newzealand.png │ │ │ │ ├── niger.png │ │ │ │ ├── ontario.png │ │ │ │ ├── pakistan.png │ │ │ │ ├── papouasia.png │ │ │ │ ├── paraguay.png │ │ │ │ ├── prussia.png │ │ │ │ ├── quebec.png │ │ │ │ ├── russia.png │ │ │ │ ├── scandinavia.png │ │ │ │ ├── siberia.png │ │ │ │ ├── southafrica.png │ │ │ │ ├── uk.png │ │ │ │ ├── vietnam.png │ │ │ │ ├── westernaustralia.png │ │ │ │ ├── westus.png │ │ │ │ └── zair.png │ │ │ ├── defendOne.png │ │ │ ├── defendOne.svg │ │ │ ├── defendTwo.png │ │ │ ├── defendTwo.svg │ │ │ ├── distributionArmees.png │ │ │ ├── distributionArmees.svg │ │ │ ├── distributionArmeesFinie.png │ │ │ ├── distributionArmeesFinie.svg │ │ │ ├── downArrow.png │ │ │ ├── joueurSuivant.png │ │ │ ├── joueurSuivant.svg │ │ │ ├── logoLeft.png │ │ │ ├── logoLeft.svg │ │ │ ├── logoRight.png │ │ │ ├── logoRight.svg │ │ │ ├── map-mask.png │ │ │ ├── map.png │ │ │ ├── map.svg │ │ │ ├── moveArmies.png │ │ │ ├── moveArmies.svg │ │ │ ├── moveBackFive.png │ │ │ ├── moveBackFive.svg │ │ │ ├── moveBackOne.png │ │ │ ├── moveBackOne.svg │ │ │ ├── moveBackTen.png │ │ │ ├── moveBackTen.svg │ │ │ ├── moveFinish.png │ │ │ ├── moveFinish.svg │ │ │ ├── moveFive.png │ │ │ ├── moveFive.svg │ │ │ ├── moveOne.png │ │ │ ├── moveOne.svg │ │ │ ├── moveTen.png │ │ │ ├── moveTen.svg │ │ │ ├── newNetGame.png │ │ │ ├── newNetGame.svg │ │ │ ├── nouveauJeu.png │ │ │ ├── nouveauJeu.svg │ │ │ ├── ouvrirJeu.png │ │ │ ├── ouvrirJeu.svg │ │ │ ├── pool-en.png │ │ │ ├── pool.png │ │ │ ├── preferences.png │ │ │ ├── preferences.svg │ │ │ ├── quitter.png │ │ │ ├── quitter.svg │ │ │ ├── reddice1.png │ │ │ ├── reddice1.svg │ │ │ ├── reddice2.png │ │ │ ├── reddice2.svg │ │ │ ├── reddice3.png │ │ │ ├── reddice3.svg │ │ │ ├── reddice4.png │ │ │ ├── reddice4.svg │ │ │ ├── reddice5.png │ │ │ ├── reddice5.svg │ │ │ ├── reddice6.png │ │ │ ├── reddice6.svg │ │ │ ├── saveGame.png │ │ │ ├── saveGame.svg │ │ │ ├── snapshot.jpg │ │ │ ├── sprites │ │ │ │ ├── 8020.png │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── belgium.png │ │ │ │ ├── belgium.svg │ │ │ │ ├── cannon.png │ │ │ │ ├── cannon.svg │ │ │ │ ├── cavalry.png │ │ │ │ ├── cavalry.svg │ │ │ │ ├── exploding.png │ │ │ │ ├── exploding.svg │ │ │ │ ├── firing.png │ │ │ │ ├── firing.svg │ │ │ │ ├── france.png │ │ │ │ ├── france.svg │ │ │ │ ├── infantry.png │ │ │ │ ├── infantry.svg │ │ │ │ ├── infantry1.svg │ │ │ │ ├── infantry2.svg │ │ │ │ ├── infantry3.svg │ │ │ │ ├── italy.png │ │ │ │ ├── italy.svg │ │ │ │ ├── japan.png │ │ │ │ ├── japan.svg │ │ │ │ ├── uk.png │ │ │ │ ├── uk.svg │ │ │ │ ├── us.png │ │ │ │ └── us.svg │ │ │ ├── stopAttackAuto.png │ │ │ └── upArrow.png │ │ └── Sounds │ │ │ ├── CMakeLists.txt │ │ │ ├── canon.wav │ │ │ ├── crash.wav │ │ │ └── roule.wav │ ├── skinsdir │ └── static │ │ ├── CMakeLists.txt │ │ ├── Data │ │ ├── CMakeLists.txt │ │ └── world.desktop │ │ ├── Images │ │ ├── 2DownArrow.png │ │ ├── 2UpArrow.png │ │ ├── CMakeLists.txt │ │ ├── arena.svg │ │ ├── attackAuto.png │ │ ├── attackOne.png │ │ ├── attackThree.png │ │ ├── attackTwo.png │ │ ├── cancel.png │ │ ├── defendOne.png │ │ ├── defendTwo.png │ │ ├── downArrow.png │ │ ├── loader.gif │ │ ├── logoLeft.png │ │ ├── logoRight.png │ │ ├── map-mask.png │ │ ├── moveArmies.png │ │ ├── moveBackFive.png │ │ ├── moveBackOne.png │ │ ├── moveBackTen.png │ │ ├── moveFinish.png │ │ ├── moveFive.png │ │ ├── moveOne.png │ │ ├── moveTen.png │ │ ├── newNetGame.png │ │ ├── nextPlayer.png │ │ ├── pool.svg │ │ ├── recycling.png │ │ ├── recyclingFinished.png │ │ ├── snapshot.jpg │ │ ├── soldierKneeling.png │ │ ├── stopAttackAuto.png │ │ └── upArrow.png │ │ └── Sounds │ │ ├── CMakeLists.txt │ │ ├── cannon.wav │ │ ├── crash.wav │ │ └── roll.wav └── templates │ ├── cpp_template │ └── header_template ├── ksirkskineditor ├── CMakeLists.txt ├── Messages.sh ├── NOTES ├── continent.cpp ├── continent.h ├── country.cpp ├── country.h ├── cross.png ├── goal.cpp ├── goal.h ├── ksirkSkinEditorConfigDialog.cpp ├── ksirkSkinEditorConfigDialog.h ├── ksirkcontinentdefinition.h ├── ksirkcontinentdefinition.ui ├── ksirkcountrydefinition.cpp ├── ksirkcountrydefinition.h ├── ksirkcountrydefinition.ui ├── ksirkgoaldefinition.h ├── ksirkgoaldefinition.ui ├── ksirknationalitydefinition.h ├── ksirknationalitydefinition.ui ├── ksirkskindefinition.h ├── ksirkskindefinition.ui ├── ksirkskineditor.qrc ├── ksirkskineditorcountriesselectiondialog.h ├── ksirkskineditorcountriesselectiondialog.ui ├── ksirkskineditorpixmapitem.cpp ├── ksirkskineditorpixmapitem.h ├── ksirkskineditorscene.cpp ├── ksirkskineditorscene.h ├── ksirkskineditorsettings.kcfg ├── ksirkskineditorsettings.kcfgc ├── ksirkskineditortextitem.cpp ├── ksirkskineditortextitem.h ├── ksirkskineditorui.rc ├── ksirkskineditorwidget.h ├── ksirkskineditorwidget.ui ├── ksirkspritesdefinition.h ├── ksirkspritesdefinition.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── nationality.cpp ├── nationality.h ├── onu.cpp ├── onu.h ├── org.kde.ksirkskineditor.desktop ├── preferences.ui ├── skinSpritesData.cpp ├── skinSpritesData.h ├── spritetype.h └── target.png ├── logo.png ├── packaging ├── KsirK_2.spec ├── ksirk-1.6-i486-1as.txt ├── ksirk.spec └── slack │ ├── ksirk.SlackBuild │ ├── slack-desc │ └── slack-required ├── po ├── ar │ └── ksirk.po ├── ast │ ├── ksirk.po │ └── ksirkskineditor.po ├── be │ └── ksirk.po ├── bg │ ├── ksirk.po │ └── ksirkskineditor.po ├── bs │ ├── ksirk.po │ └── ksirkskineditor.po ├── ca │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── ca@valencia │ ├── ksirk.po │ └── ksirkskineditor.po ├── cs │ ├── ksirk.po │ └── ksirkskineditor.po ├── da │ ├── ksirk.po │ └── ksirkskineditor.po ├── de │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── el │ └── ksirk.po ├── en_GB │ ├── ksirk.po │ └── ksirkskineditor.po ├── eo │ ├── ksirk.po │ └── ksirkskineditor.po ├── es │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── et │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── eu │ ├── ksirk.po │ └── ksirkskineditor.po ├── fi │ ├── ksirk.po │ └── ksirkskineditor.po ├── fr │ ├── docs │ │ └── ksirk │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── ga │ ├── ksirk.po │ └── ksirkskineditor.po ├── gl │ ├── ksirk.po │ └── ksirkskineditor.po ├── he │ └── ksirk.po ├── hi │ ├── ksirk.po │ └── ksirkskineditor.po ├── hne │ └── ksirk.po ├── hr │ ├── ksirk.po │ └── ksirkskineditor.po ├── hu │ ├── ksirk.po │ └── ksirkskineditor.po ├── ia │ ├── ksirk.po │ └── ksirkskineditor.po ├── is │ ├── ksirk.po │ └── ksirkskineditor.po ├── it │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── ja │ ├── ksirk.po │ └── ksirkskineditor.po ├── ka │ ├── ksirk.po │ └── ksirkskineditor.po ├── kk │ ├── ksirk.po │ └── ksirkskineditor.po ├── km │ ├── ksirk.po │ └── ksirkskineditor.po ├── lt │ ├── ksirk.po │ └── ksirkskineditor.po ├── lv │ ├── ksirk.po │ └── ksirkskineditor.po ├── mai │ ├── ksirk.po │ └── ksirkskineditor.po ├── ml │ ├── ksirk.po │ └── ksirkskineditor.po ├── mr │ ├── ksirk.po │ └── ksirkskineditor.po ├── ms │ └── ksirk.po ├── nb │ ├── ksirk.po │ └── ksirkskineditor.po ├── nds │ ├── ksirk.po │ └── ksirkskineditor.po ├── nl │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── nn │ ├── ksirk.po │ └── ksirkskineditor.po ├── oc │ └── ksirk.po ├── pl │ ├── ksirk.po │ └── ksirkskineditor.po ├── pt │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── pt_BR │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── ro │ ├── ksirk.po │ └── ksirkskineditor.po ├── ru │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── sa │ ├── ksirk.po │ └── ksirkskineditor.po ├── sk │ ├── ksirk.po │ └── ksirkskineditor.po ├── sl │ ├── ksirk.po │ └── ksirkskineditor.po ├── sr │ ├── ksirk.po │ └── ksirkskineditor.po ├── sr@ijekavian │ ├── ksirk.po │ └── ksirkskineditor.po ├── sr@ijekavianlatin │ ├── ksirk.po │ └── ksirkskineditor.po ├── sr@latin │ ├── ksirk.po │ └── ksirkskineditor.po ├── sv │ ├── docs │ │ ├── ksirk │ │ │ └── index.docbook │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── tr │ ├── ksirk.po │ └── ksirkskineditor.po ├── ug │ ├── ksirk.po │ └── ksirkskineditor.po ├── uk │ ├── docs │ │ ├── ksirk │ │ │ ├── attackmenu.png │ │ │ ├── defensedialog.png │ │ │ ├── displaygoalmessage.png │ │ │ ├── displaygoalwarningmessage.png │ │ │ ├── firing-screenshot.png │ │ │ ├── index.docbook │ │ │ ├── introscreen.png │ │ │ ├── invasionslider.png │ │ │ ├── joinnetgame.png │ │ │ ├── justjoined.png │ │ │ ├── newgamedialog.png │ │ │ ├── numnetplayersdialog.png │ │ │ ├── placingarmies.png │ │ │ ├── playersetupdialog.png │ │ │ ├── preferences.png │ │ │ └── shownumberofarmies.png │ │ └── ksirkskineditor │ │ │ └── index.docbook │ ├── ksirk.po │ └── ksirkskineditor.po ├── zh_CN │ ├── ksirk.po │ └── ksirkskineditor.po └── zh_TW │ ├── ksirk.po │ └── ksirkskineditor.po └── snapcraft.yaml /.flatpak-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "org.kde.ksirk", 3 | "branch": "master", 4 | "runtime": "org.kde.Platform", 5 | "runtime-version": "6.8", 6 | "sdk": "org.kde.Sdk", 7 | "command": "ksirk", 8 | "tags": ["nightly"], 9 | "desktop-file-name-suffix": " (Nightly)", 10 | "finish-args": ["--share=ipc", "--socket=fallback-x11", "--socket=wayland" ], 11 | 12 | "modules": [ 13 | { 14 | "config-opts": [ "-DENABLE_TESTING=OFF" ], 15 | "name": "libkdegames", 16 | "buildsystem": "cmake-ninja", 17 | "sources": [ { "type": "git", "url": "https://invent.kde.org/kde/libkdegames.git" } ], 18 | "modules": [ 19 | { 20 | "config-opts": [ "-DENABLE_TESTING=OFF" ], 21 | "name": "openal", 22 | "buildsystem": "cmake-ninja", 23 | "sources": [ 24 | { 25 | "type": "git", 26 | "url": "https://github.com/kcat/openal-soft.git", 27 | "tag": "1.23.1", 28 | "x-checker-data": { 29 | "type": "git", 30 | "tag-pattern": "^([\\d.]+)$" 31 | }, 32 | "commit": "d3875f333fb6abe2f39d82caca329414871ae53b" 33 | } 34 | ] 35 | } 36 | ] 37 | }, 38 | { 39 | "config-opts": [ "-DENABLE_TESTING=OFF", "-DBUILD_WITH_QT6=ON" ], 40 | "name": "qca", 41 | "buildsystem": "cmake-ninja", 42 | "sources": [ { "type": "git", "url": "https://invent.kde.org/kde/qca.git" } ] 43 | }, 44 | { 45 | "name": "ksirk", 46 | "buildsystem": "cmake-ninja", 47 | "sources": [ 48 | { "type": "dir", "path": "." } 49 | ] 50 | } 51 | ] 52 | } 53 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: CC0-1.0 2 | # SPDX-FileCopyrightText: none 3 | .kdev4/ 4 | /build*/ 5 | *.kdev4 6 | CMakeLists.txt.user* 7 | .cmake/ 8 | /.clang-format 9 | /compile_commands.json 10 | .clangd 11 | .cache 12 | .idea 13 | /cmake-build* 14 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: None 2 | # SPDX-License-Identifier: CC0-1.0 3 | 4 | include: 5 | - project: sysadmin/ci-utilities 6 | file: 7 | - /gitlab-templates/linux-qt6.yml 8 | - /gitlab-templates/linux-qt6-next.yml 9 | - /gitlab-templates/freebsd-qt6.yml 10 | - /gitlab-templates/flatpak.yml 11 | - /gitlab-templates/xml-lint.yml 12 | - /gitlab-templates/yaml-lint.yml 13 | -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: None 2 | # SPDX-License-Identifier: CC0-1.0 3 | 4 | Dependencies: 5 | - 'on': ['Linux', 'FreeBSD'] 6 | 'require': 7 | 'frameworks/extra-cmake-modules': '@latest-kf6' 8 | 'frameworks/kcompletion': '@latest-kf6' 9 | 'frameworks/kconfig': '@latest-kf6' 10 | 'frameworks/kconfigwidgets': '@latest-kf6' 11 | 'frameworks/kcoreaddons': '@latest-kf6' 12 | 'frameworks/kcrash': '@latest-kf6' 13 | 'frameworks/kdbusaddons': '@latest-kf6' 14 | 'frameworks/kdoctools': '@latest-kf6' 15 | 'frameworks/ki18n': '@latest-kf6' 16 | 'frameworks/kio': '@latest-kf6' 17 | 'frameworks/knewstuff': '@latest-kf6' 18 | 'frameworks/kwallet': '@latest-kf6' 19 | 'frameworks/kwidgetsaddons': '@latest-kf6' 20 | 'frameworks/kxmlgui': '@latest-kf6' 21 | 'games/libkdegames': '@same' 22 | 23 | Options: 24 | require-passing-tests-on: ['Linux', 'FreeBSD'] 25 | -------------------------------------------------------------------------------- /.krazy: -------------------------------------------------------------------------------- 1 | SKIP /iris/ 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Gael de Chalendar aka Kleag 2 | 3 | Contributions (list started lately ; some are missing) 4 | Robin Doer 5 | Albert Astals Cid 6 | Michal Golunski (Polish translation) 7 | Dan Keshet 8 | Andrea Sciucca 9 | Johannes Obermayr 10 | tropikhajma 11 | Cyril Tostivint -------------------------------------------------------------------------------- /CMakePresets.json.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2021 Laurent Montel 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | Build instructions can be found at 2 | http://techbase.kde.org/Getting_Started/Build/KDE4 3 | 4 | -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ksirk) 2 | add_subdirectory(ksirkskineditor) 3 | -------------------------------------------------------------------------------- /doc/ksirk/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | kdoctools_create_handbook(index.docbook 2 | INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en 3 | SUBDIR ksirk 4 | ) 5 | -------------------------------------------------------------------------------- /doc/ksirk/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/application-exit.png -------------------------------------------------------------------------------- /doc/ksirk/attackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/attackOne.png -------------------------------------------------------------------------------- /doc/ksirk/attackThree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/attackThree.png -------------------------------------------------------------------------------- /doc/ksirk/attackTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/attackTwo.png -------------------------------------------------------------------------------- /doc/ksirk/attackmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/attackmenu.png -------------------------------------------------------------------------------- /doc/ksirk/autoattack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/autoattack.png -------------------------------------------------------------------------------- /doc/ksirk/defensedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/defensedialog.png -------------------------------------------------------------------------------- /doc/ksirk/displaygoalmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/displaygoalmessage.png -------------------------------------------------------------------------------- /doc/ksirk/displaygoalwarningmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/displaygoalwarningmessage.png -------------------------------------------------------------------------------- /doc/ksirk/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/document-new.png -------------------------------------------------------------------------------- /doc/ksirk/firing-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/firing-screenshot.png -------------------------------------------------------------------------------- /doc/ksirk/introscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/introscreen.png -------------------------------------------------------------------------------- /doc/ksirk/invasionslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/invasionslider.png -------------------------------------------------------------------------------- /doc/ksirk/joinnetgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/joinnetgame.png -------------------------------------------------------------------------------- /doc/ksirk/joueurSuivant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/joueurSuivant.png -------------------------------------------------------------------------------- /doc/ksirk/justjoined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/justjoined.png -------------------------------------------------------------------------------- /doc/ksirk/messagesent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/messagesent.png -------------------------------------------------------------------------------- /doc/ksirk/moveArmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/moveArmies.png -------------------------------------------------------------------------------- /doc/ksirk/newgamedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/newgamedialog.png -------------------------------------------------------------------------------- /doc/ksirk/numnetplayersdialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/numnetplayersdialog.png -------------------------------------------------------------------------------- /doc/ksirk/placingarmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/placingarmies.png -------------------------------------------------------------------------------- /doc/ksirk/playersetupdialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/playersetupdialog.png -------------------------------------------------------------------------------- /doc/ksirk/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/preferences.png -------------------------------------------------------------------------------- /doc/ksirk/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/recycling.png -------------------------------------------------------------------------------- /doc/ksirk/recyclingFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/recyclingFinished.png -------------------------------------------------------------------------------- /doc/ksirk/shownumberofarmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirk/shownumberofarmies.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | kdoctools_create_handbook(index.docbook 2 | INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en 3 | SUBDIR ksirkskineditor 4 | ) 5 | 6 | -------------------------------------------------------------------------------- /doc/ksirkskineditor/alaska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/alaska.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/attackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/attackOne.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/attackThree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/attackThree.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/attackTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/attackTwo.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/bluedices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/bluedices.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/cannon.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/cavalry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/cavalry.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/defendOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/defendOne.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/defendTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/defendTwo.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/document-open.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/document-save.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/exploding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/exploding.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/firing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/firing.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/infantry.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/italy.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/main-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/main-snapshot.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/map-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/map-mask.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/map.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/mark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/mark1.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/moveArmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/moveArmies.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/newNetGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/newNetGame.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/nextPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/nextPlayer.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/recycling.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/recyclingFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/recyclingFinished.png -------------------------------------------------------------------------------- /doc/ksirkskineditor/reddices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/doc/ksirkskineditor/reddices.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/favicon.ico -------------------------------------------------------------------------------- /ksirk/Dialogs/tcpconnectwidget.h: -------------------------------------------------------------------------------- 1 | /*************************************************************************** 2 | tcpconnectwidget.h - description 3 | ------------------- 4 | begin : Sun Sep 20 2009 5 | copyright : (C) 2009 by Gaël de Chalendar 6 | email : kleag@free.fr 7 | ***************************************************************************/ 8 | 9 | /*************************************************************************** 10 | * * 11 | * This program is free software; you can redistribute it and/or modify * 12 | * it under the terms of the GNU General Public License as published by * 13 | * the Free Software Foundation; either either version 2 14 | of the License, or (at your option) any later version.of the License, or * 15 | * (at your option) any later version. * 16 | * * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this program; if not, write to the Free Software 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 20 | * 02110-1301, USA 21 | ***************************************************************************/ 22 | #ifndef TCPCONNECTWIDGET_H 23 | #define TCPCONNECTWIDGET_H 24 | 25 | #include "ui_tcpconnectwidget.h" 26 | 27 | #include 28 | #include 29 | 30 | namespace Ksirk 31 | { 32 | 33 | class TcpConnectWidget : public QWidget, public Ui::TcpConnectWidget 34 | { 35 | Q_OBJECT 36 | public: 37 | explicit TcpConnectWidget(QWidget *parent=nullptr); 38 | 39 | ~TcpConnectWidget() override; 40 | 41 | Q_SIGNALS: 42 | void next(); 43 | void previous(); 44 | void cancel(); 45 | 46 | }; 47 | 48 | } 49 | 50 | #endif // TCPCONNECTWIDGET_H 51 | -------------------------------------------------------------------------------- /ksirk/GameLogic/aiplayerio.cpp: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | * copyright (C) 2002-2007 Gael de Chalendar 3 | * 4 | * KsirK is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program; if not, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | * 02110-1301, USA 18 | */ 19 | #include "aiplayerio.h" 20 | 21 | namespace Ksirk { 22 | 23 | namespace GameLogic { 24 | 25 | AIPlayerIO::AIPlayerIO(AIPlayer *aiplayer) 26 | : KGameIO(aiplayer) 27 | { 28 | } 29 | 30 | AIPlayerIO::~AIPlayerIO() 31 | { 32 | } 33 | 34 | 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /ksirk/GameLogic/aiplayerio.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2005-2007 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRK_GAMELOGICAIPLAYERIO_H 21 | #define KSIRK_GAMELOGICAIPLAYERIO_H 22 | 23 | #include "aiplayer.h" 24 | 25 | #define USE_UNSTABLE_LIBKDEGAMESPRIVATE_API 26 | #include 27 | 28 | namespace Ksirk { 29 | 30 | namespace GameLogic { 31 | 32 | #define AIPLAYERIO 32 33 | 34 | /** 35 | * This is the IO device used by AI players 36 | * @author Gaël de Chalendar (aka Kleag) 37 | */ 38 | class AIPlayerIO : public KGameIO 39 | { 40 | public: 41 | /** Constructor of the IO device for the given AI player. */ 42 | explicit AIPlayerIO(AIPlayer* aiplayer); 43 | 44 | /** Default destructor. */ 45 | ~AIPlayerIO() override; 46 | 47 | /** 48 | * The KGame IO devices must have a rtti function returning a value 49 | * different for each different IO class. 50 | */ 51 | int rtti () const override {return AIPLAYERIO;} 52 | }; 53 | 54 | } 55 | 56 | } 57 | 58 | #endif 59 | -------------------------------------------------------------------------------- /ksirk/GameLogic/dice.cpp: -------------------------------------------------------------------------------- 1 | /*************************************************************************** 2 | dice.cpp - description 3 | ------------------- 4 | begin : sat dec 29 2002 5 | copyright (C) 2002 by Gael de Chalendar (aka Kleag) 6 | ***************************************************************************/ 7 | 8 | /*************************************************************************** 9 | * * 10 | * This program is free software; you can redistribute it and/or modify * 11 | * it under the terms of the GNU General Public License as published by * 12 | * the Free Software Foundation; either either version 2 13 | of the License, or (at your option) any later version.of the License, or * 14 | * (at your option) any later version. * 15 | * * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program; if not, write to the Free Software 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 19 | * 02110-1301, USA 20 | ***************************************************************************/ 21 | 22 | #include "dice.h" 23 | 24 | #include 25 | 26 | namespace Ksirk 27 | { 28 | 29 | namespace GameLogic 30 | { 31 | 32 | Dice::Dice(){ 33 | } 34 | Dice::~Dice(){ 35 | } 36 | 37 | unsigned int Dice::roll(unsigned int max) 38 | { 39 | return 1 + QRandomGenerator::global()->bounded(max);; 40 | } 41 | 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /ksirk/GameLogic/dice.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2002-2007 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef DICE_H 21 | #define DICE_H 22 | 23 | namespace Ksirk 24 | { 25 | 26 | namespace GameLogic 27 | { 28 | 29 | 30 | /** 31 | * This class implements a dice : roll it with its static method to obtain a 32 | * random number between 1 and 6. 33 | * @author Gaël de Chalendar (aka Kleag) 34 | */ 35 | 36 | class Dice 37 | { 38 | public: 39 | Dice(); 40 | ~Dice(); 41 | 42 | /** rolls the dice. 43 | @param max the maximum of the dice (six by default) 44 | @return a random integer between one and the argument (six by default) */ 45 | static unsigned int roll(unsigned int max=6); 46 | 47 | }; 48 | 49 | } 50 | } 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /ksirk/GameLogic/distributiondata.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | This library is free software; you can redistribute it and/or 3 | modify it under the terms of the GNU Library General Public 4 | License either version 2 5 | of the License, or (at your option) any later version.or later as published by the Free Software Foundation. 6 | 7 | This library is distributed in the hope that it will be useful, 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10 | Library General Public License for more details. 11 | 12 | You should have received a copy of the GNU Library General Public License 13 | along with this library; see the file COPYING.LIB. If not, write to 14 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 15 | Boston, MA 02110-1301, USA. 16 | */ 17 | 18 | #include "./distributiondata.h" 19 | 20 | void DistributionData::init(int nb, int nbCountries) 21 | { 22 | clear(); 23 | for (int i = 0; i < nbCountries; i++) 24 | { 25 | push_back(0); 26 | } 27 | m_nbToPlace = nb; 28 | } 29 | -------------------------------------------------------------------------------- /ksirk/GameLogic/distributiondata.h: -------------------------------------------------------------------------------- 1 | /* 2 | This library is free software; you can redistribute it and/or 3 | modify it under the terms of the GNU Library General Public 4 | License either version 2 5 | of the License, or (at your option) any later version.or later as published by the Free Software Foundation. 6 | 7 | This library is distributed in the hope that it will be useful, 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10 | Library General Public License for more details. 11 | 12 | You should have received a copy of the GNU Library General Public License 13 | along with this library; see the file COPYING.LIB. If not, write to 14 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 15 | Boston, MA 02110-1301, USA. 16 | */ 17 | 18 | #ifndef DISTRIBUTIONDATA_H 19 | #define DISTRIBUTIONDATA_H 20 | 21 | #include 22 | 23 | class DistributionData : public QList 24 | { 25 | public: 26 | DistributionData() {} 27 | 28 | void init(int nb, int nbCountries); 29 | 30 | inline int nbToPlace() {return m_nbToPlace;} 31 | inline void setNbToPlace(int nb) {m_nbToPlace = nb;} 32 | 33 | private: 34 | int m_nbToPlace; 35 | }; 36 | 37 | #endif // DISTRIBUTIONDATA_H 38 | -------------------------------------------------------------------------------- /ksirk/GameLogic/gamesequence.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | This file is part of KsirK. 3 | SPDX-FileCopyrightText: 2023 Friedrich W. H. Kossebau 4 | 5 | SPDX-License-Identifier: GPL-2.0-or-later 6 | */ 7 | 8 | #include "gamesequence.h" 9 | 10 | // own 11 | #include "gameautomaton.h" 12 | 13 | namespace Ksirk{ 14 | namespace GameLogic { 15 | 16 | GameSequence::GameSequence(GameAutomaton *gameAutomation) 17 | : m_gameAutomation(gameAutomation) 18 | { 19 | } 20 | 21 | GameSequence::~GameSequence() = default; 22 | 23 | KPlayer *GameSequence::nextPlayer(KPlayer *last, bool exclusive) 24 | { 25 | return m_gameAutomation->doNextPlayer(last, exclusive); 26 | } 27 | 28 | } 29 | } 30 | 31 | #include "moc_gamesequence.cpp" 32 | -------------------------------------------------------------------------------- /ksirk/GameLogic/gamesequence.h: -------------------------------------------------------------------------------- 1 | /* 2 | This file is part of KsirK. 3 | SPDX-FileCopyrightText: 2023 Friedrich W. H. Kossebau 4 | 5 | SPDX-License-Identifier: GPL-2.0-or-later 6 | */ 7 | 8 | #ifndef KSIRK_GAMELOGIC_GAMESEQUENCE_H 9 | #define KSIRK_GAMELOGIC_GAMESEQUENCE_H 10 | 11 | // KDEGames 12 | #define USE_UNSTABLE_LIBKDEGAMESPRIVATE_API 13 | #include 14 | 15 | namespace Ksirk { 16 | 17 | namespace GameLogic { 18 | 19 | class GameAutomaton; 20 | 21 | class GameSequence : public KGameSequence 22 | { 23 | Q_OBJECT 24 | 25 | public: 26 | explicit GameSequence(GameAutomaton *gameAutomation); 27 | ~GameSequence() override; 28 | 29 | public: 30 | KPlayer *nextPlayer(KPlayer *last, bool exclusive = true) override; 31 | 32 | private: 33 | GameAutomaton *const m_gameAutomation; 34 | }; 35 | 36 | } 37 | } 38 | 39 | #endif 40 | -------------------------------------------------------------------------------- /ksirk/GameLogic/newplayerdata.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 4 | 5 | This program is free software; you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation; either either version 2 8 | of the License, or (at your option) any later version.of the License, or 9 | (at your option) any later version. 10 | 11 | This program is distributed in the hope that it will be useful, 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | GNU General Public License for more details. 15 | 16 | You should have received a copy of the GNU General Public License along 17 | with this program; if not, write to the Free Software Foundation, Inc., 18 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 19 | */ 20 | 21 | #include "newplayerdata.h" 22 | 23 | using namespace Ksirk; 24 | 25 | NewPlayerData::NewPlayerData(const QString& name, const QString& nation, const QString& password, bool computer, bool network) : 26 | m_name(name), 27 | m_nation(nation), 28 | m_password(password), 29 | m_computer(computer), 30 | m_network(network) 31 | { 32 | } 33 | -------------------------------------------------------------------------------- /ksirk/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | # process the .ui and .rc files 4 | $EXTRACTRC `find . -name \*.ui -o -name \*.rc -o -name \*.kcfg | grep -v '/xmpptest/'` >> rc.cpp 5 | ./extract-onu-names.pl `find skins -iname world.desktop` >> rc.cpp 6 | 7 | $XGETTEXT `find $SRCDIR -name "*.cpp"` rc.cpp -o $podir/ksirk.pot 8 | rm -f rc.cpp 9 | 10 | -------------------------------------------------------------------------------- /ksirk/SaveLoad/ksirkgamexmlloader.cpp: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2005-2007 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | /* begin : Mon Feb 07 2005 */ 21 | 22 | #include "ksirkgamexmlloader.h" 23 | #include "ksirkgamexmlhandler.h" 24 | 25 | #include 26 | #include 27 | 28 | namespace Ksirk 29 | { 30 | namespace SaveLoad 31 | { 32 | 33 | GameXmlLoader::GameXmlLoader(const QString& fileName, KGameWindow& game, 34 | QList& waitedPlayers) 35 | { 36 | GameXmlHandler handler(game, waitedPlayers); 37 | 38 | QFile xmlFile( fileName ); 39 | QXmlInputSource source( &xmlFile ); 40 | 41 | QXmlSimpleReader reader; 42 | reader.setContentHandler( &handler ); 43 | 44 | if (!reader.parse( source )) 45 | { 46 | KMessageBox::error(nullptr, i18n("Skin file parsing error")); 47 | exit(0); 48 | } 49 | } 50 | 51 | } // closing namespace SaveLoad 52 | } // closing namespace Ksirk 53 | 54 | -------------------------------------------------------------------------------- /ksirk/SaveLoad/ksirkgamexmlloader.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2005-2007 Gaël de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | /* begin : Mon Feb 07 2005 */ 21 | 22 | #ifndef KSIRK_SAVELOAD_KSIRKGAMEXMLLOADER_H 23 | #define KSIRK_SAVELOAD_KSIRKGAMEXMLLOADER_H 24 | 25 | #include "KsirkGlobalDefinitions.h" 26 | #include "kgamewin.h" 27 | #include "GameLogic/player.h" 28 | 29 | #include 30 | #include 31 | 32 | namespace Ksirk 33 | { 34 | namespace SaveLoad 35 | { 36 | 37 | /** 38 | * Sets up the KsirK skin data file SAX parser and runs it 39 | * @author Gael de Chalendar (aka Kleag) 40 | */ 41 | class GameXmlLoader 42 | { 43 | public: 44 | /** 45 | * Constructor 46 | * @param fileName The name of the file to read. 47 | * @param game The game to initialize with the file's data 48 | * @param waitedPlayers The list of players definitions whose connection 49 | * from the network will be waited for. 50 | */ 51 | GameXmlLoader(const QString& fileName, KGameWindow& game, 52 | QList& waitedPlayers); 53 | 54 | private: 55 | QString m_onuFile; 56 | }; 57 | 58 | 59 | } // closing namespace SaveLoad 60 | } // closing namespace Ksirk 61 | 62 | 63 | #endif // KSIRK_SAVELOAD_KSIRKGAMEXMLLOADER_H 64 | 65 | -------------------------------------------------------------------------------- /ksirk/Sprites/animspritesgroup.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2007 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | /* begin : Thu Feb 22 2007 */ 21 | 22 | #ifndef ANIMSPRITESGROUP_H 23 | #define ANIMSPRITESGROUP_H 24 | 25 | #include "animsprite.h" 26 | #include "animspriteslist.h" 27 | 28 | #include 29 | 30 | namespace Ksirk 31 | { 32 | 33 | class AnimSpritesGroup : public QObject, public AnimSpritesList 34 | { 35 | Q_OBJECT 36 | public: 37 | AnimSpritesGroup(QObject* target, const char* slot, QObject* parent = nullptr); 38 | 39 | ~AnimSpritesGroup() override; 40 | 41 | void addSprite(AnimSprite* sprite); 42 | 43 | void changeTarget(QObject* target, const char* slot); 44 | 45 | void clear(); 46 | 47 | public Q_SLOTS: 48 | void oneArrived(AnimSprite* sprite); 49 | 50 | Q_SIGNALS: 51 | void arrived(AnimSpritesGroup*); 52 | 53 | private: 54 | unsigned int m_numberArrived; 55 | QObject* m_target; 56 | const char* m_slot; 57 | }; 58 | 59 | 60 | } // closing namespace Ksirk 61 | 62 | #endif // ANIMSPRITESGROUP_H 63 | 64 | -------------------------------------------------------------------------------- /ksirk/Sprites/animspriteslist.cpp: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2001-2007 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | /* begin : Wed Jul 18 2001 */ 21 | 22 | #include "animspriteslist.h" 23 | 24 | namespace Ksirk 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /ksirk/Sprites/animspritespool.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2007 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program; if not, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | * 02110-1301, USA 18 | */ 19 | 20 | /* begin : Thu Feb 22 2007 */ 21 | 22 | 23 | #ifndef ANIMSPRITESPOOL_H 24 | #define ANIMSPRITESPOOL_H 25 | 26 | #include "KsirkGlobalDefinitions.h" 27 | 28 | #include 29 | 30 | namespace Ksirk 31 | { 32 | 33 | class AnimSprite; 34 | 35 | class AnimSpritePool : public QObject 36 | { 37 | Q_OBJECT 38 | public: 39 | void addSprite(AnimSprite* sprite); 40 | void removeSprite(AnimSprite* sprite); 41 | 42 | /** static method to retrive the singleton as const */ 43 | static const AnimSpritePool& single(); 44 | 45 | /** static method to retrive the singleton as variable */ 46 | static AnimSpritePool& changeable(); 47 | 48 | private Q_SLOTS: 49 | void update(); 50 | 51 | private: 52 | AnimSpritePool(); 53 | ~AnimSpritePool() override {} 54 | 55 | static AnimSpritePool* m_pool; 56 | /** All sprites are regularly updated */ 57 | QTimer m_timer; 58 | QList m_sprites; 59 | }; 60 | 61 | 62 | } // closing namespace Ksirk 63 | 64 | #endif // ANIMSPRITESPOOL_H 65 | -------------------------------------------------------------------------------- /ksirk/Sprites/arrowsprite.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2001-2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | /* begin : Sat May 17 2008 */ 21 | 22 | 23 | #ifndef ARROWSPRITE_H 24 | #define ARROWSPRITE_H 25 | 26 | #include "KsirkGlobalDefinitions.h" 27 | 28 | #include 29 | 30 | namespace Ksirk 31 | { 32 | 33 | namespace Sprites 34 | { 35 | 36 | /** 37 | * The ArrowSprite objects are displayed at the visible surface boundaries of 38 | * the map when this one can scroll in this direction 39 | * 40 | */ 41 | class ArrowSprite : public QGraphicsPolygonItem 42 | { 43 | public: 44 | explicit ArrowSprite(Qt::ArrowType type, QGraphicsItem * parent = nullptr); 45 | 46 | /** The default destructor */ 47 | ~ArrowSprite() override; 48 | 49 | void setActive(bool value); 50 | }; 51 | 52 | } // closing namespace Sprites 53 | } // closing namespace Ksirk 54 | 55 | #endif // ARROWSPRITE_H 56 | -------------------------------------------------------------------------------- /ksirk/config-ksirk.h.in: -------------------------------------------------------------------------------- 1 | #ifndef CONFIG_KSIRK_H 2 | #define CONFIG_KSIRK_H 3 | 4 | #endif 5 | -------------------------------------------------------------------------------- /ksirk/extract-onu-names.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl -W 2 | 3 | use strict; 4 | 5 | for my $file_name ( @ARGV ) 6 | { 7 | my $fh; 8 | 9 | unless ( open $fh, "<", $file_name ) 10 | { 11 | # warn "Failed to open: '$file_name': $!"; 12 | next; 13 | } 14 | 15 | while ( <$fh> ) 16 | { 17 | chomp; 18 | if ($_ eq "[cannon]" 19 | || $_ eq "[cavalry]" 20 | || $_ eq "[infantry]" 21 | || $_ eq "[exploding]" 22 | || $_ eq "[firing]" 23 | || $_ eq "[flag]" 24 | || $_ eq "[font]" 25 | || $_ eq "[onu]" 26 | || $_ =~ /\[goal\d+\]/ 27 | ) 28 | { 29 | # print "$_: next!\n"; 30 | next; 31 | } 32 | elsif ($_ =~ /\[([^\]]*)\]/) 33 | { 34 | print "//i18n: file $file_name line $.\n"; 35 | print "// xgettext: no-c-format\n"; 36 | print "i18n(\"$1\");\n"; 37 | } 38 | elsif ($_ =~ /^(\w+)=(.*)/) 39 | { 40 | # print "====== $1 = $2\n"; 41 | if ($1 eq "desc" || $1 eq "name") 42 | { 43 | print "//i18n: file $file_name line $.\n"; 44 | print "// xgettext: no-c-format\n"; 45 | print "i18n(\"$2\");\n"; 46 | } 47 | elsif ($1 eq "continents" || $1 eq "countries" || $1 eq "nationalities") 48 | { 49 | my @strings = split ",", $2; 50 | foreach my $str (@strings) 51 | { 52 | print "//i18n: file $file_name line $.\n"; 53 | print "// xgettext: no-c-format\n"; 54 | print "i18n(\"$str\");\n"; 55 | } 56 | } 57 | } 58 | else 59 | { 60 | # print "unhandled\n"; 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /ksirk/icons/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( hicolor ) 2 | 3 | -------------------------------------------------------------------------------- /ksirk/icons/hicolor/128-apps-ksirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/128-apps-ksirk.png -------------------------------------------------------------------------------- /ksirk/icons/hicolor/16-apps-ksirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/16-apps-ksirk.png -------------------------------------------------------------------------------- /ksirk/icons/hicolor/22-apps-ksirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/22-apps-ksirk.png -------------------------------------------------------------------------------- /ksirk/icons/hicolor/32-apps-ksirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/32-apps-ksirk.png -------------------------------------------------------------------------------- /ksirk/icons/hicolor/48-apps-ksirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/48-apps-ksirk.png -------------------------------------------------------------------------------- /ksirk/icons/hicolor/64-apps-ksirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/64-apps-ksirk.png -------------------------------------------------------------------------------- /ksirk/icons/hicolor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ecm_install_icons( ICONS 2 | 128-apps-ksirk.png 3 | 64-apps-ksirk.png 4 | 48-apps-ksirk.png 5 | 32-apps-ksirk.png 6 | 22-apps-ksirk.png 7 | 16-apps-ksirk.png 8 | sc-apps-ksirk.svgz 9 | 10 | DESTINATION ${KDE_INSTALL_ICONDIR} 11 | THEME hicolor 12 | ) 13 | -------------------------------------------------------------------------------- /ksirk/icons/hicolor/sc-apps-ksirk.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/icons/hicolor/sc-apps-ksirk.svgz -------------------------------------------------------------------------------- /ksirk/ksirk.knsrc: -------------------------------------------------------------------------------- 1 | [KNewStuff3] 2 | ProvidersUrl=https://autoconfig.kde.org/ocs/providers.xml 3 | Categories=KsirK Themes 4 | TargetDir=ksirk/skins 5 | Uncompress=always 6 | -------------------------------------------------------------------------------- /ksirk/ksirk.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ksirkui.rc 5 | 6 | 7 | -------------------------------------------------------------------------------- /ksirk/ksirkConfigDialog.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2006 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | 21 | #ifndef _KSIRKCONFIGDIALOG_H_ 22 | #define _KSIRKCONFIGDIALOG_H_ 23 | 24 | #include 25 | #include 26 | namespace Ui 27 | { 28 | class KsirkPreferencesWidget; 29 | } 30 | 31 | /** 32 | * This is the KsirK configuration dialog. Based on KConfigDialog. 33 | * 34 | * @short Configuration dialog 35 | * @author Gaël de Chalendar (aka Kleag) 36 | */ 37 | class KsirkConfigurationDialog : public KConfigDialog 38 | { 39 | Q_OBJECT 40 | public: 41 | /** 42 | * Constructor 43 | */ 44 | KsirkConfigurationDialog (QWidget *parent, const char *name, KConfigSkeleton *config); 45 | 46 | /** Destructor */ 47 | ~KsirkConfigurationDialog () override; 48 | 49 | Q_SIGNALS: 50 | void armiesNumberShowingChanged(bool); 51 | 52 | protected Q_SLOTS: 53 | void updateSettings() override; 54 | void updateWidgets() override; 55 | 56 | protected: 57 | Ui::KsirkPreferencesWidget* m_widget; 58 | }; 59 | 60 | #endif 61 | -------------------------------------------------------------------------------- /ksirk/ksirksettings.kcfg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 1 11 | 12 | 13 | 14 | true 15 | 16 | 17 | 18 | true 19 | 20 | 21 | 22 | false 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /ksirk/ksirksettings.kcfgc: -------------------------------------------------------------------------------- 1 | File=ksirksettings.kcfg 2 | ClassName=KsirkSettings 3 | Singleton=true 4 | Mutators=true 5 | NameSpace=Ksirk -------------------------------------------------------------------------------- /ksirk/ksirkui.rc: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | &Game 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | &Settings 24 | 25 | &Help 26 | 27 | 28 | 29 | 30 | Main Toolbar 31 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /ksirk/mainMenu.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Guillaume Pelouas 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | /* begin : Fri 21 2007 */ 21 | 22 | #ifndef MAINMENU_H 23 | #define MAINMENU_H 24 | 25 | #include "config-ksirk.h" 26 | #include "ui_mainMenu.h" 27 | 28 | #include "KsirkGlobalDefinitions.h" 29 | 30 | #include 31 | 32 | 33 | namespace Ksirk 34 | { 35 | class KGameWindow; 36 | namespace GameLogic 37 | { 38 | class ONU; 39 | } 40 | } 41 | 42 | /** 43 | * The mainMenu class is the widget displayed in the main window 44 | */ 45 | class mainMenu : public QWidget, public Ui::MainMenu 46 | { 47 | Q_OBJECT 48 | 49 | public: 50 | explicit mainMenu(Ksirk::KGameWindow* game, QWidget* parent = nullptr); 51 | 52 | ~mainMenu() override {} 53 | 54 | void init(Ksirk::GameLogic::ONU* theWorld); 55 | }; 56 | 57 | 58 | #endif 59 | -------------------------------------------------------------------------------- /ksirk/skins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( default ) 2 | # add_subdirectory( static ) 3 | # add_subdirectory( realpol ) 4 | 5 | install(FILES skinsdir DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins ) 6 | -------------------------------------------------------------------------------- /ksirk/skins/README-skins.txt: -------------------------------------------------------------------------------- 1 | The documentation to write new skins is written in the KsirK documentation. 2 | -------------------------------------------------------------------------------- /ksirk/skins/default/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( Data ) 2 | add_subdirectory( Images ) 3 | add_subdirectory( Sounds ) 4 | -------------------------------------------------------------------------------- /ksirk/skins/default/Data/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install(FILES world.desktop DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Data ) 3 | 4 | -------------------------------------------------------------------------------- /ksirk/skins/default/Images/2DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/2DownArrow.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/2UpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/2UpArrow.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | 2DownArrow.png 3 | 2UpArrow.png 4 | arena.svg 5 | attackAuto.png 6 | attackOne.png 7 | attackThree.png 8 | attackTwo.png 9 | cancel.png 10 | defendOne.png 11 | defendTwo.png 12 | downArrow.png 13 | loader.gif 14 | logoLeft.png 15 | logoRight.png 16 | map-mask.png 17 | moveArmies.png 18 | moveBackFive.png 19 | moveBackOne.png 20 | moveBackTen.png 21 | moveFinish.png 22 | moveFive.png 23 | moveOne.png 24 | moveTen.png 25 | newNetGame.png 26 | nextPlayer.png 27 | pool.svg 28 | recyclingFinished.png 29 | recycling.png 30 | snapshot.jpg 31 | soldierKneeling.png 32 | stopAttackAuto.png 33 | upArrow.png 34 | 35 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Images 36 | ) 37 | -------------------------------------------------------------------------------- /ksirk/skins/default/Images/attackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/attackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/attackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/attackOne.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/attackThree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/attackThree.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/attackTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/attackTwo.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/cancel.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/cannon.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/cavalry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/cavalry.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/defendOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/defendOne.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/defendTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/defendTwo.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/downArrow.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/flag.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/infantry.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/loader.gif -------------------------------------------------------------------------------- /ksirk/skins/default/Images/logoLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/logoLeft.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/logoRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/logoRight.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/map-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/map-mask.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/map.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveArmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveArmies.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveBackFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveBackFive.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveBackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveBackOne.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveBackTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveBackTen.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveFinish.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveFive.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveOne.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/moveTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/moveTen.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/newNetGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/newNetGame.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/nextPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/nextPlayer.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/recycling.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/recyclingFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/recyclingFinished.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/snapshot.jpg -------------------------------------------------------------------------------- /ksirk/skins/default/Images/soldierKneeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/soldierKneeling.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/stopAttackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/stopAttackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/upArrow.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/README -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/aide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/aide.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/bluedice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/bluedice1.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/bluedice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/bluedice2.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/bluedice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/bluedice3.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/bluedice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/bluedice4.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/bluedice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/bluedice5.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/bluedice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/bluedice6.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/alaska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/alaska.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/alberta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/alberta.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/algeria.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/arabia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/arabia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/benelux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/benelux.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/brazil.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/chile.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/china.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/china.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/columbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/columbia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/eastus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/eastus.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/egypt.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/france.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/gabon.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/groenland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/groenland.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/india.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/india.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/indonesia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/iran.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/island.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/japan.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/kazakstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/kazakstan.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/madagascar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/madagascar.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/mexico.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/middleeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/middleeast.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/mongolia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/newsouthwalles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/newsouthwalles.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/newzealand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/newzealand.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/niger.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/ontario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/ontario.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/pakistan.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/papouasia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/papouasia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/paraguay.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/prussia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/prussia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/quebec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/quebec.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/russia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/scandinavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/scandinavia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/siberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/siberia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/southafrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/southafrica.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/uk.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/vietnam.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/westernaustralia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/westernaustralia.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/westus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/westus.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/countries/zair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/countries/zair.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/map.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/nouveauJeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/nouveauJeu.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/ouvrirJeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/ouvrirJeu.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/pool-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/pool-en.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/pool.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/preferences.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/quitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/quitter.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/reddice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/reddice1.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/reddice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/reddice2.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/reddice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/reddice3.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/reddice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/reddice4.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/reddice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/reddice5.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/reddice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/reddice6.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/saveGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/saveGame.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/8020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/8020.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | belgium.svg 3 | cannon.svg 4 | cavalry.svg 5 | exploding.svg 6 | firing.svg 7 | france.svg 8 | infantry.svg 9 | infantry1.svg 10 | infantry2.svg 11 | infantry3.svg 12 | italy.svg 13 | japan.svg 14 | uk.svg 15 | us.svg 16 | 17 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Images/sprites 18 | ) 19 | 20 | -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/belgium.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/cannon.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/cavalry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/cavalry.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/exploding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/exploding.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/firing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/firing.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/france.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/infantry.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/italy.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/japan.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/uk.png -------------------------------------------------------------------------------- /ksirk/skins/default/Images/work/sprites/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Images/work/sprites/us.png -------------------------------------------------------------------------------- /ksirk/skins/default/Sounds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | cannon.wav 3 | crash.wav 4 | roll.wav 5 | 6 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Sounds 7 | ) 8 | 9 | 10 | -------------------------------------------------------------------------------- /ksirk/skins/default/Sounds/cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Sounds/cannon.wav -------------------------------------------------------------------------------- /ksirk/skins/default/Sounds/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Sounds/crash.wav -------------------------------------------------------------------------------- /ksirk/skins/default/Sounds/roll.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/default/Sounds/roll.wav -------------------------------------------------------------------------------- /ksirk/skins/legacy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( Data ) 2 | add_subdirectory( Images ) 3 | add_subdirectory( Sounds ) 4 | -------------------------------------------------------------------------------- /ksirk/skins/legacy/Data/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install(FILES world.desktop DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Data ) 3 | 4 | -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/2DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/2DownArrow.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/2UpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/2UpArrow.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | 2DownArrow.png 3 | 2UpArrow.png 4 | arena.svg 5 | attackAuto.png 6 | attackOne.png 7 | attackThree.png 8 | attackTwo.png 9 | cancel.png 10 | defendOne.png 11 | defendTwo.png 12 | downArrow.png 13 | loader.gif 14 | logoLeft.png 15 | logoRight.png 16 | map-mask.png 17 | moveArmies.png 18 | moveBackFive.png 19 | moveBackOne.png 20 | moveBackTen.png 21 | moveFinish.png 22 | moveFive.png 23 | moveOne.png 24 | moveTen.png 25 | newNetGame.png 26 | nextPlayer.png 27 | pool.svg 28 | recyclingFinished.png 29 | recycling.png 30 | snapshot.jpg 31 | soldierKneeling.png 32 | stopAttackAuto.png 33 | upArrow.png 34 | 35 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Images 36 | ) 37 | -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/attackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/attackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/attackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/attackOne.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/attackThree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/attackThree.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/attackTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/attackTwo.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/cancel.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/cannon.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/cavalry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/cavalry.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/defendOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/defendOne.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/defendTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/defendTwo.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/downArrow.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/flag.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/infantry.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/loader.gif -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/logoLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/logoLeft.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/logoRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/logoRight.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/map-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/map-mask.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/map.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveArmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveArmies.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveBackFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveBackFive.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveBackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveBackOne.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveBackTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveBackTen.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveFinish.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveFive.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveOne.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/moveTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/moveTen.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/newNetGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/newNetGame.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/nextPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/nextPlayer.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/recycling.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/recyclingFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/recyclingFinished.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/snapshot.jpg -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/soldierKneeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/soldierKneeling.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/stopAttackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/stopAttackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/upArrow.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/README -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/aide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/aide.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/bluedice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/bluedice1.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/bluedice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/bluedice2.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/bluedice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/bluedice3.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/bluedice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/bluedice4.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/bluedice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/bluedice5.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/bluedice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/bluedice6.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/alaska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/alaska.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/alberta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/alberta.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/algeria.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/arabia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/arabia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/benelux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/benelux.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/brazil.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/chile.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/china.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/china.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/columbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/columbia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/eastus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/eastus.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/egypt.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/france.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/gabon.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/groenland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/groenland.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/india.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/india.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/indonesia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/iran.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/island.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/japan.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/kazakstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/kazakstan.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/madagascar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/madagascar.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/mexico.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/middleeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/middleeast.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/mongolia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/newsouthwalles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/newsouthwalles.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/newzealand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/newzealand.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/niger.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/ontario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/ontario.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/pakistan.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/papouasia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/papouasia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/paraguay.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/prussia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/prussia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/quebec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/quebec.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/russia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/scandinavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/scandinavia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/siberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/siberia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/southafrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/southafrica.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/uk.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/vietnam.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/westernaustralia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/westernaustralia.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/westus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/westus.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/countries/zair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/countries/zair.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/map.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/nouveauJeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/nouveauJeu.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/ouvrirJeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/ouvrirJeu.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/pool-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/pool-en.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/pool.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/preferences.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/quitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/quitter.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/reddice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/reddice1.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/reddice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/reddice2.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/reddice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/reddice3.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/reddice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/reddice4.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/reddice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/reddice5.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/reddice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/reddice6.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/saveGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/saveGame.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/8020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/8020.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | belgium.svg 3 | cannon.svg 4 | cavalry.svg 5 | exploding.svg 6 | firing.svg 7 | france.svg 8 | infantry.svg 9 | infantry1.svg 10 | infantry2.svg 11 | infantry3.svg 12 | italy.svg 13 | japan.svg 14 | uk.svg 15 | us.svg 16 | 17 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Images/sprites 18 | ) 19 | -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/belgium.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/cannon.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/cavalry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/cavalry.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/exploding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/exploding.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/firing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/firing.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/france.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/infantry.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/italy.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/japan.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/uk.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Images/work/sprites/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Images/work/sprites/us.png -------------------------------------------------------------------------------- /ksirk/skins/legacy/Sounds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | cannon.wav 3 | crash.wav 4 | roll.wav 5 | 6 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/default/Sounds 7 | ) 8 | -------------------------------------------------------------------------------- /ksirk/skins/legacy/Sounds/cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Sounds/cannon.wav -------------------------------------------------------------------------------- /ksirk/skins/legacy/Sounds/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Sounds/crash.wav -------------------------------------------------------------------------------- /ksirk/skins/legacy/Sounds/roll.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/legacy/Sounds/roll.wav -------------------------------------------------------------------------------- /ksirk/skins/realpol/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( Data ) 2 | add_subdirectory( Images ) 3 | add_subdirectory( Sounds ) 4 | -------------------------------------------------------------------------------- /ksirk/skins/realpol/Data/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install(FILES onu.xml DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/realpol/Data ) 3 | 4 | -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/2DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/2DownArrow.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/2UpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/2UpArrow.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/SoldatAGenoux1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/SoldatAGenoux1.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/aide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/aide.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/annuler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/annuler.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/attackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/attackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/attackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/attackOne.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/attackThree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/attackThree.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/attackTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/attackTwo.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/bluedice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/bluedice1.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/bluedice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/bluedice2.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/bluedice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/bluedice3.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/bluedice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/bluedice4.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/bluedice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/bluedice5.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/bluedice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/bluedice6.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/alaska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/alaska.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/alberta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/alberta.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/algeria.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/arabia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/arabia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/benelux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/benelux.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/brazil.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/chile.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/china.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/china.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/columbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/columbia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/eastus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/eastus.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/egypt.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/france.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/gabon.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/groenland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/groenland.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/india.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/india.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/indonesia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/iran.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/island.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/japan.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/kazakstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/kazakstan.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/madagascar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/madagascar.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/mexico.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/middleeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/middleeast.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/mongolia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/newsouthwalles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/newsouthwalles.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/newzealand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/newzealand.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/niger.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/ontario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/ontario.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/pakistan.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/papouasia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/papouasia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/paraguay.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/prussia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/prussia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/quebec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/quebec.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/russia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/scandinavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/scandinavia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/siberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/siberia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/southafrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/southafrica.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/uk.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/vietnam.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/westernaustralia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/westernaustralia.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/westus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/westus.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/countries/zair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/countries/zair.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/defendOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/defendOne.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/defendTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/defendTwo.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/distributionArmees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/distributionArmees.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/distributionArmeesFinie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/distributionArmeesFinie.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/downArrow.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/joueurSuivant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/joueurSuivant.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/logoLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/logoLeft.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/logoRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/logoRight.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/map-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/map-mask.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/map.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveArmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveArmies.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveBackFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveBackFive.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveBackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveBackOne.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveBackTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveBackTen.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveFinish.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveFive.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveOne.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/moveTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/moveTen.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/newNetGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/newNetGame.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/nouveauJeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/nouveauJeu.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/ouvrirJeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/ouvrirJeu.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/pool-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/pool-en.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/pool.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/preferences.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/quitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/quitter.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/reddice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/reddice1.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/reddice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/reddice2.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/reddice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/reddice3.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/reddice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/reddice4.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/reddice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/reddice5.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/reddice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/reddice6.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/saveGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/saveGame.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/snapshot.jpg -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/8020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/8020.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | belgium.svg 3 | cannon.svg 4 | cavalry.svg 5 | exploding.svg 6 | firing.svg 7 | france.svg 8 | infantry.svg 9 | italy.svg 10 | japan.svg 11 | infantry1.svg 12 | infantry2.svg 13 | infantry3.svg 14 | uk.svg 15 | us.svg 16 | 17 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/realpol/Images/sprites 18 | ) 19 | -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/belgium.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/cannon.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/cavalry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/cavalry.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/exploding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/exploding.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/firing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/firing.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/france.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/infantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/infantry.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/italy.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/japan.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/uk.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/sprites/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/sprites/us.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/stopAttackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/stopAttackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Images/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Images/upArrow.png -------------------------------------------------------------------------------- /ksirk/skins/realpol/Sounds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | canon.wav 3 | crash.wav 4 | roule.wav 5 | 6 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/realpol/Sounds 7 | ) 8 | 9 | 10 | -------------------------------------------------------------------------------- /ksirk/skins/realpol/Sounds/canon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Sounds/canon.wav -------------------------------------------------------------------------------- /ksirk/skins/realpol/Sounds/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Sounds/crash.wav -------------------------------------------------------------------------------- /ksirk/skins/realpol/Sounds/roule.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/realpol/Sounds/roule.wav -------------------------------------------------------------------------------- /ksirk/skins/skinsdir: -------------------------------------------------------------------------------- 1 | dummy file used to retrieve the skins directory name using KStandardDirs 2 | -------------------------------------------------------------------------------- /ksirk/skins/static/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory( Data ) 2 | add_subdirectory( Images ) 3 | add_subdirectory( Sounds ) 4 | -------------------------------------------------------------------------------- /ksirk/skins/static/Data/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | install(FILES world.desktop DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/static/Data ) 3 | 4 | -------------------------------------------------------------------------------- /ksirk/skins/static/Images/2DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/2DownArrow.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/2UpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/2UpArrow.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install( FILES 2 | 2DownArrow.png 3 | 2UpArrow.png 4 | arena.svg 5 | attackAuto.png 6 | attackOne.png 7 | attackThree.png 8 | attackTwo.png 9 | cancel.png 10 | defendOne.png 11 | defendTwo.png 12 | downArrow.png 13 | loader.gif 14 | logoLeft.png 15 | logoRight.png 16 | map-mask.png 17 | moveArmies.png 18 | moveBackFive.png 19 | moveBackOne.png 20 | moveBackTen.png 21 | moveFinish.png 22 | moveFive.png 23 | moveOne.png 24 | moveTen.png 25 | newNetGame.png 26 | nextPlayer.png 27 | pool.svg 28 | recyclingFinished.png 29 | recycling.png 30 | snapshot.jpg 31 | soldierKneeling.png 32 | stopAttackAuto.png 33 | upArrow.png 34 | 35 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/static/Images 36 | ) 37 | -------------------------------------------------------------------------------- /ksirk/skins/static/Images/attackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/attackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/attackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/attackOne.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/attackThree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/attackThree.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/attackTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/attackTwo.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/cancel.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/defendOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/defendOne.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/defendTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/defendTwo.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/downArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/downArrow.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/loader.gif -------------------------------------------------------------------------------- /ksirk/skins/static/Images/logoLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/logoLeft.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/logoRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/logoRight.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/map-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/map-mask.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveArmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveArmies.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveBackFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveBackFive.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveBackOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveBackOne.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveBackTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveBackTen.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveFinish.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveFive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveFive.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveOne.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/moveTen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/moveTen.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/newNetGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/newNetGame.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/nextPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/nextPlayer.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/recycling.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/recyclingFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/recyclingFinished.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/snapshot.jpg -------------------------------------------------------------------------------- /ksirk/skins/static/Images/soldierKneeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/soldierKneeling.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/stopAttackAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/stopAttackAuto.png -------------------------------------------------------------------------------- /ksirk/skins/static/Images/upArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Images/upArrow.png -------------------------------------------------------------------------------- /ksirk/skins/static/Sounds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES 2 | cannon.wav 3 | crash.wav 4 | roll.wav 5 | 6 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirk/skins/static/Sounds 7 | ) 8 | 9 | 10 | -------------------------------------------------------------------------------- /ksirk/skins/static/Sounds/cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Sounds/cannon.wav -------------------------------------------------------------------------------- /ksirk/skins/static/Sounds/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Sounds/crash.wav -------------------------------------------------------------------------------- /ksirk/skins/static/Sounds/roll.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirk/skins/static/Sounds/roll.wav -------------------------------------------------------------------------------- /ksirk/templates/cpp_template: -------------------------------------------------------------------------------- 1 | /*************************************************************************** 2 | |FILENAME| - description 3 | ------------------- 4 | begin : |DATE| 5 | copyright : (C) |YEAR| by |AUTHOR| 6 | email : |EMAIL| 7 | ***************************************************************************/ 8 | 9 | /*************************************************************************** 10 | * * 11 | * This program is free software; you can redistribute it and/or modify * 12 | * it under the terms of the GNU General Public License as published by * 13 | * the Free Software Foundation; either version 2 of the License, or * 14 | * (at your option) any later version. * 15 | * * 16 | ***************************************************************************/ 17 | -------------------------------------------------------------------------------- /ksirk/templates/header_template: -------------------------------------------------------------------------------- 1 | /*************************************************************************** 2 | |FILENAME| - description 3 | ------------------- 4 | begin : |DATE| 5 | copyright : (C) |YEAR| by |AUTHOR| 6 | email : |EMAIL| 7 | ***************************************************************************/ 8 | 9 | /*************************************************************************** 10 | * * 11 | * This program is free software; you can redistribute it and/or modify * 12 | * it under the terms of the GNU General Public License as published by * 13 | * the Free Software Foundation; either version 2 of the License, or * 14 | * (at your option) any later version. * 15 | * * 16 | ***************************************************************************/ 17 | -------------------------------------------------------------------------------- /ksirkskineditor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # add_subdirectory( skins ) 2 | 3 | add_executable(ksirkskineditor) 4 | 5 | target_sources(ksirkskineditor PRIVATE 6 | main.cpp 7 | mainwindow.cpp 8 | ksirkSkinEditorConfigDialog.cpp 9 | ksirkskineditorscene.cpp 10 | ksirkskineditorpixmapitem.cpp 11 | ksirkskineditortextitem.cpp 12 | ksirkcountrydefinition.cpp 13 | onu.cpp 14 | continent.cpp 15 | country.cpp 16 | nationality.cpp 17 | skinSpritesData.cpp 18 | goal.cpp 19 | 20 | ksirkskineditor.qrc 21 | ) 22 | 23 | ecm_qt_declare_logging_category(ksirkskineditor 24 | HEADER ksirkskineditor_debug.h 25 | IDENTIFIER KSIRKSKINEDITOR_LOG 26 | CATEGORY_NAME ksirk.skineditor 27 | OLD_CATEGORY_NAMES org.kde.ksirk.skineditor 28 | DESCRIPTION "KsirK game (skineditor)" 29 | EXPORT KSIRK 30 | ) 31 | 32 | ki18n_wrap_ui(ksirkskineditor 33 | # ksirkskineditor.ui 34 | preferences.ui 35 | ksirkskineditorwidget.ui 36 | ksirkskindefinition.ui 37 | ksirkcountrydefinition.ui 38 | ksirkcontinentdefinition.ui 39 | ksirkgoaldefinition.ui 40 | ksirknationalitydefinition.ui 41 | ksirkspritesdefinition.ui 42 | ksirkskineditorcountriesselectiondialog.ui 43 | ) 44 | 45 | kconfig_add_kcfg_files( ksirkskineditor ksirkskineditorsettings.kcfgc ) 46 | 47 | target_link_libraries(ksirkskineditor 48 | KDEGames6 49 | KDEGames6Private 50 | KF6::Crash 51 | KF6::I18n 52 | KF6::Completion 53 | KF6::CoreAddons 54 | KF6::DBusAddons 55 | KF6::XmlGui 56 | Qt6::Xml 57 | Qt6::Svg 58 | Qt6::Core5Compat 59 | Qt6::SvgWidgets 60 | ) 61 | 62 | install( TARGETS ksirkskineditor ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) 63 | 64 | install( FILES ksirkskineditorsettings.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR} ) 65 | install( PROGRAMS org.kde.ksirkskineditor.desktop DESTINATION ${KDE_INSTALL_APPDIR} ) 66 | 67 | install( FILES 68 | cross.png 69 | target.png 70 | 71 | DESTINATION ${KDE_INSTALL_DATADIR}/ksirkskineditor 72 | ) 73 | -------------------------------------------------------------------------------- /ksirkskineditor/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $EXTRACTRC *.rc *.ui *.kcfg >> rc.cpp 3 | $XGETTEXT *.cpp -o $podir/ksirkskineditor.pot 4 | -------------------------------------------------------------------------------- /ksirkskineditor/NOTES: -------------------------------------------------------------------------------- 1 | To implement graphic choice of various elements in the skin, for example countries flags 2 | - prepare a QSvgRenderer on the pool 3 | - read the XML of the SVG (with QXmlReader). For each element possibly an item (at least with an id), render it to a pixmap 4 | - store each id with the corresponding pixmap 5 | - to chose a country flag, fill in the flag entry with the list of pixmaps associated to the ids (gray out those already used but they can still be used here and removed from elsewhere) 6 | - when the user choses one entry, retrieve its id to store it in the skin. 7 | 8 | 9 | Don't forget to include a "Unknown/Not set" entry in the case the pool is not already complete. It will also be used as the initial value. 10 | 11 | -------------------------------------------------------------------------------- /ksirkskineditor/continent.cpp: -------------------------------------------------------------------------------- 1 | /*************************************************************************** 2 | continent.cpp - description 3 | ------------------- 4 | begin : sam sep 7 2002 5 | copyright : (C) 2002 by Gael de Chalendar 6 | email : kleag@free.fr 7 | ***************************************************************************/ 8 | 9 | /*************************************************************************** 10 | * * 11 | * This program is free software; you can redistribute it and/or modify * 12 | * it under the terms of the GNU General Public License as published by * 13 | * the Free Software Foundation; either either version 2 14 | of the License, or (at your option) any later version.of the License, or * 15 | * (at your option) any later version. * 16 | * * 17 | * You should have received a copy of the GNU General Public License 18 | * along with this program; if not, write to the Free Software 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 20 | * 02110-1301, USA 21 | ***************************************************************************/ 22 | 23 | #include "continent.h" 24 | 25 | 26 | namespace KsirkSkinEditor 27 | { 28 | 29 | /** The constructor-initializer */ 30 | Continent::Continent (const QString &myName, const QList& myCountries, const int myBonus/*, 31 | unsigned int id*/) : 32 | m_members(myCountries), m_name(myName), m_bonus(myBonus)/*, m_id(id)*/ 33 | { 34 | for ( int i = 0; i < myCountries.size(); ++i ) 35 | { 36 | myCountries.at(i)->setContinent(this); 37 | } 38 | } 39 | 40 | Continent::~Continent() 41 | { 42 | } 43 | 44 | } // closing namespace KsirkSkinEditor 45 | -------------------------------------------------------------------------------- /ksirkskineditor/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirkskineditor/cross.png -------------------------------------------------------------------------------- /ksirkskineditor/ksirkcontinentdefinition.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKCONTINENTDEFINITION_H 21 | #define KSIRKCONTINENTDEFINITION_H 22 | 23 | #include "ui_ksirkcontinentdefinition.h" 24 | 25 | #include 26 | 27 | class KsirkContinentDefinitionWidget : public QDockWidget, public Ui::KsirkContinentDefinition 28 | { 29 | public: 30 | explicit KsirkContinentDefinitionWidget(QWidget* parent) : QDockWidget(parent) 31 | { 32 | setupUi(this); 33 | } 34 | }; 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkcountrydefinition.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKCOUNTRYDEFINITION_H 21 | #define KSIRKCOUNTRYDEFINITION_H 22 | 23 | #include "ui_ksirkcountrydefinition.h" 24 | 25 | #include 26 | 27 | namespace KsirkSkinEditor 28 | { 29 | class Country; 30 | } 31 | 32 | class KsirkCountryDefinitionWidget : public QDockWidget, public Ui::KsirkCountryDefinition 33 | { 34 | public: 35 | explicit KsirkCountryDefinitionWidget(QWidget* parent); 36 | 37 | void initWith(const KsirkSkinEditor::Country* country); 38 | }; 39 | 40 | #endif 41 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkgoaldefinition.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKGOALDEFINITION_H 21 | #define KSIRKGOALDEFINITION_H 22 | 23 | #include "ui_ksirkgoaldefinition.h" 24 | 25 | #include 26 | 27 | class KsirkGoalDefinitionWidget : public QDockWidget, public Ui::KsirkGoalDefinition 28 | { 29 | public: 30 | explicit KsirkGoalDefinitionWidget(QWidget* parent) : QDockWidget(parent) 31 | { 32 | setupUi(this); 33 | } 34 | }; 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirknationalitydefinition.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKNATIONALITYDEFINITION_H 21 | #define KSIRKNATIONALITYDEFINITION_H 22 | 23 | #include "ui_ksirknationalitydefinition.h" 24 | 25 | #include 26 | 27 | class KsirkNationalityDefinitionWidget : public QDockWidget, public Ui::KsirkNationalityDefinition 28 | { 29 | public: 30 | explicit KsirkNationalityDefinitionWidget(QWidget* parent) : QDockWidget(parent) 31 | { 32 | setupUi(this); 33 | } 34 | }; 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskindefinition.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKSKINDEFINITION_H 21 | #define KSIRKSKINDEFINITION_H 22 | 23 | #include "ui_ksirkskindefinition.h" 24 | 25 | #include 26 | 27 | class KSirkSkinDefinitionWidget : public QDockWidget, public Ui::skindefinition 28 | { 29 | public: 30 | explicit KSirkSkinDefinitionWidget(QWidget* parent) : QDockWidget(parent) 31 | { 32 | setupUi(this); 33 | } 34 | }; 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditor.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ksirkskineditorui.rc 5 | 6 | 7 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorcountriesselectiondialog.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | 21 | #ifndef _KSIRKSKINEDITORCOUNTRIESSELECTIONDIALOG_H_ 22 | #define _KSIRKSKINEDITORCOUNTRIESSELECTIONDIALOG_H_ 23 | 24 | #include "ui_ksirkskineditorcountriesselectiondialog.h" 25 | 26 | #include 27 | 28 | /** 29 | * This is the KsirK Skin Editor configuration dialog. Based on KConfigDialog. 30 | * 31 | * @short Configuration dialog 32 | * @author Gaël de Chalendar (aka Kleag) 33 | */ 34 | class KsirkSkinEditorCountriesSelectionDialog :public QDialog, public Ui::CountriesSelectionDialog 35 | { 36 | public: 37 | explicit KsirkSkinEditorCountriesSelectionDialog(QWidget* parent) : QDialog(parent) 38 | { 39 | setupUi(this); 40 | } 41 | }; 42 | 43 | #endif 44 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorpixmapitem.cpp: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | // application specific includes 21 | #include "ksirkskineditorpixmapitem.h" 22 | 23 | #include 24 | 25 | #include "ksirkskineditor_debug.h" 26 | 27 | namespace KsirkSkinEditor 28 | { 29 | 30 | PixmapItem::PixmapItem(QGraphicsItem* parent) : 31 | QGraphicsPixmapItem(parent) 32 | { 33 | qCDebug(KSIRKSKINEDITOR_LOG); 34 | } 35 | 36 | PixmapItem::~PixmapItem() 37 | { 38 | qCDebug(KSIRKSKINEDITOR_LOG); 39 | } 40 | 41 | void PixmapItem::mousePressEvent(QGraphicsSceneMouseEvent* event) 42 | { 43 | qCDebug(KSIRKSKINEDITOR_LOG) << event->scenePos(); 44 | QGraphicsItem::mousePressEvent(event); 45 | Q_EMIT pressed(this,event->scenePos()); 46 | } 47 | 48 | void PixmapItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event) 49 | { 50 | qCDebug(KSIRKSKINEDITOR_LOG) << event->scenePos(); 51 | QGraphicsItem::mouseReleaseEvent(event); 52 | Q_EMIT placed(this, event->scenePos()); 53 | } 54 | 55 | } // closing namespace 56 | 57 | #include "moc_ksirkskineditorpixmapitem.cpp" 58 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorpixmapitem.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKSKINEDITORPIXMAPITEM_H 21 | #define KSIRKSKINEDITORPIXMAPITEM_H 22 | 23 | // include files for Qt 24 | #include 25 | #include 26 | #include 27 | 28 | // include files for KDE 29 | 30 | // include files for kde games 31 | 32 | class QGraphicsSceneMouseEvent; 33 | 34 | namespace KsirkSkinEditor 35 | { 36 | class PixmapItem : public QObject, public QGraphicsPixmapItem 37 | { 38 | Q_OBJECT 39 | 40 | public: 41 | /** 42 | * Create the window and initializes its members 43 | */ 44 | explicit PixmapItem(QGraphicsItem* parent=nullptr); 45 | 46 | /** 47 | * Deletes the background and the pool 48 | */ 49 | ~PixmapItem() override; 50 | 51 | Q_SIGNALS: 52 | void pressed(QGraphicsItem*, const QPointF&); 53 | void placed(QGraphicsItem*, const QPointF&); 54 | 55 | protected: 56 | void mousePressEvent(QGraphicsSceneMouseEvent* event) override; 57 | void mouseReleaseEvent (QGraphicsSceneMouseEvent* event) override; 58 | 59 | }; 60 | 61 | } // closing namespace KsirkSkinEditor 62 | 63 | #endif 64 | 65 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorsettings.kcfg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorsettings.kcfgc: -------------------------------------------------------------------------------- 1 | File=ksirkskineditorsettings.kcfg 2 | ClassName=KsirkSkinEditorSettings 3 | Singleton=true 4 | Mutators=true 5 | NameSpace=KsirkSkinEditor -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditortextitem.cpp: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | // application specific includes 21 | #include "ksirkskineditortextitem.h" 22 | 23 | #include 24 | 25 | #include "ksirkskineditor_debug.h" 26 | 27 | namespace KsirkSkinEditor 28 | { 29 | 30 | TextItem::TextItem(QGraphicsItem* parent) : 31 | QGraphicsTextItem(parent) 32 | { 33 | qCDebug(KSIRKSKINEDITOR_LOG); 34 | } 35 | 36 | TextItem::~TextItem() 37 | { 38 | qCDebug(KSIRKSKINEDITOR_LOG); 39 | } 40 | 41 | void TextItem::mousePressEvent(QGraphicsSceneMouseEvent* event) 42 | { 43 | qCDebug(KSIRKSKINEDITOR_LOG); 44 | // setPosition(event->scenePos().x()-width()/2,event->scenePos().y()-height()/2) 45 | Q_EMIT pressed(this, event->scenePos()); 46 | QGraphicsItem::mousePressEvent(event); 47 | } 48 | 49 | void TextItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* event) 50 | { 51 | qCDebug(KSIRKSKINEDITOR_LOG) << event->scenePos(); 52 | Q_EMIT placed(this, event->scenePos()); 53 | QGraphicsItem::mouseReleaseEvent(event); 54 | } 55 | 56 | } // closing namespace 57 | 58 | #include "moc_ksirkskineditortextitem.cpp" 59 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditortextitem.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKSKINEDITORTEXTITEM_H 21 | #define KSIRKSKINEDITORTEXTITEM_H 22 | 23 | // include files for Qt 24 | #include 25 | #include 26 | #include 27 | 28 | // include files for KDE 29 | 30 | // include files for kde games 31 | 32 | class QGraphicsSceneMouseEvent; 33 | 34 | namespace KsirkSkinEditor 35 | { 36 | class TextItem : public QGraphicsTextItem 37 | { 38 | Q_OBJECT 39 | 40 | public: 41 | /** 42 | * Create the window and initializes its members 43 | */ 44 | explicit TextItem(QGraphicsItem* parent=nullptr); 45 | 46 | /** 47 | * Deletes the background and the pool 48 | */ 49 | ~TextItem() override; 50 | 51 | Q_SIGNALS: 52 | void pressed(QGraphicsItem*,const QPointF&); 53 | void placed(QGraphicsItem*, const QPointF&); 54 | 55 | protected: 56 | void mousePressEvent(QGraphicsSceneMouseEvent* event) override; 57 | void mouseReleaseEvent (QGraphicsSceneMouseEvent* event) override; 58 | 59 | }; 60 | 61 | } // closing namespace KsirkSkinEditor 62 | 63 | #endif 64 | 65 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorui.rc: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | &Game 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | &Settings 19 | 20 | &Help 21 | 22 | 23 | 24 | Main Toolbar 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkskineditorwidget.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKSKINEDITORWIDGET_H 21 | #define KSIRKSKINEDITORWIDGET_H 22 | 23 | #include "ui_ksirkskineditorwidget.h" 24 | 25 | #include 26 | 27 | class KSirkSkinEditorWidget : public QFrame, public Ui::skinEditor 28 | { 29 | public: 30 | explicit KSirkSkinEditorWidget(QWidget* parent) : QFrame(parent) 31 | { 32 | setupUi(this); 33 | } 34 | }; 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /ksirkskineditor/ksirkspritesdefinition.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKSPRITESDEFINITION_H 21 | #define KSIRKSPRITESDEFINITION_H 22 | 23 | #include "ui_ksirkspritesdefinition.h" 24 | 25 | #include 26 | 27 | class KsirkSpritesDefinitionWidget : public QDockWidget, public Ui::KsirkSpritesDefinition 28 | { 29 | public: 30 | explicit KsirkSpritesDefinitionWidget(QWidget* parent) : QDockWidget(parent) 31 | { 32 | setupUi(this); 33 | } 34 | }; 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /ksirkskineditor/preferences.ui: -------------------------------------------------------------------------------- 1 | 2 | KsirkSkinEditorPreferencesWidget 3 | 4 | 5 | 6 | 0 7 | 0 8 | 533 9 | 294 10 | 11 | 12 | 13 | 14 | 15 15 | 0 16 | 17 | 18 | 19 | 20 | 100 21 | 100 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /ksirkskineditor/spritetype.h: -------------------------------------------------------------------------------- 1 | /* This file is part of KsirK. 2 | Copyright (C) 2008 Gael de Chalendar 3 | 4 | KsirK is free software; you can redistribute it and/or 5 | modify it under the terms of the GNU General Public 6 | License as published by the Free Software Foundation, either version 2 7 | of the License, or (at your option) any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program; if not, write to the Free Software 16 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 17 | 02110-1301, USA 18 | */ 19 | 20 | #ifndef KSIRKSKINEDITORSPRITETYPE_H 21 | #define KSIRKSKINEDITORSPRITETYPE_H 22 | 23 | namespace KsirkSkinEditor 24 | { 25 | 26 | enum SpriteType 27 | { 28 | None, 29 | Flag, 30 | Infantry, 31 | Cavalry, 32 | Cannon, 33 | Anchor, 34 | Center 35 | }; 36 | 37 | 38 | } // closing namespace KsirkSkinEditor 39 | 40 | #endif 41 | 42 | -------------------------------------------------------------------------------- /ksirkskineditor/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/ksirkskineditor/target.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/logo.png -------------------------------------------------------------------------------- /packaging/KsirK_2.spec: -------------------------------------------------------------------------------- 1 | # This spec file was generated by Gideon 2 | # Please report any problem to KDevelop Team 3 | # Thanks to Matthias Saou for his explanations on http://freshrpms.net/docs/fight.html 4 | 5 | Name: ksirk 6 | Version: 1.8beta1 7 | Release: 0 8 | Vendor: The KsirK Team 9 | Copyright: GPL 10 | Summary: A turn by turn multiplayer strategy game with AI (Risk clone) 11 | Group: application/games 12 | Packager: Kleag 13 | BuildRoot: %{_tmppath}/%{name}-root 14 | Source: ksirk-1.8beta1.tar.bz2 15 | 16 | %description 17 | KsirK is a computerized version of a well known strategy board game: Risk ! 18 | 19 | In the current version, KsirK is a usable multi-player mono-machine game with a basic AI. Planned future versions will be really network-enabled multi-playered with a better AI and a lot more enhancements (see Status for details). 20 | 21 | The goal of the game is simply to conquer the World... It is done by attacking your neighbors with your armies. 22 | 23 | 24 | 25 | 26 | %prep 27 | %setup 28 | CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \ 29 | --target=i686 30 | 31 | %build 32 | %configure 33 | make 34 | 35 | %install 36 | rm -rf %{buildroot} 37 | %makeinstall 38 | 39 | %clean 40 | rm -rf %{buildroot} 41 | 42 | %post -p /sbin/ldconfig 43 | %postun -p /sbin/ldconfig 44 | %files 45 | %defattr(-, root, root) 46 | %doc AUTHORS COPYING ChangeLog NEWS README TODO 47 | %{_bindir}/* 48 | %{_libdir}/*.so.* 49 | %{_datadir}/%{name} 50 | %{_mandir}/man8/* 51 | %changelog 52 | 53 | -------------------------------------------------------------------------------- /packaging/ksirk-1.6-i486-1as.txt: -------------------------------------------------------------------------------- 1 | ksirk: KsirK (a computerized version of a strategy board game: Risk !) 2 | ksirk: 3 | ksirk: It runs under KDE or any Linux system with the KDE libs and is 4 | ksirk: released under the GPL . In the current version, KsirK is a 5 | ksirk: multi-player network-enabled game with a simple AI. Planned future 6 | ksirk: ksirk: versions will have a better AI and more enhancements (see the 7 | ksirk: web site or the distribution for details). 8 | ksirk: 9 | ksirk: https://gna.org/projects/ksirk 10 | ksirk: WWW.SLACKY.IT 11 | ksirk: PackaGer Gohanz. 12 | -------------------------------------------------------------------------------- /packaging/ksirk.spec: -------------------------------------------------------------------------------- 1 | # This spec file was generated using Kpp 2 | # If you find any problems with this spec file please report 3 | # the error to ian geiser 4 | Summary: A turn by turn strategy game 5 | Name: ksirk 6 | Version: 1.8beta1 7 | Release: 0 8 | Copyright: GPL 9 | Vendor: 10 | Url: http://home.gna.org/ksirk 11 | 12 | Packager: 13 | Group: application/games 14 | Source: ksirk-1.8beta1.tar.bz2 15 | BuildRoot: /tmp 16 | 17 | %description 18 | 19 | 20 | %prep 21 | %setup 22 | CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \ 23 | \ 24 | $LOCALFLAGS 25 | %build 26 | # Setup for parallel builds 27 | numprocs=`egrep -c ^cpu[0-9]+ /proc/stat || :` 28 | if [ "$numprocs" = "0" ]; then 29 | numprocs=1 30 | fi 31 | 32 | make -j$numprocs 33 | 34 | %install 35 | make install-strip DESTDIR=$RPM_BUILD_ROOT 36 | 37 | cd $RPM_BUILD_ROOT 38 | find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/file.list.ksirk 39 | find . -type f | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.ksirk 40 | find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.ksirk 41 | 42 | %clean 43 | rm -rf $RPM_BUILD_ROOT/* 44 | rm -rf $RPM_BUILD_DIR/ksirk 45 | rm -rf ../file.list.ksirk 46 | 47 | 48 | %files -f ../file.list.ksirk 49 | -------------------------------------------------------------------------------- /packaging/slack/slack-desc: -------------------------------------------------------------------------------- 1 | # HOW TO EDIT THIS FILE: 2 | # The "handy ruler" below makes it easier to edit a package description. Line 3 | # up the first '|' above the ':' following the base package name, and the '|' on 4 | # the right side marks the last column you can put a character in. You must make 5 | # exactly 11 lines for the formatting to be correct. It's also customary to 6 | # leave one space after the ':'. 7 | 8 | |-----handy-ruler-------------------------------------------------------| 9 | ksirk: KsirK (a computerized version of a strategy board game: Risk !) 10 | ksirk: 11 | ksirk: It runs under KDE or any Linux system with the KDE libs and is 12 | ksirk: released under the GPL . In the current version, KsirK is a 13 | ksirk: multi-player network-enabled game with a simple AI. Planned future 14 | ksirk: ksirk: versions will have a better AI and more enhancements (see the 15 | ksirk: web site or the distribution for details). 16 | ksirk: 17 | ksirk: https://gna.org/projects/ksirk 18 | ksirk: WWW.SLACKY.IT 19 | ksirk: PackaGer Gohanz. 20 | 21 | -------------------------------------------------------------------------------- /packaging/slack/slack-required: -------------------------------------------------------------------------------- 1 | cxxlibs >= 5.0.7-i486-1 | gcc-g++ >= 3.3.6-i486-1 2 | expat >= 1.95.8-i486-1 3 | gcc >= 3.3.6-i486-1 4 | glibc-solibs >= 2.3.5-i486-5 5 | kdegames >= 3.4.2-i486-1 6 | kdelibs >= 3.4.2-i486-2 7 | libart_lgpl >= 2.3.17-i486-1 8 | libidn >= 0.5.17-i486-1 9 | libjpeg >= 6b-i386-4 10 | libmng >= 1.0.5-i486-1 11 | libpng >= 1.2.8-i486-1 12 | qt >= 3.3.4-i486-2 13 | x11 >= 6.8.2-i486-6_slack10.2 14 | zlib >= 1.2.3-i486-1 15 | -------------------------------------------------------------------------------- /po/uk/docs/ksirk/attackmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/attackmenu.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/defensedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/defensedialog.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/displaygoalmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/displaygoalmessage.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/displaygoalwarningmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/displaygoalwarningmessage.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/firing-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/firing-screenshot.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/introscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/introscreen.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/invasionslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/invasionslider.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/joinnetgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/joinnetgame.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/justjoined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/justjoined.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/newgamedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/newgamedialog.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/numnetplayersdialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/numnetplayersdialog.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/placingarmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/placingarmies.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/playersetupdialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/playersetupdialog.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/preferences.png -------------------------------------------------------------------------------- /po/uk/docs/ksirk/shownumberofarmies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/ksirk/558d6c0b425a902495d06045b15e928873f8c40a/po/uk/docs/ksirk/shownumberofarmies.png --------------------------------------------------------------------------------