summaryrefslogtreecommitdiffstats
path: root/src/global.h
blob: 8704d62f20b76349c4022c5f07e1a2aa4bfe7880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// * This file is part of the COLOBOT source code
// * Copyright (C) 2001-2008, Daniel ROUX & EPSITEC SA, www.epsitec.ch
// *
// * This program is free software: you can redistribute it and/or modify
// * it under the terms of the GNU General Public License as published by
// * the Free Software Foundation, either version 3 of the License, or
// * (at your option) any later version.
// *
// * This program is distributed in the hope that it will be useful,
// * but WITHOUT ANY WARRANTY; without even the implied warranty of
// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// * GNU General Public License for more details.
// *
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see  http://www.gnu.org/licenses/.

#ifndef _GLOBAL_H_
#define	_GLOBAL_H_


#define BUILD_FACTORY		(1<<0)		// usine
#define BUILD_DERRICK		(1<<1)		// derrick
#define BUILD_CONVERT		(1<<2)		// convertisseur
#define BUILD_RADAR			(1<<3)		// radar
#define BUILD_ENERGY		(1<<4)		// fabrique � pile
#define BUILD_NUCLEAR		(1<<5)		// centrale nucl�aire
#define BUILD_STATION		(1<<6)		// station de recharge
#define BUILD_REPAIR		(1<<7)		// centre de r�paration
#define BUILD_TOWER			(1<<8)		// tour de d�fense
#define BUILD_RESEARCH		(1<<9)		// centre de recherche
#define BUILD_LABO			(1<<10)		// laboratoire
#define BUILD_PARA			(1<<11)		// paratonnerre
#define BUILD_INFO			(1<<12)		// borne d'information
#define BUILD_GFLAT			(1<<16)		// montre le sol plat
#define BUILD_FLAG			(1<<17)		// met/enl�ve drapeau de couleur


// Ne pas changer les valeurs � cause des sauvegardes (bits=...).

#define RESEARCH_TANK		(1<<0)		// chenilles
#define RESEARCH_FLY		(1<<1)		// ailes
#define RESEARCH_CANON		(1<<2)		// canon
#define RESEARCH_TOWER		(1<<3)		// tour de d�fense
#define RESEARCH_ATOMIC		(1<<4)		// nucl�aire
#define RESEARCH_THUMP		(1<<5)		// thumper
#define RESEARCH_SHIELD		(1<<6)		// bouclier
#define RESEARCH_PHAZER		(1<<7)		// canon phazer
#define RESEARCH_iPAW		(1<<8)		// pattes des insectes
#define RESEARCH_iGUN		(1<<9)		// canon des insectes
#define RESEARCH_RECYCLER	(1<<10)		// recycleur
#define RESEARCH_SUBM		(1<<11)		// sous-marin
#define RESEARCH_SNIFFER	(1<<12)		// sniffeur

extern long		g_id;					// identificateur unique
extern long		g_build;				// b�timents constructibles
extern long		g_researchDone;			// recherches effectu�es
extern long		g_researchEnable;		// recherches accessbles
extern float	g_unit;					// facteur de conversion



#endif //_GLOBAL_H_