1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $NoKeywords: $
//=============================================================================//
#if !defined( IVIEWRENDER_BEAMS_H )
#define IVIEWRENDER_BEAMS_H
#ifdef _WIN32
#pragma once
#endif
#include "mathlib/vector.h"
// common to server, too
#include "beam_flags.h"
#include "tempentity.h"
extern void SetBeamCreationAllowed( bool state );
extern bool BeamCreationAllowed( void );
//-----------------------------------------------------------------------------
// beam flags
//-----------------------------------------------------------------------------
class C_Beam;
class Beam_t;
//-----------------------------------------------------------------------------
// Purpose: Popcorn trail for Beam Follow rendering...
//-----------------------------------------------------------------------------
struct BeamTrail_t
{
// NOTE: Don't add user defined fields except after these four fields.
BeamTrail_t* next;
float die;
Vector org;
Vector vel;
};
//-----------------------------------------------------------------------------
// Data type for beams.
//-----------------------------------------------------------------------------
struct BeamInfo_t
{
int m_nType;
// Entities
C_BaseEntity* m_pStartEnt;
int m_nStartAttachment;
C_BaseEntity* m_pEndEnt;
int m_nEndAttachment;
// Points
Vector m_vecStart;
Vector m_vecEnd;
int m_nModelIndex;
const char *m_pszModelName;
int m_nHaloIndex;
const char *m_pszHaloName;
float m_flHaloScale;
float m_flLife;
float m_flWidth;
float m_flEndWidth;
float m_flFadeLength;
float m_flAmplitude;
float m_flBrightness;
float m_flSpeed;
int m_nStartFrame;
float m_flFrameRate;
float m_flRed;
float m_flGreen;
float m_flBlue;
bool m_bRenderable;
int m_nSegments;
int m_nFlags;
// Rings
Vector m_vecCenter;
float m_flStartRadius;
float m_flEndRadius;
BeamInfo_t()
{
m_nType = TE_BEAMPOINTS;
m_nSegments = -1;
m_pszModelName = NULL;
m_pszHaloName = NULL;
m_nModelIndex = -1;
m_nHaloIndex = -1;
m_bRenderable = true;
m_nFlags = 0;
}
};
//-----------------------------------------------------------------------------
// Purpose: Declare client .dll beam entity interface
//-----------------------------------------------------------------------------
abstract_class IViewRenderBeams
{
public:
virtual void InitBeams( void ) = 0;
virtual void ShutdownBeams( void ) = 0;
virtual void ClearBeams( void ) = 0;
// Updates the state of the temp ent beams
virtual void UpdateTempEntBeams() = 0;
virtual void DrawBeam( C_Beam* pbeam, ITraceFilter *pEntityBeamTraceFilter = NULL ) = 0;
virtual void DrawBeam( Beam_t *pbeam ) = 0;
virtual void KillDeadBeams( CBaseEntity *pEnt ) = 0;
// New interfaces!
virtual Beam_t *CreateBeamEnts( BeamInfo_t &beamInfo ) = 0;
virtual Beam_t *CreateBeamEntPoint( BeamInfo_t &beamInfo ) = 0;
virtual Beam_t *CreateBeamPoints( BeamInfo_t &beamInfo ) = 0;
virtual Beam_t *CreateBeamRing( BeamInfo_t &beamInfo ) = 0;
virtual Beam_t *CreateBeamRingPoint( BeamInfo_t &beamInfo ) = 0;
virtual Beam_t *CreateBeamCirclePoints( BeamInfo_t &beamInfo ) = 0;
virtual Beam_t *CreateBeamFollow( BeamInfo_t &beamInfo ) = 0;
virtual void FreeBeam( Beam_t *pBeam ) = 0;
virtual void UpdateBeamInfo( Beam_t *pBeam, BeamInfo_t &beamInfo ) = 0;
// These will go away!
virtual void CreateBeamEnts( int startEnt, int endEnt, int modelIndex, int haloIndex, float haloScale,
float life, float width, float m_nEndWidth, float m_nFadeLength, float amplitude,
float brightness, float speed, int startFrame,
float framerate, float r, float g, float b, int type = -1 ) = 0;
virtual void CreateBeamEntPoint( int nStartEntity, const Vector *pStart, int nEndEntity, const Vector* pEnd,
int modelIndex, int haloIndex, float haloScale,
float life, float width, float m_nEndWidth, float m_nFadeLength, float amplitude,
float brightness, float speed, int startFrame,
float framerate, float r, float g, float b ) = 0;
virtual void CreateBeamPoints( Vector& start, Vector& end, int modelIndex, int haloIndex, float haloScale,
float life, float width, float m_nEndWidth, float m_nFadeLength, float amplitude,
float brightness, float speed, int startFrame,
float framerate, float r, float g, float b ) = 0;
virtual void CreateBeamRing( int startEnt, int endEnt, int modelIndex, int haloIndex, float haloScale,
float life, float width, float m_nEndWidth, float m_nFadeLength, float amplitude,
float brightness, float speed, int startFrame,
float framerate, float r, float g, float b, int flags = 0 ) = 0;
virtual void CreateBeamRingPoint( const Vector& center, float start_radius, float end_radius, int modelIndex, int haloIndex, float haloScale,
float life, float width, float m_nEndWidth, float m_nFadeLength, float amplitude,
float brightness, float speed, int startFrame,
float framerate, float r, float g, float b, int flags = 0 ) = 0;
virtual void CreateBeamCirclePoints( int type, Vector& start, Vector& end,
int modelIndex, int haloIndex, float haloScale, float life, float width,
float m_nEndWidth, float m_nFadeLength, float amplitude, float brightness, float speed,
int startFrame, float framerate, float r, float g, float b ) = 0;
virtual void CreateBeamFollow( int startEnt, int modelIndex, int haloIndex, float haloScale,
float life, float width, float m_nEndWidth, float m_nFadeLength, float r, float g, float b,
float brightness ) = 0;
};
extern IViewRenderBeams *beams;
#endif // VIEWRENDER_BEAMS_H
|