This article's documentation is for anything that uses the Source engine. Click here for more information.

env_cascade_light

From Valve Developer Community
(Redirected from CSM)
Jump to: navigation, search
English (en)

env_cascade_light is a point entity available in all Source Source games since Counter-Strike: Global Offensive Counter-Strike: Global Offensive.(also in Xengine)

class hierarchy
CCascadeLight
CBaseEntity
Comparison of CSM and without CSM in Black Mesa (Click if GIF is not playing)

It casts an extremely accurate shadow map via the tools/skybox texture, acting as a real-time variation of light_environment. This form of lighting is known as Cascaded Shadow Maps, or CSM, which works by rendering very detailed shadow maps which becomes a lower and lower resolution depending on the distance the viewer is from the surface, similar to mipmaps. Some games automatically add this entity to the map, but it can be placed manually as well.


Icon-Bug.pngBug:
  • Although you can toggle this entity, you can have only one env_cascade_light in your level. Other will not work.
  • In Insurgency, shadows will be very faint if the map hasn't been compiled with HDR.
  • In Insurgency, Lightstyles will break when this entity exists.
Note.pngNote:
Icon-Important.pngImportant:
  • Xengine Xengine's implementation requires -CascadeShadows and -StaticPropLighting3 parameters for VRAD, this for CSM to work correctly.
  • Due to lighting changes in Xengine Xengine, this entity has many additional parameters.

Keyvalues

Name (targetname) <string>
The targetname that other entities refer to this entity by.
Light Color (color) <color255>
This is the color of the sunlight. For Counter-Strike: Global Offensive, the color is automatically copied from the light_environment.
Max shadow distance (maxshadowdistance) <float>
Maximum dynamic shadow distance. Higher values are slower, default on PC is 400 units.
Use light_environment's angles (uselightenvangles) <boolean>
If true, the CSM shadow angles are automatically taken from a light_environment's angles. If false, this entity's Pitch Yaw Roll is used.
LightRadius1 (LightRadius1) to LightRadius3 <float> (only in Xengine)
Used for controlling shadow softness in cascades 1, 2, and 3.
Depthbias1 (Depthbias1) to Depthbias3 <float> (only in Xengine)
DepthBias for cascades 1, 2, and 3.
Slopescaledepthbias1 (Slopescaledepthbias1) to Slopescaledepthbias3 <float> (only in Xengine)
Slope DepthBias for cascades 1, 2, and 3.
ViewModelDepthbias (ViewModelDepthbias) <float> (only in Xengine)
DepthBias for viewmodel cascade.
ViewModelSlopescaledepthbias (ViewModelSlopescaledepthbias) <float> (only in Xengine)
DepthBias for viewmodel cascade.
CSM_Volume_Mode (CSMVolumeMode) <choices> (only in Xengine)
Use Manual mode for better quality and performance. In near future Auto mode will be removed from the game.
  • 0: Auto: Static cache will update once every 10 frames (approx) covering max shadow distance or whole map around player.
  • 1: Manual : Static cache area coverage and updates are managed via CSM Volumes' I/O.
Start Disabled (StartDisabled) <boolean>
Stay dormant until activated (with theEnableinput).

Inputs

SetAngles <string>
Sets the direction shadows cast in.
Note.pngNote:Effects nothing.
LightColor <color255>
Changes color of the sunlight.
Icon-Bug.pngBug:Doesn't work as expected. With Counter-Strike: Global Offensive Counter-Strike: Global Offensive's implementation, the color only changes on static props, not on world geometry or dynamic objects. It only changes the shadow color (only in world geometry, not in models), with no change upon reloading the game. With Xengine Xengine's implementation, the only thing you can do is change shadows color to turquoise and change the intensity of these shadows, however this doesn't effects shadows on the viewmodel.
Examples

Counter-Strike: Global Offensive Counter-Strike: Global Offensive (Portal 2: Community Edition Portal 2: Community Edition):

Xengine Xengine:

