mirror of
https://github.com/ZDoom/ZDRay.git
synced 2024-11-21 19:50:54 +00:00
Rename SourceRadius to SoftShadowRadius
This commit is contained in:
parent
6bdb4c28ca
commit
3750bdd79a
10 changed files with 15 additions and 15 deletions
|
@ -57,13 +57,13 @@ thing // ZDRayInfo (ZDRay properties for the map)
|
|||
thing // Lightmap point light (Light color and distance properties use the same args as dynamic lights)
|
||||
{
|
||||
type = 9876;
|
||||
sourceradius = <float> (default: 5, radius of the light source in map units; controls the softness)
|
||||
SoftShadowRadius = <float> (default: 5, radius of the light source in map units; controls the shadow softness. Note that dynamic raytraced lights can also use this feature)
|
||||
}
|
||||
|
||||
thing // Lightmap spotlight (Light color, distance and angle properties use the same args as dynamic lights)
|
||||
{
|
||||
type = 9881;
|
||||
SourceRadius = <float> (default: 5, radius of the light source in map units; controls the shadow softness. Note that dynamic raytraced lights can also use this feature)
|
||||
SoftShadowRadius = <float> (default: 5, radius of the light source in map units; controls the shadow softness. Note that dynamic raytraced lights can also use this feature)
|
||||
}
|
||||
|
||||
linedef
|
||||
|
|
|
@ -432,7 +432,7 @@ struct ThingLight
|
|||
float outerAngleCos;
|
||||
float height;
|
||||
float radius;
|
||||
float sourceRadius;
|
||||
float softShadowRadius;
|
||||
bool bCeiling;
|
||||
IntSector *sector;
|
||||
MapSubsectorEx *ssect;
|
||||
|
|
|
@ -247,7 +247,7 @@ void FLevel::CreateLights()
|
|||
float lightDistance = 0.0f;
|
||||
float innerAngleCos = -1.0f;
|
||||
float outerAngleCos = -1.0f;
|
||||
float sourceradius = 5.0f;
|
||||
float softshadowradius = 5.0f;
|
||||
|
||||
// need to process point lights and spot lights differently due to their
|
||||
// inconsistent arg usage...
|
||||
|
@ -282,9 +282,9 @@ void FLevel::CreateLights()
|
|||
|
||||
for (const auto& prop : thing->props)
|
||||
{
|
||||
if (!stricmp(prop.key, "sourceradius"))
|
||||
if (!stricmp(prop.key, "softshadowradius"))
|
||||
{
|
||||
sourceradius = atof(prop.value);
|
||||
softshadowradius = atof(prop.value);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -313,7 +313,7 @@ void FLevel::CreateLights()
|
|||
thingLight.origin.X = x;
|
||||
thingLight.origin.Y = y;
|
||||
thingLight.sectorGroup = thingLight.sector->group;
|
||||
thingLight.sourceRadius = sourceradius;
|
||||
thingLight.softShadowRadius = softshadowradius;
|
||||
|
||||
ThingLights.Push(thingLight);
|
||||
}
|
||||
|
|
|
@ -148,7 +148,7 @@ int DoomLevelMesh::GetLightIndex(ThingLight* light, int portalgroup)
|
|||
meshlight.OuterAngleCos = light->outerAngleCos;
|
||||
meshlight.SpotDir = light->SpotDir();
|
||||
meshlight.Color = light->rgb;
|
||||
meshlight.SourceRadius = light->sourceRadius;
|
||||
meshlight.SoftShadowRadius = light->softShadowRadius;
|
||||
|
||||
meshlight.SectorGroup = 0;
|
||||
// if (light->sector)
|
||||
|
|
|
@ -38,7 +38,7 @@ struct LightInfo
|
|||
float InnerAngleCos;
|
||||
float OuterAngleCos;
|
||||
vec3 SpotDir;
|
||||
float SourceRadius;
|
||||
float SoftShadowRadius;
|
||||
vec3 Color;
|
||||
float Padding3;
|
||||
};
|
||||
|
|
|
@ -30,7 +30,7 @@ struct LightInfo
|
|||
float InnerAngleCos;
|
||||
float OuterAngleCos;
|
||||
vec3 SpotDir;
|
||||
float SourceRadius;
|
||||
float SoftShadowRadius;
|
||||
vec3 Color;
|
||||
float Padding3;
|
||||
};
|
||||
|
|
|
@ -30,13 +30,13 @@ vec3 TraceLight(vec3 origin, vec3 normal, LightInfo light, float extraDistance)
|
|||
|
||||
#if defined(USE_SOFTSHADOWS)
|
||||
|
||||
if (light.SourceRadius != 0.0)
|
||||
if (light.SoftShadowRadius != 0.0)
|
||||
{
|
||||
vec3 v = (abs(dir.x) > abs(dir.y)) ? vec3(0.0, 1.0, 0.0) : vec3(1.0, 0.0, 0.0);
|
||||
vec3 xdir = normalize(cross(dir, v));
|
||||
vec3 ydir = cross(dir, xdir);
|
||||
|
||||
float lightsize = light.SourceRadius;
|
||||
float lightsize = light.SoftShadowRadius;
|
||||
int step_count = 10;
|
||||
for (int i = 0; i < step_count; i++)
|
||||
{
|
||||
|
|
|
@ -15,5 +15,5 @@ public:
|
|||
FVector3 SpotDir;
|
||||
FVector3 Color;
|
||||
int SectorGroup;
|
||||
float SourceRadius;
|
||||
float SoftShadowRadius;
|
||||
};
|
||||
|
|
|
@ -670,7 +670,7 @@ void VkLevelMeshUploader::UploadLights()
|
|||
info.OuterAngleCos = light.OuterAngleCos;
|
||||
info.SpotDir = SwapYZ(light.SpotDir);
|
||||
info.Color = light.Color;
|
||||
info.SourceRadius = light.SourceRadius;
|
||||
info.SoftShadowRadius = light.SoftShadowRadius;
|
||||
*(lights++) = info;
|
||||
}
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ struct LightInfo
|
|||
float InnerAngleCos;
|
||||
float OuterAngleCos;
|
||||
FVector3 SpotDir;
|
||||
float SourceRadius;
|
||||
float SoftShadowRadius;
|
||||
FVector3 Color;
|
||||
float Padding3;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue