blob: 59396d87df55c80b5d1b29e0697a8acb4193eec0 (
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
|
#include <weather.hpp>
#include <config.hpp>
#include <random.hpp>
#include <particle.hpp>
constexpr const char *weatherStrings[] = {
"Sunny",
"Rainy",
"Snowy"
};
Weather WeatherSystem::weather;
WeatherSystem::WeatherSystem(Weather w)
{
weather = w;
}
void WeatherSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
static int newPartDelay = 0; // TODO no
switch (weather) {
case Weather::Sunny:
break;
case Weather::Rainy:
if (newPartDelay++ == 4) {
newPartDelay = 0;
ParticleSystem::add(vec2(offset.x - game::SCREEN_WIDTH / 2 + randGet() % game::SCREEN_WIDTH,
offset.y + game::SCREEN_HEIGHT / 2 + 100),
ParticleType::Drop, 3000, 3);
}
break;
case Weather::Snowy:
if (newPartDelay++ == 6) {
newPartDelay = 0;
ParticleSystem::add(vec2(offset.x - game::SCREEN_WIDTH + randGet() % game::SCREEN_WIDTH * 2,
offset.y + game::SCREEN_HEIGHT / 2 + 50),
ParticleType::Confetti, 10000, 0);
}
break;
default:
break;
}
}
void WeatherSystem::setWeather(const std::string& w)
{
for (int i = 0; i < static_cast<int>(Weather::count); i++) {
if (w == weatherStrings[i]) {
weather = static_cast<Weather>(i);
return;
}
}
}
|