mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 15:21:54 +00:00
860617f419
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@376 67975925-1194-0748-b3d5-c16f83f1a3a1
89 lines
2.4 KiB
C++
89 lines
2.4 KiB
C++
/***
|
|
*
|
|
* Copyright (c) 1999, 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 "../demo.h"
|
|
|
|
#include "common/demo_api.h"
|
|
#include "common/const.h"
|
|
#include "common/entity_state.h"
|
|
#include "common/cl_entity.h"
|
|
|
|
#include "pm_shared/pm_defs.h"
|
|
#include "common/event_api.h"
|
|
#include "common/entity_types.h"
|
|
#include "common/r_efx.h"
|
|
|
|
extern BEAM *pBeam;
|
|
extern BEAM *pBeam2;
|
|
void HUD_GetLastOrg( float *org );
|
|
|
|
void UpdateBeams ( void )
|
|
{
|
|
vec3_t forward, vecSrc, vecEnd, origin, angles, right, up;
|
|
vec3_t view_ofs;
|
|
pmtrace_t tr;
|
|
cl_entity_t *pthisplayer = gEngfuncs.GetLocalPlayer();
|
|
int idx = pthisplayer->index;
|
|
|
|
// Get our exact viewangles from engine
|
|
gEngfuncs.GetViewAngles( (float *)angles );
|
|
|
|
// Determine our last predicted origin
|
|
HUD_GetLastOrg( (float *)&origin );
|
|
|
|
AngleVectors( angles, forward, right, up );
|
|
|
|
VectorCopy( origin, vecSrc );
|
|
VectorMA( vecSrc, 2048, forward, vecEnd );
|
|
|
|
gEngfuncs.pEventAPI->EV_SetUpPlayerPrediction( false, true );
|
|
|
|
// Store off the old count
|
|
gEngfuncs.pEventAPI->EV_PushPMStates();
|
|
|
|
// Now add in all of the players.
|
|
gEngfuncs.pEventAPI->EV_SetSolidPlayers ( idx - 1 );
|
|
|
|
gEngfuncs.pEventAPI->EV_SetTraceHull( 2 );
|
|
gEngfuncs.pEventAPI->EV_PlayerTrace( vecSrc, vecEnd, PM_STUDIO_BOX, -1, &tr );
|
|
|
|
gEngfuncs.pEventAPI->EV_PopPMStates();
|
|
|
|
if ( pBeam )
|
|
{
|
|
pBeam->target = tr.endpos;
|
|
pBeam->die = gEngfuncs.GetClientTime() + 0.1; // We keep it alive just a little bit forward in the future, just in case.
|
|
}
|
|
|
|
if ( pBeam2 )
|
|
{
|
|
pBeam2->target = tr.endpos;
|
|
pBeam2->die = gEngfuncs.GetClientTime() + 0.1; // We keep it alive just a little bit forward in the future, just in case.
|
|
}
|
|
}
|
|
|
|
/*
|
|
=====================
|
|
Game_AddObjects
|
|
|
|
Add game specific, client-side objects here
|
|
=====================
|
|
*/
|
|
void Game_AddObjects( void )
|
|
{
|
|
if ( pBeam && pBeam2 )
|
|
UpdateBeams();
|
|
}
|