summaryrefslogtreecommitdiffstats
path: root/src/common/global.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-04-28 17:53:17 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-04-28 17:53:17 +0200
commit449cc186d5b8117d74ba22d6173497d00939f5f1 (patch)
tree39f38530dab2c9c8b33f5d8e42a81242bd48704b /src/common/global.h
parenteeb69b34d2467e51ff84b3235f94506ce6bb9283 (diff)
downloadcolobot-449cc186d5b8117d74ba22d6173497d00939f5f1.tar.gz
colobot-449cc186d5b8117d74ba22d6173497d00939f5f1.tar.bz2
colobot-449cc186d5b8117d74ba22d6173497d00939f5f1.zip
Source files split into modules
Diffstat (limited to 'src/common/global.h')
-rw-r--r--src/common/global.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/common/global.h b/src/common/global.h
new file mode 100644
index 0000000..32aefdc
--- /dev/null
+++ b/src/common/global.h
@@ -0,0 +1,64 @@
+// * 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/.
+
+// global.h
+
+#ifndef _GLOBAL_H_
+#define _GLOBAL_H_
+
+
+#define BUILD_FACTORY (1<<0) // factory
+#define BUILD_DERRICK (1<<1) // derrick
+#define BUILD_CONVERT (1<<2) // converter
+#define BUILD_RADAR (1<<3) // radar
+#define BUILD_ENERGY (1<<4) // factory of cells
+#define BUILD_NUCLEAR (1<<5) // nuclear power plant
+#define BUILD_STATION (1<<6) // base station
+#define BUILD_REPAIR (1<<7) // repair center
+#define BUILD_TOWER (1<<8) // defense tower
+#define BUILD_RESEARCH (1<<9) // research center
+#define BUILD_LABO (1<<10) // laboratory
+#define BUILD_PARA (1<<11) // lightning protection
+#define BUILD_INFO (1<<12) // information terminal
+#define BUILD_GFLAT (1<<16) // flat floor
+#define BUILD_FLAG (1<<17) // puts / removes colored flag
+
+
+// Do not change values ​​was because of backups (bits = ...).
+
+#define RESEARCH_TANK (1<<0) // caterpillars
+#define RESEARCH_FLY (1<<1) // wings
+#define RESEARCH_CANON (1<<2) // cannon
+#define RESEARCH_TOWER (1<<3) // defense tower
+#define RESEARCH_ATOMIC (1<<4) // nuclear
+#define RESEARCH_THUMP (1<<5) // thumper
+#define RESEARCH_SHIELD (1<<6) // shield
+#define RESEARCH_PHAZER (1<<7) // phazer gun
+#define RESEARCH_iPAW (1<<8) // legs of insects
+#define RESEARCH_iGUN (1<<9) // cannon of insects
+#define RESEARCH_RECYCLER (1<<10) // recycler
+#define RESEARCH_SUBM (1<<11) // submarine
+#define RESEARCH_SNIFFER (1<<12) // sniffer
+
+extern long g_id; // unique identifier
+extern long g_build; // constructible buildings
+extern long g_researchDone; // research done
+extern long g_researchEnable; // research available
+extern float g_unit; // conversion factor
+
+
+
+#endif //_GLOBAL_H_