varible location differs in files ... static not working?
[physics.git] / src / config / config.cpp
CommitLineData
8f8b6693
PG
1/*
2 * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (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. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
b1d92c2f 18#include "config.h"
c04d3365 19#include "../debug.h"
87c9b12f 20
b552aa3b
PG
21#include <SDL/SDL.h>
22#include "keys.h"
23
87c9b12f 24#include "reader.h"
8f8b6693
PG
25#include "../input/inputManager.h"
26
27/// ***** Private Method Headers *****
28/// ***** Private Variables *****
29
30/// ***** Initializers/Cleaners *****
31
b1d92c2f
PG
32void cfg::init()
33{
87c9b12f 34 readConfigs(NULL);
b552aa3b 35
b1d92c2f 36 // TODO read in config files
b552aa3b
PG
37
38 key::init();
c04d3365
PG
39
40 cout << &key::end << endl;
b1d92c2f
PG
41}
42void cfg::clean()
43{
44 // TODO save to config files?
b552aa3b
PG
45
46 key::clean();
b1d92c2f
PG
47}
48
8f8b6693
PG
49/// ***** Public Methods *****
50
b1d92c2f 51bool cfg::pause()
8f8b6693 52{
1c880d73 53 return input::wasPressed(key::pause);
8f8b6693 54}
b1d92c2f 55bool cfg::unPause()
8f8b6693 56{
1c880d73 57 return input::wasPressed(key::pause);
8f8b6693
PG
58}
59
b1d92c2f
PG
60bool cfg::endGame()
61{
1c880d73 62 return input::wasReleased(key::end);
b1d92c2f
PG
63}
64
f103ba70
PG
65bool cfg::mouseWellFollow()
66{
1c880d73 67 return input::isPressed(key::follow);
f103ba70 68}
a860c0c7
PG
69bool cfg::mouseWellOn()
70{
1c880d73 71 return input::wasPressed(key::well);
f103ba70
PG
72}
73bool cfg::mouseWellOff()
74{
1c880d73 75 return input::wasReleased(key::well);
a860c0c7
PG
76}
77
8f8b6693 78/// ***** Private Methods *****