Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
grob.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_GROB_H
39#define H_OGF_SCENE_GRAPH_TYPES_GROB_H
40
43#include <OGF/gom/types/node.h>
45
46#include <map>
47
53namespace OGF {
54
55//_________________________________________________________
56
57 class CompositeGrob;
58 class SceneGraph;
59 class Commands;
60 class InputGraphiteFile;
61 class OutputGraphiteFile;
62 class Interpreter;
63
67 gom_attribute(abstract, "true")
68 gom_class SCENE_GRAPH_API Grob : public Node {
69 public:
70
77
78
86
90 ~Grob() override;
91
92
100 const std::string& name() const {
101 return name_;
102 }
103
108 virtual Box3d bbox() const = 0;
109
115 virtual Box3d world_bbox() const;
116
124 virtual bool is_serializable() const;
125
133 virtual bool serialize_read(InputGraphiteFile& geofile);
134
144 virtual bool serialize_write(OutputGraphiteFile& geofile);
145
154 void set_shader(const std::string& value);
155
156
166 std::string& classname, ArgList& properties, bool pointers=true
167 );
168
176 const std::string& classname, const ArgList& properties
177 );
178
179
188 return grob_attributes_;
189 }
190
198 const ArgList& attributes() const {
199 return grob_attributes_;
200 }
201
209 bool dirty() const {
210 return dirty_;
211 }
212
219 void up_to_date() {
220 dirty_ = false;
221 }
222
231 bool graphics_are_locked() const {
232 return (nb_graphics_locks_ != 0);
233 }
234
250 ++nb_graphics_locks_;
251 dirty_ = true;
252 }
253
269 --nb_graphics_locks_;
270 }
271
279 static Grob* find(SceneGraph* sg, const std::string& name);
280
281
287
288 gom_slots:
295 virtual void update();
296
303 virtual void redraw();
304
310 return scene_graph_;
311 }
312
319 virtual bool load(const FileName& value);
320
327 virtual bool save(const NewFileName& value);
328
336 virtual bool append(const FileName& value);
337
341 virtual void clear();
342
349 virtual void rename(const std::string& value);
350
356 virtual Grob* duplicate(SceneGraph* sg);
357
371 virtual Object* query_interface(const std::string& name);
372
373
379 return attributes().nb_args();
380 }
381
388 const std::string& ith_grob_attribute_name(index_t i) const {
389 return attributes().ith_arg_name(i);
390 }
391
398 std::string ith_grob_attribute_value(index_t i) const {
399 return attributes().ith_arg_value(i).as_string();
400 }
401
410 const std::string& name, const std::string& value
411 ) {
412 attributes().set_arg(name, value);
413 }
414
415 gom_signals:
416
422 virtual void value_changed(Grob* value);
423
424 gom_properties:
425
430 const std::string& get_name() const {
431 return name_;
432 }
433
440 void set_filename(const std::string& value) {
441 filename_ = value;
442 }
443
450 const std::string& get_filename() const {
451 return filename_;
452 }
453
461 bool get_visible() const;
462
469 void set_visible(bool value);
470
476
482 // Stored as Object_var to avoid dependency to Shader
483 // return (ShaderManager*)(shader_manager_.get());
484 return shader_manager_;
485 }
486
494 void set_obj_to_world_transform(const mat4& value) {
495 obj_to_world_ = value;
496 }
497
506 return obj_to_world_;
507 }
508
509 protected:
517 void initialize_name(const std::string& name);
518
524 void set_shader_manager(Object* s/* ShaderManager* s */) {
525 // shader_manager_ = (Object *)s;
526 shader_manager_ = s;
527 }
528
529 protected:
530 std::string name_;
531 std::string filename_;
532 bool visible_;
533 SceneGraph* scene_graph_;
534 mat4 obj_to_world_;
535 Object_var shader_manager_;
536 ArgList grob_attributes_;
537 bool dirty_;
538 index_t nb_graphics_locks_;
539
540 friend class SceneGraph;
541 friend class SceneGraphShaderManager;
542 friend class ShaderManager;
543 };
544
549
550//_________________________________________________________
551
552}
553#endif
Represents a list of name-value pairs.
Definition arg_list.h:65
A 3d axis aligned box.
Definition geometry.h:235
A Composite Graphite Object.
Base class for all 3D Graphite objects.
Definition grob.h:68
static Grob * find(SceneGraph *sg, const std::string &name)
Finds a Grob by name.
virtual void rename(const std::string &value)
Renames this Grob.
std::string ith_grob_attribute_value(index_t i) const
gets the value of a grob attribute
Definition grob.h:398
virtual bool serialize_read(InputGraphiteFile &geofile)
Reads this Grob from a GeoFile.
virtual bool append(const FileName &value)
Appends the content of the specified file to this Grob.
virtual bool is_serializable() const
Tests whether this Grob can be serialized in GeoFile.
void unlock_graphics()
Unlocks graphics for this VoxelGrob.
Definition grob.h:268
void lock_graphics()
Locks graphics for this VoxelGrob.
Definition grob.h:249
bool graphics_are_locked() const
Tests whether this VoxelGrob is locked for graphics display.
Definition grob.h:231
Object * get_shader() const
Gets the shader associated with this Grob.
virtual bool serialize_write(OutputGraphiteFile &geofile)
Writes this Grob into a stream.
void set_shader(const std::string &value)
Changes the current shader of this Grob.
virtual Interpreter * interpreter()
Gets a pointer to the main Interpreter.
void set_shader_and_shader_properties(const std::string &classname, const ArgList &properties)
Sets the shader and its properties.
index_t nb_grob_attributes() const
gets the number of grob attributes
Definition grob.h:378
virtual bool load(const FileName &value)
Replaces this Grob with the contents of a file.
void set_shader_manager(Object *s)
Sets the ShaderManager associated with this Grob.
Definition grob.h:524
void initialize_name(const std::string &name)
Initializes the name of this Grob.
virtual Box3d bbox() const =0
Gets the bounding box.
virtual bool save(const NewFileName &value)
Saves this Grob to a file.
ArgList & attributes()
Gets the attributes associated with this Grob.
Definition grob.h:187
void up_to_date()
Tests whether this object is up to date.
Definition grob.h:219
virtual Box3d world_bbox() const
Gets the bounding box in world coordinates.
void set_visible(bool value)
Sets the visibility flag of this Grob.
SceneGraph * scene_graph() const
Gets the SceneGraph.
Definition grob.h:309
void get_shader_and_shader_properties(std::string &classname, ArgList &properties, bool pointers=true)
Gets the classname of the shader and its properties.
Grob()
Grob constructor.
void set_obj_to_world_transform(const mat4 &value)
Sets the object to world transform.
Definition grob.h:494
virtual void redraw()
Triggers update events and redraws the scene.
bool get_visible() const
Tests whether this Grob is visible.
const std::string & get_filename() const
Gets the filename of this Grob.
Definition grob.h:450
void set_grob_attribute(const std::string &name, const std::string &value)
sets the value of a grob attribute
Definition grob.h:409
const std::string & name() const
Gets the name of this Grob.
Definition grob.h:100
const mat4 & get_obj_to_world_transform() const
Gets the object to world transform.
Definition grob.h:505
bool dirty() const
Gets the dirty flag.
Definition grob.h:209
~Grob() override
Grob destructor.
virtual Grob * duplicate(SceneGraph *sg)
Duplicates this Grob.
Grob(CompositeGrob *parent)
Grob constructor.
void set_filename(const std::string &value)
Sets the name of this Grob.
Definition grob.h:440
virtual void clear()
Clears this Grob.
Object * get_shader_manager() const
Gets the ShaderManager associated with this Grob.
Definition grob.h:481
virtual Object * query_interface(const std::string &name)
Creates an Interface object connected to this Grob.
const std::string & ith_grob_attribute_name(index_t i) const
gets the name of a grob attribute
Definition grob.h:388
const ArgList & attributes() const
Gets the attributes associated with this Grob.
Definition grob.h:198
An extension of InputGeoFile for storing a complete Graphite scenegraph in a structured binary file.
Definition geofile.h:67
Abstract base class for the GOM interpreter.
A template class for strings that need to have a specific type in the GOM system.
Definition properties.h:218
A composite object in the GOM system.
Definition node.h:58
Base class for all objects in the GOM system.
Definition object.h:65
An extension of InputGeoFile for storing a complete Graphite scenegraph in a structured binary file.
Definition geofile.h:129
Manages the shaders and full screen effects for the entire SceneGraph.
Represents the list of objects loaded in Graphite.
Definition scene_graph.h:62
Manages the Shader objects associated with a Grob.
geo_index_t index_t
The type for storing and manipulating indices.
Definition numeric.h:329
Global Graphite namespace.
Definition common.h:76
SmartPointer< Grob > Grob_var
An automatic reference-counted pointer to a Grob.
Definition grob.h:548
The base class for all composite objects in the GOM system.
Simple geometric objects and manipulations.
Definitions common to all include files in the scene_graph library.