mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 12:41:21 +00:00
Merge pull request #1094 from 0lvin/light_code_style
Rename functions r_dlightframecount parameter to lightframecount
This commit is contained in:
commit
48a4e5397c
5 changed files with 15 additions and 15 deletions
|
@ -80,7 +80,7 @@ if surface is affected by this light
|
||||||
=============
|
=============
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
R_MarkLights(dlight_t *light, int bit, mnode_t *node, int r_dlightframecount,
|
R_MarkLights(dlight_t *light, int bit, mnode_t *node, int lightframecount,
|
||||||
marksurfacelights_t mark_surface_lights)
|
marksurfacelights_t mark_surface_lights)
|
||||||
{
|
{
|
||||||
cplane_t *splitplane;
|
cplane_t *splitplane;
|
||||||
|
@ -97,23 +97,23 @@ R_MarkLights(dlight_t *light, int bit, mnode_t *node, int r_dlightframecount,
|
||||||
|
|
||||||
if (dist > intensity - DLIGHT_CUTOFF) // (dist > light->intensity)
|
if (dist > intensity - DLIGHT_CUTOFF) // (dist > light->intensity)
|
||||||
{
|
{
|
||||||
R_MarkLights (light, bit, node->children[0], r_dlightframecount,
|
R_MarkLights (light, bit, node->children[0], lightframecount,
|
||||||
mark_surface_lights);
|
mark_surface_lights);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dist < -intensity + DLIGHT_CUTOFF) // (dist < -light->intensity)
|
if (dist < -intensity + DLIGHT_CUTOFF) // (dist < -light->intensity)
|
||||||
{
|
{
|
||||||
R_MarkLights(light, bit, node->children[1], r_dlightframecount,
|
R_MarkLights(light, bit, node->children[1], lightframecount,
|
||||||
mark_surface_lights);
|
mark_surface_lights);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
mark_surface_lights(light, bit, node, r_dlightframecount);
|
mark_surface_lights(light, bit, node, lightframecount);
|
||||||
|
|
||||||
R_MarkLights(light, bit, node->children[0], r_dlightframecount,
|
R_MarkLights(light, bit, node->children[0], lightframecount,
|
||||||
mark_surface_lights);
|
mark_surface_lights);
|
||||||
R_MarkLights(light, bit, node->children[1], r_dlightframecount,
|
R_MarkLights(light, bit, node->children[1], lightframecount,
|
||||||
mark_surface_lights);
|
mark_surface_lights);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ R_RenderDlights(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node, int r_dlightframecount)
|
R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node, int lightframecount)
|
||||||
{
|
{
|
||||||
msurface_t *surf;
|
msurface_t *surf;
|
||||||
int i;
|
int i;
|
||||||
|
@ -148,10 +148,10 @@ R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node, int r_dlightframeco
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (surf->dlightframe != r_dlightframecount)
|
if (surf->dlightframe != lightframecount)
|
||||||
{
|
{
|
||||||
surf->dlightbits = 0;
|
surf->dlightbits = 0;
|
||||||
surf->dlightframe = r_dlightframecount;
|
surf->dlightframe = lightframecount;
|
||||||
}
|
}
|
||||||
|
|
||||||
surf->dlightbits |= bit;
|
surf->dlightbits |= bit;
|
||||||
|
|
|
@ -279,7 +279,7 @@ void R_AddSkySurface(msurface_t *fa);
|
||||||
void R_ClearSkyBox(void);
|
void R_ClearSkyBox(void);
|
||||||
void R_DrawSkyBox(void);
|
void R_DrawSkyBox(void);
|
||||||
void R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node,
|
void R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node,
|
||||||
int r_dlightframecount);
|
int lightframecount);
|
||||||
|
|
||||||
void COM_StripExtension(char *in, char *out);
|
void COM_StripExtension(char *in, char *out);
|
||||||
|
|
||||||
|
|
|
@ -213,8 +213,8 @@ extern mleaf_t *Mod_PointInLeaf(const vec3_t p, mnode_t *node);
|
||||||
#define DLIGHT_CUTOFF 64
|
#define DLIGHT_CUTOFF 64
|
||||||
|
|
||||||
typedef void (*marksurfacelights_t)(dlight_t *light, int bit, mnode_t *node,
|
typedef void (*marksurfacelights_t)(dlight_t *light, int bit, mnode_t *node,
|
||||||
int r_dlightframecount);
|
int lightframecount);
|
||||||
extern void R_MarkLights (dlight_t *light, int bit, mnode_t *node, int r_dlightframecount,
|
extern void R_MarkLights(dlight_t *light, int bit, mnode_t *node, int lightframecount,
|
||||||
marksurfacelights_t mark_surface_lights);
|
marksurfacelights_t mark_surface_lights);
|
||||||
extern struct image_s *R_TextureAnimation(const entity_t *currententity,
|
extern struct image_s *R_TextureAnimation(const entity_t *currententity,
|
||||||
const mtexinfo_t *tex);
|
const mtexinfo_t *tex);
|
||||||
|
|
|
@ -30,7 +30,7 @@ DYNAMIC LIGHTS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node, int r_dlightframecount)
|
R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node, int lightframecount)
|
||||||
{
|
{
|
||||||
msurface_t *surf;
|
msurface_t *surf;
|
||||||
int i;
|
int i;
|
||||||
|
@ -39,10 +39,10 @@ R_MarkSurfaceLights(dlight_t *light, int bit, mnode_t *node, int r_dlightframeco
|
||||||
surf = r_worldmodel->surfaces + node->firstsurface;
|
surf = r_worldmodel->surfaces + node->firstsurface;
|
||||||
for (i = 0; i < node->numsurfaces; i++, surf++)
|
for (i = 0; i < node->numsurfaces; i++, surf++)
|
||||||
{
|
{
|
||||||
if (surf->dlightframe != r_dlightframecount)
|
if (surf->dlightframe != lightframecount)
|
||||||
{
|
{
|
||||||
surf->dlightbits = 0;
|
surf->dlightbits = 0;
|
||||||
surf->dlightframe = r_dlightframecount;
|
surf->dlightframe = lightframecount;
|
||||||
}
|
}
|
||||||
surf->dlightbits |= bit;
|
surf->dlightbits |= bit;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue