Public Member Functions | Static Public Member Functions | Properties

CC3Light Class Reference

CC3Light represents the light in the 3D scene. More...

#import <CC3Light.h>

Inheritance diagram for CC3Light:
Inheritance graph
[legend]
Collaboration diagram for CC3Light:
Collaboration graph
[legend]

List of all members.

Public Member Functions

(void) - addShadow:
(void) - drawShadowsWithVisitor:
(id) - init
(id) - initWithLightIndex:
(id) - initWithName:
(id) - initWithName:withLightIndex:
(id) - initWithTag:
(id) - initWithTag:withLightIndex:
(id) - initWithTag:withName:
(id) - initWithTag:withName:withLightIndex:
(void) - removeShadow:
(void) - turnOn
(void) - updateRelativeIntensityFrom:
(void) - updateShadows

Static Public Member Functions

(void) + disableReservedLights
(GLuint) + lightCount
(GLuint) + lightPoolStartIndex
(id) + lightWithLightIndex:
(id) + lightWithName:withLightIndex:
(id) + lightWithTag:withLightIndex:
(id) + lightWithTag:withName:withLightIndex:
(void) + setLightPoolStartIndex:

Properties

ccColor4F ambientColor
CC3AttenuationCoefficients attenuationCoefficients
CC3CameraShadowVolumecameraShadowVolume
ccColor4F diffuseColor
CC3Vector forwardDirection
BOOL hasShadows
CC3Vector4 homogeneousLocation
BOOL isDirectionalOnly: 1
BOOL isLight
GLuint lightIndex
CC3ShadowCastingVolumeshadowCastingVolume
GLfloat shadowIntensityFactor
CCArray * shadows
BOOL shouldCastShadowsWhenInvisible: 1
BOOL shouldCopyLightIndex: 1
ccColor4F specularColor
GLfloat spotCutoffAngle
GLfloat spotExponent
CC3StencilledShadowPainterNodestencilledShadowPainter

Detailed Description

CC3Light represents the light in the 3D scene.

CC3Light is a type of CC3Node, and can therefore participate in a structural node assembly. An instance can be the child of another node, and the light itself can have child nodes. For example, a light can be mounted on a boom object or camera, and will move along with the parent node.

CC3Light can be pointed so that it shines in a particular direction, or can be made to track a target node as that node moves.

To turn a CC3Light on or off, set the visible property.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

Lights in different scenes (different instances of CC3Scene) can have the same GL lightIndex value. Applications that make use of multiple CC3Scenes, either as a sequence of scenes, or as multiple scenes (and multiple CC3Layers) displayed on the screen at once, can reuse a light index across the scenes. The shouldCopyLightIndex property can be used to help copy lights across scenes.

If the application uses lights in the 2D scene as well, the indexes of those lights can be reserved by invoking the class method setLightPoolStartIndex:. Light indexes reserved for use by the 2D scene will not be used by the 3D scene.


Member Function Documentation

- (void) addShadow: (id< CC3ShadowProtocol >)  shadowNode

Adds a shadow to the shadows cast by this light.

This method is invoked automatically when a shadow is added to a mesh node. Usually, the application never needs to invoke this method directly.

+ (void) disableReservedLights

Disables the lights that were reserved for the 2D scene by setLightPoolStartIndex:.

This method is invoked automatically by CC3Scene near the beginning of each frame drawing cycle. Usually, the application never needs to invoke this method directly.

- (void) drawShadowsWithVisitor: (CC3NodeDrawingVisitor *)  visitor

Draws any shadows cast by this light.

- (id) init

Initializes this unnamed instance with an automatically generated unique tag value.

The tag value will be generated automatically via the method nextTag.

The lightIndex property will be set to the next available GL light index. This method will return nil if all GL light indexes have been consumed.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

Implements CC3Identifiable.

- (id) initWithLightIndex: (GLuint)  ltIndx

Initializes this unnamed instance with the specified GL light index, and an automatically generated unique tag value.

The tag value will be generated automatically via the method nextTag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

- (id) initWithName: (NSString *)  aName

Initializes this instance with the specified name and an automatically generated unique tag value.

The tag value will be generated automatically via the method nextTag.

The lightIndex property will be set to the next available GL light index. This method will return nil if all GL light indexes have been consumed.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

Implements CC3Identifiable.

- (id) initWithName: (NSString *)  aName
withLightIndex: (GLuint)  ltIndx 

Initializes this instance with the specified GL light index, the specified name, and an automatically generated unique tag value.

The tag value will be generated automatically via the method nextTag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

- (id) initWithTag: (GLuint)  aTag

Initializes this unnamed instance with the specified tag.

The lightIndex property will be set to the next available GL light index. This method will return nil if all GL light indexes have been consumed.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

Implements CC3Identifiable.

- (id) initWithTag: (GLuint)  aTag
withLightIndex: (GLuint)  ltIndx 

Initializes this unnamed instance with the specified GL light index, and the specified tag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

- (id) initWithTag: (GLuint)  aTag
withName: (NSString *)  aName 

Initializes this instance with the specified tag and name.

The lightIndex property will be set to the next available GL light index. This method will return nil if all GL light indexes have been consumed.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

Implements CC3Identifiable.

- (id) initWithTag: (GLuint)  aTag
withName: (NSString *)  aName
withLightIndex: (GLuint)  ltIndx 

Initializes this instance with the specified GL light index, the specified name, and the specified tag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

+ (GLuint) lightCount

Returns the number of lights that have already been instantiated (and not yet deallocated).

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

+ (GLuint) lightPoolStartIndex

Indicates the smallest index number to assign to a 3D light.

See the description of the setLightPoolStartIndex: method for more information on this value.

+ (id) lightWithLightIndex: (GLuint)  ltIndx

Allocates and initializes an autoreleased unnamed instance with the specified GL light index, and an automatically generated unique tag value.

The tag value will be generated automatically via the method nextTag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

+ (id) lightWithName: (NSString *)  aName
withLightIndex: (GLuint)  ltIndx 

Allocates and initializes an autoreleased instance with the specified GL light index, the specified name, and an automatically generated unique tag value.

The tag value will be generated automatically via the method nextTag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

+ (id) lightWithTag: (GLuint)  aTag
withLightIndex: (GLuint)  ltIndx 

Allocates and initializes an autoreleased unnamed instance with the specified GL light index, and the specified tag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

+ (id) lightWithTag: (GLuint)  aTag
withName: (NSString *)  aName
withLightIndex: (GLuint)  ltIndx 

Allocates and initializes an autoreleased instance with the specified GL light index, the specified name, and the specified tag.

If multiple lights are used to illumniate a scene (a CC3Scene instance), each light must have its own GL light index. Do not assign the same light index to more than one light in a scene.

This method will return nil if the specified light index is not less than the maximum number of lights available.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

- (void) removeShadow: (id< CC3ShadowProtocol >)  shadowNode

Removes a shadow from the shadows cast by this light.

+ (void) setLightPoolStartIndex: (GLuint)  newStartIndex

Sets the smallest index number to assign to a 3D light.

This value should be between zero inclusive and [CC3OpenGLES11Engine engine].platform.maxLights.value exclusive.

If the 2D scene uses lights, setting this value to a number above zero will reserve the indexes below this number for the 2D scene and those indexes will not be used in lights in the 3D scene.

This value defaults to zero. If your application requires light indexes to be reserved and not assigned in the 3D scene, set this value.

- (void) turnOn

If this light is visible, turns it on by enabling this light in the GL engine, and then applies the properties of this light to the GL engine.

This method is invoked automatically by CC3Scene near the beginning of each frame drawing cycle. Usually, the application never needs to invoke this method directly.

- (void) updateRelativeIntensityFrom: (ccColor4F)  totalLight

Updates the relative intensity of this light, as compared to the specified total scene illumination.

Certain characteristics, such as shadow intensities, depend on the relative intensity of this light, relative to the total intensity of all lights in the scene.

Sets the intensity of shadows cast by this light by comparing the intensity of the diffuse component of this light against the total ambient and diffuse illumination from all lights, to get a measure of the fraction of total scene illumination that is contributed by this light.

Using this technique, the presence of multiple lights, or strong ambient light, will serve to lighten the shadows cast by any single light. A single light with no ambient light will cast completely black opaque shadows.

That calculated fraction is then multiplied by the value of the shadowIntensityFactor property to determine the intensity (opacity) of the shadows cast by this light. The shadowIntensityFactor increases flexibility by allowing the shadow intensity to be adjusted relative to the calculated value to improve realisim.

This method is invoked automatically when any of the the ambientColor, diffuseColor, visible, or shadowIntensityFactor properties of any light in the scene is changed, or if the ambientLight property of the CC3Scene is changed.

