2 #include <msp/core/application.h>
3 #include <msp/core/getopt.h>
4 #include <msp/datafile/directorysource.h>
5 #include <msp/datafile/packsource.h>
6 #include <msp/fs/stat.h>
7 #include <msp/fs/utils.h>
8 #include <msp/graphics/simplewindow.h>
9 #include <msp/gl/animatedobject.h>
10 #include <msp/gl/animation.h>
11 #include <msp/gl/animationplayer.h>
12 #include <msp/gl/blend.h>
13 #include <msp/gl/camera.h>
14 #include <msp/gl/framebuffer.h>
15 #include <msp/gl/light.h>
16 #include <msp/gl/lighting.h>
17 #include <msp/gl/mesh.h>
18 #include <msp/gl/object.h>
19 #include <msp/gl/sequence.h>
20 #include <msp/gl/sequencebuilder.h>
21 #include <msp/gl/sequencetemplate.h>
22 #include <msp/gl/renderer.h>
23 #include <msp/gl/resources.h>
24 #include <msp/gl/simplescene.h>
25 #include <msp/gl/technique.h>
26 #include <msp/gl/tests.h>
27 #include <msp/gl/windowview.h>
28 #include <msp/input/mouse.h>
29 #include <msp/io/print.h>
30 #include <msp/time/timestamp.h>
31 #include <msp/time/utils.h>
36 class Viewer: public RegisteredApplication<Viewer>
41 list<string> resource_locations;
42 string animation_name;
43 string renderable_name;
44 Graphics::WindowOptions wnd_opts;
45 Graphics::GLOptions gl_opts;
47 Options(int, char **);
50 class Resources: public GL::Resources
53 DataFile::DirectorySource dir_source;
54 DataFile::PackSource pack_source;
59 void add_directory(const string &);
60 void add_pack(const string &);
64 Graphics::Display display;
65 Graphics::Window window;
66 Graphics::GLContext gl_ctx;
70 GL::Sequence *sequence;
71 GL::Renderable *renderable;
72 GL::AnimatedObject *anim_object;
73 GL::AnimationPlayer *anim_player;
75 GL::Lighting lighting;
83 Time::TimeStamp last_tick;
89 T *load(const string &);
97 void button_press(unsigned);
98 void button_release(unsigned);
99 void axis_motion(unsigned, float, float);
101 void update_camera();
106 Viewer::Options::Options(int argc, char **argv)
109 getopt.add_option('r', "resources", resource_locations, GetOpt::REQUIRED_ARG);
110 getopt.add_option('a', "animation", animation_name, GetOpt::REQUIRED_ARG);
111 getopt.add_argument("renderable", renderable_name);
114 wnd_opts.width = 1024;
115 wnd_opts.height = 768;
116 gl_opts.gl_version_major = Graphics::GLOptions::LATEST_VERSION;
117 gl_opts.core_profile = true;
120 Viewer::Viewer(int argc, char **argv):
122 window(display, opts.wnd_opts),
123 gl_ctx(window, opts.gl_opts),
125 view(window, gl_ctx),
137 for(list<string>::const_iterator i=opts.resource_locations.begin(); i!=opts.resource_locations.end(); ++i)
140 resources.add_directory(*i);
143 string ext = FS::extpart(*i);
145 resources.add_pack(*i);
147 DataFile::load(resources, *i);
151 GL::Object *object = 0;
153 string ext = FS::extpart(opts.renderable_name);
157 if(FS::exists(opts.renderable_name))
160 DataFile::load(*mesh, opts.renderable_name);
161 resources.add("__"+opts.renderable_name, mesh);
164 mesh = &resources.get<GL::Mesh>(opts.renderable_name);
166 object = new GL::Object;
167 GL::Technique *tech = new GL::Technique;
169 object->set_mesh(mesh);
170 object->set_technique(tech);
173 resources.add("__.tech", tech);
174 resources.add("__.object", object);
176 else if(ext==".object")
177 renderable = load<GL::Object>(opts.renderable_name);
178 else if(ext==".scene")
180 if(FS::exists(opts.renderable_name))
182 GL::Scene::GenericLoader ldr(resources);
183 IO::BufferedFile in(opts.renderable_name);
184 DataFile::Parser parser(in, opts.renderable_name);
186 renderable = ldr.get_scene();
189 renderable = &resources.get<GL::Scene>(opts.renderable_name);
193 GL::SequenceTemplate *tmpl = load<GL::SequenceTemplate>(opts.renderable_name);
194 GL::SequenceBuilder bld(*tmpl);
195 sequence = bld.build(view);
198 throw usage_error("Unknown renderable type");
200 if(!opts.animation_name.empty())
203 throw usage_error("Must have an object to animate");
205 GL::Animation *anim = load<GL::Animation>(opts.animation_name);
206 anim_player = new GL::AnimationPlayer;
207 anim_object = new GL::AnimatedObject(*object);
208 anim_player->play(*anim_object, *anim);
209 renderable = anim_object;
212 window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &Viewer::exit), 0));
213 mouse.signal_button_press.connect(sigc::bind_return(sigc::mem_fun(this, &Viewer::button_press), false));
214 mouse.signal_button_release.connect(sigc::bind_return(sigc::mem_fun(this, &Viewer::button_release), false));
215 mouse.signal_axis_motion.connect(sigc::bind_return(sigc::mem_fun(this, &Viewer::axis_motion), false));
217 light.set_position(GL::Vector4(0, 0, 1, 0));
218 lighting.attach(light);
220 camera.set_up_direction(GL::Vector3(0, 0, 1));
225 sequence = new GL::Sequence(view);
226 GL::Sequence::Step &step = sequence->add_step(0, *renderable);
227 step.set_lighting(&lighting);
228 step.set_depth_test(&GL::DepthTest::lequal());
229 step.set_blend(&GL::Blend::alpha());
232 view.set_content(sequence);
233 view.set_camera(&camera);
237 T *Viewer::load(const string &name)
242 DataFile::load(*thing, name, resources);
243 resources.add("__"+name, thing);
247 return &resources.get<T>(name);
260 return Application::main();
267 Time::TimeStamp t = Time::now();
273 anim_player->tick(dt);
280 void Viewer::button_press(unsigned btn)
289 axis_motion(0, 0, 0);
303 void Viewer::button_release(unsigned btn)
309 void Viewer::axis_motion(unsigned axis, float, float delta)
313 float dx = (axis==0 ? delta : 0);
314 float dy = (axis==1 ? delta : 0);
332 float x = mouse.get_axis_value(0);
333 float y = mouse.get_axis_value(1);
335 light_yaw = yaw+x*M_PI;
336 light_pitch = pitch-y*M_PI;
342 void Viewer::update_camera()
346 float cp = cos(pitch);
347 float sp = sin(pitch);
348 camera.set_position(GL::Vector3(-cy*cp*distance, -sy*cp*distance, -sp*distance));
349 camera.set_depth_clip(distance*0.02, distance*50);
350 camera.look_at(GL::Vector3(0, 0, 0));
353 void Viewer::update_light()
355 float cy = cos(light_yaw);
356 float sy = sin(light_yaw);
357 float cp = cos(light_pitch);
358 float sp = sin(light_pitch);
359 light.set_position(GL::Vector4(-cy*cp, -sy*cp, -sp, 0));
363 Viewer::Resources::Resources()
365 add_source(dir_source);
366 add_source(pack_source);
369 void Viewer::Resources::add_directory(const string &dir)
371 dir_source.add_directory(dir);
374 void Viewer::Resources::add_pack(const string &pack)
376 pack_source.add_pack_file(pack);