#include <rso_interface_1.h>
|
virtual void | Calculate (double time)=0 |
| The RSO Interface methods. More...
|
|
virtual void | PreDraw (const OpenGLMatrices ¤t, Culler &culler)=0 |
|
virtual void | Draw ()=0 |
|
virtual void | SetResource (const char *resourceName, const char *resourceVal)=0 |
|
virtual const char * | GetResource (const char *resourceName)=0 |
|
virtual const char * | GetResources (ResourceFilter *filter=0)=0 |
|
virtual bool | HandleInput (Event *ev)=0 |
|
virtual bool | SetEmittedEventHandler (EmittedEventHandler *handler)=0 |
|
virtual bool | Pick3D (const Vector &winLoc, const Vector &logicalCoords, float scale, const Vector &directionVector, Vector &collisionWinLoc, const OpenGLMatrices &drawnMatrices)=0 |
|
virtual bool | GetBoundingSphere (Vector *center, float *radius)=0 |
|
virtual bool | GetBoundingBox (Vector *min, Vector *max, const MatrixD *transform=0)=0 |
|
virtual RSOInterface1 * | CloneObject ()=0 |
|
virtual void | DeleteInstance ()=0 |
| Safely delete the object. More...
|
|
|
static unsigned int | strlen (const char *str) |
|
static char * | strcpy (char *dest, const char *src) |
|
|
virtual | ~RSOInterface1 () |
| Protected destructor so it can't be deleted directly.
|
|
The RSOInterface1 class defines an abstract interface to an RSO instance.
◆ Calculate()
virtual void Calculate |
( |
double |
time | ) |
|
|
pure virtual |
The RSO Interface methods.
Perform component simulation. Any non-drawing activities can be performed here. Call this before PreDraw()
- Parameters
-
time | The current application time in seconds. |
Implemented in GlsRSOInterfaceImpl.
◆ CloneObject()
- Returns
- A new instance of the RSO that is a clone of this object or NULL if not possible.
Implemented in GlsRSOInterfaceImpl.
◆ DeleteInstance()
virtual void DeleteInstance |
( |
| ) |
|
|
pure virtual |
◆ Draw()
◆ GetBoundingBox()
Get the extents of the component when drawn with the given transformation matrix, as a coordinate system-aligned box
- Parameters
-
min | If the method returns true, contains the point corresponding with the 1st corner of the box. If the method returns false, value is undefined. |
max | If the method returns true, contains the point corresponding with the 2nd corner of the box. If the method returns false, value is undefined. |
transform | Transformation matrix from A to B where A is the component's coordinate system and B is the coordinate system to compute the bounding box in. (If NULL then identity matrix is assumed) |
- Returns
- true if the extents were calculated, false if the extents could not be calculated.
Implemented in GlsRSOInterfaceImpl.
◆ GetBoundingSphere()
virtual bool GetBoundingSphere |
( |
Vector * |
center, |
|
|
float * |
radius |
|
) |
| |
|
pure virtual |
Get the bounding sphere for the component in the components coordinate system
- Parameters
-
center | If the method returns true, contains the center point of the sphere. If the method returns false, value is undefined. |
radius | If the method returns true, contains the radius of the sphere. If the method returns false, value is undefined. |
- Returns
- true if the bounding sphere was returned, false if the bounding sphere is not available.
Implemented in GlsRSOInterfaceImpl.
◆ GetResource()
virtual const char * GetResource |
( |
const char * |
resourceName | ) |
|
|
pure virtual |
Get the string value for the given resource
- Parameters
-
resourceName | The name of the resource whose value is to be returned. |
- Returns
- The string value for the given resource, or empty string if not found.
Implemented in GlsRSOInterfaceImpl, and RSOInterface2.
◆ GetResources()
Get a list of the resources for the component. Each resource is separated by a newline ('
') with the output controlled by filter. filter may be NULL in which case the default values are used.
- Parameters
-
filter | The filter parameters to use. |
- Returns
- A string containing the list of resource data that passes the filter.
Implemented in GlsRSOInterfaceImpl.
◆ HandleInput()
virtual bool HandleInput |
( |
Event * |
ev | ) |
|
|
pure virtual |
Allow the object to handle an event
- Parameters
-
- Returns
- True if the event was handled by the component.
Implemented in GlsRSOInterfaceImpl.
◆ Pick3D()
Pick3D returns true if the RSO was picked.
- Parameters
-
winLoc | Device coordinates for the mouse click. Z value should be set to 0 to ensure pick ray starts at near clip plane. |
logicalCoords | The start of the pick ray in logical coordinates. Should be calculated from the winLoc using this->WindowToLogical(winLoc, logicalCoords, &directionVector). |
scale | Current window scale. Affects picking radius of outlines. Initial value should typically be 1.0. |
directionVector | The direction of the pick ray in logical coordinates. Should be calculated from the winLoc using this->WindowToLogical(winLoc, logicalCoords, &directionVector). |
collisionWinLoc | Returns where the pick vector intersects the object that is hit in device coordinates. |
drawnMatrices | The matrices used to draw the object, including matrices set by parents that may have dynamically rotated, translated or scaled this object. Initial value should typically be a default OpenGLMatrices() object. |
- Returns
- True if the object was picked.
Implemented in GlsRSOInterfaceImpl.
◆ PreDraw()
Calculate transformations and perform culling Call this before Draw()
- Parameters
-
current | The current state of the OpenGL matrices. |
culler | The current culler state. |
Implemented in GlsRSOInterfaceImpl.
◆ SetEmittedEventHandler()
Allow for handling events from inside the object. The emitted event handler will be passed events that are from inside the component
- Parameters
-
handler | pointer to the EmittedEventHandler object to use or NULL to remove the current event handler. |
- Returns
- true if this component may emit events, false if this component will never emit events.
Implemented in GlsRSOInterfaceImpl.
◆ SetResource()
virtual void SetResource |
( |
const char * |
resourceName, |
|
|
const char * |
resourceVal |
|
) |
| |
|
pure virtual |
Set the string value for a given named resource.
- Parameters
-
resourceName | The name of the resource to set. |
resourceVal | The new string value to set for the resource. |
Implemented in GlsRSOInterfaceImpl, and RSOInterface2.
◆ strcpy()
static char * strcpy |
( |
char * |
dest, |
|
|
const char * |
src |
|
) |
| |
|
inlinestatic |
Copy the given C string from src to dest.
- Parameters
-
dest | The destination memory region. |
src | The source memory region. |
- Returns
- The destination memory region.
◆ strlen()
static unsigned int strlen |
( |
const char * |
str | ) |
|
|
inlinestatic |
Return the length of the given C string.
- Parameters
-
str | The string whose length is to be computed. |
- Returns
- The length of the string in bytes.
The documentation for this class was generated from the following file: