Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
scene_graph_library.h
Go to the documentation of this file.
1/*
2 * OGF/Graphite: Geometry and Graphics Programming Library + Utilities
3 * Copyright (C) 2000 Bruno Levy
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * If you modify this software, you should include a notice giving the
20 * name of the person performing the modification, the date of modification,
21 * and the reason for such modification.
22 *
23 * Contact: Bruno Levy
24 *
25 * levy@loria.fr
26 *
27 * ISA Project
28 * LORIA, INRIA Lorraine,
29 * Campus Scientifique, BP 239
30 * 54506 VANDOEUVRE LES NANCY CEDEX
31 * FRANCE
32 *
33 * Note that the GNU General Public License does not permit incorporating
34 * the Software into proprietary programs.
35 */
36
37
38#ifndef H_OGF_SCENE_GRAPH_TYPES_SCENE_GRAPH_LIBRARY_H
39#define H_OGF_SCENE_GRAPH_TYPES_SCENE_GRAPH_LIBRARY_H
40
43
45
46#include <map>
47
53namespace OGF {
54
55 class SceneGraph;
56 class SceneGraphShaderManager;
57 class SceneGraphToolsManager;
58
68 class SCENE_GRAPH_API SceneGraphLibrary : public Environment {
69 public:
70
75
80
86
92 static void initialize();
93
99 static void terminate();
100
101
107 return scene_graph_;
108 }
109
114 const SceneGraph* scene_graph() const {
115 return scene_graph_;
116 }
117
123 return scene_graph_tools_manager_;
124 }
125
135 const std::string& grob_class_name, bool abstract=false
136 );
137
148 const std::string& grob_class_name, const std::string& extension
149 );
150
161 const std::string& grob_class_name, const std::string& extension
162 );
163
176 const std::string& grob_class_name,
177 const std::string& shader_class_name,
178 const std::string& shader_user_name=""
179 );
180
191 const std::string& grob_class_name,
192 const std::string& tool_class_name
193 );
194
195
206 const std::string& grob_class_name,
207 const std::string& interface_class_name
208 );
209
220 const std::string& grob_class_name,
221 const std::string& commands_class_name
222 );
223
234 const std::string& full_screen_effect_class_name,
235 const std::string& user_name=""
236 );
237
245 std::string file_extension_to_grob(const std::string& extension) const;
246
262 const std::string& name, std::string& value
263 ) const override;
264
269 const std::string& name, const std::string& value
270 ) override;
271
281 const std::string& grob_class_name
282 ) const;
283
293 const std::string& grob_class_name
294 ) const;
295
305 const std::string& shader_user_to_classname(
306 const std::string& grob_class_name,
307 const std::string& shader_user_name
308 ) const;
309
319 const std::string& shader_classname_to_user(
320 const std::string& grob_class_name,
321 const std::string& shader_class_name
322 ) const;
323
333 const std::string& full_screen_effect_user_name
334 ) const;
335
344 const std::string& full_screen_effect_classname
345 ) const;
346
347 protected:
348 friend class SceneGraph;
349 friend class SceneGraphCommandsManager;
350 friend class SceneGraphShaderManager;
351 friend class SceneGraphToolsManager;
352
353
359
369 SceneGraph* scene_graph, bool transfer_ownership = false
370 );
371
379 SceneGraphShaderManager* scene_graph_shader_manager
380 ) {
381 ogf_assert(scene_graph_shader_manager_ == nullptr);
382 scene_graph_shader_manager_ = scene_graph_shader_manager;
383 }
384
392 SceneGraphToolsManager* scene_graph_tools_manager
393 ) {
394 ogf_assert(scene_graph_tools_manager_ == nullptr);
395 scene_graph_tools_manager_ = scene_graph_tools_manager;
396 }
397
398 private:
399 struct GrobInfo {
400 GrobInfo(bool abstract_in=false) : abstract(abstract_in) {
401 }
402 std::vector<std::string> read_file_extensions;
403 std::vector<std::string> write_file_extensions;
404 std::vector<std::string> shaders;
405 std::vector<std::string> shaders_user_names;
406 std::vector<std::string> tools;
407 std::vector<std::string> commands;
408 std::vector<std::string> interfaces;
409 bool abstract;
410 std::string read_file_extensions_string() const;
411 std::string write_file_extensions_string() const;
412 std::string shaders_user_names_string() const;
413 std::string tools_string() const;
414 std::string commands_string() const;
415 std::string interfaces_string() const;
416 bool has_read_extension(const std::string& ext) const;
417 };
418 std::map<std::string, GrobInfo> grob_infos_;
419 std::vector<std::string> full_screen_effects_;
420 std::vector<std::string> full_screen_effects_user_names_;
421 SceneGraph* scene_graph_;
422 SceneGraphShaderManager* scene_graph_shader_manager_;
423 SceneGraphToolsManager* scene_graph_tools_manager_;
424 bool owns_scene_graph_;
425 static SceneGraphLibrary* instance_;
426 };
427
428//______________________________________________________________________________
429
430
435 template <class T> class ogf_register_grob_type {
436 public:
449 };
450
451
457 template <class T> class ogf_register_abstract_grob_type {
458 public:
471 };
472
477 template <class T> class ogf_register_grob_read_file_extension {
478 public:
486 ogf_register_grob_read_file_extension(const std::string& extension) {
488 ogf_meta<T>::type()->name(), extension
489 );
490 }
491 };
492
497 template <class T> class ogf_register_grob_write_file_extension {
498 public:
506 ogf_register_grob_write_file_extension(const std::string& extension) {
508 ogf_meta<T>::type()->name(), extension
509 );
510 }
511 };
512
518 template <class T1, class T2> class ogf_register_grob_shader {
519 public:
520
530 ogf_register_grob_shader(const std::string& shader_user_name="") {
532 ogf_meta<T1>::type()->name(),
533 ogf_meta<T2>::type()->name(),
534 shader_user_name
535 );
536 }
537 };
538
544 template <class T1, class T2> class ogf_register_grob_interface {
545 public:
546
559 };
560
566 template <class T1, class T2> class ogf_register_grob_commands {
567 public:
568
581 };
582
588 template <class T1, class T2> class ogf_register_grob_tool {
589 public:
590
603 };
604
609 template <class T> class ogf_register_full_screen_effect {
610 public:
611
621 ogf_register_full_screen_effect(const std::string& user_name="") {
623 ogf_meta<T>::type()->name(), user_name
624 );
625 }
626 };
627
628}
629
630#endif
Application environment.
Provides functions to dynamically declare new Grob classes, commands, shaders and tools.
SceneGraph * scene_graph()
Gets the SceneGraph.
void scene_graph_values_changed_notify_environment()
Notifies all listeners of scene graph environment variables.
static void initialize()
Initializes the SceneGraphLibrary instance.
std::string default_grob_read_extension(const std::string &grob_class_name) const
Gets the default file extension associated with a Grob class for reading.
void register_grob_write_file_extension(const std::string &grob_class_name, const std::string &extension)
Registers a new file extension associated with a Grob type for writing.
void register_grob_shader(const std::string &grob_class_name, const std::string &shader_class_name, const std::string &shader_user_name="")
Registers a new Shader class associated with a Grob class.
std::string file_extension_to_grob(const std::string &extension) const
Finds the object class names associated with a file extension for reading.
bool get_local_value(const std::string &name, std::string &value) const override
Retrieves a variable value locally.
void register_grob_interface(const std::string &grob_class_name, const std::string &interface_class_name)
Registers a new Interface class associated with a Grob class.
void register_grob_type(const std::string &grob_class_name, bool abstract=false)
Registers a new Grob type.
void register_grob_read_file_extension(const std::string &grob_class_name, const std::string &extension)
Registers a new file extension associated with a Grob type for reading.
std::string full_screen_effect_user_to_classname(const std::string &full_screen_effect_user_name) const
Converts a full screen effect user name to the associated internal full screen effect class name.
static void terminate()
Terminates the SceneGraphLibrary instance.
const std::string & full_screen_effect_classname_to_user(const std::string &full_screen_effect_classname) const
Converts a full screen effect class name to the associated user name.
void set_scene_graph_tools_manager(SceneGraphToolsManager *scene_graph_tools_manager)
Sets the SceneGraphToolsManager.
void set_scene_graph(SceneGraph *scene_graph, bool transfer_ownership=false)
Sets the SceneGraph.
const std::string & shader_classname_to_user(const std::string &grob_class_name, const std::string &shader_class_name) const
Converts a shader class name to the associated user shader name.
std::string default_grob_write_extension(const std::string &grob_class_name) const
Gets the default file extension associated with a Grob class for writing.
SceneGraphLibrary()
SceneGraphLibrary constructor.
void register_grob_tool(const std::string &grob_class_name, const std::string &tool_class_name)
Registers a new Tool class associated with a Grob class.
~SceneGraphLibrary() override
SceneGraphLibrary destructor.
SceneGraphToolsManager * scene_graph_tools_manager()
Gets the SceneGraphToolsManager.
void set_scene_graph_shader_manager(SceneGraphShaderManager *scene_graph_shader_manager)
Sets the SceneGraphShaderManager.
bool set_local_value(const std::string &name, const std::string &value) override
Sets a variable value locally.
void register_grob_commands(const std::string &grob_class_name, const std::string &commands_class_name)
Registers a new Commands class associated with a Grob class.
void register_full_screen_effect(const std::string &full_screen_effect_class_name, const std::string &user_name="")
Registers a new full screen effect.
const SceneGraph * scene_graph() const
Gets the SceneGraph.
const std::string & shader_user_to_classname(const std::string &grob_class_name, const std::string &shader_user_name) const
Converts a shader user name to the associated internal class name.
static SceneGraphLibrary * instance()
Gets the instance.
Manages the shaders and full screen effects for the entire SceneGraph.
Manages the tools for the entire SceneGraph.
Represents the list of objects loaded in Graphite.
Definition scene_graph.h:62
Provides easy access to meta information from C++ types.
Definition meta.h:257
Helper class to register a new abstract Grob class.
ogf_register_abstract_grob_type()
Registers a new Grob class.
Helper class to register a new FullScreenEffect.
ogf_register_full_screen_effect(const std::string &user_name="")
Registers a new FullScreenEffect.
Helper class to register a new Commands associated with a Grob.
ogf_register_grob_commands()
Registers a new Commands associated with a Grob.
Helper class to register a new Commands associated with a Grob.
ogf_register_grob_interface()
Registers a new Interface associated with a Grob.
Helper class to register a new file extension for reading.
ogf_register_grob_read_file_extension(const std::string &extension)
Registers a new file extension for reading.
Helper class to register a new Shader associated with a Grob.
ogf_register_grob_shader(const std::string &shader_user_name="")
Registers a new Shader associated with a Grob.
Helper class to register a new Tool associated with a Grob.
ogf_register_grob_tool()
Registers a new Tool associated with a Grob.
Helper class to register a new Grob class.
ogf_register_grob_type()
Registers a new Grob class.
Helper class to register a new file extension for writing.
ogf_register_grob_write_file_extension(const std::string &extension)
Registers a new file extension for writing.
Provides a mechanism to store global variables, retrieve them by their names and attach observers to ...
The meta-information used by the reflection API.
Global Graphite namespace.
Definition common.h:76
Definitions common to all include files in the scene_graph library.