mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2025-01-08 21:25:30 +03:00
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
|
//========= Copyright (C) 2018, CSProMod Team, All rights reserved. =========//
|
||
|
//
|
||
|
// Purpose: provide world light related functions to the client
|
||
|
//
|
||
|
// Written: November 2011
|
||
|
// Author: Saul Rennison
|
||
|
//
|
||
|
//===========================================================================//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "igamesystem.h" // CAutoGameSystem
|
||
|
|
||
|
class Vector;
|
||
|
struct dworldlight_t;
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CWorldLights : public CAutoGameSystem
|
||
|
{
|
||
|
public:
|
||
|
CWorldLights();
|
||
|
~CWorldLights() { Clear(); }
|
||
|
|
||
|
//-------------------------------------------------------------------------
|
||
|
// Find the brightest light source at a point
|
||
|
//-------------------------------------------------------------------------
|
||
|
bool GetBrightestLightSource(const Vector &vecPosition, Vector &vecLightPos, Vector &vecLightBrightness);
|
||
|
|
||
|
// CAutoGameSystem overrides
|
||
|
public:
|
||
|
virtual bool Init();
|
||
|
virtual void LevelInitPreEntity();
|
||
|
virtual void LevelShutdownPostEntity() { Clear(); }
|
||
|
|
||
|
private:
|
||
|
void Clear();
|
||
|
|
||
|
int m_nWorldLights;
|
||
|
dworldlight_t *m_pWorldLights;
|
||
|
};
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Singleton exposure
|
||
|
//-----------------------------------------------------------------------------
|
||
|
extern CWorldLights *g_pWorldLights;
|