LightColorScale  !FGD Obsolete
Deprecated. Boosts the color of the sunlight. Non-functional, only resets the Light Color.
Icon-Bug.pngBug:Effects nothing in Xengine Xengine.
SetCSMVolume  (only in Xengine)
Set CSM Volume via trigger volume.
SetCSMVolumeToSceneBounds  (only in Xengine)
Set CSM Volume to scene bounds.
SetCSMVolumeViaCSMVolumeEntity <targetname> (only in Xengine)
Set CSM Volume to CSM Volume Entity.
Disable <void>
Disable this entity.
Note.pngNote:Only in Xengine Xengine work as expected. Counter-Strike: Global Offensive Counter-Strike: Global Offensive's implementation only disable blobby shadows and lighting in viewmodel, also cause freeze for some seconds.
Enable <void>
Enable this entity.
Note.pngNote:Only in Xengine Xengine work as expected. Counter-Strike: Global Offensive Counter-Strike: Global Offensive's implementation only enable blobby shadows and lighting in viewmodel, also cause freeze for some seconds.

Cascade Shadow Mapping Volumes

Black Mesa Black Mesa provides very powerful optimization feature, called Cascade Shadow Mapping Volumes (CSM volumes for short). Initially, there were 2 different modes for rendering shadow maps for static cascade, which type to use - determines the value from the property, the property is CSM_Volume_Mode. CSM volumes allow you to automatically limit rendering of cascade shadows, swap areas there you want to have static cascade shadows (this is cascade shadows from static props with world geometry (brush entities as well) and also change value for

Max shadow distance property.


CSM_Volume_Mode property can have 2 different values:

  • Auto - you will not be able to swap areas there you want to have static cascade shadows, value from Max shadow distance property never changes, static cascade shadows will also disappear with dynamic cascade shadows. Good enough if map isn't very open space or if it's not too big.
  • Manual - static cascade shadows rendering areas depends on values from the inputs, value from Max shadow distance property also depends on values from the inputs. This allows you to save many FPS for maps with big open space areas (especially for Xen levels).

There are 3 different inputs for this feature, which create 3 different ways to use CSM volumes.

The first input is SetCSMVolume. This input changes CSM volume and sets min and max bounds via trigger_csm_volume entity. The size of trigger_csm_volume entity decides the size of the world or level to be rendered into CSM shadow maps. To use it, specify the area in which you want to set CSM volume via trigger_csm_volume entity (also works with trigger_multiple and other triggers for some reason). In trigger_csm_volume make the following output:

In this way, static cascade shadows will not appear outside of min and max bounds.

The second input is SetCSMVolumeToSceneBounds. It resets CSM volume to scene bounds. To use it, use the steps from the previous way, but replace SetCSMVolume input with SetCSMVolumeToSceneBounds input.

In this way, static cascade shadows never disappear, but dynamic still disappear.


The third input and the last way is SetCSMVolumeViaCSMVolumeEntity. It does the same thing that does SetCSMVolume, but instead of trigger_csm_volume you are using env_cascade_volume entity. This way is deprecated, but still can be used in some very rare cases. env_cascade_volume is disabled in original FGD, you need to open base.cfg, find line 3169 and uncomment the code (or just use Enhanced Black Mesa FGD). The next step is to place the entity, give a name and set values for RadiusX, RadiusY and RadiusZ properties. What values to set to have required results ? Image that the entity position is brush center, and the values for the properties is the values what you see in 2D Hammer Hammer window while some brush entity is selected. The last step is to add output for entity that will set CSM volume in this way, this can be trigger or any other entity. SetCSMVolumeViaCSMVolumeEntity requires parameter to work, the parameter is the name of env_cascade_volume which we set up early.

In this way, we get results that are identical to the result from SetCSMVolume input.


Icon-Important.pngImportant:All these features fully disabled with ridiculous value for setting Sun Shadow Quality (or cl_csm_qualitymode 4).
Icon-Bug.pngBug:All these features doesn't work properly in multiplayer.

See also

External links