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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Siege Tower Vehicle
//
//=============================================================================//
#include "cbase.h"
#include "tf_vehicle_siege_tower.h"
#include "engine/IEngineSound.h"
#include "VGuiScreen.h"
#include "ammodef.h"
#include "in_buttons.h"
#define SIEGE_TOWER_MINS Vector(-30, -50, -10)
#define SIEGE_TOWER_MAXS Vector( 30, 50, 55)
#define SIEGE_TOWER_MODEL "models/objects/vehicle_siege_tower.mdl"
#define SIEGE_TOWER_LADDER_MODEL "models/objects/vehicle_siege_ladder.mdl"
#define SIEGE_TOWER_PLATFORM_MODEL "models/objects/vehicle_siege_plat.mdl"
IMPLEMENT_SERVERCLASS_ST( CVehicleSiegeTower, DT_VehicleSiegeTower )
END_SEND_TABLE();
LINK_ENTITY_TO_CLASS( vehicle_siege_tower, CVehicleSiegeTower );
PRECACHE_REGISTER( vehicle_siege_tower );
IMPLEMENT_SERVERCLASS_ST( CObjectSiegeLadder, DT_ObjectSiegeLadder )
END_SEND_TABLE();
LINK_ENTITY_TO_CLASS( obj_siege_ladder, CObjectSiegeLadder );
PRECACHE_REGISTER( obj_siege_ladder );
IMPLEMENT_SERVERCLASS_ST( CObjectSiegePlatform, DT_ObjectSiegePlatform )
END_SEND_TABLE();
LINK_ENTITY_TO_CLASS( obj_siege_platform, CObjectSiegePlatform );
PRECACHE_REGISTER( obj_siege_platform );
// CVars
ConVar vehicle_siege_tower_health( "vehicle_siege_tower_health","600", FCVAR_NONE, "Siege tower health" );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CVehicleSiegeTower::CVehicleSiegeTower()
{
m_hLadder = NULL;
m_hPlatform = NULL;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::Precache()
{
PrecacheModel( SIEGE_TOWER_MODEL );
PrecacheVGuiScreen( "screen_vehicle_siege_tower" );
PrecacheVGuiScreen( "screen_vulnerable_point" );
BaseClass::Precache();
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::Spawn()
{
SetModel( SIEGE_TOWER_MODEL );
// This size is used for placement only...
UTIL_SetSize( this, SIEGE_TOWER_MINS, SIEGE_TOWER_MAXS );
m_takedamage = DAMAGE_YES;
m_iHealth = vehicle_siege_tower_health.GetInt();
SetType( OBJ_SIEGE_TOWER );
SetMaxPassengerCount( 4 );
BaseClass::Spawn();
}
//-----------------------------------------------------------------------------
// Purpose: Gets info about the control panels
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::GetControlPanelInfo( int nPanelIndex, const char *&pPanelName )
{
//pPanelName = "screen_vehicle_siege_tower";
pPanelName = "screen_vulnerable_point";
}
//-----------------------------------------------------------------------------
// Here's where we deal with weapons, ladders, etc.
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::OnItemPostFrame( CBaseTFPlayer *pDriver )
{
// I can't do anything if I'm not active
if ( !ShouldBeActive() )
return;
if ( GetPassengerRole( pDriver ) != VEHICLE_ROLE_DRIVER )
return;
if ( !IsDeployed() && ( pDriver->m_afButtonPressed & IN_ATTACK ) )
{
InternalDeploy();
}
else if ( IsDeployed() && ( pDriver->m_afButtonPressed & IN_ATTACK ) )
{
InternalUnDeploy();
}
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::InternalDeploy( void )
{
// Deploy
if ( !Deploy() )
return;
InputTurnOff( inputdata_t() );
// Create the ladder.
Vector vecOrigin;
QAngle vecAngle;
GetAttachment( "ladder", vecOrigin, vecAngle );
CreateLadder( vecOrigin, vecAngle );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::InternalUnDeploy( void )
{
// Undeploy
UnDeploy();
InputTurnOn( inputdata_t() );
// Destory the ladder.
DestroyLadder();
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::CreateLadder( const Vector &vecOrigin, const QAngle &vecAngles )
{
// NOTE: This ladder and platform code is a total hack to test vehicles with. This
// is not the correct way to handle this problem at all.
m_hLadder = CObjectSiegeLadder::Create( vecOrigin, vecAngles, this );
m_hPlatform = CObjectSiegePlatform::Create( vecOrigin, vecAngles, this );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CVehicleSiegeTower::DestroyLadder( void )
{
if ( m_hLadder.Get() )
{
UTIL_Remove( m_hLadder );
m_hLadder = NULL;
}
if ( m_hPlatform.Get() )
{
UTIL_Remove( m_hPlatform );
m_hPlatform = NULL;
}
}
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
void CVehicleSiegeTower::Killed( void )
{
DestroyLadder();
BaseClass::Killed();
}
//==============================================================================
//
// Object Siege Ladder
//
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
CObjectSiegeLadder::CObjectSiegeLadder()
{
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CObjectSiegeLadder *CObjectSiegeLadder::Create( const Vector &vOrigin, const QAngle &vAngles, CBaseEntity *pParent )
{
CObjectSiegeLadder *pLadder = static_cast<CObjectSiegeLadder*>( CBaseObject::Create( "obj_siege_ladder", vOrigin, vAngles ) );
if ( pLadder )
{
pLadder->m_hTower = pParent;
}
return pLadder;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CObjectSiegeLadder::Spawn()
{
Precache();
SetModel( SIEGE_TOWER_LADDER_MODEL );
SetSolid( SOLID_VPHYSICS );
m_takedamage = DAMAGE_NO;
BaseClass::Spawn();
CollisionProp()->SetSurroundingBoundsType( USE_BEST_COLLISION_BOUNDS );
IPhysicsObject *pPhysics = VPhysicsInitStatic();
if ( pPhysics )
{
pPhysics->EnableMotion( false );
}
SetCollisionGroup( TFCOLLISION_GROUP_OBJECT_SOLIDTOPLAYERMOVEMENT );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CObjectSiegeLadder::Precache()
{
PrecacheModel( SIEGE_TOWER_LADDER_MODEL );
}
//-----------------------------------------------------------------------------
// Purpose: Pass all damage back to the siege tower
//-----------------------------------------------------------------------------
int CObjectSiegeLadder::OnTakeDamage( const CTakeDamageInfo &info )
{
return m_hTower->OnTakeDamage( info );
}
//==============================================================================
//
// Object Siege Platform
//
//------------------------------------------------------------------------------
// Purpose:
//------------------------------------------------------------------------------
CObjectSiegePlatform::CObjectSiegePlatform()
{
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CObjectSiegePlatform *CObjectSiegePlatform::Create( const Vector &vOrigin, const QAngle &vAngles, CBaseEntity *pParent )
{
CObjectSiegePlatform *pPlatform = static_cast<CObjectSiegePlatform*>( CBaseObject::Create( "obj_siege_platform", vOrigin, vAngles ) );
if ( pPlatform )
{
pPlatform->m_hTower = pParent;
}
return pPlatform;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CObjectSiegePlatform::Spawn()
{
Precache();
SetModel( SIEGE_TOWER_PLATFORM_MODEL );
SetSolid( SOLID_VPHYSICS );
m_takedamage = DAMAGE_NO;
BaseClass::Spawn();
CollisionProp()->SetSurroundingBoundsType( USE_BEST_COLLISION_BOUNDS );
IPhysicsObject *pPhysics = VPhysicsInitStatic();
if ( pPhysics )
{
pPhysics->EnableMotion( false );
}
SetCollisionGroup( TFCOLLISION_GROUP_OBJECT_SOLIDTOPLAYERMOVEMENT );
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CObjectSiegePlatform::Precache()
{
PrecacheModel( SIEGE_TOWER_PLATFORM_MODEL );
}
//-----------------------------------------------------------------------------
// Purpose: Pass all damage back to the siege tower
//-----------------------------------------------------------------------------
int CObjectSiegePlatform::OnTakeDamage( const CTakeDamageInfo &info )
{
return m_hTower->OnTakeDamage( info );
}
|