1 /**
2  * @file
3  */
4 
5 /*
6 Copyright (C) 2002-2013 UFO: Alien Invasion.
7 
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12 
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 
17 See the GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23 
24 #pragma once
25 
26 #define MAX_RANKS	32
27 
28 /** @brief Describes a rank that a recruit can gain */
29 typedef struct rank_s {
30 	const char* id;			/**< Unique identifier as parsed from the ufo files. */
31 	const char* name;		/**< Rank name (Captain, Squad Leader) */
32 	const char* shortname;	/**< Rank shortname (Cpt, Sqd Ldr) */
33 	const char* image;		/**< Image to show in menu */
34 	int type;				/**< employeeType_t */
35 	int mind;				/**< character mind attribute needed */
36 	int killedEnemies;		/**< needed amount of enemies killed */
37 	int killedOthers;		/**< needed amount of other actors killed */
38 	float factor;			/**< a factor that is used to e.g. increase the win
39 							 * probability for auto missions */
40 	int level;				/**< rank level for given employee type */
41 } rank_t;
42 
43 void CL_ParseRanks(const char* name, const char** text);
44 int CL_GetRankIdx(const char* rankID);
45 rank_t* CL_GetRankByIdx(const int index);
46