aboutsummaryrefslogtreecommitdiff
path: root/mp/src/game/server/ai_behavior.h
blob: f88a0c45e20ae3b1c429db03251b38762f3a4d6b (plain) (blame)
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//

#ifndef AI_BEHAVIOR_H
#define AI_BEHAVIOR_H

#include "ai_component.h"
#include "ai_basenpc.h"
#include "ai_default.h"
#include "AI_Criteria.h"
#include "networkvar.h"

#ifdef DEBUG
#pragma warning(push)
#include <typeinfo>
#pragma warning(pop)
#pragma warning(disable:4290)
#endif

#if defined( _WIN32 )
#pragma once
#endif

//-----------------------------------------------------------------------------
// CAI_Behavior...
//
// Purpose:	The core component that defines a behavior in an NPC by selecting
//			schedules and running tasks
//
//			Intended to be used as an organizational tool as well as a way
//			for various NPCs to share behaviors without sharing an inheritance
//			relationship, and without cramming those behaviors into the base
//			NPC class.
//-----------------------------------------------------------------------------


//-----------------------------------------------------------------------------
// Purpose: Base class defines interface to behaviors and provides bridging
//			methods
//-----------------------------------------------------------------------------

class IBehaviorBackBridge;

//-------------------------------------

abstract_class CAI_BehaviorBase : public CAI_Component
{
	DECLARE_CLASS( CAI_BehaviorBase, CAI_Component )
public:
	CAI_BehaviorBase(CAI_BaseNPC *pOuter = NULL)
	 : 	CAI_Component(pOuter),
	 	m_pBackBridge(NULL)
	{
	}

	virtual const char *GetName() = 0;

	virtual bool KeyValue( const char *szKeyName, const char *szValue ) 
	{
		return false;
	}
	
	bool IsRunning()								{ Assert( GetOuter() ); return ( GetOuter()->GetRunningBehavior() == this ); }
	virtual bool CanSelectSchedule()				{ return true; }
	virtual void BeginScheduleSelection() 			{}
	virtual void EndScheduleSelection() 			{}
	
	void SetBackBridge( IBehaviorBackBridge *pBackBridge )
	{
		Assert( m_pBackBridge == NULL || pBackBridge == NULL );
		m_pBackBridge = pBackBridge;
	}

	void BridgePrecache()									{ Precache();		}
	void BridgeSpawn()										{ Spawn();			}
	void BridgeUpdateOnRemove()								{ UpdateOnRemove();	}
	void BridgeEvent_Killed( const CTakeDamageInfo &info )	{ Event_Killed( info );	}
	void BridgeCleanupOnDeath( CBaseEntity *pCulprit, bool bFireDeathOutput )		{ CleanupOnDeath( pCulprit, bFireDeathOutput ); }

	void BridgeOnChangeHintGroup( string_t oldGroup, string_t newGroup ) { 	OnChangeHintGroup( oldGroup, newGroup ); }

	void BridgeGatherConditions()					{ GatherConditions(); }
	void BridgePrescheduleThink()					{ PrescheduleThink(); }
	void BridgeOnScheduleChange()					{ OnScheduleChange(); }
	void BridgeOnStartSchedule( int scheduleType );

	int  BridgeSelectSchedule();
	bool BridgeSelectFailSchedule( int failedSchedule, int failedTask, AI_TaskFailureCode_t taskFailCode, int *pResult );
	bool BridgeStartTask( const Task_t *pTask );
	bool BridgeRunTask( const Task_t *pTask);
	bool BridgeAimGun( void );
	int BridgeTranslateSchedule( int scheduleType );
	bool BridgeGetSchedule( int localScheduleID, CAI_Schedule **ppResult );
	bool BridgeTaskName(int taskID, const char **);
	Activity BridgeNPC_TranslateActivity( Activity activity );
	void BridgeBuildScheduleTestBits()		{ BuildScheduleTestBits(); }
	bool BridgeIsCurTaskContinuousMove( bool *pResult );
	void BridgeOnMovementFailed()					{ OnMovementFailed(); }
	void BridgeOnMovementComplete()					{ OnMovementComplete(); }
	float BridgeGetDefaultNavGoalTolerance();
	bool BridgeFValidateHintType( CAI_Hint *pHint, bool *pResult );
	bool BridgeIsValidEnemy( CBaseEntity *pEnemy );
	CBaseEntity *BridgeBestEnemy();
	bool BridgeIsValidCover( const Vector &vLocation, CAI_Hint const *pHint );
	bool BridgeIsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint );
	float BridgeGetMaxTacticalLateralMovement( void );
	bool BridgeShouldIgnoreSound( CSound *pSound );
	void BridgeOnSeeEntity( CBaseEntity *pEntity );
	void BridgeOnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker );
	bool BridgeIsInterruptable( void );
	bool BridgeIsNavigationUrgent( void );
	bool BridgeShouldPlayerAvoid( void );
	int	 BridgeOnTakeDamage_Alive( const CTakeDamageInfo &info );
	float BridgeGetReasonableFacingDist( void );
	bool BridgeShouldAlwaysThink( bool *pResult );
	void BridgeOnChangeActiveWeapon( CBaseCombatWeapon *pOldWeapon, CBaseCombatWeapon *pNewWeapon );
	void BridgeOnRestore();
	virtual bool BridgeSpeakMapmakerInterruptConcept( string_t iszConcept );
	bool BridgeCanFlinch( void );
	bool BridgeIsCrouching( void );
	bool BridgeIsCrouchedActivity( Activity activity );
	bool BridgeQueryHearSound( CSound *pSound );
	bool BridgeCanRunAScriptedNPCInteraction( bool bForced );
	Activity BridgeGetFlinchActivity( bool bHeavyDamage, bool bGesture );
	bool BridgeOnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult );
	void BridgeModifyOrAppendCriteria( AI_CriteriaSet& criteriaSet );
	void BridgeTeleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity );
	void BridgeHandleAnimEvent( animevent_t *pEvent );

	virtual void GatherConditions();
	virtual void GatherConditionsNotActive() { return; } // Override this and your behavior will call this in place of GatherConditions() when your behavior is NOT the active one.
	virtual void OnUpdateShotRegulator() {}

	virtual CAI_ClassScheduleIdSpace *GetClassScheduleIdSpace();

	virtual int  DrawDebugTextOverlays( int text_offset );

	virtual int	Save( ISave &save );
	virtual int	Restore( IRestore &restore );

	static void SaveBehaviors(ISave &save, CAI_BehaviorBase *pCurrentBehavior, CAI_BehaviorBase **ppBehavior, int nBehaviors );
	static int RestoreBehaviors(IRestore &restore, CAI_BehaviorBase **ppBehavior, int nBehaviors ); // returns index of "current" behavior, or -1

