aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/cpp/Subconscious.cpp
blob: 8e1bd02303b19c66b9c298bcdccb7852f83d235c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include "Subconscious.hpp"
#include "WorldScene.hpp"

#include <SFML/Graphics.hpp>

// TODO remove (needed for mousewheel debug)
#include <iostream>
#include <iomanip>

/*** public methods ***/

Subconscious::Subconscious()
    : _window(sf::VideoMode(800, 600), "Subconscious")
{
    _window.setVerticalSyncEnabled(true);
    _window.setFramerateLimit(90);
}

Subconscious::~Subconscious()
{}

void Subconscious::run()
{
    _running = true;
    while (_running && _window.isOpen()) {

        sf::Event event;

        while (_window.pollEvent(event)) {
            switch (event.type) {
            /*** Keyboard Events ***/
            /*** Mouse Events ***/
            case sf::Event::MouseWheelScrolled:
                // my mouse always outputs +/- 1.0000, so the zoom speed
                // is by 1/10.0 => .1
                // TODO make this a setting that chan be changed
                // (mousewheel sensibility
                //
                // std::cout << std::fixed << std::setprecision(3)
                //           << event.mouseWheelScroll.delta << std::endl;
                _currentScene->zoom(event.mouseWheelScroll.delta/10.0);
                break;

            /*** Window Events ***/
            case sf::Event::Closed:
                _window.close();
                break;

            case sf::Event::Resized:
                _currentScene->resize(event.size);
                break;
            }
        }

        gameUpdate();
        gameRender();
    }
}

void Subconscious::demo()
{
    Scene *demoScene = new WorldScene(_window);

    _currentScene = demoScene;
    _scenes.push_back(demoScene);

    run();
}


/*** private methods ***/

void Subconscious::gameUpdate()
{
}

void Subconscious::gameRender()
{
    _window.clear();

    if (_currentScene != nullptr) {
        _currentScene->render();
    }

    _window.display();
}