diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-09-20 20:17:32 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-09-20 20:17:44 +0100 |
commit | 489fa7f930689dc9ff271138e613a8d68d88ee45 (patch) | |
tree | f4f4b3c8ca55e08f797dc04e0ba3d745133fba13 /game/environment.cpp | |
parent | Update getSunPos to use a standard time_t (diff) | |
download | ilt-489fa7f930689dc9ff271138e613a8d68d88ee45.tar.bz2 ilt-489fa7f930689dc9ff271138e613a8d68d88ee45.tar.xz ilt-489fa7f930689dc9ff271138e613a8d68d88ee45.zip |
Add basic environment object
Will hold world time/date, weather, location etc
Diffstat (limited to 'game/environment.cpp')
-rw-r--r-- | game/environment.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/game/environment.cpp b/game/environment.cpp new file mode 100644 index 0000000..fd2bfd4 --- /dev/null +++ b/game/environment.cpp @@ -0,0 +1,18 @@ +#include "environment.h" +#include <chronology.h> +#include <gfx/gl/sceneRenderer.h> + +Environment::Environment() : worldTime {"2024-01-01T12:00:00"_time_t} { } + +void +Environment::tick(TickDuration) +{ + worldTime += 1; +} + +void +Environment::render(const SceneRenderer & renderer, const SceneProvider & scene) const +{ + renderer.setAmbientLight({0.5F, 0.5F, 0.5F}); + renderer.setDirectionalLight({0.6F, 0.6F, 0.6F}, {-1, 1, -1}, scene); +} |