Home | Download | Screen shots | Discussion | Documentation |
---|
#include <openvrml/gl/viewer.h>
A window-system specific subclass needs to redefine the pure virtual methods.
Public Types | |
enum | { max_lights = 8 } |
enum | light_type { light_unused, light_directional, light_positional } |
Light type. More... | |
enum | event_type { event_key_down, event_mouse_move, event_mouse_click, event_mouse_drag, event_mouse_release } |
Event type. More... | |
enum | { key_home, key_left, key_up, key_right, key_down, key_page_up, key_page_down } |
Public Member Functions | |
viewer () | |
Construct a viewer for the specified browser. | |
virtual | ~viewer () throw () |
Destroy. | |
void | update (double time=0.0) |
Update the scene. | |
virtual void | redraw () |
Redraw the scene. | |
void | resize (size_t width, size_t height) |
Resize the viewport. | |
void | input (event_info *e) |
Handle an event generated from user input. | |
Protected Types | |
enum | cursor_style { cursor_inherit, cursor_info, cursor_cycle, cursor_up_down, cursor_crosshair } |
Cursor style. More... | |
enum | { maxsensitive = 1000 } |
Protected Member Functions | |
void | initialize () |
Initialize. | |
void | begin_geometry () |
Reset per-geometry attributes. | |
void | end_geometry () |
Reset attributes changed during geometry insertion. | |
void | step (float, float, float) |
Translate the user view. | |
void | zoom (float) |
Zoom. | |
void | rotate (const openvrml::rotation &rot) throw () |
Rotate the user view. | |
void | handleKey (int) |
Handle keypresses. | |
void | handleButton (event_info *e) |
Handle mouse button up/down. | |
void | handleMouseDrag (int, int) |
Handle mouse dragging. | |
bool | checkSensitive (int x, int y, event_type event) |
Protected Attributes | |
modelview_matrix_stack | modelview_matrix_stack_ |
Modelview matrix stack. | |
bool | gl_initialized |
Indicate whether OpenGL has been initialized for rendering. | |
bool | blend |
Indicate whether alpha blending is enabled. | |
bool | lit |
Indicate whether lighting is enabled. | |
bool | texture |
Indicate whether texture mapping is enabled. | |
bool | wireframe |
Indicate whether wireframe mode is enabled. | |
size_t | win_width |
Window width. | |
size_t | win_height |
Window height. | |
color | background |
Background color. | |
size_t | objects |
Number of objects. | |
size_t | nested_objects |
Number of nested objects. | |
GLUtesselator * | tesselator |
GLU tesselation object. | |
size_t | sensitive |
Count of sensitive nodes. | |
size_t | active_sensitive |
Count of active sensitive nodes. | |
size_t | over_sensitive |
Count of sensitive nodes the mouse is over. | |
node * | sensitive_object [maxsensitive] |
Sensitive nodes. | |
bool | select_mode |
Indicate whether the renderer is in select mode. | |
double | select_z |
Window z-coordinate of last selection. | |
light_info | light_info_ [max_lights] |
light_info for the lights in the scene. | |
int | beginx |
Mouse drag start x-coordinate. | |
int | beginy |
Mouse drag start y-coordinate. | |
bool | rotating |
Whether the viewer is in the process of rotating. | |
bool | scaling |
Whether the viewer is in the process of scaling. | |
bool | translating |
Whether the viewer is in the process of translating. | |
bool | draw_bounding_spheres |
Whether to draw bounding spheres. | |
double | render_time |
Updated at the end of redraw with the time redraw took to execute. | |
double | render_time1 |
Rendering time for the previous cycle. | |
Private Member Functions | |
virtual rendering_mode | do_mode () |
Rendering mode. | |
virtual double | do_frame_rate () |
Frame rate. | |
virtual void | do_reset_user_navigation () |
Reset the user view to the position and orientation of the currently bound Viewpoint node. | |
virtual object_t | do_begin_object (const char *id, bool retain) |
Begin a display list. | |
virtual void | do_end_object () |
End of group scope. | |
virtual object_t | do_insert_background (const std::vector< float > &groundAngle, const std::vector< color > &groundColor, const std::vector< float > &skyAngle, const std::vector< color > &skyColor, const image &front, const image &back, const image &left, const image &right, const image &top, const image &bottom) |
Insert a background into a display list. | |
virtual object_t | do_insert_box (const vec3f &size) |
Insert a box into a display list. | |
virtual object_t | do_insert_cone (float height, float radius, bool bottom, bool side) |
Insert a cone into a display list. | |
virtual object_t | do_insert_cylinder (float height, float radius, bool bottom, bool side, bool top) |
Insert a cylinder into a display list. | |
virtual object_t | do_insert_elevation_grid (unsigned int mask, const std::vector< float > &height, int32 xDimension, int32 zDimension, float xSpacing, float zSpacing, const std::vector< color > &color, const std::vector< vec3f > &normal, const std::vector< vec2f > &texCoord) |
Insert an elevation grid into a display list. | |
virtual object_t | do_insert_extrusion (unsigned int mask, const std::vector< vec3f > &spine, const std::vector< vec2f > &crossSection, const std::vector< openvrml::rotation > &orientation, const std::vector< vec2f > &scale) |
Insert an extrusion into a display list. | |
virtual object_t | do_insert_line_set (const std::vector< vec3f > &coord, const std::vector< int32 > &coordIndex, bool colorPerVertex, const std::vector< color > &color, const std::vector< int32 > &colorIndex) |
Insert a line set into a display list. | |
virtual object_t | do_insert_point_set (const std::vector< vec3f > &coord, const std::vector< color > &color) |
Insert a point set into a display list. | |
virtual object_t | do_insert_shell (unsigned int mask, const std::vector< vec3f > &coord, const std::vector< int32 > &coordIndex, const std::vector< color > &color, const std::vector< int32 > &colorIndex, const std::vector< vec3f > &normal, const std::vector< int32 > &normalIndex, const std::vector< vec2f > &texCoord, const std::vector< int32 > &texCoordIndex) |
Insert a shell into a display list. | |
virtual object_t | do_insert_sphere (float radius) |
Insert a sphere into a display list. | |
virtual object_t | do_insert_dir_light (float ambientIntensity, float intensity, const color &color, const vec3f &direction) |
Insert a directional light into a display list. | |
virtual object_t | do_insert_point_light (float ambientIntensity, const vec3f &attenuation, const color &color, float intensity, const vec3f &location, float radius) |
Insert a point light into a display list. | |
virtual object_t | do_insert_spot_light (float ambientIntensity, const vec3f &attenuation, float beamWidth, const color &color, float cutOffAngle, const vec3f &direction, float intensity, const vec3f &location, float radius) |
Insert a point light into a display list. | |
virtual object_t | do_insert_reference (object_t existing_object) |
Insert a reference to an existing object into a display list. | |
virtual void | do_remove_object (object_t ref) |
Remove an object from the display list. | |
virtual void | do_enable_lighting (bool) |
Enable/disable lighting. | |
virtual void | do_set_color (const color &rgb, float a=1.0) |
Set the color. | |
virtual void | do_set_fog (const color &color, float visibilityRange, const char *type) |
Set the fog. | |
virtual void | do_set_material (float ambientIntensity, const color &diffuseColor, const color &emissiveColor, float shininess, const color &specularColor, float transparency) |
Set the material. | |
virtual void | do_set_material_mode (size_t tex_components, bool geometry_color) |
Set the material mode. | |
virtual void | do_set_sensitive (node *object) |
Indicate that a node should be sensitive to the pointing device. | |
virtual texture_object_t | do_insert_texture (const image &img, bool repeat_s, bool repeat_t, bool retainHint=false) |
Create a texture object. | |
virtual void | do_insert_texture_reference (texture_object_t ref, size_t components) |
Insert a texture into the display list from an existing handle. | |
virtual void | do_remove_texture_object (texture_object_t) |
Remove a texture from the display list. | |
virtual void | do_set_texture_transform (const vec2f ¢er, float rotation, const vec2f &scale, const vec2f &translation) |
Set the texture transform. | |
virtual void | do_set_frustum (float field_of_view, float avatar_size, float visibility_limit) |
virtual void | do_set_viewpoint (const vec3f &position, const openvrml::rotation &orientation, float avatarSize, float visibilityLimit) |
Set the viewpoint. | |
virtual void | do_transform (const mat4f &mat) |
Multiply the current modelview matrix by mat . | |
virtual void | do_transform_points (size_t nPoints, vec3f *point) const |
Transform points by the current modelview matrix. | |
virtual void | do_draw_bounding_sphere (const bounding_sphere &bs, bounding_volume::intersection intersection) |
Draw a bounding sphere. | |
virtual void | post_redraw ()=0 |
Called to indicate to the windowing system that a redraw is necessary. | |
virtual void | set_cursor (cursor_style c)=0 |
Called to set the cursor style. | |
virtual void | swap_buffers ()=0 |
Called to indicate to the windowing system that the front and back buffers should be swapped. | |
virtual void | set_timer (double interval)=0 |
Set a delay. | |
Classes | |
struct | event_info |
Input event. More... | |
struct | light_info |
Light information. More... | |
class | modelview_matrix_stack |
Encapsulates an extended modelview matrix stack. More... |
anonymous enum |
max_lights | Maximum number of lights in a scene. |
enum openvrml::gl::viewer::cursor_style [protected] |
anonymous enum [protected] |
maxsensitive | Maximum number of sensitive nodes. |
openvrml::gl::viewer::viewer | ( | ) |
openvrml::gl::viewer::~viewer | ( | ) | throw () [virtual] |
void openvrml::gl::viewer::initialize | ( | ) | [protected] |
Initialize.
void openvrml::gl::viewer::begin_geometry | ( | ) | [protected] |
Reset per-geometry attributes.
Called after the appearance/material has been set.
void openvrml::gl::viewer::end_geometry | ( | ) | [protected] |
Reset attributes changed during geometry insertion.
void openvrml::gl::viewer::step | ( | float | x, | |
float | y, | |||
float | z | |||
) | [protected] |
Translate the user view.
[in] | x | translation vector x component. |
[in] | y | translation vector y component. |
[in] | z | translation vector z component. |
void openvrml::gl::viewer::zoom | ( | float | z | ) | [protected] |
Zoom.
[in] | z | amount to zoom. |
void openvrml::gl::viewer::rotate | ( | const openvrml::rotation & | rot | ) | throw () [protected] |
void openvrml::gl::viewer::handleKey | ( | int | key | ) | [protected] |
Handle keypresses.
[in] | key | key identifier. |
void openvrml::gl::viewer::handleButton | ( | event_info * | e | ) | [protected] |
Handle mouse button up/down.
[in] | e | event data. |
void openvrml::gl::viewer::handleMouseDrag | ( | int | x, | |
int | y | |||
) | [protected] |
Handle mouse dragging.
[in] | x | pointer x-coordinate. |
[in] | y | pointer y-coordinate. |
bool openvrml::gl::viewer::checkSensitive | ( | int | x, | |
int | y, | |||
event_type | event | |||
) | [protected] |
Check for pickable objects.
void openvrml::gl::viewer::update | ( | double | time = 0.0 |
) |
Update the scene.
update is called from a timer callback and from checkSensitive.
[in] | time | current time. |
void openvrml::gl::viewer::redraw | ( | ) | [virtual] |
Redraw the scene.
void openvrml::gl::viewer::resize | ( | size_t | width, | |
size_t | height | |||
) |
Resize the viewport.
[in] | width | new width. |
[in] | height | new height. |
void openvrml::gl::viewer::input | ( | event_info * | e | ) |
Handle an event generated from user input.
[in] | e | event data. |
openvrml::gl::viewer::rendering_mode openvrml::gl::viewer::do_mode | ( | ) | [private, virtual] |
double openvrml::gl::viewer::do_frame_rate | ( | ) | [private, virtual] |
void openvrml::gl::viewer::do_reset_user_navigation | ( | ) | [private, virtual] |
Reset the user view to the position and orientation of the currently bound Viewpoint node.
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_begin_object | ( | const char * | id, | |
bool | retain | |||
) | [private, virtual] |
Begin a display list.
begin_object
and end_object
should correspond to grouping_nodes
. Group-level scoping for directional lights, anchors, sensors are handled here. Display lists can optionally be created (but the retain flag is just a hint, not guaranteed). Retained objects can be referred to later to avoid duplicating geometry. OpenGL doesn't allow nested objects. The top-down approach of putting entire groups in display lists is faster for static scenes but uses more memory and means that if anything is changed, the whole object must be tossed.
The bottom-up model wraps each piece of geometry in a dlist but requires traversal of the entire scene graph to reference each dlist. The decision about what groups to stuff in an object is punted to the object itself, as it can decide whether it is mutable.
The OpenGL viewer never puts objects in display lists, so the retain hint is ignored.
[in] | id | not used. |
[in] | retain | not used. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_end_object | ( | ) | [private, virtual] |
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_background | ( | const std::vector< float > & | groundAngle, | |
const std::vector< color > & | groundColor, | |||
const std::vector< float > & | skyAngle, | |||
const std::vector< color > & | skyColor, | |||
const image & | front, | |||
const image & | back, | |||
const image & | left, | |||
const image & | right, | |||
const image & | top, | |||
const image & | bottom | |||
) | [private, virtual] |
Insert a background into a display list.
[in] | groundAngle | ground angles. |
[in] | groundColor | ground colors. |
[in] | skyAngle | sky angles. |
[in] | skyColor | sky colors. |
[in] | front | front texture. |
[in] | back | back texture. |
[in] | left | left texture. |
[in] | right | right texture. |
[in] | top | top texture. |
[in] | bottom | bottom texture. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_box | ( | const vec3f & | size | ) | [private, virtual] |
Insert a box into a display list.
[in] | size | box dimensions. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_cone | ( | float | height, | |
float | radius, | |||
bool | bottom, | |||
bool | side | |||
) | [private, virtual] |
Insert a cone into a display list.
[in] | height | height. |
[in] | radius | radius at base. |
[in] | bottom | show the bottom. |
[in] | side | show the side. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_cylinder | ( | float | height, | |
float | radius, | |||
bool | bottom, | |||
bool | side, | |||
bool | top | |||
) | [private, virtual] |
Insert a cylinder into a display list.
[in] | height | height. |
[in] | radius | radius. |
[in] | bottom | show the bottom. |
[in] | side | show the side. |
[in] | top | show the top. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_elevation_grid | ( | unsigned int | mask, | |
const std::vector< float > & | height, | |||
int32 | xDimension, | |||
int32 | zDimension, | |||
float | xSpacing, | |||
float | zSpacing, | |||
const std::vector< color > & | color, | |||
const std::vector< vec3f > & | normal, | |||
const std::vector< vec2f > & | texCoord | |||
) | [private, virtual] |
Insert an elevation grid into a display list.
[in] | mask | |
[in] | height | height field. |
[in] | xDimension | vertices in the x direction. |
[in] | zDimension | vertices in the z direction. |
[in] | xSpacing | distance between vertices in the x direction. |
[in] | zSpacing | distance between vertices in the z direction. |
[in] | color | colors. |
[in] | normal | normals. |
[in] | texCoord | texture coordinates. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_extrusion | ( | unsigned int | mask, | |
const std::vector< vec3f > & | spine, | |||
const std::vector< vec2f > & | crossSection, | |||
const std::vector< openvrml::rotation > & | orientation, | |||
const std::vector< vec2f > & | scale | |||
) | [private, virtual] |
Insert an extrusion into a display list.
[in] | mask | |
[in] | spine | spine points. |
[in] | crossSection | cross-sections. |
[in] | orientation | cross-section orientations. |
[in] | scale | cross-section scales. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_line_set | ( | const std::vector< vec3f > & | coord, | |
const std::vector< int32 > & | coordIndex, | |||
bool | colorPerVertex, | |||
const std::vector< color > & | color, | |||
const std::vector< int32 > & | colorIndex | |||
) | [private, virtual] |
Insert a line set into a display list.
[in] | coord | coordinates. |
[in] | coordIndex | coordinate indices. |
[in] | colorPerVertex | whether colors are applied per-vertex or per-face. |
[in] | color | colors. |
[in] | colorIndex | color indices. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_point_set | ( | const std::vector< vec3f > & | coord, | |
const std::vector< color > & | color | |||
) | [private, virtual] |
Insert a point set into a display list.
[in] | coord | points. |
[in] | color | colors. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_shell | ( | unsigned int | mask, | |
const std::vector< vec3f > & | coord, | |||
const std::vector< int32 > & | coord_index, | |||
const std::vector< color > & | color, | |||
const std::vector< int32 > & | color_index, | |||
const std::vector< vec3f > & | normal, | |||
const std::vector< int32 > & | normal_index, | |||
const std::vector< vec2f > & | tex_coord, | |||
const std::vector< int32 > & | tex_coord_index | |||
) | [private, virtual] |
Insert a shell into a display list.
[in] | mask | |
[in] | coord | coordinates. |
[in] | coord_index | coordinate indices. |
[in] | color | colors. |
[in] | color_index | color indices. |
[in] | normal | normals. |
[in] | normal_index | normal indices. |
[in] | tex_coord | texture coordinates. |
[in] | tex_coord_index | texture coordinate indices. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_sphere | ( | float | radius | ) | [private, virtual] |
Insert a sphere into a display list.
[in] | radius | sphere radius. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_dir_light | ( | float | ambientIntensity, | |
float | intensity, | |||
const color & | color, | |||
const vec3f & | direction | |||
) | [private, virtual] |
Insert a directional light into a display list.
[in] | ambientIntensity | ambient intensity. |
[in] | intensity | intensity. |
[in] | color | color. |
[in] | direction | direction. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_point_light | ( | float | ambientIntensity, | |
const vec3f & | attenuation, | |||
const color & | color, | |||
float | intensity, | |||
const vec3f & | location, | |||
float | radius | |||
) | [private, virtual] |
Insert a point light into a display list.
[in] | ambientIntensity | ambient intensity. |
[in] | attenuation | attenuation. |
[in] | color | color. |
[in] | intensity | intensity. |
[in] | location | location. |
[in] | radius | radius. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_spot_light | ( | float | ambientIntensity, | |
const vec3f & | attenuation, | |||
float | beamWidth, | |||
const color & | color, | |||
float | cutOffAngle, | |||
const vec3f & | direction, | |||
float | intensity, | |||
const vec3f & | location, | |||
float | radius | |||
) | [private, virtual] |
Insert a point light into a display list.
[in] | ambientIntensity | ambient intensity. |
[in] | attenuation | attenuation. |
[in] | beamWidth | beam width. |
[in] | color | color. |
[in] | cutOffAngle | cut-off angle. |
[in] | direction | direction. |
[in] | intensity | intensity. |
[in] | location | location. |
[in] | radius | radius. |
Implements openvrml::viewer.
openvrml::gl::viewer::object_t openvrml::gl::viewer::do_insert_reference | ( | object_t | existing_object | ) | [private, virtual] |
Insert a reference to an existing object into a display list.
void openvrml::gl::viewer::do_remove_object | ( | object_t | ref | ) | [private, virtual] |
Remove an object from the display list.
[in] | ref | object handle. |
void openvrml::gl::viewer::do_enable_lighting | ( | bool | val | ) | [private, virtual] |
Enable/disable lighting.
[in] | val | whether lighting should be enabled. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_set_color | ( | const color & | rgb, | |
float | a = 1.0 | |||
) | [private, virtual] |
Set the color.
[in] | rgb | red, green, and blue components. |
[in] | a | alpha (transparency) component. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_set_fog | ( | const color & | color, | |
float | visibilityRange, | |||
const char * | type | |||
) | [private, virtual] |
Set the fog.
[in] | color | fog color. |
[in] | visibilityRange | the distance at which objects are fully obscured by fog. |
[in] | type | fog type. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_set_material | ( | float | ambientIntensity, | |
const color & | diffuseColor, | |||
const color & | emissiveColor, | |||
float | shininess, | |||
const color & | specularColor, | |||
float | transparency | |||
) | [private, virtual] |
Set the material.
[in] | ambientIntensity | ambient intensity. |
[in] | diffuseColor | diffuse color. |
[in] | emissiveColor | emissive color. |
[in] | shininess | shininess. |
[in] | specularColor | specular color. |
[in] | transparency | transparency. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_set_material_mode | ( | size_t | tex_components, | |
bool | geometry_color | |||
) | [private, virtual] |
Set the material mode.
[in] | tex_components | texture components. |
[in] | geometry_color | geometry color. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_set_sensitive | ( | node * | object | ) | [private, virtual] |
Indicate that a node should be sensitive to the pointing device.
[in] | object | a node. |
Implements openvrml::viewer.
openvrml::gl::viewer::texture_object_t openvrml::gl::viewer::do_insert_texture | ( | const image & | img, | |
bool | repeat_s, | |||
bool | repeat_t, | |||
bool | retainHint = false | |||
) | [private, virtual] |
Create a texture object.
[in] | img | image. |
[in] | repeat_s | repeat in the S direction. |
[in] | repeat_t | repeat in the T direction. |
[in] | retainHint | whether the texture is likely to be reused. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_insert_texture_reference | ( | texture_object_t | ref, | |
size_t | components | |||
) | [private, virtual] |
Insert a texture into the display list from an existing handle.
[in] | ref | texture handle. |
[in] | components | number of components. |
void openvrml::gl::viewer::do_remove_texture_object | ( | texture_object_t | ref | ) | [private, virtual] |
Remove a texture from the display list.
[in] | ref | texture handle. |
void openvrml::gl::viewer::do_set_texture_transform | ( | const vec2f & | center, | |
float | rotation, | |||
const vec2f & | scale, | |||
const vec2f & | translation | |||
) | [private, virtual] |
Set the texture transform.
Texture coordinate transform Tc' = -C x S x R x C x T x Tc
[in] | center | center. |
[in] | rotation | rotation. |
[in] | scale | scale. |
[in] | translation | translation. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_set_viewpoint | ( | const vec3f & | position, | |
const openvrml::rotation & | orientation, | |||
float | avatarSize, | |||
float | visibilityLimit | |||
) | [private, virtual] |
Set the viewpoint.
[in] | position | position. |
[in] | orientation | orientation. |
[in] | avatarSize | avatar size. |
[in] | visibilityLimit | visiblity limit. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_transform | ( | const mat4f & | mat | ) | [private, virtual] |
Multiply the current modelview matrix by mat
.
[in] | mat | a matrix. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_transform_points | ( | size_t | nPoints, | |
vec3f * | point | |||
) | const [private, virtual] |
Transform points
by the current modelview matrix.
[in] | nPoints | number of points. |
[in] | point | pointer to the first point in an array. |
Implements openvrml::viewer.
void openvrml::gl::viewer::do_draw_bounding_sphere | ( | const bounding_sphere & | bs, | |
bounding_volume::intersection | intersection | |||
) | [private, virtual] |
Draw a bounding sphere.
Used for debugging view culling. Probably should be draw_bounding_volume and handle axis_aligned_bounding_boxes as well.
[in] | bs | a bounding sphere; if max, will not be drawn |
[in] | intersection | one of the bvolume intersection test constants, or 4 to draw in unique way. (useful for debugging) |
Implements openvrml::viewer.
void openvrml::gl::viewer::post_redraw | ( | ) | [private, pure virtual] |
Called to indicate to the windowing system that a redraw is necessary.
void openvrml::gl::viewer::set_cursor | ( | cursor_style | c | ) | [private, pure virtual] |
Called to set the cursor style.
[in] | c | cursor style identifier. |
void openvrml::gl::viewer::swap_buffers | ( | ) | [private, pure virtual] |
Called to indicate to the windowing system that the front and back buffers should be swapped.
void openvrml::gl::viewer::set_timer | ( | double | interval | ) | [private, pure virtual] |
Set a delay.
[in] | interval | milliseconds to delay. |
openvrml::gl::viewer::modelview_matrix_stack openvrml::gl::viewer::modelview_matrix_stack_ [protected] |
Modelview matrix stack.
bool openvrml::gl::viewer::gl_initialized [protected] |
Indicate whether OpenGL has been initialized for rendering.
bool openvrml::gl::viewer::blend [protected] |
Indicate whether alpha blending is enabled.
bool openvrml::gl::viewer::lit [protected] |
Indicate whether lighting is enabled.
bool openvrml::gl::viewer::texture [protected] |
Indicate whether texture mapping is enabled.
bool openvrml::gl::viewer::wireframe [protected] |
Indicate whether wireframe mode is enabled.
size_t openvrml::gl::viewer::win_width [protected] |
Window width.
size_t openvrml::gl::viewer::win_height [protected] |
Window height.
color openvrml::gl::viewer::background [protected] |
Background color.
size_t openvrml::gl::viewer::objects [protected] |
Number of objects.
size_t openvrml::gl::viewer::nested_objects [protected] |
Number of nested objects.
GLUtesselator * openvrml::gl::viewer::tesselator [protected] |
GLU tesselation object.
size_t openvrml::gl::viewer::sensitive [protected] |
Count of sensitive nodes.
size_t openvrml::gl::viewer::active_sensitive [protected] |
Count of active sensitive nodes.
size_t openvrml::gl::viewer::over_sensitive [protected] |
Count of sensitive nodes the mouse is over.
openvrml::node * openvrml::gl::viewer::sensitive_object[openvrml::gl::viewer::maxsensitive] [protected] |
Sensitive nodes.
bool openvrml::gl::viewer::select_mode [protected] |
Indicate whether the renderer is in select mode.
double openvrml::gl::viewer::select_z [protected] |
Window z-coordinate of last selection.
openvrml::gl::viewer::light_info openvrml::gl::viewer::light_info_[viewer::max_lights] [protected] |
light_info for the lights in the scene.
int openvrml::gl::viewer::beginx [protected] |
Mouse drag start x-coordinate.
int openvrml::gl::viewer::beginy [protected] |
Mouse drag start y-coordinate.
bool openvrml::gl::viewer::rotating [protected] |
Whether the viewer is in the process of rotating.
bool openvrml::gl::viewer::scaling [protected] |
Whether the viewer is in the process of scaling.
bool openvrml::gl::viewer::translating [protected] |
Whether the viewer is in the process of translating.
bool openvrml::gl::viewer::draw_bounding_spheres [protected] |
Whether to draw bounding spheres.
double openvrml::gl::viewer::render_time [protected] |
Updated at the end of redraw with the time redraw took to execute.
double openvrml::gl::viewer::render_time1 [protected] |
Rendering time for the previous cycle.