protected:

	int GetNpcState() { return GetOuter()->m_NPCState; }

	virtual void Precache()										{}
	virtual void Spawn()										{}
	virtual void UpdateOnRemove()								{}
	virtual void Event_Killed( const CTakeDamageInfo &info )	{}
	virtual void CleanupOnDeath( CBaseEntity *pCulprit, bool bFireDeathOutput ) {}
	
	virtual void PrescheduleThink();
	virtual void OnScheduleChange();
	virtual void OnStartSchedule( int scheduleType );

	virtual int SelectSchedule();
	virtual int	SelectFailSchedule( int failedSchedule, int failedTask, AI_TaskFailureCode_t taskFailCode );
	virtual void StartTask( const Task_t *pTask );
	virtual void RunTask( const Task_t *pTask );
	virtual void AimGun( void );
	virtual int TranslateSchedule( int scheduleType );
	virtual CAI_Schedule *GetSchedule(int schedule);
	virtual const char *GetSchedulingErrorName();
	virtual void BuildScheduleTestBits() {}
	bool IsCurSchedule( int schedId, bool fIdeal = true );


	CAI_Hint *		GetHintNode()							{ return GetOuter()->GetHintNode(); }
	const CAI_Hint *GetHintNode() const						{ return GetOuter()->GetHintNode(); }
	void			SetHintNode( CAI_Hint *pHintNode )		{ GetOuter()->SetHintNode( pHintNode ); }
	void			ClearHintNode( float reuseDelay = 0.0 )	{ GetOuter()->ClearHintNode( reuseDelay ); }

protected:
	// Used by derived classes to chain a task to a task that might not be the 
	// one they are currently handling:
	void	ChainStartTask( int task, float taskData = 0 );
	void	ChainRunTask( int task, float taskData = 0 );

protected:

	virtual Activity NPC_TranslateActivity( Activity activity );

	virtual bool IsCurTaskContinuousMove();
	virtual void OnMovementFailed() {};
	virtual void OnMovementComplete() {};
	virtual float GetDefaultNavGoalTolerance();
	virtual bool FValidateHintType( CAI_Hint *pHint );

	virtual	bool IsValidEnemy( CBaseEntity *pEnemy );
	virtual CBaseEntity *BestEnemy();
	virtual	bool IsValidCover( const Vector &vLocation, CAI_Hint const *pHint );
	virtual	bool IsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint );
	virtual float GetMaxTacticalLateralMovement( void );
	virtual bool ShouldIgnoreSound( CSound *pSound );
	virtual void OnSeeEntity( CBaseEntity *pEntity );
	virtual void OnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker );
	virtual bool IsInterruptable( void );
	virtual bool IsNavigationUrgent( void );
	virtual int	 OnTakeDamage_Alive( const CTakeDamageInfo &info );
	virtual float GetReasonableFacingDist( void );
	virtual bool ShouldPlayerAvoid( void );
	virtual bool CanFlinch( void );
	virtual bool IsCrouching( void );
	virtual bool IsCrouchedActivity( Activity activity );
	virtual bool QueryHearSound( CSound *pSound );
	virtual bool CanRunAScriptedNPCInteraction( bool bForced );
	virtual Activity GetFlinchActivity( bool bHeavyDamage, bool bGesture );
	virtual bool OnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult );
	virtual void ModifyOrAppendCriteria( AI_CriteriaSet& criteriaSet );
	virtual void Teleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity );
	virtual void HandleAnimEvent( animevent_t *pEvent );

	virtual bool ShouldAlwaysThink();

	virtual void OnChangeActiveWeapon( CBaseCombatWeapon *pOldWeapon, CBaseCombatWeapon *pNewWeapon ) {};
	virtual bool SpeakMapmakerInterruptConcept( string_t iszConcept ) { return false; };
	
	virtual void OnRestore() {};
	
	bool NotifyChangeBehaviorStatus( bool fCanFinishSchedule = false );

	bool HaveSequenceForActivity( Activity activity )		{ return GetOuter()->HaveSequenceForActivity( activity ); }
	
	//---------------------------------

	string_t			GetHintGroup()			{ return GetOuter()->GetHintGroup();	}
	void				ClearHintGroup()			{ GetOuter()->ClearHintGroup();			}
	void				SetHintGroup( string_t name )	{ GetOuter()->SetHintGroup( name );		}

	virtual void		OnChangeHintGroup( string_t oldGroup, string_t newGroup ) {}

	//
	// These allow derived classes to implement custom schedules
	//
	static CAI_GlobalScheduleNamespace *GetSchedulingSymbols()		{ return CAI_BaseNPC::GetSchedulingSymbols(); }
	static bool				LoadSchedules()							{ return true; }
	virtual bool			IsBehaviorSchedule( int scheduleType )	{ return false; }

	CAI_Navigator *			GetNavigator() 							{ return GetOuter()->GetNavigator(); 		}
	CAI_Motor *				GetMotor() 								{ return GetOuter()->GetMotor(); 			}
	CAI_TacticalServices *	GetTacticalServices()					{ return GetOuter()->GetTacticalServices();	}

	bool 				 m_fOverrode;
	IBehaviorBackBridge *m_pBackBridge;

	DECLARE_DATADESC();
};

//-----------------------------------------------------------------------------
// Purpose: Template provides provides back bridge to owning class and 
//			establishes namespace settings
//-----------------------------------------------------------------------------

template <class NPC_CLASS = CAI_BaseNPC, const int ID_SPACE_OFFSET = 100000>
class CAI_Behavior : public CAI_ComponentWithOuter<NPC_CLASS, CAI_BehaviorBase>
{
public:
	DECLARE_CLASS_NOFRIEND( CAI_Behavior, NPC_CLASS );
	
	enum
	{
		NEXT_TASK 			= ID_SPACE_OFFSET,
		NEXT_SCHEDULE 		= ID_SPACE_OFFSET,
		NEXT_CONDITION 		= ID_SPACE_OFFSET
	};

	void SetCondition( int condition )
	{
		if ( condition >= ID_SPACE_OFFSET && condition < ID_SPACE_OFFSET + 10000 ) // it's local to us
			condition = GetClassScheduleIdSpace()->ConditionLocalToGlobal( condition );
		this->GetOuter()->SetCondition( condition );
	}

	bool HasCondition( int condition )
	{
		if ( condition >= ID_SPACE_OFFSET && condition < ID_SPACE_OFFSET + 10000 ) // it's local to us
			condition = GetClassScheduleIdSpace()->ConditionLocalToGlobal( condition );
		return this->GetOuter()->HasCondition( condition );
	}

	bool HasInterruptCondition( int condition )
	{
		if ( condition >= ID_SPACE_OFFSET && condition < ID_SPACE_OFFSET + 10000 ) // it's local to us
			condition = GetClassScheduleIdSpace()->ConditionLocalToGlobal( condition );
		return this->GetOuter()->HasInterruptCondition( condition );
	}

	void ClearCondition( int condition )
	{
		if ( condition >= ID_SPACE_OFFSET && condition < ID_SPACE_OFFSET + 10000 ) // it's local to us
			condition = GetClassScheduleIdSpace()->ConditionLocalToGlobal( condition );
		this->GetOuter()->ClearCondition( condition );
	}

protected:
	CAI_Behavior(NPC_CLASS *pOuter = NULL)
	 : CAI_ComponentWithOuter<NPC_CLASS, CAI_BehaviorBase>(pOuter)
	{
	}

	static CAI_GlobalScheduleNamespace *GetSchedulingSymbols()
	{
		return NPC_CLASS::GetSchedulingSymbols();
	}
	virtual CAI_ClassScheduleIdSpace *GetClassScheduleIdSpace()
	{
		return this->GetOuter()->GetClassScheduleIdSpace();
	}

	static CAI_ClassScheduleIdSpace &AccessClassScheduleIdSpaceDirect()
	{
		return NPC_CLASS::AccessClassScheduleIdSpaceDirect();
	}

private:
	virtual bool IsBehaviorSchedule( int scheduleType ) { return ( scheduleType >= ID_SPACE_OFFSET && scheduleType < ID_SPACE_OFFSET + 10000 ); }
};


//-----------------------------------------------------------------------------
// Purpose: Some bridges a little more complicated to allow behavior to see 
//			what base class would do or control order in which it's donw
//-----------------------------------------------------------------------------

abstract_class IBehaviorBackBridge
{
public:
	virtual void 		 BackBridge_GatherConditions() = 0;
	virtual int 		 BackBridge_SelectSchedule() = 0;
	virtual int 		 BackBridge_TranslateSchedule( int scheduleType ) = 0;
	virtual Activity 	 BackBridge_NPC_TranslateActivity( Activity activity ) = 0;
	virtual bool		 BackBridge_IsValidEnemy(CBaseEntity *pEnemy) = 0;
	virtual CBaseEntity* BackBridge_BestEnemy(void) = 0;
	virtual bool		 BackBridge_IsValidCover( const Vector &vLocation, CAI_Hint const *pHint ) = 0;
	virtual bool		 BackBridge_IsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint ) = 0;
	virtual float		 BackBridge_GetMaxTacticalLateralMovement( void ) = 0;
	virtual bool		 BackBridge_ShouldIgnoreSound( CSound *pSound ) = 0;
	virtual void		 BackBridge_OnSeeEntity( CBaseEntity *pEntity ) = 0;
	virtual void		 BackBridge_OnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker ) = 0;
	virtual bool		 BackBridge_IsInterruptable( void ) = 0;
	virtual bool		 BackBridge_IsNavigationUrgent( void ) = 0;
	virtual bool		 BackBridge_ShouldPlayerAvoid( void ) = 0;
	virtual int			 BackBridge_OnTakeDamage_Alive( const CTakeDamageInfo &info ) = 0;
	virtual float		 BackBridge_GetDefaultNavGoalTolerance() = 0;
	virtual float		 BackBridge_GetReasonableFacingDist( void ) = 0;
	virtual bool		 BackBridge_CanFlinch( void ) = 0;
	virtual bool		 BackBridge_IsCrouching( void ) = 0;
	virtual bool		 BackBridge_IsCrouchedActivity( Activity activity ) = 0;
	virtual bool		 BackBridge_QueryHearSound( CSound *pSound ) = 0;
	virtual bool		 BackBridge_CanRunAScriptedNPCInteraction( bool bForced ) = 0;
	virtual Activity	 BackBridge_GetFlinchActivity( bool bHeavyDamage, bool bGesture ) = 0;
	virtual bool		 BackBridge_OnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult ) = 0;
	virtual void		 BackBridge_ModifyOrAppendCriteria( AI_CriteriaSet& criteriaSet ) = 0;
	virtual void		 BackBridge_Teleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity ) = 0;

	virtual void		 BackBridge_HandleAnimEvent( animevent_t *pEvent ) = 0;

//-------------------------------------

};

//-----------------------------------------------------------------------------
// Purpose: The common instantiation of the above template
//-----------------------------------------------------------------------------

typedef CAI_Behavior<> CAI_SimpleBehavior;

//-----------------------------------------------------------------------------
// Purpose: Base class for AIs that want to act as a host for CAI_Behaviors
//			NPCs aren't required to use this, but probably want to.
//-----------------------------------------------------------------------------

template <class BASE_NPC>
class CAI_BehaviorHost : public BASE_NPC,
						 private IBehaviorBackBridge
{
public:
	DECLARE_CLASS_NOFRIEND( CAI_BehaviorHost, BASE_NPC );

	CAI_BehaviorHost()
	  : m_pCurBehavior(NULL)
	{
#ifdef DEBUG
  		m_fDebugInCreateBehaviors = false;
#endif
	}

	void CleanupOnDeath( CBaseEntity *pCulprit = NULL, bool bFireDeathOutput = true );

	virtual int		Save( ISave &save );
	virtual int		Restore( IRestore &restore );
	virtual bool 	CreateComponents();

	// Automatically called during entity construction, derived class calls AddBehavior()
	virtual bool 	CreateBehaviors()	{ return true; }
	
	// forces movement and sets a new schedule
	virtual bool	ScheduledMoveToGoalEntity( int scheduleType, CBaseEntity *pGoalEntity, Activity movementActivity );
	virtual bool	ScheduledFollowPath( int scheduleType, CBaseEntity *pPathStart, Activity movementActivity );
	virtual void	ForceSelectedGo(CBaseEntity *pPlayer, const Vector &targetPos, const Vector &traceDir, bool bRun);
	virtual void	ForceSelectedGoRandom(void);

	// Bridges
	void			Precache();
	void			NPCInit();
	void			UpdateOnRemove();
	void			Event_Killed( const CTakeDamageInfo &info );
	void 			GatherConditions();
	void 			PrescheduleThink();
	int 			SelectSchedule();
	void			KeepRunningBehavior();
	int				SelectFailSchedule( int failedSchedule, int failedTask, AI_TaskFailureCode_t taskFailCode );
	void 			OnScheduleChange();
	void			OnStartSchedule( int scheduleType );
	int 			TranslateSchedule( int scheduleType );
	void 			StartTask( const Task_t *pTask );
	void 			RunTask( const Task_t *pTask );
	void			AimGun( void );
	CAI_Schedule *	GetSchedule(int localScheduleID);
	const char *	TaskName(int taskID);
	void			BuildScheduleTestBits();

	void			OnChangeHintGroup( string_t oldGroup, string_t newGroup );
	
	Activity 		NPC_TranslateActivity( Activity activity );

	bool			IsCurTaskContinuousMove();
	void			OnMovementFailed();
	void			OnMovementComplete();
	bool			FValidateHintType( CAI_Hint *pHint );
	float			GetDefaultNavGoalTolerance();

	bool			IsValidEnemy(CBaseEntity *pEnemy);
	CBaseEntity*	BestEnemy(void);
	bool			IsValidCover( const Vector &vLocation, CAI_Hint const *pHint );
	bool			IsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint );
	float			GetMaxTacticalLateralMovement( void );
	bool			ShouldIgnoreSound( CSound *pSound );
	void			OnSeeEntity( CBaseEntity *pEntity );
	void			OnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker );
	bool			IsInterruptable( void );
	bool			IsNavigationUrgent( void );
	bool			ShouldPlayerAvoid( void );
	int				OnTakeDamage_Alive( const CTakeDamageInfo &info );
	float			GetReasonableFacingDist( void );
	bool			CanFlinch( void );
	bool			IsCrouching( void );
	bool			IsCrouchedActivity( Activity activity );
	bool			QueryHearSound( CSound *pSound );
	bool			CanRunAScriptedNPCInteraction( bool bForced );
	Activity		GetFlinchActivity( bool bHeavyDamage, bool bGesture );
	bool			OnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult );
	void			HandleAnimEvent( animevent_t *pEvent );
	
	bool			ShouldAlwaysThink();

	void			OnChangeActiveWeapon( CBaseCombatWeapon *pOldWeapon, CBaseCombatWeapon *pNewWeapon );
	virtual bool	SpeakMapmakerInterruptConcept( string_t iszConcept );

	void			OnRestore();

	void			ModifyOrAppendCriteria( AI_CriteriaSet& set );
	void			Teleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity );

	//---------------------------------

	virtual bool	OnBehaviorChangeStatus( CAI_BehaviorBase *pBehavior, bool fCanFinishSchedule );
	virtual void	OnChangeRunningBehavior( CAI_BehaviorBase *pOldBehavior,  CAI_BehaviorBase *pNewBehavior );

protected:
	void			AddBehavior( CAI_BehaviorBase *pBehavior );
	
	bool			BehaviorSelectSchedule();
	virtual bool	ShouldBehaviorSelectSchedule( CAI_BehaviorBase *pBehavior ) { return true; }

	bool 			IsRunningBehavior() const;
	CAI_BehaviorBase *GetRunningBehavior();
	CAI_BehaviorBase *DeferSchedulingToBehavior( CAI_BehaviorBase *pNewBehavior );
	void			ChangeBehaviorTo( CAI_BehaviorBase *pNewBehavior );

	CAI_Schedule *	GetNewSchedule();
	CAI_Schedule *	GetFailSchedule();
private:
	void 			BackBridge_GatherConditions();
	int				BackBridge_SelectSchedule();
	int				BackBridge_TranslateSchedule( int scheduleType );
	Activity		BackBridge_NPC_TranslateActivity( Activity activity );
	bool			BackBridge_IsValidEnemy(CBaseEntity *pEnemy);
	CBaseEntity*	BackBridge_BestEnemy(void);
	bool			BackBridge_IsValidCover( const Vector &vLocation, CAI_Hint const *pHint );
	bool			BackBridge_IsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint );
	float			BackBridge_GetMaxTacticalLateralMovement( void );
	bool			BackBridge_ShouldIgnoreSound( CSound *pSound );
	void			BackBridge_OnSeeEntity( CBaseEntity *pEntity );
	void			BackBridge_OnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker );
	bool			BackBridge_IsInterruptable( void );
	bool			BackBridge_IsNavigationUrgent( void );
	bool			BackBridge_ShouldPlayerAvoid( void );
	int				BackBridge_OnTakeDamage_Alive( const CTakeDamageInfo &info );
	float			BackBridge_GetDefaultNavGoalTolerance();
	float			BackBridge_GetReasonableFacingDist( void );
	bool			BackBridge_CanFlinch( void );
	bool			BackBridge_IsCrouching( void );
	bool			BackBridge_IsCrouchedActivity( Activity activity );
	bool			BackBridge_QueryHearSound( CSound *pSound );
	bool			BackBridge_CanRunAScriptedNPCInteraction( bool bForced );
	Activity		BackBridge_GetFlinchActivity( bool bHeavyDamage, bool bGesture );
	bool			BackBridge_OnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult );
	void			BackBridge_ModifyOrAppendCriteria( AI_CriteriaSet& criteriaSet );
	void			BackBridge_Teleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity );

	void			BackBridge_HandleAnimEvent( animevent_t *pEvent );

	CAI_BehaviorBase **AccessBehaviors();
	int				NumBehaviors();

	CAI_BehaviorBase *			   m_pCurBehavior;
	CUtlVector<CAI_BehaviorBase *> m_Behaviors;

	bool			m_bCalledBehaviorSelectSchedule;
	
#ifdef DEBUG
	bool 			m_fDebugInCreateBehaviors;
#endif
	
};

//-----------------------------------------------------------------------------

// The first frame a behavior begins schedule selection, it won't have had it's GatherConditions()
// called. To fix this, BeginScheduleSelection() manually calls the new behavior's GatherConditions(),
// but sets this global so that the baseclass GatherConditions() isn't called as well.
extern bool g_bBehaviorHost_PreventBaseClassGatherConditions;

//-----------------------------------------------------------------------------

inline void CAI_BehaviorBase::BridgeOnStartSchedule( int scheduleType )
{
	int localId = AI_IdIsGlobal( scheduleType ) ? GetClassScheduleIdSpace()->ScheduleGlobalToLocal( scheduleType ) : scheduleType;
	OnStartSchedule( localId );
}

//-------------------------------------

inline int CAI_BehaviorBase::BridgeSelectSchedule()
{
	int result = SelectSchedule();

	if ( IsBehaviorSchedule( result ) )
		return GetClassScheduleIdSpace()->ScheduleLocalToGlobal( result );

	return result;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeSelectFailSchedule( int failedSchedule, int failedTask, AI_TaskFailureCode_t taskFailCode, int *pResult )
{
	m_fOverrode = true;
	int result = SelectFailSchedule( failedSchedule, failedTask, taskFailCode );
	if ( m_fOverrode )
	{
		if ( result != SCHED_NONE )
		{
			if ( IsBehaviorSchedule( result ) )
				*pResult = GetClassScheduleIdSpace()->ScheduleLocalToGlobal( result );
			else
				*pResult = result;
			return true;
		}
		Warning( "An AI behavior is in control but has no recommended schedule\n" );
	}
	return false;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeStartTask( const Task_t *pTask )
{
	m_fOverrode = true;
	StartTask( pTask );
	return m_fOverrode;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeRunTask( const Task_t *pTask)
{
	m_fOverrode = true;
	RunTask( pTask );
	return m_fOverrode;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeAimGun( void )
{
	m_fOverrode = true;
	AimGun();
	return m_fOverrode;
}

//-------------------------------------

inline void CAI_BehaviorBase::ChainStartTask( int task, float taskData )
{
	Task_t tempTask = { task, taskData }; 

	bool fPrevOverride = m_fOverrode;
	GetOuter()->StartTask( (const Task_t *)&tempTask );
	m_fOverrode = fPrevOverride;;
}

//-------------------------------------

inline void CAI_BehaviorBase::ChainRunTask( int task, float taskData )
{ 
	Task_t tempTask = { task, taskData }; 
	bool fPrevOverride = m_fOverrode;
	GetOuter()->RunTask( (const Task_t *)	&tempTask );
	m_fOverrode = fPrevOverride;;
}

//-------------------------------------

inline int CAI_BehaviorBase::BridgeTranslateSchedule( int scheduleType )
{
	int localId = AI_IdIsGlobal( scheduleType ) ? GetClassScheduleIdSpace()->ScheduleGlobalToLocal( scheduleType ) : scheduleType;
	int result = TranslateSchedule( localId );
	
	return result;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeGetSchedule( int localScheduleID, CAI_Schedule **ppResult )
{
	*ppResult = GetSchedule( localScheduleID );
	return (*ppResult != NULL );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeTaskName( int taskID, const char **ppResult )
{
	if ( AI_IdIsLocal( taskID ) )
	{
		*ppResult = GetSchedulingSymbols()->TaskIdToSymbol( GetClassScheduleIdSpace()->TaskLocalToGlobal( taskID ) );
		return (*ppResult != NULL );
	}
	return false;
}

//-------------------------------------

inline Activity CAI_BehaviorBase::BridgeNPC_TranslateActivity( Activity activity )
{
	return NPC_TranslateActivity( activity );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsCurTaskContinuousMove( bool *pResult )
{
	bool fPrevOverride = m_fOverrode;
	m_fOverrode = true;
	*pResult = IsCurTaskContinuousMove();
	bool result = m_fOverrode;
	m_fOverrode = fPrevOverride;
	return result;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeFValidateHintType( CAI_Hint *pHint, bool *pResult )
{
	bool fPrevOverride = m_fOverrode;
	m_fOverrode = true;
	*pResult = FValidateHintType( pHint );
	bool result = m_fOverrode;
	m_fOverrode = fPrevOverride;
	return result;
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsValidEnemy( CBaseEntity *pEnemy )
{
	return IsValidEnemy( pEnemy );
}

//-------------------------------------

inline CBaseEntity *CAI_BehaviorBase::BridgeBestEnemy()
{
	return BestEnemy();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsValidCover( const Vector &vLocation, CAI_Hint const *pHint )
{
	return IsValidCover( vLocation, pHint );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint )
{
	return IsValidShootPosition( vLocation, pNode, pHint );
}

//-------------------------------------

inline float CAI_BehaviorBase::BridgeGetMaxTacticalLateralMovement( void )
{
	return GetMaxTacticalLateralMovement();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeShouldIgnoreSound( CSound *pSound )
{
	return ShouldIgnoreSound( pSound );
}

//-------------------------------------

inline void CAI_BehaviorBase::BridgeOnSeeEntity( CBaseEntity *pEntity )
{
	OnSeeEntity( pEntity );
}

//-------------------------------------

inline void CAI_BehaviorBase::BridgeOnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker )
{
	OnFriendDamaged( pSquadmate, pAttacker );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsInterruptable( void )
{
	return IsInterruptable();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsNavigationUrgent( void )
{
	return IsNavigationUrgent();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeCanFlinch( void )
{
	return CanFlinch();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsCrouching( void )
{
	return IsCrouching();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeIsCrouchedActivity( Activity activity )
{
	return IsCrouchedActivity( activity );
}

inline bool CAI_BehaviorBase::BridgeQueryHearSound( CSound *pSound )
{
	return QueryHearSound( pSound );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeCanRunAScriptedNPCInteraction( bool bForced )
{
	return CanRunAScriptedNPCInteraction( bForced );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeShouldPlayerAvoid( void )
{
	return ShouldPlayerAvoid();
}

//-------------------------------------

inline int CAI_BehaviorBase::BridgeOnTakeDamage_Alive( const CTakeDamageInfo &info )
{
	return OnTakeDamage_Alive( info );
}

//-------------------------------------

inline float CAI_BehaviorBase::BridgeGetReasonableFacingDist( void )
{
	return GetReasonableFacingDist();
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeShouldAlwaysThink( bool *pResult )
{
	bool fPrevOverride = m_fOverrode;
	m_fOverrode = true;
	*pResult = ShouldAlwaysThink();
	bool result = m_fOverrode;
	m_fOverrode = fPrevOverride;
	return result;
}

//-------------------------------------

inline void CAI_BehaviorBase::BridgeOnChangeActiveWeapon( CBaseCombatWeapon *pOldWeapon, CBaseCombatWeapon *pNewWeapon )
{
	OnChangeActiveWeapon( pOldWeapon, pNewWeapon );
}

//-------------------------------------

inline bool CAI_BehaviorBase::BridgeSpeakMapmakerInterruptConcept( string_t iszConcept )
{
	return SpeakMapmakerInterruptConcept( iszConcept );
}

//-------------------------------------

inline void CAI_BehaviorBase::BridgeOnRestore()
{
	OnRestore();
}

//-------------------------------------

inline float CAI_BehaviorBase::BridgeGetDefaultNavGoalTolerance()
{
	return GetDefaultNavGoalTolerance();
}

//-----------------------------------------------------------------------------

inline Activity CAI_BehaviorBase::BridgeGetFlinchActivity( bool bHeavyDamage, bool bGesture )
{
	return GetFlinchActivity( bHeavyDamage, bGesture );
}

//-----------------------------------------------------------------------------

inline bool CAI_BehaviorBase::BridgeOnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult )
{
	return OnCalcBaseMove( pMoveGoal, distClear, pResult );
}

//-----------------------------------------------------------------------------

inline void CAI_BehaviorBase::BridgeModifyOrAppendCriteria( AI_CriteriaSet& criteriaSet )
{
	ModifyOrAppendCriteria( criteriaSet );
}

//-----------------------------------------------------------------------------

inline void CAI_BehaviorBase::BridgeTeleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity )
{
	Teleport( newPosition, newAngles, newVelocity );
}

//-----------------------------------------------------------------------------

inline void CAI_BehaviorBase::BridgeHandleAnimEvent( animevent_t *pEvent )
{
	HandleAnimEvent( pEvent );
}

//-----------------------------------------------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::CleanupOnDeath( CBaseEntity *pCulprit, bool bFireDeathOutput )
{
	DeferSchedulingToBehavior( NULL );
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeCleanupOnDeath( pCulprit, bFireDeathOutput );
	}
	BaseClass::CleanupOnDeath( pCulprit, bFireDeathOutput );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::GatherConditions()					
{ 
	// Iterate over behaviors and call GatherConditionsNotActive() on each behavior
	// not currently active.
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		if( m_Behaviors[i] != m_pCurBehavior )
		{
			m_Behaviors[i]->GatherConditionsNotActive();
		}
	}

	if ( m_pCurBehavior )
		m_pCurBehavior->BridgeGatherConditions(); 
	else
		BaseClass::GatherConditions();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BackBridge_GatherConditions()
{
	if ( g_bBehaviorHost_PreventBaseClassGatherConditions )
		return;

	BaseClass::GatherConditions();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnScheduleChange()
{ 
	if ( m_pCurBehavior )
		m_pCurBehavior->BridgeOnScheduleChange(); 
	BaseClass::OnScheduleChange();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnStartSchedule( int scheduleType )
{
	if ( m_pCurBehavior )
		m_pCurBehavior->BridgeOnStartSchedule( scheduleType ); 
	BaseClass::OnStartSchedule( scheduleType );
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::BackBridge_SelectSchedule() 
{
	return BaseClass::SelectSchedule();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BehaviorSelectSchedule()
{
	for ( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		if ( m_Behaviors[i]->CanSelectSchedule() && ShouldBehaviorSelectSchedule( m_Behaviors[i] ) )
		{
			DeferSchedulingToBehavior( m_Behaviors[i] );
			return true;
		}
	}
	
	DeferSchedulingToBehavior( NULL );
	return false;
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsRunningBehavior() const
{
	return ( m_pCurBehavior != NULL );
}

//-------------------------------------

template <class BASE_NPC>
inline CAI_BehaviorBase *CAI_BehaviorHost<BASE_NPC>::GetRunningBehavior()
{
	return m_pCurBehavior;
}

//-------------------------------------

template <class BASE_NPC>
inline CAI_Schedule *CAI_BehaviorHost<BASE_NPC>::GetNewSchedule()
{
	m_bCalledBehaviorSelectSchedule = false;
	CAI_Schedule *pResult = BaseClass::GetNewSchedule();
	if ( !m_bCalledBehaviorSelectSchedule && m_pCurBehavior )
		DeferSchedulingToBehavior( NULL );
	return pResult;
}

//-------------------------------------

template <class BASE_NPC>
inline CAI_Schedule *CAI_BehaviorHost<BASE_NPC>::GetFailSchedule()
{
	m_bCalledBehaviorSelectSchedule = false;
	CAI_Schedule *pResult = BaseClass::GetFailSchedule();
	if ( !m_bCalledBehaviorSelectSchedule && m_pCurBehavior )
		DeferSchedulingToBehavior( NULL );
	return pResult;
}

//------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::ChangeBehaviorTo( CAI_BehaviorBase *pNewBehavior )
{
	bool change = ( m_pCurBehavior != pNewBehavior );
	CAI_BehaviorBase *pOldBehavior = m_pCurBehavior;
	m_pCurBehavior = pNewBehavior;
	
	if ( change ) 
	{
		if ( m_pCurBehavior )
		{
			m_pCurBehavior->BeginScheduleSelection();

			g_bBehaviorHost_PreventBaseClassGatherConditions = true;
			m_pCurBehavior->GatherConditions();
			g_bBehaviorHost_PreventBaseClassGatherConditions = false;
		}

		if ( pOldBehavior )
		{
			pOldBehavior->EndScheduleSelection();
			this->VacateStrategySlot();
		}

		OnChangeRunningBehavior( pOldBehavior, pNewBehavior );
	}
}

//-------------------------------------

template <class BASE_NPC>
inline CAI_BehaviorBase *CAI_BehaviorHost<BASE_NPC>::DeferSchedulingToBehavior( CAI_BehaviorBase *pNewBehavior )
{
	CAI_BehaviorBase *pOldBehavior = m_pCurBehavior;
	ChangeBehaviorTo( pNewBehavior );
	return pOldBehavior;
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::BackBridge_TranslateSchedule( int scheduleType ) 
{
	return BaseClass::TranslateSchedule( scheduleType );
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::TranslateSchedule( int scheduleType ) 
{
	if ( m_pCurBehavior )
	{
		return m_pCurBehavior->BridgeTranslateSchedule( scheduleType );
	}
	return BaseClass::TranslateSchedule( scheduleType );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::PrescheduleThink()
{
	BaseClass::PrescheduleThink();
	if ( m_pCurBehavior )
		m_pCurBehavior->BridgePrescheduleThink();
}	

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::SelectSchedule()
{
	m_bCalledBehaviorSelectSchedule = true;
	if ( m_pCurBehavior )
	{
		return m_pCurBehavior->BridgeSelectSchedule();
	}

	return BaseClass::SelectSchedule();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::KeepRunningBehavior()
{
	if ( m_pCurBehavior )
		m_bCalledBehaviorSelectSchedule = true;
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::SelectFailSchedule( int failedSchedule, int failedTask, AI_TaskFailureCode_t taskFailCode )
{
	m_bCalledBehaviorSelectSchedule = true;
	int result = 0;
	if ( m_pCurBehavior && m_pCurBehavior->BridgeSelectFailSchedule( failedSchedule, failedTask, taskFailCode, &result ) )
		return result;
	return BaseClass::SelectFailSchedule( failedSchedule, failedTask, taskFailCode );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::StartTask( const Task_t *pTask )
{
	if ( m_pCurBehavior && m_pCurBehavior->BridgeStartTask( pTask ) )
		return;
	BaseClass::StartTask( pTask );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::RunTask( const Task_t *pTask )
{
	if ( m_pCurBehavior && m_pCurBehavior->BridgeRunTask( pTask ) )
		return;
	BaseClass::RunTask( pTask );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::AimGun( void )
{
	if ( m_pCurBehavior && m_pCurBehavior->BridgeAimGun() )
		return;
	BaseClass::AimGun();
}

//-------------------------------------

template <class BASE_NPC>
inline CAI_Schedule *CAI_BehaviorHost<BASE_NPC>::GetSchedule(int localScheduleID)
{
	CAI_Schedule *pResult;
	if ( m_pCurBehavior && m_pCurBehavior->BridgeGetSchedule( localScheduleID, &pResult ) )
		return pResult;
	return BaseClass::GetSchedule( localScheduleID );
}

//-------------------------------------

template <class BASE_NPC>
inline const char *CAI_BehaviorHost<BASE_NPC>::TaskName(int taskID)
{
	const char *pszResult = NULL;
	if ( m_pCurBehavior && m_pCurBehavior->BridgeTaskName( taskID, &pszResult ) )
		return pszResult;
	return BaseClass::TaskName( taskID );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BuildScheduleTestBits()
{
	if ( m_pCurBehavior )
		m_pCurBehavior->BridgeBuildScheduleTestBits(); 
	BaseClass::BuildScheduleTestBits();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnChangeHintGroup( string_t oldGroup, string_t newGroup )
{
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeOnChangeHintGroup( oldGroup, newGroup );
	}
	BaseClass::OnChangeHintGroup( oldGroup, newGroup );
}

//-------------------------------------

template <class BASE_NPC>
inline Activity CAI_BehaviorHost<BASE_NPC>::BackBridge_NPC_TranslateActivity( Activity activity )
{
	return BaseClass::NPC_TranslateActivity( activity );
}

//-------------------------------------

template <class BASE_NPC>
inline Activity CAI_BehaviorHost<BASE_NPC>::NPC_TranslateActivity( Activity activity )
{
	if ( m_pCurBehavior )
	{
		return m_pCurBehavior->BridgeNPC_TranslateActivity( activity );
	}
	return BaseClass::NPC_TranslateActivity( activity );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsCurTaskContinuousMove()
{
	bool result = false;
	if ( m_pCurBehavior && m_pCurBehavior->BridgeIsCurTaskContinuousMove( &result ) )
		return result;
	return BaseClass::IsCurTaskContinuousMove();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnMovementFailed()
{ 
	if ( m_pCurBehavior )
		m_pCurBehavior->BridgeOnMovementFailed(); 
	BaseClass::OnMovementFailed();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnMovementComplete()
{ 
	if ( m_pCurBehavior )
		m_pCurBehavior->BridgeOnMovementComplete(); 
	BaseClass::OnMovementComplete();
}

//-------------------------------------

template <class BASE_NPC>
inline float CAI_BehaviorHost<BASE_NPC>::GetDefaultNavGoalTolerance()
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeGetDefaultNavGoalTolerance();
	return BaseClass::GetDefaultNavGoalTolerance();
}

//-------------------------------------

template <class BASE_NPC>
inline float CAI_BehaviorHost<BASE_NPC>::BackBridge_GetDefaultNavGoalTolerance() 
{
	return BaseClass::GetDefaultNavGoalTolerance();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::FValidateHintType( CAI_Hint *pHint )
{
	bool result = false;
	if ( m_pCurBehavior && m_pCurBehavior->BridgeFValidateHintType( pHint, &result ) )
		return result;
	return BaseClass::FValidateHintType( pHint );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsValidEnemy(CBaseEntity *pEnemy)
{
	return BaseClass::IsValidEnemy( pEnemy );
}

//-------------------------------------

template <class BASE_NPC>
inline CBaseEntity *CAI_BehaviorHost<BASE_NPC>::BackBridge_BestEnemy(void)
{
	return BaseClass::BestEnemy();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsValidCover( const Vector &vLocation, CAI_Hint const *pHint )
{
	return BaseClass::IsValidCover( vLocation, pHint );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint )
{
	return BaseClass::IsValidShootPosition( vLocation, pNode, pHint );
}

//-------------------------------------

template <class BASE_NPC>
inline float CAI_BehaviorHost<BASE_NPC>::BackBridge_GetMaxTacticalLateralMovement( void )
{
	return BaseClass::GetMaxTacticalLateralMovement();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_ShouldIgnoreSound( CSound *pSound )
{
	return BaseClass::ShouldIgnoreSound( pSound );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BackBridge_OnSeeEntity( CBaseEntity *pEntity )
{
	BaseClass::OnSeeEntity( pEntity );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BackBridge_OnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker )
{
	BaseClass::OnFriendDamaged( pSquadmate, pAttacker );
}


//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsInterruptable( void )
{
	return BaseClass::IsInterruptable();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsNavigationUrgent( void )
{
	return BaseClass::IsNavigationUrgent();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_CanFlinch( void )
{
	return BaseClass::CanFlinch();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsCrouching( void )
{
	return BaseClass::IsCrouching();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_IsCrouchedActivity( Activity activity )
{
	return BaseClass::IsCrouchedActivity( activity );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_QueryHearSound( CSound *pSound )
{
	return BaseClass::QueryHearSound( pSound );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_CanRunAScriptedNPCInteraction( bool bForced )
{
	return BaseClass::CanRunAScriptedNPCInteraction( bForced );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_ShouldPlayerAvoid( void )
{
	return BaseClass::ShouldPlayerAvoid();
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::BackBridge_OnTakeDamage_Alive( const CTakeDamageInfo &info )
{
	return BaseClass::OnTakeDamage_Alive( info );
}

//-------------------------------------

template <class BASE_NPC>
inline float CAI_BehaviorHost<BASE_NPC>::BackBridge_GetReasonableFacingDist( void )
{
	return BaseClass::GetReasonableFacingDist();
}

//-------------------------------------

template <class BASE_NPC>
inline Activity CAI_BehaviorHost<BASE_NPC>::BackBridge_GetFlinchActivity( bool bHeavyDamage, bool bGesture )
{
	return BaseClass::GetFlinchActivity( bHeavyDamage, bGesture );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::BackBridge_OnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult )
{
	return BaseClass::OnCalcBaseMove( pMoveGoal, distClear, pResult );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BackBridge_ModifyOrAppendCriteria( AI_CriteriaSet &criteriaSet )
{
	BaseClass::ModifyOrAppendCriteria( criteriaSet );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BackBridge_Teleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity )
{
	BaseClass::Teleport( newPosition, newAngles, newVelocity );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::BackBridge_HandleAnimEvent( animevent_t *pEvent )
{
	BaseClass::HandleAnimEvent( pEvent );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsValidEnemy( CBaseEntity *pEnemy )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsValidEnemy( pEnemy );
	
	return BaseClass::IsValidEnemy( pEnemy );
}

//-------------------------------------

template <class BASE_NPC>
inline CBaseEntity *CAI_BehaviorHost<BASE_NPC>::BestEnemy()
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeBestEnemy();
	
	return BaseClass::BestEnemy();
}
	
//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::ShouldAlwaysThink()
{
	bool result = false;
	if ( m_pCurBehavior && m_pCurBehavior->BridgeShouldAlwaysThink( &result ) )
		return result;
	return BaseClass::ShouldAlwaysThink();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnChangeActiveWeapon( CBaseCombatWeapon *pOldWeapon, CBaseCombatWeapon *pNewWeapon )
{
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeOnChangeActiveWeapon( pOldWeapon, pNewWeapon );
	}
	BaseClass::OnChangeActiveWeapon( pOldWeapon, pNewWeapon );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::SpeakMapmakerInterruptConcept( string_t iszConcept )
{
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		if ( m_Behaviors[i]->BridgeSpeakMapmakerInterruptConcept( iszConcept ) )
			return true;
	}

	return false;
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnRestore()
{
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeOnRestore();
	}
	BaseClass::OnRestore();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsValidCover( const Vector &vLocation, CAI_Hint const *pHint )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsValidCover( vLocation, pHint );
	
	return BaseClass::IsValidCover( vLocation, pHint );
}
	
//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsValidShootPosition( const Vector &vLocation, CAI_Node *pNode, CAI_Hint const *pHint )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsValidShootPosition( vLocation, pNode, pHint );
	
	return BaseClass::IsValidShootPosition( vLocation, pNode, pHint );
}

//-------------------------------------

template <class BASE_NPC>
inline float CAI_BehaviorHost<BASE_NPC>::GetMaxTacticalLateralMovement( void )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeGetMaxTacticalLateralMovement();

	return BaseClass::GetMaxTacticalLateralMovement();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::ShouldIgnoreSound( CSound *pSound )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeShouldIgnoreSound( pSound );
	
	return BaseClass::ShouldIgnoreSound( pSound );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnSeeEntity( CBaseEntity *pEntity )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeOnSeeEntity( pEntity );

	BaseClass::OnSeeEntity( pEntity );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnFriendDamaged( CBaseCombatCharacter *pSquadmate, CBaseEntity *pAttacker )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeOnFriendDamaged( pSquadmate, pAttacker );

	BaseClass::OnFriendDamaged( pSquadmate, pAttacker );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsInterruptable( void )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsInterruptable();
	
	return BaseClass::IsInterruptable();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsNavigationUrgent( void )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsNavigationUrgent();

	return BaseClass::IsNavigationUrgent();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::CanFlinch( void )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeCanFlinch();

	return BaseClass::CanFlinch();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsCrouching( void )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsCrouching();

	return BaseClass::IsCrouching();
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::IsCrouchedActivity( Activity activity )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeIsCrouchedActivity( activity );

	return BaseClass::IsCrouchedActivity( activity );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::QueryHearSound( CSound *pSound )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeQueryHearSound( pSound );

	return BaseClass::QueryHearSound( pSound );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::CanRunAScriptedNPCInteraction( bool bForced )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeCanRunAScriptedNPCInteraction( bForced );

	return BaseClass::CanRunAScriptedNPCInteraction( bForced );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::ShouldPlayerAvoid( void )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeShouldPlayerAvoid();
	
	return BaseClass::ShouldPlayerAvoid();
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::OnTakeDamage_Alive( const CTakeDamageInfo &info )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeOnTakeDamage_Alive( info );
	
	return BaseClass::OnTakeDamage_Alive( info );
}

//-------------------------------------

template <class BASE_NPC>
inline float CAI_BehaviorHost<BASE_NPC>::GetReasonableFacingDist( void )	
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeGetReasonableFacingDist();
	
	return BaseClass::GetReasonableFacingDist();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::Precache()
{
	BaseClass::Precache();
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgePrecache();
	}
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::ScheduledMoveToGoalEntity( int scheduleType, CBaseEntity *pGoalEntity, Activity movementActivity )
{
	// If a behavior is active, we need to stop running it
	ChangeBehaviorTo( NULL );

	return BaseClass::ScheduledMoveToGoalEntity( scheduleType, pGoalEntity, movementActivity );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::ScheduledFollowPath( int scheduleType, CBaseEntity *pPathStart, Activity movementActivity )
{
	// If a behavior is active, we need to stop running it
	ChangeBehaviorTo( NULL );

	return BaseClass::ScheduledFollowPath( scheduleType, pPathStart, movementActivity );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::ForceSelectedGo(CBaseEntity *pPlayer, const Vector &targetPos, const Vector &traceDir, bool bRun)
{
	// If a behavior is active, we need to stop running it
	ChangeBehaviorTo( NULL );

	BaseClass::ForceSelectedGo(pPlayer, targetPos, traceDir, bRun);
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::ForceSelectedGoRandom(void)
{
	// If a behavior is active, we need to stop running it
	ChangeBehaviorTo( NULL );

	BaseClass::ForceSelectedGoRandom();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::NPCInit()
{
	BaseClass::NPCInit();
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeSpawn();
	}
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::UpdateOnRemove()
{
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeUpdateOnRemove();
	}
	BaseClass::UpdateOnRemove();
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::Event_Killed( const CTakeDamageInfo &info )
{
	for( int i = 0; i < m_Behaviors.Count(); i++ )
	{
		m_Behaviors[i]->BridgeEvent_Killed( info );
	}
	BaseClass::Event_Killed( info );
}

//-------------------------------------

template <class BASE_NPC>
inline Activity CAI_BehaviorHost<BASE_NPC>::GetFlinchActivity( bool bHeavyDamage, bool bGesture )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeGetFlinchActivity( bHeavyDamage, bGesture );

	return BaseClass::GetFlinchActivity( bHeavyDamage, bGesture );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::OnCalcBaseMove( AILocalMoveGoal_t *pMoveGoal, float distClear, AIMoveResult_t *pResult )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeOnCalcBaseMove( pMoveGoal, distClear, pResult );

	return BaseClass::OnCalcBaseMove( pMoveGoal, distClear, pResult );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::ModifyOrAppendCriteria( AI_CriteriaSet &criteriaSet )
{
	BaseClass::ModifyOrAppendCriteria( criteriaSet );

	if ( m_pCurBehavior )
	{
		// Append active behavior name
		criteriaSet.AppendCriteria( "active_behavior", GetRunningBehavior()->GetName() );
		
		m_pCurBehavior->BridgeModifyOrAppendCriteria( criteriaSet );
		return;
	}
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::Teleport( const Vector *newPosition, const QAngle *newAngles, const Vector *newVelocity )
{
	if ( m_pCurBehavior )
	{
		m_pCurBehavior->BridgeTeleport( newPosition, newAngles, newVelocity );
		return;
	}

	BaseClass::Teleport( newPosition, newAngles, newVelocity );
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::HandleAnimEvent( animevent_t *pEvent )
{
	if ( m_pCurBehavior )
		return m_pCurBehavior->BridgeHandleAnimEvent( pEvent );

	return BaseClass::HandleAnimEvent( pEvent );
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::OnBehaviorChangeStatus(  CAI_BehaviorBase *pBehavior, bool fCanFinishSchedule )
{
	if ( pBehavior == GetRunningBehavior() && !pBehavior->CanSelectSchedule() && !fCanFinishSchedule )
	{
		DeferSchedulingToBehavior( NULL );
		return true;
	}
	return false;
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::OnChangeRunningBehavior( CAI_BehaviorBase *pOldBehavior,  CAI_BehaviorBase *pNewBehavior )
{
}

//-------------------------------------

template <class BASE_NPC>
inline void CAI_BehaviorHost<BASE_NPC>::AddBehavior( CAI_BehaviorBase *pBehavior )
{
#ifdef DEBUG
	Assert( m_Behaviors.Find( pBehavior ) == m_Behaviors.InvalidIndex() );
	Assert( m_fDebugInCreateBehaviors );
	for ( int i = 0; i < m_Behaviors.Count(); i++)
	{
		Assert( typeid(*m_Behaviors[i]) != typeid(*pBehavior) );
	}
#endif
	m_Behaviors.AddToTail( pBehavior );
	pBehavior->SetOuter( this );
	pBehavior->SetBackBridge( this );
}

//-------------------------------------

template <class BASE_NPC>
inline CAI_BehaviorBase **CAI_BehaviorHost<BASE_NPC>::AccessBehaviors()
{
	if (m_Behaviors.Count())
		return m_Behaviors.Base();
	return NULL;
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::NumBehaviors()
{
	return m_Behaviors.Count();
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::Save( ISave &save )
{
	int result = BaseClass::Save( save );
	if ( result )
		CAI_BehaviorBase::SaveBehaviors( save, m_pCurBehavior, AccessBehaviors(), NumBehaviors() );
	return result;
}

//-------------------------------------

template <class BASE_NPC>
inline int CAI_BehaviorHost<BASE_NPC>::Restore( IRestore &restore )
{
	int result = BaseClass::Restore( restore );
	if ( result )
	{
		int iCurrent = CAI_BehaviorBase::RestoreBehaviors( restore, AccessBehaviors(), NumBehaviors() );
		if ( iCurrent != -1 )
			m_pCurBehavior = AccessBehaviors()[iCurrent];
		else
			m_pCurBehavior = NULL;
	}
	return result;
}

//-------------------------------------

template <class BASE_NPC>
inline bool CAI_BehaviorHost<BASE_NPC>::CreateComponents()
{
	if ( BaseClass::CreateComponents() )
	{
#ifdef DEBUG
		m_fDebugInCreateBehaviors = true;
#endif
		bool result = CreateBehaviors();
#ifdef DEBUG
		m_fDebugInCreateBehaviors = false;
#endif
		return result;
	}
	return false;
}

//-----------------------------------------------------------------------------

#endif // AI_BEHAVIOR_H