reworked ups/fps/paused logic
[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
c46074c1
PG
30bool fPaused = false;
31
8f8b6693
PG
32/// ***** Initializers/Cleaners *****
33
b1d92c2f
PG
34void cfg::init()
35{
338e728a
PG
36 key::init();
37 readConfigs();
b552aa3b 38
b1d92c2f
PG
39 // TODO read in config files
40}
41void cfg::clean()
42{
43 // TODO save to config files?
44}
45
8f8b6693
PG
46/// ***** Public Methods *****
47
c46074c1 48bool cfg::paused()
8f8b6693 49{
c46074c1
PG
50 fPaused = input::wasPressed(key::pause) ? !fPaused : fPaused;
51 return fPaused;
8f8b6693
PG
52}
53
b1d92c2f
PG
54bool cfg::endGame()
55{
1c880d73 56 return input::wasReleased(key::end);
b1d92c2f
PG
57}
58
f103ba70
PG
59bool cfg::mouseWellFollow()
60{
1c880d73 61 return input::isPressed(key::follow);
f103ba70 62}
a860c0c7
PG
63bool cfg::mouseWellOn()
64{
1c880d73 65 return input::wasPressed(key::well);
f103ba70
PG
66}
67bool cfg::mouseWellOff()
68{
1c880d73 69 return input::wasReleased(key::well);
a860c0c7
PG
70}
71
c46074c1
PG
72bool cfg::showFPS()
73{
74 return true;
75}
76bool cfg::showUPS()
77{
78 return true;
79}
80
8f8b6693 81/// ***** Private Methods *****