1 /* This file is part of KsirK.
2    Copyright (C) 2001-2007 Gael de Chalendar <kleag@free.fr>
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   * @file This header defines data that are defined here to ease their change
22   * begin                : dim sep 15 2002
23   */
24 
25 #ifndef KSIRK_GLOBAL_H
26 #define KSIRK_GLOBAL_H
27 
28 #define ONU_FILE_FORMAT_VERSION "3.0"
29 #define SAVE_GAME_FILE_FORMAT_VERSION "1.6"
30 
31 #define ID_NO_STATUS_MSG 0
32 #define ID_STATUS_MSG 1
33 #define ID_STATUS_MSG2 2
34 
35 #define CM_CANCEL    "Images/cancel.png"
36 #define CM_INFO        "Images/aide.png"
37 #define CM_NEWGAME        "Images/nouveauJeu.png"
38 #define CM_NEWNETGAME        "Images/newNetGame.png"
39 #define CM_OPENGAME    "Images/ouvrirJeu.png"
40 #define CM_SAVEGAME    "Images/saveGame.png"
41 #define CM_EXITGAME    "Images/quitter.png"
42 #define CM_RECYCLING        "Images/recycling.png"
43 #define CM_NEXTPLAYER    "Images/nextPlayer.png"
44 #define CM_RECYCLINGFINISHED    "Images/recyclingFinished.png"
45 #define CM_ATTACK1    "Images/attackOne.png"
46 #define CM_ATTACK2    "Images/attackTwo.png"
47 #define CM_ATTACK3    "Images/attackThree.png"
48 #define CM_DEFENSE1    "Images/defendOne.png"
49 #define CM_DEFENSE2    "Images/defendTwo.png"
50 #define CM_SHIFT    "Images/moveArmies.png"
51 #define CM_INVADE1    "Images/moveOne.png"
52 #define CM_INVADE5    "Images/moveFive.png"
53 #define CM_INVADE10    "Images/moveTen.png"
54 #define CM_RETREAT1    "Images/moveBackOne.png"
55 #define CM_RETREAT5    "Images/moveBackFive.png"
56 #define CM_RETREAT10    "Images/moveBackTen.png"
57 #define CM_INVASIONFINISHED    "Images/moveFinish.png"
58 #define CM_PREFERENCES    "Images/preferences.png"
59 
60 #endif // KSIRK_GLOBAL_H
61 
62