- (void) updateShadows

Update the shadows that are cast by this light.


Property Documentation

- (ccColor4F) ambientColor [read, write, assign]

The ambient color of this light.

Initially set to kCC3DefaultLightColorAmbient.

Implements CC3Node.

- (CC3AttenuationCoefficients) attenuationCoefficients [read, write, assign]

The coefficients of the attenuation function that reduces the intensity of the light based on the distance from the light source.

The intensity of the light is attenuated according to the formula 1/sqrt(a + b * r + c * r * r), where r is the radial distance from the light source, and a, b and c are the coefficients from this property.

The initial value of this property is kCC3DefaultLightAttenuationCoefficients.

- (CC3CameraShadowVolume *) cameraShadowVolume [read, write, retain]

A specialized bounding volume that encloses a pyramidal volume between the view plane (near clipping plane) of the camera, and this light.

Nodes that intersect this volume will cast a shadow from that light across the camera. The shadow volume of nodes that cast a shadow across the camera view plane are rendered differently than shadow volumes for nodes that do not cast their shadow across the camera.

If not set directly, this property is lazily created when a shadow is added. If no shadow has been added, this property will return nil.

- (ccColor4F) diffuseColor [read, write, assign]

The diffuse color of this light.

Initially set to kCC3DefaultLightColorDiffuse.

Implements CC3Node.

- (CC3Vector) forwardDirection [read, write, assign]

The direction in which this light is pointing, relative to the coordinate system of this light, which is relative to the parent's rotation.

The initial value of this property is kCC3VectorUnitZNegative, pointing down the negative Z-axis in the local coordinate system of this light. When this light is rotated, the original negative-Z axis of the camera's local coordinate system will point in this direction.

This orientation is opposite that for most other nodes, whose forwardDirection property orients the positve Z-axis of the node's coordinate system in the stated direction. This arrangement allows unrotated nodes to face the light in a natural stance, and allows the unrotated light to face the nodes.

See further notes in the notes for this property in the CC3Node class.

Implements CC3Node.

- (BOOL) hasShadows [read, assign]

Returns whether this light is casting shadows.

It is if any shadows have been added and not yet removed.

- (CC3Vector4) homogeneousLocation [read, assign]

The location of this light in the 4D homogeneous coordinate space.

The x, y and z components of the returned value will be the same as those in the globalLocation property. The w-component will be one if the light is considered to be actually located at the globalLocation property, or zero if the globalLocation property is an indication of the direction the light is coming from, and not an absolute location.

- (BOOL) isDirectionalOnly [read, write, assign]

Indicates whether this light is directional and without a specified location.

Directional-only light is good for modeling sunlight, or other flat overhead lighting. Positional lighting is good for point-source lights like a single bulb, flare, etc.

The value of this property impacts features like attenuation, and the angle of reflection to the user view. A directional-only light is not subject to attenuation over distance, where an absolutely located light is. In addition, directional-only light bounces off a flat surface at a single angle, whereas the angle for a point-source light also depends on the location of the camera.

The value of this property also impacts performance. Because positional light involves significantly more calculations within the GL engine, setting this property to YES (the initial value) will improve lighting performance. You should only set this property to NO if you need to make use of the positional features described above.

The initial value is YES, indicating directional-only lighting.

- (BOOL) isLight [read, assign]

Returns whether this node is a light.

Returns YES.

- (GLuint) lightIndex [read, assign]

The index of this light to identify it to the GL engine.

This is automatically assigned during instance initialization. The value of lightIndex will be between zero and one less than the maximium number of available lights, inclusive.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

- (CC3ShadowCastingVolume *) shadowCastingVolume [read, write, retain]

A specialized bounding volume that encloses a volume that includes the camera frustum plus the space between the camera frustum and this light.

Nodes that intersect this volume will cast a shadow from this light into the camera frustum, and that shadow will be visible. Shadows cast by nodes outside this volume will not intersect the frustum and will not be visible.

This volume is used to cull the updating and drawing of shadows that will not be visible, to enhance performance.

If not set directly, this property is lazily created when a shadow is added. If no shadow has been added, this property will return nil.

- (GLfloat) shadowIntensityFactor [read, write, assign]

This property is used to adjust the shadow intensity as calculated when the updateRelativeIntensityFrom: method is invoked.

This property increases flexibility by allowing the shadow intensity to be ajusted relative to that calculated value to improve realisim.

The intensity of shadows cast by this light is calculated by comparing the intensity of the diffuse component of this light against the total ambient and diffuse illumination from all lights, to get a measure of the fraction of total scene illumination that is contributed by this light.

Using this technique, the presence of multiple lights, or strong ambient light, will serve to lighten the shadows cast by any single light. A single light with no ambient light will cast completely opaque, black shadows.

That fraction, representing the fraction of overall light coming from this light, is then multiplied by the value of this property to determine the intensity (opacity) of the shadows cast by this light.

This property must be zero or a positive value. A value between zero and one will serve to to lighten the shadow, relative to the shadow intensity (opacity) calculated from the relative intensity of this light, and a value of greater than one will serve to darken the shadow, relative to that calculated intensity.

The initial value of this property is one, meaning that the shadow intensity calculated from the relative intensity of this light will be used without adjustment.

- (CCArray *) shadows [read, assign]

The shadows cast by this light.

If this light is casting no shadows, this property will be nil.

- (BOOL) shouldCastShadowsWhenInvisible [read, write, assign]

Indicates whether this light should cast shadows even when invisible.

Normally, when a light is turned off, any shadows cast by that light should disappear as well. However, there are certain lighting situations where you might want a light to cast shadows, even when turned off, such as using one light to accent the shadows cast by another light that has different ambient or diffuse lighting characteristics.

The initial value of this propety is NO.

Setting this value sets the same property on any descendant mesh and light nodes.

Implements CC3Node.

- (BOOL) shouldCopyLightIndex [read, write, assign]

When a copy is made of this node, indicates whether this node should copy the value of the lightIndex property to the new node when performing a copy of this node.

The initial value of this property is NO.

When this property is set to NO, and this light node is copied, the new copy will be assigned its own lightIndex, to identify it to the GL engine. This allows both lights to illuminate the same scene (instance of CC3Scene), and is the most common mechanism for assigning the lightIndex property.

OpenGL ES limits the number of lights available to illuminate a single scene. Once that limit is reached, additional lights cannot be created, and attempting to copy this node will fail, returning a nil node.

The maximum number of lights available is determined by the platform. That number can be retrieved from [CC3OpenGLES11Engine engine].platform.maxLights.value. All platforms support at least eight lights.

When this property is set to YES, and this light node is copied, the new copy will be assigned the same lightIndex as this node. This means that the copy may not be used in the same scene as the original light, but it may be used in another scene (another CC3Scene instance).

Applications that make use of multiple CC3Scenes, either as a sequence of scenes, or as multiple scenes (and multiple CC3Layers) displayed on the screen at once, can set this property to YES when making copies of a light to be placed in different CC3Scene instances.

- (ccColor4F) specularColor [read, write, assign]

The specular color of this light.

Initially set to kCC3DefaultLightColorSpecular.

Implements CC3Node.

- (GLfloat) spotCutoffAngle [read, write, assign]

Indicates the angle, in degrees, of dispersion of the light from the direction of the light.

Setting this value to any angle between zero and 90 degrees, inclusive, will cause this light to be treated as a spotlight whose direction is set by the forwardDirection property of this light, and whose angle of dispersion is controlled by this property. Setting this property to any value above 90 degrees will cause this light to be treated as an omnidirectional light.

This property is initially set to kCC3SpotCutoffNone (180 degrees).

- (GLfloat) spotExponent [read, write, assign]

Indicates the intensity distribution of the light.

Effective light intensity is attenuated by the cosine of the angle between the direction of the light and the direction from the light to the vertex being lighted, raised to the power of the value of this property. Thus, higher spot exponents result in a more focused light source, regardless of the value of the spotCutoffAngle property.

The value of this property must be in the range [0, 128], and is clamped to that range if an attempt is made to set the value outside this range.

The initial value of this property is zero, indicating a uniform light distribution.

- (CC3StencilledShadowPainterNode *) stencilledShadowPainter [read, write, retain]

The mesh node used to draw the shadows cast by any shadow volumes that have been added to mesh nodes for this light.

Shadow volumes are used to define a stencil that is then used to draw dark areas onto the viewport where mesh nodes are casting shadows. This painter is used to draw those dark areas where the stencil indicates.

If not set directly, this property is lazily created when a shadow is added. If no shadow has been added, this property will return nil.


The documentation for this class was generated from the following file: