]> git.mxchange.org Git - quix0rs-blobwars.git/blob - src/game.h
Import of version 1.14 minus music and sounds.
[quix0rs-blobwars.git] / src / game.h
1 /*
2 Copyright (C) 2004 Parallel Realities
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 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.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #include "headers.h"
22
23 extern void drawMap();
24 extern void drawMapTopLayer();
25 extern void showMap(int centerX, int centerY);
26 extern void raiseWaterLevel();
27 extern void doWind();
28
29 extern void doTimeRemaining();
30 extern void doStatusBar();
31 extern void doPauseInfo();
32
33 extern void doItems();
34 extern void doPlayer();
35 extern void doTrains();
36 extern void doSwitches();
37 extern void doBullets();
38 extern void doEffects();
39 extern void doParticles();
40 extern void doMIAs();
41 extern void doObstacles();
42 extern void doEnemies();
43 extern void doBosses();
44 extern void doSpawnPoints();
45 extern void doTeleporters();
46 extern void doLineDefs();
47 extern void doTraps();
48
49 extern void showOptions();
50 extern void drawWidgets();
51
52 extern void dropCarriedItems();
53
54 extern void resetPlayer();
55 extern void gibPlayer();
56
57 extern void addTeleportParticles(float x, float y, int amount, int soundToPlay);
58
59 extern void showMissionInformation();
60 extern bool allObjectivesCompleted();
61 extern void showMissionClear();
62 extern void autoCompleteAllObjectives(bool allObjectives);
63 extern void doCredits();
64
65 extern void checkEndCutscene();
66 extern void processPostMissionData();
67 extern void clearAllMissionData();
68 extern void saveGame();
69
70 extern Audio audio;
71 extern Config config;
72 extern Engine engine;
73 extern Graphics graphics;
74 extern Map map;
75 extern ReplayData replayData;
76
77 extern Entity player;
78 extern Game game;
79 extern GameData gameData;
80 extern Weapon weapon[MAX_WEAPONS];