You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef GAME_EVENT_LISTENER_H
|
||
|
#define GAME_EVENT_LISTENER_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "igameevents.h"
|
||
|
extern IGameEventManager2 *gameeventmanager;
|
||
|
|
||
|
// A safer method than inheriting straight from IGameEventListener2.
|
||
|
// Avoids requiring the user to remove themselves as listeners in
|
||
|
// their deconstructor, and sets the serverside variable based on
|
||
|
// our dll location.
|
||
|
class CGameEventListener : public IGameEventListener2
|
||
|
{
|
||
|
public:
|
||
|
CGameEventListener() : m_bRegisteredForEvents(false)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
~CGameEventListener()
|
||
|
{
|
||
|
StopListeningForAllEvents();
|
||
|
}
|
||
|
|
||
|
void ListenForGameEvent( const char *name )
|
||
|
{
|
||
|
m_bRegisteredForEvents = true;
|
||
|
|
||
|
#ifdef CLIENT_DLL
|
||
|
bool bServerSide = false;
|
||
|
#else
|
||
|
bool bServerSide = true;
|
||
|
#endif
|
||
|
if ( gameeventmanager )
|
||
|
gameeventmanager->AddListener( this, name, bServerSide );
|
||
|
}
|
||
|
|
||
|
void StopListeningForAllEvents()
|
||
|
{
|
||
|
// remove me from list
|
||
|
if ( m_bRegisteredForEvents )
|
||
|
{
|
||
|
if ( gameeventmanager )
|
||
|
gameeventmanager->RemoveListener( this );
|
||
|
m_bRegisteredForEvents = false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Intentionally abstract
|
||
|
virtual void FireGameEvent( IGameEvent *event ) = 0;
|
||
|
|
||
|
private:
|
||
|
|
||
|
// Have we registered for any events?
|
||
|
bool m_bRegisteredForEvents;
|
||
|
};
|
||
|
|
||
|
#endif
|