This repository was archived by the owner on Jun 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
65 lines (53 loc) · 1.95 KB
/
main.cpp
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
#include <SFML/Graphics.hpp>
#include "animations.hpp"
#define SIN(f, t, i) (std::sin(f * t + i) * 127.0f + 128.0f)
#define COS(f, t, i) (std::cos(f * t + i) * 127.0f + 128.0f)
int main()
{
sf::RenderWindow window(sf::VideoMode(480, 480), "Animations");
sx::LoadingAnim loam(sx::LoadingAnim::POLY, 96.0f, 10);
loam.setRotation(1.0f);
sf::Time elapsed;
sf::Clock clock;
window.setFramerateLimit(60);
loam.registerColorUpdateFct([](sf::Time elapsed, sf::Color& fc, sf::Color& oc){
float freq = 0.7f;
fc.r = SIN(freq, elapsed.asSeconds(), 0.0f);
fc.g = SIN(freq, elapsed.asSeconds(), 2.0f);
fc.b = SIN(freq, elapsed.asSeconds(), 4.0f);
oc.r = COS(freq, elapsed.asSeconds(), 0.0f);
oc.g = COS(freq, elapsed.asSeconds(), 2.0f);
oc.b = COS(freq, elapsed.asSeconds(), 4.0f);
});
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
if (event.type == sf::Event::KeyPressed)
{
if (event.key.code == sf::Keyboard::C)
loam.setKind(sx::LoadingAnim::CIRCLE);
else if (event.key.code == sf::Keyboard::S)
{
loam.setKind(sx::LoadingAnim::SQUARE);
}
else if (event.key.code == sf::Keyboard::P)
{
loam.setKind(sx::LoadingAnim::POLY);
}
}
}
// update
sf::Time dt = clock.restart();
elapsed += dt;
loam.update(elapsed);
// render
window.clear();
loam.render(window);
window.display();
}
return 0;
}