1 #ifndef DESERTPILLARS_H_
2 #define DESERTPILLARS_H_
5 #include <msp/core/application.h>
6 #include <msp/datafile/directorysource.h>
7 #include <msp/gl/camera.h>
8 #include <msp/gl/device.h>
9 #include <msp/gl/environmentmap.h>
10 #include <msp/gl/objectinstance.h>
11 #include <msp/gl/orderedscene.h>
12 #include <msp/gl/resourcemanager.h>
13 #include <msp/gl/resources.h>
14 #include <msp/gl/sequence.h>
15 #include <msp/gl/shadowmap.h>
16 #include <msp/gl/sky.h>
17 #include <msp/gl/technique.h>
18 #include <msp/gl/windowview.h>
19 #include <msp/graphics/display.h>
20 #include <msp/graphics/window.h>
21 #include <msp/input/keyboard.h>
22 #include <msp/time/timestamp.h>
24 class DesertPillars: public Msp::RegisteredApplication<DesertPillars>
29 Msp::Graphics::WindowOptions wnd_opts;
34 class Resources: public Msp::GL::Resources
37 Msp::DataFile::DirectorySource source;
38 Msp::GL::ResourceManager res_mgr;
41 Resources(Msp::GL::ResourceManager *);
44 class MorphSphere: public Msp::GL::ObjectInstance
47 Msp::GL::ProgramData shdata;
50 MorphSphere(const Msp::GL::Object &o): ObjectInstance(o) { }
52 void set_morph(float);
54 virtual void setup_render(Msp::GL::Renderer &, Msp::GL::Tag) const;
57 class LightFlare: public Msp::GL::ObjectInstance
60 Msp::GL::ProgramData shdata;
63 LightFlare(const Msp::GL::Object &, unsigned);
65 virtual void setup_render(Msp::GL::Renderer &, Msp::GL::Tag) const;
68 Msp::Graphics::Display display;
70 Msp::Graphics::Window window;
71 Msp::GL::Device gl_device;
72 Msp::Input::Keyboard keyboard;
73 Msp::GL::ResourceManager res_mgr;
76 Msp::GL::WindowView view;
77 std::unique_ptr<Msp::GL::Sequence> sequence;
78 Msp::GL::Camera camera;
79 const Msp::GL::Lighting &lighting;
81 std::unique_ptr<Msp::GL::Sequence> env_seq;
82 std::unique_ptr<Msp::GL::EnvironmentMap> env_map;
83 Msp::GL::OrderedScene content;
90 Msp::GL::DirectionalLight &sun;
91 Msp::GL::Vector3 sun_node;
92 Msp::GL::Vector3 sun_axis;
93 Msp::Geometry::Angle<float> sun_angle;
95 Msp::GL::PointLight &wisp;
96 Msp::GL::Color wisp_base_color;
97 Msp::Geometry::Angle<float> wisp_angle;
100 float camera_distance;
101 Msp::Geometry::Angle<float> camera_base_height;
102 Msp::Geometry::Angle<float> camera_angle;
103 Msp::Geometry::Angle<float> sphere_angle;
105 Msp::Time::TimeStamp last_tick;
108 DesertPillars(int, char **);
114 void key_press(unsigned);