key control changed to new system
[physics.git] / src / config / config.cpp
... / ...
CommitLineData
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
18#include "config.h"
19
20#include <SDL/SDL.h>
21#include "keys.h"
22
23#include "reader.h"
24#include "../input/inputManager.h"
25
26/// ***** Private Method Headers *****
27/// ***** Private Variables *****
28
29/// ***** Initializers/Cleaners *****
30
31void cfg::init()
32{
33 readConfigs(NULL);
34
35 // TODO read in config files
36
37 key::init();
38}
39void cfg::clean()
40{
41 // TODO save to config files?
42
43 key::clean();
44}
45
46/// ***** Public Methods *****
47
48bool cfg::pause()
49{
50 return input::wasPressed(key::pause);
51}
52bool cfg::unPause()
53{
54 return input::wasPressed(key::pause);
55}
56
57bool cfg::endGame()
58{
59 return input::wasReleased(key::end);
60}
61
62bool cfg::mouseWellFollow()
63{
64 return input::isPressed(key::follow);
65}
66bool cfg::mouseWellOn()
67{
68 return input::wasPressed(key::well);
69}
70bool cfg::mouseWellOff()
71{
72 return input::wasReleased(key::well);
73}
74
75/// ***** Private Methods *****