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.
52 lines
1.7 KiB
52 lines
1.7 KiB
/*** |
|
* |
|
* Copyright (c) 1996-2002, Valve LLC. All rights reserved. |
|
* |
|
* This product contains software technology licensed from Id |
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc. |
|
* All Rights Reserved. |
|
* |
|
* Use, distribution, and modification of this source code and/or resulting |
|
* object code is restricted to non-commercial enhancements to products from |
|
* Valve LLC. All other use, distribution, or modification is prohibited |
|
* without written permission from Valve LLC. |
|
* |
|
****/ |
|
|
|
#include "../hud.h" |
|
#include "../cl_util.h" |
|
#include "event_api.h" |
|
|
|
extern "C" |
|
{ |
|
// HLDM |
|
//void EV_FireGlock1( struct event_args_s *args ); |
|
//void EV_FireGlock2( struct event_args_s *args ); |
|
void EV_FireShotGunSingle( struct event_args_s *args ); |
|
|
|
void EV_TrainPitchAdjust( struct event_args_s *args ); |
|
|
|
void EV_SpinXS( struct event_args_s *args ); |
|
} |
|
|
|
/* |
|
====================== |
|
Game_HookEvents |
|
|
|
Associate script file name with callback functions. Callback's must be extern "C" so |
|
the engine doesn't get confused about name mangling stuff. Note that the format is |
|
always the same. Of course, a clever mod team could actually embed parameters, behavior |
|
into the actual .sc files and create a .sc file parser and hook their functionality through |
|
that.. i.e., a scripting system. |
|
|
|
That was what we were going to do, but we ran out of time...oh well. |
|
====================== |
|
*/ |
|
void Game_HookEvents( void ) |
|
{ |
|
// gEngfuncs.pfnHookEvent( "events/glock1.sc", EV_FireGlock1 ); |
|
// gEngfuncs.pfnHookEvent( "events/glock2.sc", EV_FireGlock2 ); |
|
gEngfuncs.pfnHookEvent( "events/shotgun1.sc", EV_FireShotGunSingle ); |
|
gEngfuncs.pfnHookEvent( "events/xsspin.sc", EV_SpinXS ); |
|
gEngfuncs.pfnHookEvent( "events/train.sc", EV_TrainPitchAdjust ); |
|
}
|
|
|