]> git.mxchange.org Git - quix0rs-blobwars.git/blob - src/game.h
Updated PNG icon files.
[quix0rs-blobwars.git] / src / game.h
1 /*
2 Copyright (C) 2004-2011 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 doMusicInfo(unsigned int);
32 extern void doPauseInfo();
33
34 extern void doItems();
35 extern void doPlayer();
36 extern void doTrains();
37 extern void doSwitches();
38 extern void doBullets();
39 extern void doEffects();
40 extern void doParticles();
41 extern void doMIAs();
42 extern void doObstacles();
43 extern void doEnemies();
44 extern void doBosses();
45 extern void doSpawnPoints();
46 extern void doTeleporters();
47 extern void doLineDefs();
48 extern void doTraps();
49
50 extern void showOptions();
51 extern void drawWidgets();
52
53 extern void dropCarriedItems();
54
55 extern void resetPlayer();
56 extern void gibPlayer();
57
58 extern void addTeleportParticles(float x, float y, int amount, int soundToPlay);
59
60 extern void showMissionInformation();
61 extern bool allObjectivesCompleted();
62 extern void showMissionClear();
63 extern void autoCompleteAllObjectives(bool allObjectives);
64 extern void doCredits();
65
66 extern void checkEndCutscene();
67 extern void processPostMissionData();
68 extern void clearAllMissionData();
69 extern void saveGame();
70
71 extern void presentPlayerMedal(const char *tname);
72
73 extern Audio audio;
74 extern Config config;
75 extern Engine engine;
76 extern Graphics graphics;
77 extern Map map;
78 extern ReplayData replayData;
79
80 extern Entity player;
81 extern Game game;
82 extern GameData gameData;
83 extern Weapon weapon[MAX_WEAPONS];