Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

Engine.PlayerPawn


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
00405
00406
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424
00425
00426
00427
00428
00429
00430
00431
00432
00433
00434
00435
00436
00437
00438
00439
00440
00441
00442
00443
00444
00445
00446
00447
00448
00449
00450
00451
00452
00453
00454
00455
00456
00457
00458
00459
00460
00461
00462
00463
00464
00465
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475
00476
00477
00478
00479
00480
00481
00482
00483
00484
00485
00486
00487
00488
00489
00490
00491
00492
00493
00494
00495
00496
00497
00498
00499
00500
00501
00502
00503
00504
00505
00506
00507
00508
00509
00510
00511
00512
00513
00514
00515
00516
00517
00518
00519
00520
00521
00522
00523
00524
00525
00526
00527
00528
00529
00530
00531
00532
00533
00534
00535
00536
00537
00538
00539
00540
00541
00542
00543
00544
00545
00546
00547
00548
00549
00550
00551
00552
00553
00554
00555
00556
00557
00558
00559
00560
00561
00562
00563
00564
00565
00566
00567
00568
00569
00570
00571
00572
00573
00574
00575
00576
00577
00578
00579
00580
00581
00582
00583
00584
00585
00586
00587
00588
00589
00590
00591
00592
00593
00594
00595
00596
00597
00598
00599
00600
00601
00602
00603
00604
00605
00606
00607
00608
00609
00610
00611
00612
00613
00614
00615
00616
00617
00618
00619
00620
00621
00622
00623
00624
00625
00626
00627
00628
00629
00630
00631
00632
00633
00634
00635
00636
00637
00638
00639
00640
00641
00642
00643
00644
00645
00646
00647
00648
00649
00650
00651
00652
00653
00654
00655
00656
00657
00658
00659
00660
00661
00662
00663
00664
00665
00666
00667
00668
00669
00670
00671
00672
00673
00674
00675
00676
00677
00678
00679
00680
00681
00682
00683
00684
00685
00686
00687
00688
00689
00690
00691
00692
00693
00694
00695
00696
00697
00698
00699
00700
00701
00702
00703
00704
00705
00706
00707
00708
00709
00710
00711
00712
00713
00714
00715
00716
00717
00718
00719
00720
00721
00722
00723
00724
00725
00726
00727
00728
00729
00730
00731
00732
00733
00734
00735
00736
00737
00738
00739
00740
00741
00742
00743
00744
00745
00746
00747
00748
00749
00750
00751
00752
00753
00754
00755
00756
00757
00758
00759
00760
00761
00762
00763
00764
00765
00766
00767
00768
00769
00770
00771
00772
00773
00774
00775
00776
00777
00778
00779
00780
00781
00782
00783
00784
00785
00786
00787
00788
00789
00790
00791
00792
00793
00794
00795
00796
00797
00798
00799
00800
00801
00802
00803
00804
00805
00806
00807
00808
00809
00810
00811
00812
00813
00814
00815
00816
00817
00818
00819
00820
00821
00822
00823
00824
00825
00826
00827
00828
00829
00830
00831
00832
00833
00834
00835
00836
00837
00838
00839
00840
00841
00842
00843
00844
00845
00846
00847
00848
00849
00850
00851
00852
00853
00854
00855
00856
00857
00858
00859
00860
00861
00862
00863
00864
00865
00866
00867
00868
00869
00870
00871
00872
00873
00874
00875
00876
00877
00878
00879
00880
00881
00882
00883
00884
00885
00886
00887
00888
00889
00890
00891
00892
00893
00894
00895
00896
00897
00898
00899
00900
00901
00902
00903
00904
00905
00906
00907
00908
00909
00910
00911
00912
00913
00914
00915
00916
00917
00918
00919
00920
00921
00922
00923
00924
00925
00926
00927
00928
00929
00930
00931
00932
00933
00934
00935
00936
00937
00938
00939
00940
00941
00942
00943
00944
00945
00946
00947
00948
00949
00950
00951
00952
00953
00954
00955
00956
00957
00958
00959
00960
00961
00962
00963
00964
00965
00966
00967
00968
00969
00970
00971
00972
00973
00974
00975
00976
00977
00978
00979
00980
00981
00982
00983
00984
00985
00986
00987
00988
00989
00990
00991
00992
00993
00994
00995
00996
00997
00998
00999
01000
01001
01002
01003
01004
01005
01006
01007
01008
01009
01010
01011
01012
01013
01014
01015
01016
01017
01018
01019
01020
01021
01022
01023
01024
01025
01026
01027
01028
01029
01030
01031
01032
01033
01034
01035
01036
01037
01038
01039
01040
01041
01042
01043
01044
01045
01046
01047
01048
01049
01050
01051
01052
01053
01054
01055
01056
01057
01058
01059
01060
01061
01062
01063
01064
01065
01066
01067
01068
01069
01070
01071
01072
01073
01074
01075
01076
01077
01078
01079
01080
01081
01082
01083
01084
01085
01086
01087
01088
01089
01090
01091
01092
01093
01094
01095
01096
01097
01098
01099
01100
01101
01102
01103
01104
01105
01106
01107
01108
01109
01110
01111
01112
01113
01114
01115
01116
01117
01118
01119
01120
01121
01122
01123
01124
01125
01126
01127
01128
01129
01130
01131
01132
01133
01134
01135
01136
01137
01138
01139
01140
01141
01142
01143
01144
01145
01146
01147
01148
01149
01150
01151
01152
01153
01154
01155
01156
01157
01158
01159
01160
01161
01162
01163
01164
01165
01166
01167
01168
01169
01170
01171
01172
01173
01174
01175
01176
01177
01178
01179
01180
01181
01182
01183
01184
01185
01186
01187
01188
01189
01190
01191
01192
01193
01194
01195
01196
01197
01198
01199
01200
01201
01202
01203
01204
01205
01206
01207
01208
01209
01210
01211
01212
01213
01214
01215
01216
01217
01218
01219
01220
01221
01222
01223
01224
01225
01226
01227
01228
01229
01230
01231
01232
01233
01234
01235
01236
01237
01238
01239
01240
01241
01242
01243
01244
01245
01246
01247
01248
01249
01250
01251
01252
01253
01254
01255
01256
01257
01258
01259
01260
01261
01262
01263
01264
01265
01266
01267
01268
01269
01270
01271
01272
01273
01274
01275
01276
01277
01278
01279
01280
01281
01282
01283
01284
01285
01286
01287
01288
01289
01290
01291
01292
01293
01294
01295
01296
01297
01298
01299
01300
01301
01302
01303
01304
01305
01306
01307
01308
01309
01310
01311
01312
01313
01314
01315
01316
01317
01318
01319
01320
01321
01322
01323
01324
01325
01326
01327
01328
01329
01330
01331
01332
01333
01334
01335
01336
01337
01338
01339
01340
01341
01342
01343
01344
01345
01346
01347
01348
01349
01350
01351
01352
01353
01354
01355
01356
01357
01358
01359
01360
01361
01362
01363
01364
01365
01366
01367
01368
01369
01370
01371
01372
01373
01374
01375
01376
01377
01378
01379
01380
01381
01382
01383
01384
01385
01386
01387
01388
01389
01390
01391
01392
01393
01394
01395
01396
01397
01398
01399
01400
01401
01402
01403
01404
01405
01406
01407
01408
01409
01410
01411
01412
01413
01414
01415
01416
01417
01418
01419
01420
01421
01422
01423
01424
01425
01426
01427
01428
01429
01430
01431
01432
01433
01434
01435
01436
01437
01438
01439
01440
01441
01442
01443
01444
01445
01446
01447
01448
01449
01450
01451
01452
01453
01454
01455
01456
01457
01458
01459
01460
01461
01462
01463
01464
01465
01466
01467
01468
01469
01470
01471
01472
01473
01474
01475
01476
01477
01478
01479
01480
01481
01482
01483
01484
01485
01486
01487
01488
01489
01490
01491
01492
01493
01494
01495
01496
01497
01498
01499
01500
01501
01502
01503
01504
01505
01506
01507
01508
01509
01510
01511
01512
01513
01514
01515
01516
01517
01518
01519
01520
01521
01522
01523
01524
01525
01526
01527
01528
01529
01530
01531
01532
01533
01534
01535
01536
01537
01538
01539
01540
01541
01542
01543
01544
01545
01546
01547
01548
01549
01550
01551
01552
01553
01554
01555
01556
01557
01558
01559
01560
01561
01562
01563
01564
01565
01566
01567
01568
01569
01570
01571
01572
01573
01574
01575
01576
01577
01578
01579
01580
01581
01582
01583
01584
01585
01586
01587
01588
01589
01590
01591
01592
01593
01594
01595
01596
01597
01598
01599
01600
01601
01602
01603
01604
01605
01606
01607
01608
01609
01610
01611
01612
01613
01614
01615
01616
01617
01618
01619
01620
01621
01622
01623
01624
01625
01626
01627
01628
01629
01630
01631
01632
01633
01634
01635
01636
01637
01638
01639
01640
01641
01642
01643
01644
01645
01646
01647
01648
01649
01650
01651
01652
01653
01654
01655
01656
01657
01658
01659
01660
01661
01662
01663
01664
01665
01666
01667
01668
01669
01670
01671
01672
01673
01674
01675
01676
01677
01678
01679
01680
01681
01682
01683
01684
01685
01686
01687
01688
01689
01690
01691
01692
01693
01694
01695
01696
01697
01698
01699
01700
01701
01702
01703
01704
01705
01706
01707
01708
01709
01710
01711
01712
01713
01714
01715
01716
01717
01718
01719
01720
01721
01722
01723
01724
01725
01726
01727
01728
01729
01730
01731
01732
01733
01734
01735
01736
01737
01738
01739
01740
01741
01742
01743
01744
01745
01746
01747
01748
01749
01750
01751
01752
01753
01754
01755
01756
01757
01758
01759
01760
01761
01762
01763
01764
01765
01766
01767
01768
01769
01770
01771
01772
01773
01774
01775
01776
01777
01778
01779
01780
01781
01782
01783
01784
01785
01786
01787
01788
01789
01790
01791
01792
01793
01794
01795
01796
01797
01798
01799
01800
01801
01802
01803
01804
01805
01806
01807
01808
01809
01810
01811
01812
01813
01814
01815
01816
01817
01818
01819
01820
01821
01822
01823
01824
01825
01826
01827
01828
01829
01830
01831
01832
01833
01834
01835
01836
01837
01838
01839
01840
01841
01842
01843
01844
01845
01846
01847
01848
01849
01850
01851
01852
01853
01854
01855
01856
01857
01858
01859
01860
01861
01862
01863
01864
01865
01866
01867
01868
01869
01870
01871
01872
01873
01874
01875
01876
01877
01878
01879
01880
01881
01882
01883
01884
01885
01886
01887
01888
01889
01890
01891
01892
01893
01894
01895
01896
01897
01898
01899
01900
01901
01902
01903
01904
01905
01906
01907
01908
01909
01910
01911
01912
01913
01914
01915
01916
01917
01918
01919
01920
01921
01922
01923
01924
01925
01926
01927
01928
01929
01930
01931
01932
01933
01934
01935
01936
01937
01938
01939
01940
01941
01942
01943
01944
01945
01946
01947
01948
01949
01950
01951
01952
01953
01954
01955
01956
01957
01958
01959
01960
01961
01962
01963
01964
01965
01966
01967
01968
01969
01970
01971
01972
01973
01974
01975
01976
01977
01978
01979
01980
01981
01982
01983
01984
01985
01986
01987
01988
01989
01990
01991
01992
01993
01994
01995
01996
01997
01998
01999
02000
02001
02002
02003
02004
02005
02006
02007
02008
02009
02010
02011
02012
02013
02014
02015
02016
02017
02018
02019
02020
02021
02022
02023
02024
02025
02026
02027
02028
02029
02030
02031
02032
02033
02034
02035
02036
02037
02038
02039
02040
02041
02042
02043
02044
02045
02046
02047
02048
02049
02050
02051
02052
02053
02054
02055
02056
02057
02058
02059
02060
02061
02062
02063
02064
02065
02066
02067
02068
02069
02070
02071
02072
02073
02074
02075
02076
02077
02078
02079
02080
02081
02082
02083
02084
02085
02086
02087
02088
02089
02090
02091
02092
02093
02094
02095
02096
02097
02098
02099
02100
02101
02102
02103
02104
02105
02106
02107
02108
02109
02110
02111
02112
02113
02114
02115
02116
02117
02118
02119
02120
02121
02122
02123
02124
02125
02126
02127
02128
02129
02130
02131
02132
02133
02134
02135
02136
02137
02138
02139
02140
02141
02142
02143
02144
02145
02146
02147
02148
02149
02150
02151
02152
02153
02154
02155
02156
02157
02158
02159
02160
02161
02162
02163
02164
02165
02166
02167
02168
02169
02170
02171
02172
02173
02174
02175
02176
02177
02178
02179
02180
02181
02182
02183
02184
02185
02186
02187
02188
02189
02190
02191
02192
02193
02194
02195
02196
02197
02198
02199
02200
02201
02202
02203
02204
02205
02206
02207
02208
02209
02210
02211
02212
02213
02214
02215
02216
02217
02218
02219
02220
02221
02222
02223
02224
02225
02226
02227
02228
02229
02230
02231
02232
02233
02234
02235
02236
02237
02238
02239
02240
02241
02242
02243
02244
02245
02246
02247
02248
02249
02250
02251
02252
02253
02254
02255
02256
02257
02258
02259
02260
02261
02262
02263
02264
02265
02266
02267
02268
02269
02270
02271
02272
02273
02274
02275
02276
02277
02278
02279
02280
02281
02282
02283
02284
02285
02286
02287
02288
02289
02290
02291
02292
02293
02294
02295
02296
02297
02298
02299
02300
02301
02302
02303
02304
02305
02306
02307
02308
02309
02310
02311
02312
02313
02314
02315
02316
02317
02318
02319
02320
02321
02322
02323
02324
02325
02326
02327
02328
02329
02330
02331
02332
02333
02334
02335
02336
02337
02338
02339
02340
02341
02342
02343
02344
02345
02346
02347
02348
02349
02350
02351
02352
02353
02354
02355
02356
02357
02358
02359
02360
02361
02362
02363
02364
02365
02366
02367
02368
02369
02370
02371
02372
02373
02374
02375
02376
02377
02378
02379
02380
02381
02382
02383
02384
02385
02386
02387
02388
02389
02390
02391
02392
02393
02394
02395
02396
02397
02398
02399
02400
02401
02402
02403
02404
02405
02406
02407
02408
02409
02410
02411
02412
02413
02414
02415
02416
02417
02418
02419
02420
02421
02422
02423
02424
02425
02426
02427
02428
02429
02430
02431
02432
02433
02434
02435
02436
02437
02438
02439
02440
02441
02442
02443
02444
02445
02446
02447
02448
02449
02450
02451
02452
02453
02454
02455
02456
02457
02458
02459
02460
02461
02462
02463
02464
02465
02466
02467
02468
02469
02470
02471
02472
02473
02474
02475
02476
02477
02478
02479
02480
02481
02482
02483
02484
02485
02486
02487
02488
02489
02490
02491
02492
02493
02494
02495
02496
02497
02498
02499
02500
02501
02502
02503
02504
02505
02506
02507
02508
02509
02510
02511
02512
02513
02514
02515
02516
02517
02518
02519
02520
02521
02522
02523
02524
02525
02526
02527
02528
02529
02530
02531
02532
02533
02534
02535
02536
02537
02538
02539
02540
02541
02542
02543
02544
02545
02546
02547
02548
02549
02550
02551
02552
02553
02554
02555
02556
02557
02558
02559
02560
02561
02562
02563
02564
02565
02566
02567
02568
02569
02570
02571
02572
02573
02574
02575
02576
02577
02578
02579
02580
02581
02582
02583
02584
02585
02586
02587
02588
02589
02590
02591
02592
02593
02594
02595
02596
02597
02598
02599
02600
02601
02602
02603
02604
02605
02606
02607
02608
02609
02610
02611
02612
02613
02614
02615
02616
02617
02618
02619
02620
02621
02622
02623
02624
02625
02626
02627
02628
02629
02630
02631
02632
02633
02634
02635
02636
02637
02638
02639
02640
02641
02642
02643
02644
02645
02646
02647
02648
02649
02650
02651
02652
02653
02654
02655
02656
02657
02658
02659
02660
02661
02662
02663
02664
02665
02666
02667
02668
02669
02670
02671
02672
02673
02674
02675
02676
02677
02678
02679
02680
02681
02682
02683
02684
02685
02686
02687
02688
02689
02690
02691
02692
02693
02694
02695
02696
02697
02698
02699
02700
02701
02702
02703
02704
02705
02706
02707
02708
02709
02710
02711
02712
02713
02714
02715
02716
02717
02718
02719
02720
02721
02722
02723
02724
02725
02726
02727
02728
02729
02730
02731
02732
02733
02734
02735
02736
02737
02738
02739
02740
02741
02742
02743
02744
02745
02746
02747
02748
02749
02750
02751
02752
02753
02754
02755
02756
02757
02758
02759
02760
02761
02762
02763
02764
02765
02766
02767
02768
02769
02770
02771
02772
02773
02774
02775
02776
02777
02778
02779
02780
02781
02782
02783
02784
02785
02786
02787
02788
02789
02790
02791
02792
02793
02794
02795
02796
02797
02798
02799
02800
02801
02802
02803
02804
02805
02806
02807
02808
02809
02810
02811
02812
02813
02814
02815
02816
02817
02818
02819
02820
02821
02822
02823
02824
02825
02826
02827
02828
02829
02830
02831
02832
02833
02834
02835
02836
02837
02838
02839
02840
02841
02842
02843
02844
02845
02846
02847
02848
02849
02850
02851
02852
02853
02854
02855
02856
02857
02858
02859
02860
02861
02862
02863
02864
02865
02866
02867
02868
02869
02870
02871
02872
02873
02874
02875
02876
02877
02878
02879
02880
02881
02882
02883
02884
02885
02886
02887
02888
02889
02890
02891
02892
02893
02894
02895
02896
02897
02898
02899
02900
02901
02902
02903
02904
02905
02906
02907
02908
02909
02910
02911
02912
02913
02914
02915
02916
02917
02918
02919
02920
02921
02922
02923
02924
02925
02926
02927
02928
02929
02930
02931
02932
02933
02934
02935
02936
02937
02938
02939
02940
02941
02942
02943
02944
02945
02946
02947
02948
02949
02950
02951
02952
02953
02954
02955
02956
02957
02958
02959
02960
02961
02962
02963
02964
02965
02966
02967
02968
02969
02970
02971
02972
02973
02974
02975
02976
02977
02978
02979
02980
02981
02982
02983
02984
02985
02986
02987
02988
02989
02990
02991
02992
02993
02994
02995
02996
02997
02998
02999
03000
03001
03002
03003
03004
03005
03006
03007
03008
03009
03010
03011
03012
03013
03014
03015
03016
03017
03018
03019
03020
03021
03022
03023
03024
03025
03026
03027
03028
03029
03030
03031
03032
03033
03034
03035
03036
03037
03038
03039
03040
03041
03042
03043
03044
03045
03046
03047
03048
03049
03050
03051
03052
03053
03054
03055
03056
03057
03058
03059
03060
03061
03062
03063
03064
03065
03066
03067
03068
03069
03070
03071
03072
03073
03074
03075
03076
03077
03078
03079
03080
03081
03082
03083
03084
03085
03086
03087
03088
03089
03090
03091
03092
03093
03094
03095
03096
03097
03098
03099
03100
03101
03102
03103
03104
03105
03106
03107
03108
03109
03110
03111
03112
03113
03114
03115
03116
03117
03118
03119
03120
03121
03122
03123
03124
03125
03126
03127
03128
03129
03130
03131
03132
03133
03134
03135
03136
03137
03138
03139
03140
03141
03142
03143
03144
03145
03146
03147
03148
03149
03150
03151
03152
03153
03154
03155
03156
03157
03158
03159
03160
03161
03162
03163
03164
03165
03166
03167
03168
03169
03170
03171
03172
03173
03174
03175
03176
03177
03178
03179
03180
03181
03182
03183
03184
03185
03186
03187
03188
03189
03190
03191
03192
03193
03194
03195
03196
03197
03198
03199
03200
03201
03202
03203
03204
03205
03206
03207
03208
03209
03210
03211
03212
03213
03214
03215
03216
03217
03218
03219
03220
03221
03222
03223
03224
03225
03226
03227
03228
03229
03230
03231
03232
03233
03234
03235
03236
03237
03238
03239
03240
03241
03242
03243
03244
03245
03246
03247
03248
03249
03250
03251
03252
03253
03254
03255
03256
03257
03258
03259
03260
03261
03262
03263
03264
03265
03266
03267
03268
03269
03270
03271
03272
03273
03274
03275
03276
03277
03278
03279
03280
03281
03282
03283
03284
03285
03286
03287
03288
03289
03290
03291
03292
03293
03294
03295
03296
03297
03298
03299
03300
03301
03302
03303
03304
03305
03306
03307
03308
03309
03310
03311
03312
03313
03314
03315
03316
03317
03318
03319
03320
03321
03322
03323
03324
03325
03326
03327
03328
03329
03330
03331
03332
03333
03334
03335
03336
03337
03338
03339
03340
03341
03342
03343
03344
03345
03346
03347
03348
03349
03350
03351
03352
03353
03354
03355
03356
03357
03358
03359
03360
03361
03362
03363
03364
03365
03366
03367
03368
03369
03370
03371
03372
03373
03374
03375
03376
03377
03378
03379
03380
03381
03382
03383
03384
03385
03386
03387
03388
03389
03390
03391
03392
03393
03394
03395
03396
03397
03398
03399
03400
03401
03402
03403
03404
03405
03406
03407
03408
03409
03410
03411
03412
03413
03414
03415
03416
03417
03418
03419
03420
03421
03422
03423
03424
03425
03426
03427
03428
03429
03430
03431
03432
03433
03434
03435
03436
03437
03438
03439
03440
03441
03442
03443
03444
03445
03446
03447
03448
03449
03450
03451
03452
03453
03454
03455
03456
03457
03458
03459
03460
03461
03462
03463
03464
03465
03466
03467
03468
03469
03470
03471
03472
03473
03474
03475
03476
03477
03478
03479
03480
03481
03482
03483
03484
03485
03486
03487
03488
03489
03490
03491
03492
03493
03494
03495
03496
03497
03498
03499
03500
03501
03502
03503
03504
03505
03506
03507
03508
03509
03510
03511
03512
03513
03514
03515
03516
03517
03518
03519
03520
03521
03522
03523
03524
03525
03526
03527
03528
03529
03530
03531
03532
03533
03534
03535
03536
03537
03538
03539
03540
03541
03542
03543
03544
03545
03546
03547
03548
03549
03550
03551
03552
03553
03554
03555
03556
03557
03558
03559
03560
03561
03562
03563
03564
03565
03566
03567
03568
03569
03570
03571
03572
03573
03574
03575
03576
03577
03578
03579
03580
03581
03582
03583
03584
03585
03586
03587
03588
03589
03590
03591
03592
03593
03594
03595
03596
03597
03598
03599
03600
03601
03602
03603
03604
03605
03606
03607
03608
03609
03610
03611
03612
03613
03614
03615
03616
03617
03618
03619
03620
03621
03622
03623
03624
03625
03626
03627
03628
03629
03630
03631
03632
03633
03634
03635
03636
03637
03638
03639
03640
03641
03642
03643
03644
03645
03646
03647
03648
03649
03650
03651
03652
03653
03654
03655
03656
03657
03658
03659
03660
03661
03662
03663
03664
03665
03666
03667
03668
03669
03670
03671
03672
03673
03674
03675
03676
03677
03678
03679
03680
03681
03682
03683
03684
03685
03686
03687
03688
03689
03690
03691
03692
03693
03694
03695
03696
03697
03698
03699
03700
03701
03702
03703
03704
03705
03706
03707
03708
03709
03710
03711
03712
03713
03714
03715
03716
03717
03718
03719
03720
03721
03722
03723
03724
03725
03726
03727
03728
03729
03730
03731
03732
03733
03734
03735
03736
03737
03738
03739
03740
03741
03742
03743
03744
03745
03746
03747
03748
03749
03750
03751
03752
03753
03754
03755
03756
03757
03758
03759
03760
03761
03762
03763
03764
03765
03766
03767
03768
03769
03770
03771
03772
03773
03774
03775
03776
03777
03778
03779
03780
03781
03782
03783
03784
03785
03786
03787
03788
03789
03790
03791
03792
03793
03794
03795
03796
03797
03798
03799
03800
03801
03802
03803
03804
03805
03806
03807
03808
03809
03810
03811
03812
03813
03814
03815
03816
03817
03818
03819
03820
03821
03822
03823
03824
03825
03826
03827
03828
03829
03830
03831
03832
03833
03834
03835
03836
03837
03838
03839
03840
03841
03842
03843
03844
03845
03846
03847
03848
03849
03850
03851
03852
03853
03854
03855
03856
03857
03858
03859
03860
03861
03862
03863
03864
03865
03866
03867
03868
03869
03870
03871
03872
03873
03874
03875
03876
03877
03878
03879
03880
03881
03882
03883
03884
03885
03886
03887
03888
03889
03890
03891
03892
03893
03894
03895
03896
03897
03898
03899
03900
03901
03902
03903
03904
03905
03906
03907
03908
03909
03910
03911
03912
03913
03914
03915
03916
03917
03918
03919
03920
03921
03922
03923
03924
03925
03926
03927
03928
03929
03930
03931
03932
03933
03934
03935
03936
03937
03938
03939
03940
03941
03942
03943
03944
03945
03946
03947
03948
03949
03950
03951
03952
03953
03954
03955
03956
03957
03958
03959
03960
03961
03962
03963
03964
03965
03966
03967
03968
03969
03970
03971
03972
03973
03974
03975
03976
03977
03978
03979
03980
03981
03982
03983
03984
03985
03986
03987
03988
03989
03990
03991
03992
03993
03994
03995
03996
03997
03998
03999
04000
04001
04002
04003
04004
04005
04006
04007
04008
04009
04010
04011
04012
04013
04014
04015
04016
04017
04018
04019
04020
04021
04022
04023
04024
04025
04026
04027
04028
04029
04030
04031
04032
04033
04034
04035
04036
04037
04038
04039
04040
04041
04042
04043
04044
04045
04046
04047
04048
04049
04050
04051
04052
04053
04054
04055
04056
04057
04058
04059
04060
04061
04062
04063
04064
04065
04066
04067
04068
04069
04070
04071
04072
04073
04074
04075
04076
04077
04078
04079
04080
04081
04082
04083
04084
04085
04086
04087
04088
04089
04090
04091
04092
04093
04094
04095
04096
04097
04098
04099
04100
04101
04102
04103
04104
04105
04106
04107
04108
04109
04110
04111
04112
04113
04114
04115
04116
04117
04118
04119
04120
04121
04122
04123
04124
04125
04126
04127
04128
04129
04130
04131
04132
04133
04134
04135
04136
04137
04138
04139
04140
04141
04142
04143
04144
04145
04146
04147
04148
04149
04150
04151
04152
04153
04154
04155
04156
04157
04158
04159
04160
04161
04162
04163
04164
04165
04166
04167
04168
04169
04170
04171
04172
04173
04174
04175
04176
04177
04178
04179
04180
04181
04182
04183
04184
04185
04186
04187
04188
04189
04190
04191
04192
04193
04194
04195
04196
04197
04198
04199
04200
04201
04202
04203
04204
04205
04206
04207
04208
04209
04210
04211
04212
04213
04214
04215
04216
04217
04218
04219
04220
04221
04222
04223
04224
04225
04226
04227
04228
04229
04230
04231
04232
04233
04234
04235
04236
04237
04238
04239
04240
04241
04242
04243
04244
04245
04246
04247
04248
04249
04250
04251
04252
04253
04254
04255
04256
04257
04258
04259
04260
04261
04262
04263
04264
04265
04266
04267
04268
04269
04270
04271
04272
04273
04274
04275
04276
04277
04278
04279
04280
04281
04282
04283
04284
04285
04286
04287
04288
04289
04290
04291
04292
04293
04294
04295
04296
04297
04298
04299
04300
04301
04302
04303
04304
04305
04306
04307
04308
04309
04310
04311
04312
04313
04314
04315
04316
04317
04318
04319
04320
04321
04322
04323
04324
04325
04326
04327
04328
04329
04330
04331
04332
04333
04334
04335
04336
04337
04338
04339
04340
04341
04342
04343
04344
04345
04346
04347
04348
04349
04350
04351
04352
04353
04354
04355
04356
04357
04358
04359
04360
04361
04362
04363
04364
04365
04366
04367
04368
04369
04370
04371
04372
04373
04374
04375
04376
04377
04378
04379
04380
04381
04382
04383
04384
04385
04386
04387
04388
04389
04390
04391
04392
04393
04394
04395
04396
04397
04398
04399
04400
04401
04402
04403
04404
04405
04406
04407
04408
04409
04410
04411
04412
04413
04414
04415
04416
04417
04418
04419
04420
04421
04422
04423
04424
04425
04426
04427
04428
04429
04430
04431
04432
04433
04434
04435
04436
04437
04438
04439
04440
04441
04442
04443
04444
04445
04446
04447
04448
04449
04450
04451
04452
04453
04454
04455
04456
04457
04458
04459
04460
04461
04462
04463
04464
04465
04466
04467
04468
04469
04470
04471
04472
04473
04474
04475
04476
04477
04478
04479
04480
04481
04482
04483
04484
04485
04486
04487
04488
04489
04490
04491
04492
04493
04494
04495
04496
04497
04498
04499
04500
04501
04502
04503
04504
04505
04506
04507
04508
04509
04510
04511
04512
04513
04514
04515
04516
04517
04518
04519
04520
04521
04522
04523
04524
04525
04526
04527
04528
04529
04530
04531
04532
04533
04534
04535
04536
04537
04538
04539
04540
04541
04542
04543
04544
04545
04546
04547
04548
04549
04550
04551
04552
04553
04554
04555
04556
04557
04558
04559
04560
04561
04562
04563
04564
04565
04566
04567
04568
04569
04570
04571
04572
04573
04574
04575
04576
04577
04578
04579
04580
04581
04582
04583
04584
04585
04586
04587
04588
04589
04590
04591
04592
04593
04594
04595
04596
04597
04598
04599
04600
04601
04602
04603
04604
04605
04606
04607
04608
04609
04610
04611
04612
04613
04614
04615
04616
04617
04618
04619
04620
04621
04622
04623
04624
04625
04626
04627
04628
04629
04630
04631
04632
04633
04634
04635
04636
04637
04638
04639
04640
04641
04642
04643
04644
04645
04646
04647
04648
04649
04650
04651
04652
04653
04654
04655
04656
04657
04658
04659
04660
04661
04662
04663
04664
04665
04666
04667
04668
04669
04670
04671
04672
04673
04674
04675
04676
04677
04678
04679
04680
04681
04682
04683
04684
04685
04686
04687
04688
04689
04690
04691
04692
04693
04694
04695
04696
04697
04698
04699
04700
04701
04702
04703
04704
04705
04706
04707
04708
04709
04710
04711
04712
04713
04714
04715
04716
04717
04718
04719
04720
04721
04722
04723
04724
04725
04726
04727
04728
04729
04730
04731
04732
04733
04734
04735
04736
04737
04738
04739
04740
04741
04742
04743
04744
04745
04746
04747
04748
04749
04750
04751
04752
04753
04754
04755
04756
04757
04758
04759
04760
04761
04762
04763
04764
04765
04766
04767
04768
04769
04770
04771
04772
04773
04774
04775
04776
04777
04778
04779
04780
04781
04782
04783
04784
04785
04786
04787
04788
04789
04790
04791
04792
04793
04794
04795
04796
04797
04798
04799
04800
04801
04802
04803
04804
04805
04806
04807
04808
04809
04810
04811
04812
04813
04814
04815
04816
04817
04818
04819
04820
04821
04822
04823
04824
04825
04826
04827
04828
04829
04830
04831
04832
04833
04834
04835
04836
04837
04838
04839
04840
04841
04842
04843
04844
04845
04846
04847
04848
04849
04850
04851
04852
04853
04854
04855
04856
04857
04858
04859
04860
04861
04862
04863
04864
04865
04866
04867
04868
04869
04870
04871
04872
04873
04874
04875
04876
04877
04878
04879
04880
04881
04882
04883
04884
04885
04886
04887
04888
04889
//=============================================================================
// PlayerPawn.
// player controlled pawns
// Note that Pawns which implement functions for the PlayerTick messages
// must handle player control in these functions
//=============================================================================
class PlayerPawn expands Pawn
    config(user)
    native
    nativereplication;

// Player info.
var const player Player;
var globalconfig string Password;   // for restarting coop savegames

var travel    float DodgeClickTimer; // max double click interval for dodge move
var(Movement) globalconfig float    DodgeClickTime;
var(Movement) globalconfig float Bob;
var           float             LandBob, AppliedBob;
var float bobtime;

// Camera info.
var int ShowFlags;
var int RendMap;
var int Misc1;
var int Misc2;

var actor ViewTarget;
var vector FlashScale, FlashFog;
var HUD myHUD;
var ScoreBoard Scoring;
var class<hud> HUDType;
var class<scoreboard> ScoringType;

var float DesiredFlashScale, ConstantGlowScale, InstantFlash;
var vector DesiredFlashFog, ConstantGlowFog, InstantFog;
var globalconfig float DesiredFOV;
var globalconfig float DefaultFOV;

// Music info.
var music Song;
var byte  SongSection;
var byte  CdTrack;
var EMusicTransition Transition;

var float shaketimer; // player uses this for shaking view
var int shakemag;   // max magnitude in degrees of shaking
var float shakevert; // max vertical shake magnitude
var float maxshake;
var float verttimer;
var(Pawn) class<carcass> CarcassType;
var travel globalconfig float MyAutoAim;
var travel globalconfig float Handedness;
var(Sounds) sound JumpSound;

// Player control flags
var bool        bAdmin;
var() globalconfig bool         bLookUpStairs;  // look up/down stairs (player)
var() globalconfig bool     bSnapToLevel;   // Snap to level eyeheight when not mouselooking
var() globalconfig bool     bAlwaysMouseLook;
var globalconfig bool       bKeyboardLook;  // no snapping when true
var bool        bWasForward;    // used for dodge move 
var bool        bWasBack;
var bool        bWasLeft;
var bool        bWasRight;
var bool        bEdgeForward;
var bool        bEdgeBack;
var bool        bEdgeLeft;
var bool        bEdgeRight;
var bool        bIsCrouching;
var bool        bShakeDir;          
var bool        bAnimTransition;
var bool        bIsTurning;
var bool        bFrozen;
var bool        bBadConnectionAlert;
var globalconfig bool   bInvertMouse;
var bool        bShowScores;
var bool        bShowMenu;
var bool        bSpecialMenu;
var bool        bWokeUp;
var bool        bPressedJump;
var bool        bUpdatePosition;
var bool        bDelayedCommand;
var bool        bRising;
var bool        bReducedVis;
var bool        bCenterView;
var() globalconfig bool bMaxMouseSmoothing;
var bool        bMouseZeroed;
var bool        bReadyToPlay;
var globalconfig bool bNoFlash;
var globalconfig bool bNoVoices;
var globalconfig bool bMessageBeep;
var bool        bZooming;
var() bool      bSinglePlayer;      // this class allowed in single player
var bool        bJustFired;
var bool        bJustAltFired;
var bool        bIsTyping;
var bool        bFixedCamera;
var globalconfig bool   bNeverAutoSwitch;   // if true, don't automatically switch to picked up weapon
var bool        bJumpStatus;    // used in net games
var bool        bUpdating;
var bool        bCheatsEnabled;

var float       ZoomLevel;

var class<menu> SpecialMenu;
var string DelayedCommand;
var globalconfig float  MouseSensitivity;

var globalconfig name   WeaponPriority[50]; //weapon class priorities (9 is highest)

var float SmoothMouseX, SmoothMouseY, BorrowedMouseX, BorrowedMouseY;
var() globalconfig float MouseSmoothThreshold;
var float MouseZeroTime;

// Input axes.
var input float 
    aBaseX, aBaseY, aBaseZ,
    aMouseX, aMouseY,
    aForward, aTurn, aStrafe, aUp, 
    aLookUp, aExtra4, aExtra3, aExtra2,
    aExtra1, aExtra0;

// Move Buffering.
var SavedMove SavedMoves;
var SavedMove FreeMoves;
var SavedMove PendingMove;
var float CurrentTimeStamp,LastUpdateTime,ServerTimeStamp,TimeMargin, ClientUpdateTime;
var globalconfig float MaxTimeMargin;

// Progess Indicator.
var string ProgressMessage[8];
var color ProgressColor[8];
var float ProgressTimeOut;

// Localized strings
var localized string QuickSaveString;
var localized string NoPauseMessage;
var localized string ViewingFrom;
var localized string OwnCamera;
var localized string FailedView;

// ReplicationInfo
var GameReplicationInfo GameReplicationInfo;

// ngWorldStats Logging
var() globalconfig private string ngWorldSecret;
var() globalconfig bool ngSecretSet;
var bool ReceivedSecretChecksum;

// Remote Pawn ViewTargets
var rotator TargetViewRotation; 
var float TargetEyeHeight;
var vector TargetWeaponViewOffset;

// Demo recording view rotation
var int DemoViewPitch;
var int DemoViewYaw;

var float LastPlaySound;

// text message sending
var float LastMessageWindow;

replication
{
    // Things the server should send to the client.
    reliable if( bNetOwner && Role==ROLE_Authority )
        ViewTarget, ScoringType, HUDType, GameReplicationInfo, bFixedCamera, bCheatsEnabled;
    unreliable if ( bNetOwner && Role==ROLE_Authority )
        TargetViewRotation, TargetEyeHeight, TargetWeaponViewOffset;
    reliable if( bDemoRecording && Role==ROLE_Authority )
        DemoViewPitch, DemoViewYaw;

    // Things the client should send to the server
    reliable if ( Role<ROLE_Authority )
        Password, bReadyToPlay;

    // Functions client can call.
    unreliable if( Role<ROLE_Authority )
        CallForHelp;
    reliable if( Role<ROLE_Authority )
        ShowPath, RememberSpot, Speech, Say, TeamSay, RestartLevel, SwitchWeapon, Pause, SetPause, ServerSetHandedness,
        PrevItem, ActivateItem, ShowInventory, Grab, ServerFeignDeath, ServerSetWeaponPriority,
        ChangeName, ChangeTeam, God, Suicide, ViewClass, ViewPlayerNum, ViewSelf, ViewPlayer, ServerSetSloMo, ServerAddBots,
        PlayersOnly, ThrowWeapon, ServerRestartPlayer, NeverSwitchOnPickup, BehindView, ServerNeverSwitchOnPickup, 
        PrevWeapon, NextWeapon, GetWeapon, ServerReStartGame, ServerUpdateWeapons, ServerTaunt, ServerChangeSkin,
        SwitchLevel, SwitchCoopLevel, Kick, KickBan, KillAll, Summon, ActivateTranslator, Admin, AdminLogin, AdminLogout, Typing, Mutate;
    unreliable if( Role<ROLE_Authority )
        ServerMove, Fly, Walk, Ghost;

    // Functions server can call.
    reliable if( Role==ROLE_Authority && !bDemoRecording )
        ClientTravel;
    reliable if( Role==ROLE_Authority )
        ClientReliablePlaySound, ClientReplicateSkins, ClientAdjustGlow, ClientChangeTeam, ClientSetMusic, StartZoom, ToggleZoom, StopZoom, EndZoom, SetDesiredFOV, ClearProgressMessages, SetProgressColor, SetProgressMessage, SetProgressTime, ClientWeaponEvent;
    unreliable if( Role==ROLE_Authority )
        SetFOVAngle, ClientShake, ClientFlash, ClientInstantFlash;
    unreliable if( Role==ROLE_Authority && !bDemoRecording )
        ClientPlaySound;
    unreliable if( RemoteRole==ROLE_AutonomousProxy )//***
        ClientAdjustPosition;
}

//
// native client-side functions.
//
native event ClientTravel( string URL, ETravelType TravelType, bool bItems );
native(544) final function ResetKeyboard();
native(546) final function UpdateURL(string NewOption, string NewValue, bool bSaveDefault);
native final function string GetDefaultURL(string Option);
native final function LevelInfo GetEntryLevel();
native final function string GetPlayerNetworkAddress();
// Execute a console command in the context of this player, then forward to Actor.ConsoleCommand.
native function string ConsoleCommand( string Command );
native function CopyToClipboard( string Text );
native function string PasteFromClipboard();

function InitPlayerReplicationInfo()
{
    Super.InitPlayerReplicationInfo();

    PlayerReplicationInfo.bAdmin = bAdmin;
}

event PreClientTravel()
{
}

exec function Ping()
{
    ClientMessage("Current ping is"@PlayerReplicationInfo.Ping);
}

function ClientWeaponEvent(name EventType)
{
    if ( Weapon != None )
        Weapon.ClientWeaponEvent(EventType);
}

simulated event RenderOverlays( canvas Canvas )
{
    if ( Weapon != None )
        Weapon.RenderOverlays(Canvas);

    if ( myHUD != None )
        myHUD.RenderOverlays(Canvas);
}

function ClientReplicateSkins(texture Skin1, optional texture Skin2, optional texture Skin3, optional texture Skin4)
{
    // do nothing (just loading other player skins onto client)
    log("Getting "$Skin1$", "$Skin2$", "$Skin3$", "$Skin4);
    return;
}

function CheckBob(float DeltaTime, float Speed2D, vector Y)
{
    local float OldBobTime;

    OldBobTime = BobTime;
    if ( Speed2D < 10 )
        BobTime += 0.2 * DeltaTime;
    else
        BobTime += DeltaTime * (0.3 + 0.7 * Speed2D/GroundSpeed);
    WalkBob = Y * 0.65 * Bob * Speed2D * sin(6 * BobTime);
    AppliedBob = AppliedBob * (1 - FMin(1, 16 * deltatime));
    if ( LandBob > 0.01 )
    {
        AppliedBob += FMin(1, 16 * deltatime) * LandBob;
        LandBob *= (1 - 8*Deltatime);
    }
    if ( Speed2D < 10 )
        WalkBob.Z = AppliedBob + Bob * 30 * sin(12 * BobTime);
    else
        WalkBob.Z = AppliedBob + Bob * Speed2D * sin(12 * BobTime);
}

exec function ViewPlayerNum(optional int num)
{
    local Pawn P;

    if ( !PlayerReplicationInfo.bIsSpectator && !Level.Game.bTeamGame )
        return;
    if ( num >= 0 )
    {
        P = Pawn(ViewTarget);
        if ( (P != None) && P.bIsPlayer && (P.PlayerReplicationInfo.TeamID == num) )
        {
            ViewTarget = None;
            bBehindView = false;
            return;
        }
        for ( P=Level.PawnList; P!=None; P=P.NextPawn )
            if ( (P.PlayerReplicationInfo != None) && (P.PlayerReplicationInfo.Team == PlayerReplicationInfo.Team)
                && !P.PlayerReplicationInfo.bIsSpectator
                && (P.PlayerReplicationInfo.TeamID == num) )
            {
                if ( P != self )
                {
                    ViewTarget = P;
                    bBehindView = true;
                }
                return;
            }
        return;
    }
    if ( Role == ROLE_Authority )
    {
        ViewClass(class'Pawn', true);
        While ( (ViewTarget != None) 
                && (!Pawn(ViewTarget).bIsPlayer || Pawn(ViewTarget).PlayerReplicationInfo.bIsSpectator) )
            ViewClass(class'Pawn', true);

        if ( ViewTarget != None )
            ClientMessage(ViewingFrom@Pawn(ViewTarget).PlayerReplicationInfo.PlayerName, 'Event', true);
        else
            ClientMessage(ViewingFrom@OwnCamera, 'Event', true);
    }
}

exec function Profile()
{
    //TEMP for performance measurement

    log("Average AI Time"@Level.AvgAITime);
    log(" < 5% "$Level.AIProfile[0]);
    log(" < 10% "$Level.AIProfile[1]);
    log(" < 15% "$Level.AIProfile[2]);
    log(" < 20% "$Level.AIProfile[3]);
    log(" < 25% "$Level.AIProfile[4]);
    log(" < 30% "$Level.AIProfile[5]);
    log(" < 35% "$Level.AIProfile[6]);
    log(" > 35% "$Level.AIProfile[7]);
}

// Execute an administrative console command on the server.
exec function Admin( string CommandLine )
{
    local string Result;
    if( bAdmin )
        Result = ConsoleCommand( CommandLine );
    if( Result!="" )
        ClientMessage( Result );
}

// Login as the administrator.
exec function AdminLogin( string Password )
{
    Level.Game.AdminLogin( Self, Password );
}

// Logout as the administrator.
exec function AdminLogout()
{
    Level.Game.AdminLogout( Self );
}

exec function SShot()
{
    local float b;
    b = float(ConsoleCommand("get ini:Engine.Engine.ViewportManager Brightness"));
    ConsoleCommand("set ini:Engine.Engine.ViewportManager Brightness 1");
    ConsoleCommand("flush");
    ConsoleCommand("shot");
    ConsoleCommand("set ini:Engine.Engine.ViewportManager Brightness "$string(B));
    ConsoleCommand("flush");
}

exec function PlayerList()
{
    local PlayerReplicationInfo PRI;

    log("Player List:");
    ForEach AllActors(class'PlayerReplicationInfo', PRI)
        log(PRI.PlayerName@"( ping"@PRI.Ping$")");
}

//
// Native ClientSide Functions
//

event ReceiveLocalizedMessage( class<LocalMessage> Message, optional int Switch, optional PlayerReplicationInfo RelatedPRI_1, optional PlayerReplicationInfo RelatedPRI_2, optional Object OptionalObject )
{
    Message.Static.ClientReceive( Self, Switch, RelatedPRI_1, RelatedPRI_2, OptionalObject );
}

event ClientMessage( coerce string S, optional Name Type, optional bool bBeep )
{
    if (Player == None)
        return;

    if (Type == '')
        Type = 'Event';

    if (Player.Console != None)
        Player.Console.Message( PlayerReplicationInfo, S, Type );
    if (bBeep && bMessageBeep)
        PlayBeepSound();
    if ( myHUD != None )
        myHUD.Message( PlayerReplicationInfo, S, Type );
}

event TeamMessage( PlayerReplicationInfo PRI, coerce string S, name Type, optional bool bBeep  )
{
    if (Player.Console != None)
        Player.Console.Message ( PRI, S, Type );
    if (bBeep && bMessageBeep)
        PlayBeepSound();
    if ( myHUD != None )
        myHUD.Message( PRI, S, Type );
}

function ClientVoiceMessage(PlayerReplicationInfo Sender, PlayerReplicationInfo Recipient, name messagetype, byte messageID)
{
    local VoicePack V;

    if ( (Sender == None) || (Sender.voicetype == None) || (Player.Console == None) )
        return;
        
    V = Spawn(Sender.voicetype, self);
    if ( V != None )
        V.ClientInitialize(Sender, Recipient, messagetype, messageID);
}

simulated function PlayBeepSound();

//
// Send movement to the server.
// Passes acceleration in components so it doesn't get rounded.
//
function ServerMove
(
    float TimeStamp, 
    vector InAccel, 
    vector ClientLoc,
    bool NewbRun,
    bool NewbDuck,
    bool NewbJumpStatus, 
    bool bFired,
    bool bAltFired,
    bool bForceFire,
    bool bForceAltFire,
    eDodgeDir DodgeMove, 
    byte ClientRoll, 
    int View,
    optional byte OldTimeDelta,
    optional int OldAccel
)
{
    local float DeltaTime, clientErr, OldTimeStamp;
    local rotator DeltaRot, Rot;
    local vector Accel, LocDiff;
    local int maxPitch, ViewPitch, ViewYaw;
    local actor OldBase;
    local bool NewbPressedJump, OldbRun, OldbDuck;
    local eDodgeDir OldDodgeMove;

    // If this move is outdated, discard it.
    if ( CurrentTimeStamp >= TimeStamp )
        return;

    // if OldTimeDelta corresponds to a lost packet, process it first
    if (  OldTimeDelta != 0 )
    {
        OldTimeStamp = TimeStamp - float(OldTimeDelta)/500 - 0.001;
        if ( CurrentTimeStamp < OldTimeStamp - 0.001 )
        {
            // split out components of lost move (approx)
            Accel.X = OldAccel >>> 23;
            if ( Accel.X > 127 )
                Accel.X = -1 * (Accel.X - 128);
            Accel.Y = (OldAccel >>> 15) & 255;
            if ( Accel.Y > 127 )
                Accel.Y = -1 * (Accel.Y - 128);
            Accel.Z = (OldAccel >>> 7) & 255;
            if ( Accel.Z > 127 )
                Accel.Z = -1 * (Accel.Z - 128);
            Accel *= 20;
            
            OldbRun = ( (OldAccel & 64) != 0 );
            OldbDuck = ( (OldAccel & 32) != 0 );
            NewbPressedJump = ( (OldAccel & 16) != 0 );
            if ( NewbPressedJump )
                bJumpStatus = NewbJumpStatus;

            switch (OldAccel & 7)
            {
                case 0:
                    OldDodgeMove = DODGE_None;
                    break;
                case 1:
                    OldDodgeMove = DODGE_Left;
                    break;
                case 2:
                    OldDodgeMove = DODGE_Right;
                    break;
                case 3:
                    OldDodgeMove = DODGE_Forward;
                    break;
                case 4:
                    OldDodgeMove = DODGE_Back;
                    break;
            }
            //log("Recovered move from "$OldTimeStamp$" acceleration "$Accel$" from "$OldAccel);
            MoveAutonomous(OldTimeStamp - CurrentTimeStamp, OldbRun, OldbDuck, NewbPressedJump, OldDodgeMove, Accel, rot(0,0,0));
            CurrentTimeStamp = OldTimeStamp;
        }
    }       

    // View components
    ViewPitch = View/32768;
    ViewYaw = 2 * (View - 32768 * ViewPitch);
    ViewPitch *= 2;
    // Make acceleration.
    Accel = InAccel/10;

    NewbPressedJump = (bJumpStatus != NewbJumpStatus);
    bJumpStatus = NewbJumpStatus;

    // handle firing and alt-firing
    if ( bFired )
    {
        if ( bForceFire && (Weapon != None) )
            Weapon.ForceFire();
        else if ( bFire == 0 )
            Fire(0);
        bFire = 1;
    }
    else
        bFire = 0;


    if ( bAltFired )
    {
        if ( bForceAltFire && (Weapon != None) )
            Weapon.ForceAltFire();
        else if ( bAltFire == 0 )
            AltFire(0);
        bAltFire = 1;
    }
    else
        bAltFire = 0;

    // Save move parameters.
    DeltaTime = TimeStamp - CurrentTimeStamp;
    if ( ServerTimeStamp > 0 )
    {
        // allow 1% error
        TimeMargin += DeltaTime - 1.01 * (Level.TimeSeconds - ServerTimeStamp);
        if ( TimeMargin > MaxTimeMargin )
        {
            // player is too far ahead
            TimeMargin -= DeltaTime;
            if ( TimeMargin < 0.5 )
                MaxTimeMargin = Default.MaxTimeMargin;
            else
                MaxTimeMargin = 0.5;
            DeltaTime = 0;
        }
    }

    CurrentTimeStamp = TimeStamp;
    ServerTimeStamp = Level.TimeSeconds;
    Rot.Roll = 256 * ClientRoll;
    Rot.Yaw = ViewYaw;
    if ( (Physics == PHYS_Swimming) || (Physics == PHYS_Flying) )
        maxPitch = 2;
    else
        maxPitch = 1;
    If ( (ViewPitch > maxPitch * RotationRate.Pitch) && (ViewPitch < 65536 - maxPitch * RotationRate.Pitch) )
    {
        If (ViewPitch < 32768) 
            Rot.Pitch = maxPitch * RotationRate.Pitch;
        else
            Rot.Pitch = 65536 - maxPitch * RotationRate.Pitch;
    }
    else
        Rot.Pitch = ViewPitch;
    DeltaRot = (Rotation - Rot);
    ViewRotation.Pitch = ViewPitch;
    ViewRotation.Yaw = ViewYaw;
    ViewRotation.Roll = 0;
    SetRotation(Rot);

    OldBase = Base;

    // Perform actual movement.
    if ( (Level.Pauser == "") && (DeltaTime > 0) )
        MoveAutonomous(DeltaTime, NewbRun, NewbDuck, NewbPressedJump, DodgeMove, Accel, DeltaRot);

    // Accumulate movement error.
    if ( Level.TimeSeconds - LastUpdateTime > 500.0/Player.CurrentNetSpeed )
        ClientErr = 10000;
    else if ( Level.TimeSeconds - LastUpdateTime > 180.0/Player.CurrentNetSpeed )
    {
        LocDiff = Location - ClientLoc;
        ClientErr = LocDiff Dot LocDiff;
    }

    // If client has accumulated a noticeable positional error, correct him.
    if ( ClientErr > 3 )
    {
        if ( Mover(Base) != None )
            ClientLoc = Location - Base.Location;
        else
            ClientLoc = Location;
        //log("Client Error at "$TimeStamp$" is "$ClientErr$" with acceleration "$Accel$" LocDiff "$LocDiff$" Physics "$Physics);
        LastUpdateTime = Level.TimeSeconds;
        ClientAdjustPosition
        (
            TimeStamp, 
            GetStateName(), 
            Physics, 
            ClientLoc.X, 
            ClientLoc.Y, 
            ClientLoc.Z, 
            Velocity.X, 
            Velocity.Y, 
            Velocity.Z,
            Base
        );
    }
    //log("Server "$Role$" moved "$self$" stamp "$TimeStamp$" location "$Location$" Acceleration "$Acceleration$" Velocity "$Velocity);
}   

function ProcessMove ( float DeltaTime, vector newAccel, eDodgeDir DodgeMove, rotator DeltaRot)
{
    Acceleration = newAccel;
}

final function MoveAutonomous
(   
    float DeltaTime,    
    bool NewbRun,
    bool NewbDuck,
    bool NewbPressedJump, 
    eDodgeDir DodgeMove, 
    vector newAccel, 
    rotator DeltaRot
)
{
    if ( NewbRun )
        bRun = 1;
    else
        bRun = 0;

    if ( NewbDuck )
        bDuck = 1;
    else
        bDuck = 0;
    bPressedJump = NewbPressedJump;

    HandleWalking();
    ProcessMove(DeltaTime, newAccel, DodgeMove, DeltaRot);  
    AutonomousPhysics(DeltaTime);
    //log("Role "$Role$" moveauto time "$100 * DeltaTime$" ("$Level.TimeDilation$")");
}

// ClientAdjustPosition - pass newloc and newvel in components so they don't get rounded

function ClientAdjustPosition
(
    float TimeStamp, 
    name newState, 
    EPhysics newPhysics,
    float NewLocX, 
    float NewLocY, 
    float NewLocZ, 
    float NewVelX, 
    float NewVelY, 
    float NewVelZ,
    Actor NewBase
)
{
    local Decoration Carried;
    local vector OldLoc, NewLocation;

    if ( CurrentTimeStamp > TimeStamp )
        return;
    CurrentTimeStamp = TimeStamp;

    NewLocation.X = NewLocX;
    NewLocation.Y = NewLocY;
    NewLocation.Z = NewLocZ;
    Velocity.X = NewVelX;
    Velocity.Y = NewVelY;
    Velocity.Z = NewVelZ;

    SetBase(NewBase);
    if ( Mover(NewBase) != None )
        NewLocation += NewBase.Location;

    //log("Client "$Role$" adjust "$self$" stamp "$TimeStamp$" location "$Location);
    Carried = CarriedDecoration;
    OldLoc = Location;
    bCanTeleport = false;
    SetLocation(NewLocation);
    bCanTeleport = true;
    if ( Carried != None )
    {
        CarriedDecoration = Carried;
        CarriedDecoration.SetLocation(NewLocation + CarriedDecoration.Location - OldLoc);
        CarriedDecoration.SetPhysics(PHYS_None);
        CarriedDecoration.SetBase(self);
    }
    SetPhysics(newPhysics);

    if ( !IsInState(newState) )
        GotoState(newState);

    bUpdatePosition = true;
}

function ClientUpdatePosition()
{
    local SavedMove CurrentMove;
    local int realbRun, realbDuck;
    local bool bRealJump;

    local float TotalTime, AdjPCol;
    local pawn P;
    local vector Dir;

    bUpdatePosition = false;
    realbRun= bRun;
    realbDuck = bDuck;
    bRealJump = bPressedJump;
    CurrentMove = SavedMoves;
    bUpdating = true;
    while ( CurrentMove != None )
    {
        if ( CurrentMove.TimeStamp <= CurrentTimeStamp )
        {
            SavedMoves = CurrentMove.NextMove;
            CurrentMove.NextMove = FreeMoves;
            FreeMoves = CurrentMove;
            FreeMoves.Clear();
            CurrentMove = SavedMoves;
        }
        else
        {
            // adjust radius of nearby players with uncertain location
            if ( TotalTime > 0 )
                ForEach AllActors(class'Pawn', P)
                    if ( (P != self) && (P.Velocity != vect(0,0,0)) && P.bBlockPlayers )
                    {
                        Dir = Normal(P.Location - Location);
                        if ( (Velocity Dot Dir > 0) && (P.Velocity Dot Dir > 0) )
                        {
                            // if other pawn moving away from player, push it away if its close
                            // since the client-side position is behind the server side position
                            if ( VSize(P.Location - Location) < P.CollisionRadius + CollisionRadius + CurrentMove.Delta * GroundSpeed )
                                P.MoveSmooth(P.Velocity * 0.5 * PlayerReplicationInfo.Ping);
                        }
                    } 
            TotalTime += CurrentMove.Delta;
            MoveAutonomous(CurrentMove.Delta, CurrentMove.bRun, CurrentMove.bDuck, CurrentMove.bPressedJump, CurrentMove.DodgeMove, CurrentMove.Acceleration, rot(0,0,0));
            CurrentMove = CurrentMove.NextMove;
        }
    }
    bUpdating = false;
    bDuck = realbDuck;
    bRun = realbRun;
    bPressedJump = bRealJump;
    //log("Client adjusted "$self$" stamp "$CurrentTimeStamp$" location "$Location$" dodge "$DodgeDir);
}

final function SavedMove GetFreeMove()
{
    local SavedMove s;

    if ( FreeMoves == None )
        return Spawn(class'SavedMove');
    else
    {
        s = FreeMoves;
        FreeMoves = FreeMoves.NextMove;
        s.NextMove = None;
        return s;
    }   
}

function int CompressAccel(int C)
{
    if ( C >= 0 )
        C = Min(C, 127);
    else
        C = Min(abs(C), 127) + 128;
    return C;
}

//
// Replicate this client's desired movement to the server.
//
function ReplicateMove
(
    float DeltaTime, 
    vector NewAccel, 
    eDodgeDir DodgeMove, 
    rotator DeltaRot
)
{
    local SavedMove NewMove, OldMove, LastMove;
    local byte ClientRoll;
    local int i;
    local float OldTimeDelta, TotalTime, NetMoveDelta;
    local int OldAccel;
    local vector BuildAccel, AccelNorm;

    local float AdjPCol;
    local pawn P;
    local vector Dir;

    // Get a SavedMove actor to store the movement in.
    if ( PendingMove != None )
    {
        //add this move to the pending move
        PendingMove.TimeStamp = Level.TimeSeconds; 
        if ( VSize(NewAccel) > 3072 )
            NewAccel = 3072 * Normal(NewAccel);
        TotalTime = PendingMove.Delta + DeltaTime;
        PendingMove.Acceleration = (DeltaTime * NewAccel + PendingMove.Delta * PendingMove.Acceleration)/TotalTime;

        // Set this move's data.
        if ( PendingMove.DodgeMove == DODGE_None )
            PendingMove.DodgeMove = DodgeMove;
        PendingMove.bRun = (bRun > 0);
        PendingMove.bDuck = (bDuck > 0);
        PendingMove.bPressedJump = bPressedJump || PendingMove.bPressedJump;
        PendingMove.bFire = PendingMove.bFire || bJustFired || (bFire != 0);
        PendingMove.bForceFire = PendingMove.bForceFire || bJustFired;
        PendingMove.bAltFire = PendingMove.bAltFire || bJustAltFired || (bAltFire != 0);
        PendingMove.bForceAltFire = PendingMove.bForceAltFire || bJustFired;
        PendingMove.Delta = TotalTime;
    }
    if ( SavedMoves != None )
    {
        NewMove = SavedMoves;
        AccelNorm = Normal(NewAccel);
        while ( NewMove.NextMove != None )
        {
            // find most recent interesting move to send redundantly
            if ( NewMove.bPressedJump || ((NewMove.DodgeMove != Dodge_NONE) && (NewMove.DodgeMove < 5))
                || ((NewMove.Acceleration != NewAccel) && ((normal(NewMove.Acceleration) Dot AccelNorm) < 0.95)) )
                OldMove = NewMove;
            NewMove = NewMove.NextMove;
        }
        if ( NewMove.bPressedJump || ((NewMove.DodgeMove != Dodge_NONE) && (NewMove.DodgeMove < 5))
            || ((NewMove.Acceleration != NewAccel) && ((normal(NewMove.Acceleration) Dot AccelNorm) < 0.95)) )
            OldMove = NewMove;
    }

    LastMove = NewMove;
    NewMove = GetFreeMove();
    NewMove.Delta = DeltaTime;
    if ( VSize(NewAccel) > 3072 )
        NewAccel = 3072 * Normal(NewAccel);
    NewMove.Acceleration = NewAccel;

    // Set this move's data.
    NewMove.DodgeMove = DodgeMove;
    NewMove.TimeStamp = Level.TimeSeconds;
    NewMove.bRun = (bRun > 0);
    NewMove.bDuck = (bDuck > 0);
    NewMove.bPressedJump = bPressedJump;
    NewMove.bFire = (bJustFired || (bFire != 0));
    NewMove.bForceFire = bJustFired;
    NewMove.bAltFire = (bJustAltFired || (bAltFire != 0));
    NewMove.bForceAltFire = bJustAltFired;
    if ( Weapon != None ) // approximate pointing so don't have to replicate
        Weapon.bPointing = ((bFire != 0) || (bAltFire != 0));
    bJustFired = false;
    bJustAltFired = false;
    
    // adjust radius of nearby players with uncertain location
    ForEach AllActors(class'Pawn', P)
        if ( (P != self) && (P.Velocity != vect(0,0,0)) && P.bBlockPlayers )
        {
            Dir = Normal(P.Location - Location);
            if ( (Velocity Dot Dir > 0) && (P.Velocity Dot Dir > 0) )
            {
                // if other pawn moving away from player, push it away if its close
                // since the client-side position is behind the server side position
                if ( VSize(P.Location - Location) < P.CollisionRadius + CollisionRadius + NewMove.Delta * GroundSpeed )
                    P.MoveSmooth(P.Velocity * 0.5 * PlayerReplicationInfo.Ping);
            }
        } 

    // Simulate the movement locally.
    ProcessMove(NewMove.Delta, NewMove.Acceleration, NewMove.DodgeMove, DeltaRot);
    AutonomousPhysics(NewMove.Delta);

    //log("Role "$Role$" repmove at "$Level.TimeSeconds$" Move time "$100 * DeltaTime$" ("$Level.TimeDilation$")");

    // Decide whether to hold off on move
    // send if dodge, jump, or fire unless really too soon, or if newmove.delta big enough
    // on client side, save extra buffered time in LastUpdateTime
    if ( PendingMove == None )
        PendingMove = NewMove;
    else
    {
        NewMove.NextMove = FreeMoves;
        FreeMoves = NewMove;
        FreeMoves.Clear();
        NewMove = PendingMove;
    }
    NetMoveDelta = FMax(64.0/Player.CurrentNetSpeed, 0.011);
    
    if ( !PendingMove.bForceFire && !PendingMove.bForceAltFire && !PendingMove.bPressedJump
        && (PendingMove.Delta < NetMoveDelta - ClientUpdateTime) )
    {
        // save as pending move
        return;
    }
    else if ( (ClientUpdateTime < 0) && (PendingMove.Delta < NetMoveDelta - ClientUpdateTime) )
        return;
    else
    {
        ClientUpdateTime = PendingMove.Delta - NetMoveDelta;
        if ( SavedMoves == None )
            SavedMoves = PendingMove;
        else
            LastMove.NextMove = PendingMove;
        PendingMove = None;
    }

    // check if need to redundantly send previous move
    if ( OldMove != None )
    {
        // log("Redundant send timestamp "$OldMove.TimeStamp$" accel "$OldMove.Acceleration$" at "$Level.Timeseconds$" New accel "$NewAccel);
        // old move important to replicate redundantly
        OldTimeDelta = FMin(255, (Level.TimeSeconds - OldMove.TimeStamp) * 500);
        BuildAccel = 0.05 * OldMove.Acceleration + vect(0.5, 0.5, 0.5);
        OldAccel = (CompressAccel(BuildAccel.X) << 23) 
                    + (CompressAccel(BuildAccel.Y) << 15) 
                    + (CompressAccel(BuildAccel.Z) << 7);
        if ( OldMove.bRun )
            OldAccel += 64;
        if ( OldMove.bDuck )
            OldAccel += 32;
        if ( OldMove.bPressedJump )
            OldAccel += 16;
        OldAccel += OldMove.DodgeMove;
    }
    //else
    //	log("No redundant timestamp at "$Level.TimeSeconds$" with accel "$NewAccel);

    // Send to the server
    ClientRoll = (Rotation.Roll >> 8) & 255;
    if ( NewMove.bPressedJump )
        bJumpStatus = !bJumpStatus;
    ServerMove
    (
        NewMove.TimeStamp, 
        NewMove.Acceleration * 10, 
        Location, 
        NewMove.bRun,
        NewMove.bDuck,
        bJumpStatus, 
        NewMove.bFire,
        NewMove.bAltFire,
        NewMove.bForceFire,
        NewMove.bForceAltFire,
        NewMove.DodgeMove, 
        ClientRoll,
        (32767 & (ViewRotation.Pitch/2)) * 32768 + (32767 & (ViewRotation.Yaw/2)),
        OldTimeDelta,
        OldAccel 
    );
    //log("Replicated "$self$" stamp "$NewMove.TimeStamp$" location "$Location$" dodge "$NewMove.DodgeMove$" to "$DodgeDir);
}

function HandleWalking()
{
    local rotator carried;

    bIsWalking = ((bRun != 0) || (bDuck != 0)) && !Region.Zone.IsA('WarpZoneInfo'); 
    if ( CarriedDecoration != None )
    {
        if ( (Role == ROLE_Authority) && (standingcount == 0) ) 
            CarriedDecoration = None;
        if ( CarriedDecoration != None ) //verify its still in front
        {
            bIsWalking = true;
            if ( Role == ROLE_Authority )
            {
                carried = Rotator(CarriedDecoration.Location - Location);
                carried.Yaw = ((carried.Yaw & 65535) - (Rotation.Yaw & 65535)) & 65535;
                if ( (carried.Yaw > 3072) && (carried.Yaw < 62463) )
                    DropDecoration();
            }
        }
    }
}

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

simulated event Destroyed()
{
    Super.Destroyed();
    if ( myHud != None )
        myHud.Destroy();
    if ( Scoring != None )
        Scoring.Destroy();

    While ( FreeMoves != None )
    {
        FreeMoves.Destroy();
        FreeMoves = FreeMoves.NextMove;
    }

    While ( SavedMoves != None )
    {
        SavedMoves.Destroy();
        SavedMoves = SavedMoves.NextMove;
    }
}

function ServerReStartGame()
{
}

function PlayHit(float Damage, vector HitLocation, name damageType, vector Momentum)
{
    Level.Game.SpecialDamageString = "";
}

function SetFOVAngle(float newFOV)
{
    FOVAngle = newFOV;
}
     
function ClientFlash( float scale, vector fog )
{
    DesiredFlashScale = scale;
    DesiredFlashFog = 0.001 * fog;
}

function ClientInstantFlash( float scale, vector fog )
{
    InstantFlash = scale;
    InstantFog = 0.001 * fog;
}

//Play a sound client side (so only client will hear it
simulated function ClientPlaySound(sound ASound, optional bool bInterrupt, optional bool bVolumeControl )
{   
    local actor SoundPlayer;

    LastPlaySound = Level.TimeSeconds;  // so voice messages won't overlap
    if ( ViewTarget != None )
        SoundPlayer = ViewTarget;
    else
        SoundPlayer = self;

    SoundPlayer.PlaySound(ASound, SLOT_None, 16.0, bInterrupt);
    SoundPlayer.PlaySound(ASound, SLOT_Interface, 16.0, bInterrupt);
    SoundPlayer.PlaySound(ASound, SLOT_Misc, 16.0, bInterrupt);
    SoundPlayer.PlaySound(ASound, SLOT_Talk, 16.0, bInterrupt);
}

simulated function ClientReliablePlaySound(sound ASound, optional bool bInterrupt, optional bool bVolumeControl )
{
    ClientPlaySound(ASound, bInterrupt, bVolumeControl);
}
   
function ClientAdjustGlow( float scale, vector fog )
{
    ConstantGlowScale += scale;
    ConstantGlowFog += 0.001 * fog;
}

function ClientShake(vector shake)
{
    if ( (shakemag < shake.X) || (shaketimer <= 0.01 * shake.Y) )
    {
        shakemag = shake.X;
        shaketimer = 0.01 * shake.Y;    
        maxshake = 0.01 * shake.Z;
        verttimer = 0;
        ShakeVert = -1.1 * maxshake;
    }
}

function ShakeView( float shaketime, float RollMag, float vertmag)
{
    local vector shake;

    shake.X = RollMag;
    shake.Y = 100 * shaketime;
    shake.Z = 100 * vertmag;
    ClientShake(shake);
}

function ClientSetMusic( music NewSong, byte NewSection, byte NewCdTrack, EMusicTransition NewTransition )
{
    Song        = NewSong;
    SongSection = NewSection;
    CdTrack     = NewCdTrack;
    Transition  = NewTransition;
}

function ServerFeignDeath()
{
}

function ServerSetHandedness( float hand)
{
    Handedness = hand;
    if ( Weapon != None )
        Weapon.SetHand(Handedness);
}

function ServerReStartPlayer()
{
}

function ServerChangeSkin( coerce string SkinName, coerce string FaceName, byte TeamNum )
{
    local string MeshName;

    MeshName = GetItemName(string(Mesh));
    if ( Level.Game.bCanChangeSkin )
    {
        Self.static.SetMultiSkin(Self, SkinName, FaceName, TeamNum );
    }
}

//*************************************************************************************
// Normal gameplay execs
// Type the name of the exec function at the console to execute it

exec function ShowSpecialMenu( string ClassName )
{
    local class<menu> aMenuClass;

    aMenuClass = class<menu>( DynamicLoadObject( ClassName, class'Class' ) );
    if( aMenuClass!=None )
    {
        bSpecialMenu = true;
        SpecialMenu = aMenuClass;
        ShowMenu();
    }
}
    
exec function Jump( optional float F )
{
    if ( !bShowMenu && (Level.Pauser == PlayerReplicationInfo.PlayerName) )
        SetPause(False);
    else
        bPressedJump = true;
}

exec function CauseEvent( name N )
{
    local actor A;
    if( !bCheatsEnabled )
        return;
    if( (bAdmin || (Level.Netmode == NM_Standalone)) && (N != '') )
        foreach AllActors( class 'Actor', A, N )
            A.Trigger( Self, Self );
}

exec function Taunt( name Sequence )
{
    if ( GetAnimGroup(Sequence) == 'Gesture' ) 
    {
        ServerTaunt(Sequence);
        PlayAnim(Sequence, 0.7, 0.2);
    }
}

function ServerTaunt(name Sequence )
{
    PlayAnim(Sequence, 0.7, 0.2);
}

exec function FeignDeath()
{
}

exec function CallForHelp()
{
    local Pawn P;

    if ( !Level.Game.bTeamGame || (Enemy == None) || (Enemy.Health <= 0) )
        return;

    for ( P=Level.PawnList; P!=None; P=P.NextPawn )
        if ( P.bIsPlayer && (P.PlayerReplicationInfo.Team == PlayerReplicationInfo.Team) )
            P.HandleHelpMessageFrom(self);
}

function damageAttitudeTo(pawn Other)
{
    if ( Other != Self )
        Enemy = Other;
}

exec function Grab()
{
    if (CarriedDecoration == None)
        GrabDecoration();
    else
        DropDecoration();
}

// Send a voice message of a certain type to a certain player.
exec function Speech( int Type, int Index, int Callsign )
{
    local VoicePack V;

    V = Spawn( PlayerReplicationInfo.VoiceType, Self );
    if (V != None)
        V.PlayerSpeech( Type, Index, Callsign );
}

function PlayChatting();

function Typing( bool bTyping )
{
    bIsTyping = bTyping;
    if (bTyping)
    {
        if (Level.Game.WorldLog != None)
            Level.Game.WorldLog.LogTypingEvent(True, Self);
        if (Level.Game.LocalLog != None)
            Level.Game.LocalLog.LogTypingEvent(True, Self);
        PlayChatting();
    } 
    else 
    {
        if (Level.Game.WorldLog != None)
            Level.Game.WorldLog.LogTypingEvent(False, Self);
        if (Level.Game.LocalLog != None)
            Level.Game.LocalLog.LogTypingEvent(False, Self);
    }
}


// Send a message to all players.
exec function Say( string Msg )
{
    local Pawn P;

    if ( bAdmin && (left(Msg,1) == "#") )
    {
        Msg = right(Msg,len(Msg)-1);
        for( P=Level.PawnList; P!=None; P=P.nextPawn )
            if( P.IsA('PlayerPawn') )
            {
                PlayerPawn(P).ClearProgressMessages();
                PlayerPawn(P).SetProgressTime(6);
                PlayerPawn(P).SetProgressMessage(Msg,0);
            }
        return;
    }
    if ( Level.Game.AllowsBroadcast(self, Len(Msg)) )
        for( P=Level.PawnList; P!=None; P=P.nextPawn )
            if( P.bIsPlayer || P.IsA('MessagingSpectator') )
            {
                if ( (Level.Game != None) && (Level.Game.MessageMutator != None) )
                {
                    if ( Level.Game.MessageMutator.MutatorTeamMessage(Self, P, PlayerReplicationInfo, Msg, 'Say', true) )
                        P.TeamMessage( PlayerReplicationInfo, Msg, 'Say', true );
                } else
                    P.TeamMessage( PlayerReplicationInfo, Msg, 'Say', true );
            }
    return;
}

exec function TeamSay( string Msg )
{
    local Pawn P;

    if ( !Level.Game.bTeamGame )
    {
        Say(Msg);
        return;
    }

    if ( Msg ~= "Help" )
    {
        CallForHelp();
        return;
    }
            
    if ( Level.Game.AllowsBroadcast(self, Len(Msg)) )
        for( P=Level.PawnList; P!=None; P=P.nextPawn )
            if( P.bIsPlayer && (P.PlayerReplicationInfo.Team == PlayerReplicationInfo.Team) )
            {
                if ( P.IsA('PlayerPawn') )
                {
                    if ( (Level.Game != None) && (Level.Game.MessageMutator != None) )
                    {
                        if ( Level.Game.MessageMutator.MutatorTeamMessage(Self, P, PlayerReplicationInfo, Msg, 'TeamSay', true) )
                            P.TeamMessage( PlayerReplicationInfo, Msg, 'TeamSay', true );
                    } else
                        P.TeamMessage( PlayerReplicationInfo, Msg, 'TeamSay', true );
                }
            }
}

exec function RestartLevel()
{
    if( bAdmin || Level.Netmode==NM_Standalone )
        ClientTravel( "?restart", TRAVEL_Relative, false );
}

exec function LocalTravel( string URL )
{
    if( bAdmin || Level.Netmode==NM_Standalone )
        ClientTravel( URL, TRAVEL_Relative, true );
}

exec function ThrowWeapon()
{
    if( Level.NetMode == NM_Client )
        return;
    if( Weapon==None || (Weapon.Class==Level.Game.BaseMutator.MutatedDefaultWeapon())
        || !Weapon.bCanThrow )
        return;
    Weapon.Velocity = Vector(ViewRotation) * 500 + vect(0,0,220);
    Weapon.bTossedOut = true;
    TossWeapon();
    if ( Weapon == None )
        SwitchToBestWeapon();
}

function ToggleZoom()
{
    if ( DefaultFOV != DesiredFOV )
        EndZoom();
    else
        StartZoom();
}
    
function StartZoom()
{
    ZoomLevel = 0.0;
    bZooming = true;
}

function StopZoom()
{
    bZooming = false;
}

function EndZoom()
{
    bZooming = false;
    DesiredFOV = DefaultFOV;
}

exec function FOV(float F)
{
    SetDesiredFOV(F);
}
    
exec function SetDesiredFOV(float F)
{
    if( (F >= 80.0) || Level.bAllowFOV || bAdmin || (Level.Netmode==NM_Standalone) )
    {
        DefaultFOV = FClamp(F, 1, 170);
        DesiredFOV = DefaultFOV;
        SaveConfig();
    }
}

/* PrevWeapon()
- switch to previous inventory group weapon
*/
exec function PrevWeapon()
{
    local int prevGroup;
    local Inventory inv;
    local Weapon realWeapon, w, Prev;
    local bool bFoundWeapon;

    if( bShowMenu || Level.Pauser!="" )
        return;
    if ( Weapon == None )
    {
        SwitchToBestWeapon();
        return;
    }
    prevGroup = 0;
    realWeapon = Weapon;
    if ( PendingWeapon != None )
        Weapon = PendingWeapon;
    PendingWeapon = None;
    
    for (inv=Inventory; inv!=None; inv=inv.Inventory)
    {
        w = Weapon(inv);
        if ( w != None )
        {
            if ( w.InventoryGroup == Weapon.InventoryGroup )
            {
                if ( w == Weapon )
                {
                    bFoundWeapon = true;
                    if ( Prev != None )
                    {
                        PendingWeapon = Prev;
                        break;
                    }
                }
                else if ( !bFoundWeapon && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) )
                    Prev = W;
            }
            else if ( (w.InventoryGroup < Weapon.InventoryGroup) 
                    && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) 
                    && (w.InventoryGroup >= prevGroup) )
            {
                prevGroup = w.InventoryGroup;
                PendingWeapon = w;
            }
        }
    }
    bFoundWeapon = false;
    prevGroup = Weapon.InventoryGroup;
    if ( PendingWeapon == None )
        for (inv=Inventory; inv!=None; inv=inv.Inventory)
        {
            w = Weapon(inv);
            if ( w != None )
            {
                if ( w.InventoryGroup == Weapon.InventoryGroup )
                {
                    if ( w == Weapon )
                        bFoundWeapon = true;
                    else if ( bFoundWeapon && (PendingWeapon == None) && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) )
                        PendingWeapon = W;
                }
                else if ( (w.InventoryGroup > PrevGroup) 
                        && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) ) 
                {
                    prevGroup = w.InventoryGroup;
                    PendingWeapon = w;
                }
            }
        }

    Weapon = realWeapon;
    if ( PendingWeapon == None )
        return;

    Weapon.PutDown();
}

/* NextWeapon()
- switch to next inventory group weapon
*/
exec function NextWeapon()
{
    local int nextGroup;
    local Inventory inv;
    local Weapon realWeapon, w, Prev;
    local bool bFoundWeapon;

    if( bShowMenu || Level.Pauser!="" )
        return;
    if ( Weapon == None )
    {
        SwitchToBestWeapon();
        return;
    }
    nextGroup = 100;
    realWeapon = Weapon;
    if ( PendingWeapon != None )
        Weapon = PendingWeapon;
    PendingWeapon = None;

    for (inv=Inventory; inv!=None; inv=inv.Inventory)
    {
        w = Weapon(inv);
        if ( w != None )
        {
            if ( w.InventoryGroup == Weapon.InventoryGroup )
            {
                if ( w == Weapon )
                    bFoundWeapon = true;
                else if ( bFoundWeapon && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) )
                {
                    PendingWeapon = W;
                    break;
                }
            }
            else if ( (w.InventoryGroup > Weapon.InventoryGroup) 
                    && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) 
                    && (w.InventoryGroup < nextGroup) )
            {
                nextGroup = w.InventoryGroup;
                PendingWeapon = w;
            }
        }
    }

    bFoundWeapon = false;
    nextGroup = Weapon.InventoryGroup;
    if ( PendingWeapon == None )
        for (inv=Inventory; inv!=None; inv=inv.Inventory)
        {
            w = Weapon(Inv);
            if ( w != None )
            {
                if ( w.InventoryGroup == Weapon.InventoryGroup )
                {
                    if ( w == Weapon )
                    {
                        bFoundWeapon = true;
                        if ( Prev != None )
                            PendingWeapon = Prev;
                    }
                    else if ( !bFoundWeapon && (PendingWeapon == None) && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) )
                        Prev = W;
                }
                else if ( (w.InventoryGroup < nextGroup) 
                    && ((w.AmmoType == None) || (w.AmmoType.AmmoAmount>0)) ) 
                {
                    nextGroup = w.InventoryGroup;
                    PendingWeapon = w;
                }
            }
        }

    Weapon = realWeapon;
    if ( PendingWeapon == None )
        return;

    Weapon.PutDown();
}

exec function Mutate(string MutateString)
{
    if( Level.NetMode == NM_Client )
        return;
    Level.Game.BaseMutator.Mutate(MutateString, Self);
}

exec function QuickSave()
{
    if ( (Health > 0) 
        && (Level.NetMode == NM_Standalone)
        && !Level.Game.bDeathMatch )
    {
        ClientMessage(QuickSaveString);
        ConsoleCommand("SaveGame 9");
    }
}

exec function QuickLoad()
{
    if ( (Level.NetMode == NM_Standalone)
        && !Level.Game.bDeathMatch )
        ClientTravel( "?load=9", TRAVEL_Absolute, false);
}

exec function Kick( string S ) 
{
    local Pawn aPawn;
    if( !bAdmin )
        return;
    for( aPawn=Level.PawnList; aPawn!=None; aPawn=aPawn.NextPawn )
        if
        (   aPawn.bIsPlayer
            &&  aPawn.PlayerReplicationInfo.PlayerName~=S 
            &&  (PlayerPawn(aPawn)==None || NetConnection(PlayerPawn(aPawn).Player)!=None ) )
        {
            aPawn.Destroy();
            return;
        }
}

exec function KickBan( string S ) 
{
    local Pawn aPawn;
    local string IP;
    local int j;
    if( !bAdmin )
        return;
    for( aPawn=Level.PawnList; aPawn!=None; aPawn=aPawn.NextPawn )
        if
        (   aPawn.bIsPlayer
            &&  aPawn.PlayerReplicationInfo.PlayerName~=S 
            &&  (PlayerPawn(aPawn)==None || NetConnection(PlayerPawn(aPawn).Player)!=None ) )
        {
            IP = PlayerPawn(aPawn).GetPlayerNetworkAddress();
            if(Level.Game.CheckIPPolicy(IP))
            {
                IP = Left(IP, InStr(IP, ":"));
                Log("Adding IP Ban for: "$IP);
                for(j=0;j<50;j++)
                    if(Level.Game.IPPolicies[j] == "")
                        break;
                if(j < 50)
                    Level.Game.IPPolicies[j] = "DENY,"$IP;
                Level.Game.SaveConfig();
            }
            aPawn.Destroy();
            return;
        }
}

// Try to set the pause state; returns success indicator.
function bool SetPause( BOOL bPause )
{
    return Level.Game.SetPause(bPause, self);
}

exec function SetMouseSmoothThreshold( float F )
{
    MouseSmoothThreshold = FClamp(F, 0, 0.1);
    SaveConfig();
}

exec function SetMaxMouseSmoothing( bool B )
{
    bMaxMouseSmoothing = B;
    SaveConfig();
}

// Try to pause the game.
exec function Pause()
{
    if ( bShowMenu )
        return;
    if( !SetPause(Level.Pauser=="") )
        ClientMessage(NoPauseMessage);
}

// Activate specific inventory item
exec function ActivateInventoryItem( class InvItem )
{
    local Inventory Inv;

    Inv = FindInventoryType(InvItem);
    if ( Inv != None )
        Inv.Activate();
}

// Translator Hotkey
exec function ActivateTranslator()
{
    if ( bShowMenu || Level.Pauser!="" )
        return;
    If (Inventory!=None) Inventory.ActivateTranslator(False);
}

// Translator Hotkey
exec function ActivateHint()
{
    if ( bShowMenu || Level.Pauser!="" )
        return;
    If (Inventory!=None) Inventory.ActivateTranslator(True);
}

// HUD
exec function ChangeHud()
{
    if ( myHud != None )
        myHUD.ChangeHud(1);
    myHUD.SaveConfig();
}

// Crosshair
exec function ChangeCrosshair()
{
    if ( myHud != None ) 
        myHUD.ChangeCrosshair(1);
    myHUD.SaveConfig();
}


event PreRender( canvas Canvas )
{
    if ( myHud != None )    
        myHUD.PreRender(Canvas);
    else if ( (Viewport(Player) != None) && (HUDType != None) )
        myHUD = spawn(HUDType, self);
}

event PostRender( canvas Canvas )
{
    if ( myHud != None )    
        myHUD.PostRender(Canvas);
    else if ( (Viewport(Player) != None) && (HUDType != None) )
        myHUD = spawn(HUDType, self);
}

//=============================================================================
// Inventory-related input notifications.

// Handle function keypress for F1-F10.
exec function FunctionKey( byte Num )
{
}

// The player wants to switch to weapon group numer I.
exec function SwitchWeapon (byte F )
{
    local weapon newWeapon;

    if ( bShowMenu || Level.Pauser!="" )
    {
        if ( myHud != None )
            myHud.InputNumber(F);
        return;
    }
    if ( Inventory == None )
        return;
    if ( (Weapon != None) && (Weapon.Inventory != None) )
        newWeapon = Weapon.Inventory.WeaponChange(F);
    else
        newWeapon = None;   
    if ( newWeapon == None )
        newWeapon = Inventory.WeaponChange(F);
    if ( newWeapon == None )
        return;

    if ( Weapon == None )
    {
        PendingWeapon = newWeapon;
        ChangedWeapon();
    }
    else if ( Weapon != newWeapon )
    {
        PendingWeapon = newWeapon;
        if ( !Weapon.PutDown() )
            PendingWeapon = None;
    }
}

exec function GetWeapon(class<Weapon> NewWeaponClass )
{
    local Inventory Inv;

    if ( (Inventory == None) || (NewWeaponClass == None)
        || ((Weapon != None) && (Weapon.Class == NewWeaponClass)) )
        return;

    for ( Inv=Inventory; Inv!=None; Inv=Inv.Inventory )
        if ( Inv.Class == NewWeaponClass )
        {
            PendingWeapon = Weapon(Inv);
            if ( (PendingWeapon.AmmoType != None) && (PendingWeapon.AmmoType.AmmoAmount <= 0) )
            {
                Pawn(Owner).ClientMessage( PendingWeapon.ItemName$PendingWeapon.MessageNoAmmo );
                PendingWeapon = None;
                return;
            }
            Weapon.PutDown();
            return;
        }
}
    
// The player wants to select previous item
exec function PrevItem()
{
    local Inventory Inv, LastItem;

    if ( bShowMenu || Level.Pauser!="" )
        return;
    if (SelectedItem==None) {
        SelectedItem = Inventory.SelectNext();
        Return;
    }
    if (SelectedItem.Inventory!=None) 
        for( Inv=SelectedItem.Inventory; Inv!=None; Inv=Inv.Inventory ) {
            if (Inv==None) Break;
            if (Inv.bActivatable) LastItem=Inv;
        }
    for( Inv=Inventory; Inv!=SelectedItem; Inv=Inv.Inventory ) {
        if (Inv==None) Break;
        if (Inv.bActivatable) LastItem=Inv;
    }
    if (LastItem!=None) {
        SelectedItem = LastItem;
        ClientMessage(SelectedItem.ItemName$SelectedItem.M_Selected);
    }
}

// The player wants to active selected item
exec function ActivateItem()
{
    if( bShowMenu || Level.Pauser!="" )
        return;
    if (SelectedItem!=None) 
        SelectedItem.Activate();
}

// The player wants to fire.
exec function Fire( optional float F )
{
    bJustFired = true;
    if( bShowMenu || (Level.Pauser!="") || (Role < ROLE_Authority) )
    {
        if( (Role < ROLE_Authority) && (Weapon!=None) )
            bJustFired = Weapon.ClientFire(F);
        if ( !bShowMenu && (Level.Pauser == PlayerReplicationInfo.PlayerName)  )
            SetPause(False);
        return;
    }
    if( Weapon!=None )
    {
        Weapon.bPointing = true;
        PlayFiring();
        Weapon.Fire(F);
    }
}

// The player wants to alternate-fire.
exec function AltFire( optional float F )
{
    bJustAltFired = true;
    if( bShowMenu || (Level.Pauser!="") || (Role < ROLE_Authority) )
    {
        if( (Role < ROLE_Authority) && (Weapon!=None) )
            bJustAltFired = Weapon.ClientAltFire(F);
        if ( !bShowMenu && (Level.Pauser == PlayerReplicationInfo.PlayerName) )
            SetPause(False);
        return;
    }
    if( Weapon!=None )
    {
        Weapon.bPointing = true;
        PlayFiring();
        Weapon.AltFire(F);
    }
}

//Player Jumped
function DoJump( optional float F )
{
    if ( CarriedDecoration != None )
        return;
    if ( !bIsCrouching && (Physics == PHYS_Walking) )
    {
        if ( !bUpdating )
            PlayOwnedSound(JumpSound, SLOT_Talk, 1.5, true, 1200, 1.0 );
        if ( (Level.Game != None) && (Level.Game.Difficulty > 0) )
            MakeNoise(0.1 * Level.Game.Difficulty);
        PlayInAir();
        if ( bCountJumps && (Role == ROLE_Authority) && (Inventory != None) )
            Inventory.OwnerJumped();
        Velocity.Z = JumpZ;
        if ( (Base != Level) && (Base != None) )
            Velocity.Z += Base.Velocity.Z; 
        SetPhysics(PHYS_Falling);
    }
}

exec function Suicide()
{
    KilledBy( None );
}

exec function AlwaysMouseLook( Bool B )
{
    ChangeAlwaysMouseLook(B);
    SaveConfig();
}

function ChangeAlwaysMouseLook(Bool B)
{
    bAlwaysMouseLook = B;
    if ( bAlwaysMouseLook )
        bLookUpStairs = false;
}
    
exec function SnapView( bool B )
{
    ChangeSnapView(B);
    SaveConfig();
}

function ChangeSnapView( bool B )
{
    bSnapToLevel = B;
}
    
exec function StairLook( bool B )
{
    ChangeStairLook(B);
    SaveConfig();
}

function ChangeStairLook( bool B )
{
    bLookUpStairs = B;
    if ( bLookUpStairs )
        bAlwaysMouseLook = false;
}

exec function SetDodgeClickTime( float F )
{
    ChangeDodgeClickTime(F);
    SaveConfig();
}

function ChangeDodgeClickTime( float F )
{
    DodgeClickTime = FMin(0.3, F);
}

final function ReplaceText(out string Text, string Replace, string With)
{
    local int i;
    local string Input;
        
    Input = Text;
    Text = "";
    i = InStr(Input, Replace);
    while(i != -1)
    {   
        Text = Text $ Left(Input, i) $ With;
        Input = Mid(Input, i + Len(Replace));   
        i = InStr(Input, Replace);
    }
    Text = Text $ Input;
}

exec function SetName( coerce string S )
{
    if ( Len(S) > 28 )
        S = left(S,28);
    ReplaceText(S, " ", "_");
    ChangeName(S);
    UpdateURL("Name", S, true);
    SaveConfig();
}

exec function Name( coerce string S )
{
    SetName(S);
}

function ChangeName( coerce string S )
{
    Level.Game.ChangeName( self, S, false );
}

function ChangeTeam( int N )
{
    local int OldTeam;

    OldTeam = PlayerReplicationInfo.Team;
    Level.Game.ChangeTeam(self, N);
    if ( Level.Game.bTeamGame && (PlayerReplicationInfo.Team != OldTeam) )
        Died( None, '', Location );
}

function ClientChangeTeam( int N )
{
    local Pawn P;
        
    if ( PlayerReplicationInfo != None )
        PlayerReplicationInfo.Team = N;

    // if listen server, this may be called for non-local players that are logging in
    // if so, don't update URL
    if ( (Level.NetMode == NM_ListenServer) && (Player == None) )
    {
        // check if any other players exist
        for ( P=Level.PawnList; P!=None; P=P.NextPawn )
            if ( P.IsA('PlayerPawn') && (ViewPort(PlayerPawn(P).Player) != None) )
                return;
    }
        
    UpdateURL("Team",string(N), true);  
}

exec function SetAutoAim( float F )
{
    ChangeAutoAim(F);
    SaveConfig();
}

function ChangeAutoAim( float F )
{
    MyAutoAim = FMax(Level.Game.AutoAim, F);
}

exec function PlayersOnly()
{
    if ( Level.Netmode != NM_Standalone )
        return;

    Level.bPlayersOnly = !Level.bPlayersOnly;
}

exec function SetHand( string S )
{
    ChangeSetHand(S);
    SaveConfig();
}

function ChangeSetHand( string S )
{
    if ( S ~= "Left" )
        Handedness = 1;
    else if ( S~= "Right" )
        Handedness = -1;
    else if ( S ~= "Center" )
        Handedness = 0;
    else if ( S ~= "Hidden" )
        Handedness = 2;
    ServerSetHandedness(Handedness);
}

exec function ViewPlayer( string S )
{
    local pawn P;

    for ( P=Level.pawnList; P!=None; P= P.NextPawn )
        if ( P.bIsPlayer && (P.PlayerReplicationInfo.PlayerName ~= S) )
            break;

    if ( (P != None) && Level.Game.CanSpectate(self, P) )
    {
        ClientMessage(ViewingFrom@P.PlayerReplicationInfo.PlayerName, 'Event', true);
        if ( P == self)
            ViewTarget = None;
        else
            ViewTarget = P;
    }
    else
        ClientMessage(FailedView);

    bBehindView = ( ViewTarget != None );
    if ( bBehindView )
        ViewTarget.BecomeViewTarget();
}

exec function CheatView( class<actor> aClass )
{
    local actor other, first;
    local bool bFound;

    if( !bCheatsEnabled )
        return;

    if( !bAdmin && Level.NetMode!=NM_Standalone )
        return;

    first = None;
    ForEach AllActors( aClass, other )
    {
        if ( (first == None) && (other != self) )
        {
            first = other;
            bFound = true;
        }
        if ( other == ViewTarget ) 
            first = None;
    }  

    if ( first != None )
    {
        if ( first.IsA('Pawn') && Pawn(first).bIsPlayer && (Pawn(first).PlayerReplicationInfo.PlayerName != "") )
            ClientMessage(ViewingFrom@Pawn(first).PlayerReplicationInfo.PlayerName, 'Event', true);
        else
            ClientMessage(ViewingFrom@first, 'Event', true);
        ViewTarget = first;
    }
    else
    {
        if ( bFound )
            ClientMessage(ViewingFrom@OwnCamera, 'Event', true);
        else
            ClientMessage(FailedView, 'Event', true);
        ViewTarget = None;
    }

    bBehindView = ( ViewTarget != None );
    if ( bBehindView )
        ViewTarget.BecomeViewTarget();
}

exec function ViewSelf()
{
    bBehindView = false;
    Viewtarget = None;
    ClientMessage(ViewingFrom@OwnCamera, 'Event', true);
}

exec function ViewClass( class<actor> aClass, optional bool bQuiet )
{
    local actor other, first;
    local bool bFound;

    if ( (Level.Game != None) && !Level.Game.bCanViewOthers )
        return;

    first = None;
    ForEach AllActors( aClass, other )
    {
        if ( (first == None) && (other != self)
             && ( (bAdmin && Level.Game==None) || Level.Game.CanSpectate(self, other) ) )
        {
            first = other;
            bFound = true;
        }
        if ( other == ViewTarget ) 
            first = None;
    }  

    if ( first != None )
    {
        if ( !bQuiet )
        {
            if ( first.IsA('Pawn') && Pawn(first).bIsPlayer && (Pawn(first).PlayerReplicationInfo.PlayerName != "") )
                ClientMessage(ViewingFrom@Pawn(first).PlayerReplicationInfo.PlayerName, 'Event', true);
            else
                ClientMessage(ViewingFrom@first, 'Event', true);
        }
        ViewTarget = first;
    }
    else
    {
        if ( !bQuiet )
        {
            if ( bFound )
                ClientMessage(ViewingFrom@OwnCamera, 'Event', true);
            else
                ClientMessage(FailedView, 'Event', true);
        }
        ViewTarget = None;
    }

    bBehindView = ( ViewTarget != None );
    if ( bBehindView )
        ViewTarget.BecomeViewTarget();
}

exec function NeverSwitchOnPickup( bool B )
{
    bNeverAutoSwitch = B;
    bNeverSwitchOnPickup = B;
    ServerNeverSwitchOnPickup(B);
    SaveConfig();
}
    
function ServerNeverSwitchOnPickup(bool B)
{
    bNeverSwitchOnPickup = B;
}

exec function InvertMouse( bool B )
{
    bInvertMouse = B;
    SaveConfig();
}

exec function SwitchLevel( string URL )
{
    if( bAdmin || Player.IsA('ViewPort') )
        Level.ServerTravel( URL, false );
}

exec function SwitchCoopLevel( string URL )
{
    if( bAdmin || Player.IsA('ViewPort') )
        Level.ServerTravel( URL, true );
}

exec function ShowScores()
{
    bShowScores = !bShowScores;
}
 
exec function ShowMenu()
{
    WalkBob = vect(0,0,0);
    bShowMenu = true; // menu is responsible for turning this off
    Player.Console.GotoState('Menuing');
        
    if( Level.Netmode == NM_Standalone )
        SetPause(true);
}

exec function ShowLoadMenu()
{
    ShowMenu();
}

exec function AddBots(int N)
{
    ServerAddBots(N);
}

function ServerAddBots(int N)
{
    local int i;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;

    if ( !Level.Game.bDeathMatch )
        return;

    for ( i=0; i<N; i++ )
        Level.Game.ForceAddBot();
}

    
//*************************************************************************************
// Special purpose/cheat execs

exec function ClearProgressMessages()
{
    local int i;

    for (i=0; i<8; i++)
    {
        ProgressMessage[i] = "";
        ProgressColor[i].R = 255;
        ProgressColor[i].G = 255;
        ProgressColor[i].B = 255;
    }
}

exec function SetProgressMessage( string S, int Index )
{
    if (Index < 8)
        ProgressMessage[Index] = S;
}

exec function SetProgressColor( color C, int Index )
{
    if (Index < 8)
        ProgressColor[Index] = C;
}

exec function SetProgressTime( float T )
{
    ProgressTimeOut = T + Level.TimeSeconds;
}

exec event ShowUpgradeMenu();

exec function Amphibious()
{
    if( !bCheatsEnabled )
        return;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    UnderwaterTime = +999999.0;
}
    
exec function Fly()
{
    if( !bCheatsEnabled )
        return;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
        
    UnderWaterTime = Default.UnderWaterTime;    
    ClientMessage("You feel much lighter");
    SetCollision(true, true , true);
    bCollideWorld = true;
    GotoState('CheatFlying');
}

exec function SetWeaponStay( bool B)
{
    local Weapon W;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;

    Level.Game.bCoopWeaponMode = B;
    ForEach AllActors(class'Weapon', W)
    {
        W.bWeaponStay = false;
        W.SetWeaponStay();
    }
}

exec function Walk()
{   
    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;

    StartWalk();
}

function StartWalk()
{
    UnderWaterTime = Default.UnderWaterTime;    
    SetCollision(true, true , true);
    SetPhysics(PHYS_Walking);
    bCollideWorld = true;
    ClientReStart();    
}

exec function Ghost()
{
    if( !bCheatsEnabled )
        return;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    
    UnderWaterTime = -1.0;  
    ClientMessage("You feel ethereal");
    SetCollision(false, false, false);
    bCollideWorld = false;
    GotoState('CheatFlying');
}

exec function ShowInventory()
{
    local Inventory Inv;
    
    if( Weapon!=None )
        log( "   Weapon: " $ Weapon.Class );
    for( Inv=Inventory; Inv!=None; Inv=Inv.Inventory ) 
        log( "Inv: "$Inv $ " state "$Inv.GetStateName());
    if ( SelectedItem != None )
        log( "Selected Item"@SelectedItem@"Charge"@SelectedItem.Charge );
}

exec function AllAmmo()
{
    local Inventory Inv;

    if( !bCheatsEnabled )
        return;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;

    for( Inv=Inventory; Inv!=None; Inv=Inv.Inventory ) 
        if (Ammo(Inv)!=None) 
        {
            Ammo(Inv).AmmoAmount  = 999;
            Ammo(Inv).MaxAmmo  = 999;               
        }
}   

exec function Invisible(bool B)
{
    if( !bCheatsEnabled )
        return;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;

    if (B)
    {
        bHidden = true;
        Visibility = 0;
    }
    else
    {
        bHidden = false;
        Visibility = Default.Visibility;
    }   
}
    
exec function God()
{
    if( !bCheatsEnabled )
        return;

    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;

    if ( ReducedDamageType == 'All' )
    {
        ReducedDamageType = '';
        ClientMessage("God mode off");
        return;
    }

    ReducedDamageType = 'All'; 
    ClientMessage("God Mode on");
}

exec function BehindView( Bool B )
{
    bBehindView = B;
}

exec function SetBob(float F)
{
    UpdateBob(F);
    SaveConfig();
}

function UpdateBob(float F)
{
    Bob = FClamp(F,0,0.032);
}

exec function SetSensitivity(float F)
{
    UpdateSensitivity(F);
    SaveConfig();
}

function UpdateSensitivity(float F)
{
    MouseSensitivity = FMax(0,F);
}

exec function SloMo( float T )
{
        ServerSetSloMo(T);
}

function ServerSetSloMo(float T)
{
    if ( bAdmin || (Level.Netmode == NM_Standalone) )
    {
        Level.Game.SetGameSpeed(T);
        Level.Game.SaveConfig(); 
        Level.Game.GameReplicationInfo.SaveConfig();
    }
}

exec function SetJumpZ( float F )
{
    if( !bCheatsEnabled )
        return;
    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    JumpZ = F;
}

exec function SetFriction( float F )
{
    local ZoneInfo Z;
    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    ForEach AllActors(class'ZoneInfo', Z)
        Z.ZoneGroundFriction = F;
}

exec function SetSpeed( float F )
{
    if( !bCheatsEnabled )
        return;
    if ( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    GroundSpeed = Default.GroundSpeed * f;
    WaterSpeed = Default.WaterSpeed * f;
}

exec function KillAll(class<actor> aClass)
{
    local Actor A;

    if( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    ForEach AllActors(class 'Actor', A)
        if ( ClassIsChildOf(A.class, aClass) )
            A.Destroy();
}

exec function KillPawns()
{
    local Pawn P;
    
    if( !bCheatsEnabled || (Level.Netmode != NM_Standalone) )
        return;
    ForEach AllActors(class 'Pawn', P)
        if (PlayerPawn(P) == None)
            P.Destroy();
}

exec function Summon( string ClassName )
{
    local class<actor> NewClass;
    if( !bCheatsEnabled )
        return;
    if( !bAdmin && (Level.Netmode != NM_Standalone) )
        return;
    log( "Fabricate " $ ClassName );
    NewClass = class<actor>( DynamicLoadObject( ClassName, class'Class' ) );
    if( NewClass!=None )
        Spawn( NewClass,,,Location + 72 * Vector(Rotation) + vect(0,0,1) * 15 );
}


//==============
// Navigation Aids
exec function ShowPath()
{
    //find next path to remembered spot
    local Actor node;
    node = FindPathTo(Destination);
    if (node != None)
    {
        log("found path");
        Spawn(class 'WayBeacon', self, '', node.location);
    }
    else
        log("didn't find path");
}

exec function RememberSpot()
{
    //remember spot
    Destination = Location;
}
    
//=============================================================================
// Input related functions.

// Postprocess the player's input.

event PlayerInput( float DeltaTime )
{
    local float SmoothTime, FOVScale, MouseScale, AbsSmoothX, AbsSmoothY, MouseTime;

    if ( bShowMenu && (myHud != None) ) 
    {
        if ( myHud.MainMenu != None )
            myHud.MainMenu.MenuTick( DeltaTime );
        // clear inputs
        bEdgeForward = false;
        bEdgeBack = false;
        bEdgeLeft = false;
        bEdgeRight = false;
        bWasForward = false;
        bWasBack = false;
        bWasLeft = false;
        bWasRight = false;
        aStrafe = 0;
        aTurn = 0;
        aForward = 0;
        aLookUp = 0;
        return;
    }
    else if ( bDelayedCommand )
    {
        bDelayedCommand = false;
        ConsoleCommand(DelayedCommand);
    }
                
    // Check for Dodge move
    // flag transitions
    bEdgeForward = (bWasForward ^^ (aBaseY > 0));
    bEdgeBack = (bWasBack ^^ (aBaseY < 0));
    bEdgeLeft = (bWasLeft ^^ (aStrafe > 0));
    bEdgeRight = (bWasRight ^^ (aStrafe < 0));
    bWasForward = (aBaseY > 0);
    bWasBack = (aBaseY < 0);
    bWasLeft = (aStrafe > 0);
    bWasRight = (aStrafe < 0);
    
    // Smooth and amplify mouse movement
    SmoothTime = FMin(0.2, 3 * DeltaTime * Level.TimeDilation);
    FOVScale = DesiredFOV * 0.01111; 
    MouseScale = MouseSensitivity * FOVScale;

    aMouseX *= MouseScale;
    aMouseY *= MouseScale;

//************************************************************************

    //log("X "$aMouseX$" Smooth "$SmoothMouseX$" Borrowed "$BorrowedMouseX$" zero time "$(Level.TimeSeconds - MouseZeroTime)$" vs "$MouseSmoothThreshold);
    AbsSmoothX = SmoothMouseX;
    AbsSmoothY = SmoothMouseY;
    MouseTime = (Level.TimeSeconds - MouseZeroTime)/Level.TimeDilation;
    if ( bMaxMouseSmoothing && (aMouseX == 0) && (MouseTime < MouseSmoothThreshold) )
    {
        SmoothMouseX = 0.5 * (MouseSmoothThreshold - MouseTime) * AbsSmoothX/MouseSmoothThreshold;
        BorrowedMouseX += SmoothMouseX;
    }
    else
    {
        if ( (SmoothMouseX == 0) || (aMouseX == 0) 
                || ((SmoothMouseX > 0) != (aMouseX > 0)) )
        {
            SmoothMouseX = aMouseX;
            BorrowedMouseX = 0;
        }
        else
        {
            SmoothMouseX = 0.5 * (SmoothMouseX + aMouseX - BorrowedMouseX);
            if ( (SmoothMouseX > 0) != (aMouseX > 0) )
            {
                if ( AMouseX > 0 )
                    SmoothMouseX = 1;
                else
                    SmoothMouseX = -1;
            } 
            BorrowedMouseX = SmoothMouseX - aMouseX;
        }
        AbsSmoothX = SmoothMouseX;
    }
    if ( bMaxMouseSmoothing && (aMouseY == 0) && (MouseTime < MouseSmoothThreshold) )
    {
        SmoothMouseY = 0.5 * (MouseSmoothThreshold - MouseTime) * AbsSmoothY/MouseSmoothThreshold;
        BorrowedMouseY += SmoothMouseY;
    }
    else
    {
        if ( (SmoothMouseY == 0) || (aMouseY == 0) 
                || ((SmoothMouseY > 0) != (aMouseY > 0)) )
        {
            SmoothMouseY = aMouseY;
            BorrowedMouseY = 0;
        }
        else
        {
            SmoothMouseY = 0.5 * (SmoothMouseY + aMouseY - BorrowedMouseY);
            if ( (SmoothMouseY > 0) != (aMouseY > 0) )
            {
                if ( AMouseY > 0 )
                    SmoothMouseY = 1;
                else
                    SmoothMouseY = -1;
            } 
            BorrowedMouseY = SmoothMouseY - aMouseY;
        }
        AbsSmoothY = SmoothMouseY;
    }
    if ( (aMouseX != 0) || (aMouseY != 0) )
        MouseZeroTime = Level.TimeSeconds;

    // adjust keyboard and joystick movements
    aLookUp *= FOVScale;
    aTurn   *= FOVScale;

    // Remap raw x-axis movement.
    if( bStrafe!=0 )
    {
        // Strafe.
        aStrafe += aBaseX + SmoothMouseX;
        aBaseX   = 0;
    }
    else
    {
        // Forward.
        aTurn  += aBaseX * FOVScale + SmoothMouseX;
        aBaseX  = 0;
    }

    // Remap mouse y-axis movement.
    if( (bStrafe == 0) && (bAlwaysMouseLook || (bLook!=0)) )
    {
        // Look up/down.
        if ( bInvertMouse )
            aLookUp -= SmoothMouseY;
        else
            aLookUp += SmoothMouseY;
    }
    else
    {
        // Move forward/backward.
        aForward += SmoothMouseY;
    }
    SmoothMouseX = AbsSmoothX;
    SmoothMouseY = AbsSmoothY;

    if ( bSnapLevel != 0 )
    {
        bCenterView = true;
        bKeyboardLook = false;
    }
    else if (aLookUp != 0)
    {
        bCenterView = false;
        bKeyboardLook = true;
    }
    else if ( bSnapToLevel && !bAlwaysMouseLook )
    {
        bCenterView = true;
        bKeyboardLook = false;
    }

    // Remap other y-axis movement.
    if ( bFreeLook != 0 )
    {
        bKeyboardLook = true;
        aLookUp += 0.5 * aBaseY * FOVScale;
    }
    else
        aForward += aBaseY;

    aBaseY = 0;

    // Handle walking.
    HandleWalking();
}

//=============================================================================
// functions.

event UpdateEyeHeight(float DeltaTime)
{
    local float smooth, bound;
    
    // smooth up/down stairs
    If( (Physics==PHYS_Walking) && !bJustLanded )
    {
        smooth = FMin(1.0, 10.0 * DeltaTime/Level.TimeDilation);
        EyeHeight = (EyeHeight - Location.Z + OldLocation.Z) * (1 - smooth) + ( ShakeVert + BaseEyeHeight) * smooth;
        bound = -0.5 * CollisionHeight;
        if (EyeHeight < bound)
            EyeHeight = bound;
        else
        {
            bound = CollisionHeight + FClamp((OldLocation.Z - Location.Z), 0.0, MaxStepHeight); 
            if ( EyeHeight > bound )
                EyeHeight = bound;
        }
    }
    else
    {
        smooth = FClamp(10.0 * DeltaTime/Level.TimeDilation, 0.35,1.0);
        bJustLanded = false;
        EyeHeight = EyeHeight * ( 1 - smooth) + (BaseEyeHeight + ShakeVert) * smooth;
    }

    // teleporters affect your FOV, so adjust it back down
    if ( FOVAngle != DesiredFOV )
    {
        if ( FOVAngle > DesiredFOV )
            FOVAngle = FOVAngle - FMax(7, 0.9 * DeltaTime * (FOVAngle - DesiredFOV)); 
        else 
            FOVAngle = FOVAngle - FMin(-7, 0.9 * DeltaTime * (FOVAngle - DesiredFOV)); 
        if ( Abs(FOVAngle - DesiredFOV) <= 10 )
            FOVAngle = DesiredFOV;
    }

    // adjust FOV for weapon zooming
    if ( bZooming )
    {   
        ZoomLevel += DeltaTime * 1.0;
        if (ZoomLevel > 0.9)
            ZoomLevel = 0.9;
        DesiredFOV = FClamp(90.0 - (ZoomLevel * 88.0), 1, 170);
    } 
}

event PlayerTimeOut()
{
    if (Health > 0)
        Died(None, 'Suicided', Location);
}

// Just changed to pendingWeapon
function ChangedWeapon()
{
    Super.ChangedWeapon();
    if ( PendingWeapon != None )
        PendingWeapon.SetHand(Handedness);
}

function JumpOffPawn()
{
    Velocity += 60 * VRand();
    Velocity.Z = 120;
    SetPhysics(PHYS_Falling);
}

event TravelPostAccept()
{
    if ( Health <= 0 )
        Health = Default.Health;
}

// This pawn was possessed by a player.
event Possess()
{
    if ( Level.Netmode == NM_Client )
    {
        // replicate client weapon preferences to server
        ServerNeverSwitchOnPickup(bNeverAutoSwitch);
        ServerSetHandedness(Handedness);
        UpdateWeaponPriorities();
    }
    ServerUpdateWeapons();
    bIsPlayer = true;
    DodgeClickTime = FMin(0.3, DodgeClickTime);
    EyeHeight = BaseEyeHeight;
    NetPriority = 3;
    StartWalk();
}

function UpdateWeaponPriorities()
{
    local byte i;

    // send new priorities to server
    if ( Level.Netmode == NM_Client )
        for ( i=0; i<ArrayCount(WeaponPriority); i++ )
            ServerSetWeaponPriority(i, WeaponPriority[i]);
}

function ServerSetWeaponPriority(byte i, name WeaponName )
{
    local inventory inv;

    WeaponPriority[i] = WeaponName;

    for ( inv=Inventory; inv!=None; inv=inv.inventory )
        if ( inv.class.name == WeaponName )
            Weapon(inv).SetSwitchPriority(self);
}

// This pawn was unpossessed by a player.
event UnPossess()
{
    log(Self$" being unpossessed");
    if ( myHUD != None )
        myHUD.Destroy();
    bIsPlayer = false;
    EyeHeight = 0.8 * CollisionHeight;
}

function Carcass SpawnCarcass()
{
    local carcass carc;

    carc = Spawn(CarcassType);
    if ( carc == None )
        return None;
    carc.Initfor(self);
    if (Player != None)
        carc.bPlayerCarcass = true;
    if ( !Level.Game.bGameEnded && (Carcass(ViewTarget) == None) )
        ViewTarget = carc; //for Player 3rd person views
    return carc;
}

function bool Gibbed(name damageType)
{
    if ( (damageType == 'decapitated') || (damageType == 'shot') )
        return false;   
    if ( (Health < -80) || ((Health < -40) && (FRand() < 0.6)) )
        return true;
    return false;
}

function SpawnGibbedCarcass()
{
    local carcass carc;

    carc = Spawn(CarcassType);
    if ( carc != None )
    {
        carc.Initfor(self);
        carc.ChunkUp(-1 * Health);
    }
}

event PlayerTick( float Time );

//
// Called immediately before gameplay begins.
//
event PreBeginPlay()
{
    bIsPlayer = true;
    Super.PreBeginPlay();
}

event PostBeginPlay()
{
    Super.PostBeginPlay();
    if (Level.LevelEnterText != "" )
        ClientMessage(Level.LevelEnterText);
    if ( Level.NetMode != NM_Client )
    {
        HUDType = Level.Game.HUDType;
        ScoringType = Level.Game.ScoreboardType;
        MyAutoAim = FMax(MyAutoAim, Level.Game.AutoAim);
    }
    bIsPlayer = true;
    DodgeClickTime = FMin(0.3, DodgeClickTime);
    DesiredFOV = DefaultFOV;
    EyeHeight = BaseEyeHeight;
    if ( Level.Game.IsA('SinglePlayer') && (Level.NetMode == NM_Standalone) )
        FlashScale = vect(0,0,0);
}

function ServerUpdateWeapons()
{
    local inventory Inv;

    For ( Inv=Inventory; Inv!=None; Inv=Inv.Inventory )
        if ( Inv.IsA('Weapon') )
            Weapon(Inv).SetSwitchPriority(self); 
}

//=============================================================================
// Animation playing - should be implemented in subclass, 
//

function PlayDodge(eDodgeDir DodgeMove)
{
    PlayDuck();
}

function PlayTurning();

function PlaySwimming()
{
    PlayRunning();
}

function PlayFeignDeath();
function PlayRising();

/* Adjust hit location - adjusts the hit location in for pawns, and returns
true if it was really a hit, and false if not (for ducking, etc.)
*/
simulated function bool AdjustHitLocation(out vector HitLocation, vector TraceDir)
{
    local float adjZ, maxZ;

    TraceDir = Normal(TraceDir);
    HitLocation = HitLocation + 0.5 * CollisionRadius * TraceDir;
    if ( BaseEyeHeight == Default.BaseEyeHeight )
        return true;

    maxZ = Location.Z + EyeHeight + 0.25 * CollisionHeight;
    if ( HitLocation.Z > maxZ )
    {
        if ( TraceDir.Z >= 0 )
            return false;
        adjZ = (maxZ - HitLocation.Z)/TraceDir.Z;
        HitLocation.Z = maxZ;
        HitLocation.X = HitLocation.X + TraceDir.X * adjZ;
        HitLocation.Y = HitLocation.Y + TraceDir.Y * adjZ;
        if ( VSize(HitLocation - Location) > CollisionRadius )  
            return false;
    }
    return true;
}

/* AdjustAim()
Calls this version for player aiming help.
Aimerror not used in this version.
Only adjusts aiming at pawns
*/

function rotator AdjustAim(float projSpeed, vector projStart, int aimerror, bool bLeadTarget, bool bWarnTarget)
{
    local vector FireDir, AimSpot, HitNormal, HitLocation;
    local actor BestTarget;
    local float bestAim, bestDist;
    local actor HitActor;
    
    FireDir = vector(ViewRotation);
    HitActor = Trace(HitLocation, HitNormal, projStart + 4000 * FireDir, projStart, true);
    if ( (HitActor != None) && HitActor.bProjTarget )
    {
        if ( bWarnTarget && HitActor.IsA('Pawn') )
            Pawn(HitActor).WarnTarget(self, projSpeed, FireDir);
        return ViewRotation;
    }

    bestAim = FMin(0.93, MyAutoAim);
    BestTarget = PickTarget(bestAim, bestDist, FireDir, projStart);

    if ( bWarnTarget && (Pawn(BestTarget) != None) )
        Pawn(BestTarget).WarnTarget(self, projSpeed, FireDir);  

    if ( (Level.NetMode != NM_Standalone) || (Level.Game.Difficulty > 2) 
        || bAlwaysMouseLook || ((BestTarget != None) && (bestAim < MyAutoAim)) || (MyAutoAim >= 1) )
        return ViewRotation;
    
    if ( BestTarget == None )
    {
        bestAim = MyAutoAim;
        BestTarget = PickAnyTarget(bestAim, bestDist, FireDir, projStart);
        if ( BestTarget == None )
            return ViewRotation;
    }

    AimSpot = projStart + FireDir * bestDist;
    AimSpot.Z = BestTarget.Location.Z + 0.3 * BestTarget.CollisionHeight;

    return rotator(AimSpot - projStart);
}

function Falling()
    {
        //SetPhysics(PHYS_Falling); //Note - physics changes type to PHYS_Falling by default
        //log(class$" Falling");
        PlayInAir();
    }

function Landed(vector HitNormal)
{
    //Note - physics changes type to PHYS_Walking by default for landed pawns
    if ( bUpdating )
        return;
    PlayLanded(Velocity.Z);
    LandBob = FMin(50, 0.055 * Velocity.Z); 
    TakeFallingDamage();
    bJustLanded = true;
}

function Died(pawn Killer, name damageType, vector HitLocation)
{
    StopZoom();

    Super.Died(Killer, damageType, HitLocation);    
}

function eAttitude AttitudeTo(Pawn Other)
{
    if (Other.bIsPlayer)
        return AttitudeToPlayer;
    else 
        return Other.AttitudeToPlayer;
}


function string KillMessage( name damageType, pawn Other )
{
    return ( Level.Game.PlayerKillMessage(damageType, Other.PlayerReplicationInfo)$PlayerReplicationInfo.PlayerName );
}
    
//=============================================================================
// Player Control

function KilledBy( pawn EventInstigator )
{
    Health = 0;
    Died( EventInstigator, 'Suicided', Location );
}

// Player view.
// Compute the rendering viewpoint for the player.
//

function CalcBehindView(out vector CameraLocation, out rotator CameraRotation, float Dist)
{
    local vector View,HitLocation,HitNormal;
    local float ViewDist;

    CameraRotation = ViewRotation;
    View = vect(1,0,0) >> CameraRotation;
    if( Trace( HitLocation, HitNormal, CameraLocation - (Dist + 30) * vector(CameraRotation), CameraLocation ) != None )
        ViewDist = FMin( (CameraLocation - HitLocation) Dot View, Dist );
    else
        ViewDist = Dist;
    CameraLocation -= (ViewDist - 30) * View; 
}

event PlayerCalcView(out actor ViewActor, out vector CameraLocation, out rotator CameraRotation )
{
    local Pawn PTarget;

    if ( ViewTarget != None )
    {
        ViewActor = ViewTarget;
        CameraLocation = ViewTarget.Location;
        CameraRotation = ViewTarget.Rotation;
        PTarget = Pawn(ViewTarget);
        if ( PTarget != None )
        {
            if ( Level.NetMode == NM_Client )
            {
                if ( PTarget.bIsPlayer )
                    PTarget.ViewRotation = TargetViewRotation;
                PTarget.EyeHeight = TargetEyeHeight;
                if ( PTarget.Weapon != None )
                    PTarget.Weapon.PlayerViewOffset = TargetWeaponViewOffset;
            }
            if ( PTarget.bIsPlayer )
                CameraRotation = PTarget.ViewRotation;
            if ( !bBehindView )
                CameraLocation.Z += PTarget.EyeHeight;
        }
        if ( bBehindView )
            CalcBehindView(CameraLocation, CameraRotation, 180);
        return;
    }

    ViewActor = Self;
    CameraLocation = Location;

    if( bBehindView ) //up and behind
        CalcBehindView(CameraLocation, CameraRotation, 150);
    else
    {
        // First-person view.
        CameraRotation = ViewRotation;
        CameraLocation.Z += EyeHeight;
        CameraLocation += WalkBob;
    }
}

exec function SetViewFlash(bool B)
{
    bNoFlash = !B;
}

function ViewFlash(float DeltaTime)
{
    local vector goalFog;
    local float goalscale, delta;

    if ( bNoFlash )
    {
        InstantFlash = 0;
        InstantFog = vect(0,0,0);
    }

    delta = FMin(0.1, DeltaTime);
    goalScale = 1 + DesiredFlashScale + ConstantGlowScale + HeadRegion.Zone.ViewFlash.X; 
    goalFog = DesiredFlashFog + ConstantGlowFog + HeadRegion.Zone.ViewFog;
    DesiredFlashScale -= DesiredFlashScale * 2 * delta;  
    DesiredFlashFog -= DesiredFlashFog * 2 * delta;
    FlashScale.X += (goalScale - FlashScale.X + InstantFlash) * 10 * delta;
    FlashFog += (goalFog - FlashFog + InstantFog) * 10 * delta;
    InstantFlash = 0;
    InstantFog = vect(0,0,0);

    if ( FlashScale.X > 0.981 )
        FlashScale.X = 1;
    FlashScale = FlashScale.X * vect(1,1,1);

    if ( FlashFog.X < 0.019 )
        FlashFog.X = 0;
    if ( FlashFog.Y < 0.019 )
        FlashFog.Y = 0;
    if ( FlashFog.Z < 0.019 )
        FlashFog.Z = 0;
}

function ViewShake(float DeltaTime)
{
    if (shaketimer > 0.0) //shake view
    {
        shaketimer -= DeltaTime;
        if ( verttimer == 0 )
        {
            verttimer = 0.1;
            ShakeVert = -1.1 * maxshake;
        }
        else
        {
            verttimer -= DeltaTime;
            if ( verttimer < 0 )
            {
                verttimer = 0.2 * FRand();
                shakeVert = (2 * FRand() - 1) * maxshake;  
            }
        }
        ViewRotation.Roll = ViewRotation.Roll & 65535;
        if (bShakeDir)
        {
            ViewRotation.Roll += Int( 10 * shakemag * FMin(0.1, DeltaTime));
            bShakeDir = (ViewRotation.Roll > 32768) || (ViewRotation.Roll < (0.5 + FRand()) * shakemag);
            if ( (ViewRotation.Roll < 32768) && (ViewRotation.Roll > 1.3 * shakemag) )
            {
                ViewRotation.Roll = 1.3 * shakemag;
                bShakeDir = false;
            }
            else if (FRand() < 3 * DeltaTime)
                bShakeDir = !bShakeDir;
        }
        else
        {
            ViewRotation.Roll -= Int( 10 * shakemag * FMin(0.1, DeltaTime));
            bShakeDir = (ViewRotation.Roll > 32768) && (ViewRotation.Roll < 65535 - (0.5 + FRand()) * shakemag);
            if ( (ViewRotation.Roll > 32768) && (ViewRotation.Roll < 65535 - 1.3 * shakemag) )
            {
                ViewRotation.Roll = 65535 - 1.3 * shakemag;
                bShakeDir = true;
            }
            else if (FRand() < 3 * DeltaTime)
                bShakeDir = !bShakeDir;
        }
    }
    else
    {
        ShakeVert = 0;
        ViewRotation.Roll = ViewRotation.Roll & 65535;
        if (ViewRotation.Roll < 32768)
        {
            if ( ViewRotation.Roll > 0 )
                ViewRotation.Roll = Max(0, ViewRotation.Roll - (Max(ViewRotation.Roll,500) * 10 * FMin(0.1,DeltaTime)));
        }
        else
        {
            ViewRotation.Roll += ((65536 - Max(500,ViewRotation.Roll)) * 10 * FMin(0.1,DeltaTime));
            if ( ViewRotation.Roll > 65534 )
                ViewRotation.Roll = 0;
        }
    } 
}

function UpdateRotation(float DeltaTime, float maxPitch)
{
    local rotator newRotation;
    
    DesiredRotation = ViewRotation; //save old rotation
    ViewRotation.Pitch += 32.0 * DeltaTime * aLookUp;
    ViewRotation.Pitch = ViewRotation.Pitch & 65535;
    If ((ViewRotation.Pitch > 18000) && (ViewRotation.Pitch < 49152))
    {
        If (aLookUp > 0) 
            ViewRotation.Pitch = 18000;
        else
            ViewRotation.Pitch = 49152;
    }
    ViewRotation.Yaw += 32.0 * DeltaTime * aTurn;
    ViewShake(deltaTime);
    ViewFlash(deltaTime);
        
    newRotation = Rotation;
    newRotation.Yaw = ViewRotation.Yaw;
    newRotation.Pitch = ViewRotation.Pitch;
    If ( (newRotation.Pitch > maxPitch * RotationRate.Pitch) && (newRotation.Pitch < 65536 - maxPitch * RotationRate.Pitch) )
    {
        If (ViewRotation.Pitch < 32768) 
            newRotation.Pitch = maxPitch * RotationRate.Pitch;
        else
            newRotation.Pitch = 65536 - maxPitch * RotationRate.Pitch;
    }
    setRotation(newRotation);
}

function SwimAnimUpdate(bool bNotForward)
{
    if ( !bAnimTransition && (GetAnimGroup(AnimSequence) != 'Gesture') )
    {
        if ( bNotForward )
        {
             if ( GetAnimGroup(AnimSequence) != 'Waiting' )
                TweenToWaiting(0.1);
        }
        else if ( GetAnimGroup(AnimSequence) == 'Waiting' )
            TweenToSwimming(0.1);
    }
}

auto state InvalidState
{
    event PlayerTick( float DeltaTime )
    {
        log(self$" invalid state");
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove( float DeltaTime )
    {
        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, vect(0,0,0), Dodge_None, rot(0,0,0));
    }
}

// Player movement.
// Player Standing, walking, running, falling.
state PlayerWalking
{
ignores SeePlayer, HearNoise, Bump;

    exec function FeignDeath()
    {
        if ( Physics == PHYS_Walking )
        {
            ServerFeignDeath();
            Acceleration = vect(0,0,0);
            GotoState('FeigningDeath');
        }
    }

    function ServerFeignDeath()
    {
        local Weapon W;

        W = Weapon;
        PendingWeapon = None;
        if ( Weapon != None )
            Weapon.PutDown();
        PendingWeapon = W;
        GotoState('FeigningDeath');
    }

    function ZoneChange( ZoneInfo NewZone )
    {
        if (NewZone.bWaterZone)
        {
            setPhysics(PHYS_Swimming);
            GotoState('PlayerSwimming');
        }
    }

    function AnimEnd()
    {
        local name MyAnimGroup;

        bAnimTransition = false;
        if (Physics == PHYS_Walking)
        {
            if (bIsCrouching)
            {
                if ( !bIsTurning && ((Velocity.X * Velocity.X + Velocity.Y * Velocity.Y) < 1000) )
                    PlayDuck(); 
                else
                    PlayCrawling();
            }
            else
            {
                MyAnimGroup = GetAnimGroup(AnimSequence);
                if ((Velocity.X * Velocity.X + Velocity.Y * Velocity.Y) < 1000)
                {
                    if ( MyAnimGroup == 'Waiting' )
                        PlayWaiting();
                    else
                    {
                        bAnimTransition = true;
                        TweenToWaiting(0.2);
                    }
                }   
                else if (bIsWalking)
                {
                    if ( (MyAnimGroup == 'Waiting') || (MyAnimGroup == 'Landing') || (MyAnimGroup == 'Gesture') || (MyAnimGroup == 'TakeHit')  )
                    {
                        TweenToWalking(0.1);
                        bAnimTransition = true;
                    }
                    else 
                        PlayWalking();
                }
                else
                {
                    if ( (MyAnimGroup == 'Waiting') || (MyAnimGroup == 'Landing') || (MyAnimGroup == 'Gesture') || (MyAnimGroup == 'TakeHit')  )
                    {
                        bAnimTransition = true;
                        TweenToRunning(0.1);
                    }
                    else
                        PlayRunning();
                }
            }
        }
        else
            PlayInAir();
    }

    function Landed(vector HitNormal)
    {
        Global.Landed(HitNormal);
        if (DodgeDir == DODGE_Active)
        {
            DodgeDir = DODGE_Done;
            DodgeClickTimer = 0.0;
            Velocity *= 0.1;
        }
        else
            DodgeDir = DODGE_None;
    }

    function Dodge(eDodgeDir DodgeMove)
    {
        local vector X,Y,Z;

        if ( bIsCrouching || (Physics != PHYS_Walking) )
            return;

        GetAxes(Rotation,X,Y,Z);
        if (DodgeMove == DODGE_Forward)
            Velocity = 1.5*GroundSpeed*X + (Velocity Dot Y)*Y;
        else if (DodgeMove == DODGE_Back)
            Velocity = -1.5*GroundSpeed*X + (Velocity Dot Y)*Y; 
        else if (DodgeMove == DODGE_Left)
            Velocity = 1.5*GroundSpeed*Y + (Velocity Dot X)*X; 
        else if (DodgeMove == DODGE_Right)
            Velocity = -1.5*GroundSpeed*Y + (Velocity Dot X)*X; 

        Velocity.Z = 160;
        PlayOwnedSound(JumpSound, SLOT_Talk, 1.0, true, 800, 1.0 );
        PlayDodge(DodgeMove);
        DodgeDir = DODGE_Active;
        SetPhysics(PHYS_Falling);
    }
    
    function ProcessMove(float DeltaTime, vector NewAccel, eDodgeDir DodgeMove, rotator DeltaRot)   
    {
        local vector OldAccel;
        
        OldAccel = Acceleration;
        Acceleration = NewAccel;
        bIsTurning = ( Abs(DeltaRot.Yaw/DeltaTime) > 5000 );
        if ( (DodgeMove == DODGE_Active) && (Physics == PHYS_Falling) )
            DodgeDir = DODGE_Active;    
        else if ( (DodgeMove != DODGE_None) && (DodgeMove < DODGE_Active) )
            Dodge(DodgeMove);

        if ( bPressedJump )
            DoJump();
        if ( (Physics == PHYS_Walking) && (GetAnimGroup(AnimSequence) != 'Dodge') )
        {
            if (!bIsCrouching)
            {
                if (bDuck != 0)
                {
                    bIsCrouching = true;
                    PlayDuck();
                }
            }
            else if (bDuck == 0)
            {
                OldAccel = vect(0,0,0);
                bIsCrouching = false;
                TweenToRunning(0.1);
            }

            if ( !bIsCrouching )
            {
                if ( (!bAnimTransition || (AnimFrame > 0)) && (GetAnimGroup(AnimSequence) != 'Landing') )
                {
                    if ( Acceleration != vect(0,0,0) )
                    {
                        if ( (GetAnimGroup(AnimSequence) == 'Waiting') || (GetAnimGroup(AnimSequence) == 'Gesture') || (GetAnimGroup(AnimSequence) == 'TakeHit') )
                        {
                            bAnimTransition = true;
                            TweenToRunning(0.1);
                        }
                    }
                    else if ( (Velocity.X * Velocity.X + Velocity.Y * Velocity.Y < 1000) 
                        && (GetAnimGroup(AnimSequence) != 'Gesture') ) 
                    {
                        if ( GetAnimGroup(AnimSequence) == 'Waiting' )
                        {
                            if ( bIsTurning && (AnimFrame >= 0) ) 
                            {
                                bAnimTransition = true;
                                PlayTurning();
                            }
                        }
                        else if ( !bIsTurning ) 
                        {
                            bAnimTransition = true;
                            TweenToWaiting(0.2);
                        }
                    }
                }
            }
            else
            {
                if ( (OldAccel == vect(0,0,0)) && (Acceleration != vect(0,0,0)) )
                    PlayCrawling();
                else if ( !bIsTurning && (Acceleration == vect(0,0,0)) && (AnimFrame > 0.1) )
                    PlayDuck();
            }
        }
    }
            
    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove( float DeltaTime )
    {
        local vector X,Y,Z, NewAccel;
        local EDodgeDir OldDodge;
        local eDodgeDir DodgeMove;
        local rotator OldRotation;
        local float Speed2D;
        local bool  bSaveJump;
        local name AnimGroupName;

        GetAxes(Rotation,X,Y,Z);

        aForward *= 0.4;
        aStrafe  *= 0.4;
        aLookup  *= 0.24;
        aTurn    *= 0.24;

        // Update acceleration.
        NewAccel = aForward*X + aStrafe*Y; 
        NewAccel.Z = 0;
        // Check for Dodge move
        if ( DodgeDir == DODGE_Active )
            DodgeMove = DODGE_Active;
        else
            DodgeMove = DODGE_None;
        if (DodgeClickTime > 0.0)
        {
            if ( DodgeDir < DODGE_Active )
            {
                OldDodge = DodgeDir;
                DodgeDir = DODGE_None;
                if (bEdgeForward && bWasForward)
                    DodgeDir = DODGE_Forward;
                if (bEdgeBack && bWasBack)
                    DodgeDir = DODGE_Back;
                if (bEdgeLeft && bWasLeft)
                    DodgeDir = DODGE_Left;
                if (bEdgeRight && bWasRight)
                    DodgeDir = DODGE_Right;
                if ( DodgeDir == DODGE_None)
                    DodgeDir = OldDodge;
                else if ( DodgeDir != OldDodge )
                    DodgeClickTimer = DodgeClickTime + 0.5 * DeltaTime;
                else 
                    DodgeMove = DodgeDir;
            }
    
            if (DodgeDir == DODGE_Done)
            {
                DodgeClickTimer -= DeltaTime;
                if (DodgeClickTimer < -0.35) 
                {
                    DodgeDir = DODGE_None;
                    DodgeClickTimer = DodgeClickTime;
                }
            }       
            else if ((DodgeDir != DODGE_None) && (DodgeDir != DODGE_Active))
            {
                DodgeClickTimer -= DeltaTime;           
                if (DodgeClickTimer < 0)
                {
                    DodgeDir = DODGE_None;
                    DodgeClickTimer = DodgeClickTime;
                }
            }
        }
        
        AnimGroupName = GetAnimGroup(AnimSequence);     
        if ( (Physics == PHYS_Walking) && (AnimGroupName != 'Dodge') )
        {
            //if walking, look up/down stairs - unless player is rotating view
            if ( !bKeyboardLook && (bLook == 0) )
            {
                if ( bLookUpStairs )
                    ViewRotation.Pitch = FindStairRotation(deltaTime);
                else if ( bCenterView )
                {
                    ViewRotation.Pitch = ViewRotation.Pitch & 65535;
                    if (ViewRotation.Pitch > 32768)
                        ViewRotation.Pitch -= 65536;
                    ViewRotation.Pitch = ViewRotation.Pitch * (1 - 12 * FMin(0.0833, deltaTime));
                    if ( Abs(ViewRotation.Pitch) < 1000 )
                        ViewRotation.Pitch = 0; 
                }
            }

            Speed2D = Sqrt(Velocity.X * Velocity.X + Velocity.Y * Velocity.Y);
            //add bobbing when walking
            if ( !bShowMenu )
                CheckBob(DeltaTime, Speed2D, Y);
        }   
        else if ( !bShowMenu )
        { 
            BobTime = 0;
            WalkBob = WalkBob * (1 - FMin(1, 8 * deltatime));
        }

        // Update rotation.
        OldRotation = Rotation;
        UpdateRotation(DeltaTime, 1);

        if ( bPressedJump && (AnimGroupName == 'Dodge') )
        {
            bSaveJump = true;
            bPressedJump = false;
        }
        else
            bSaveJump = false;

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, NewAccel, DodgeMove, OldRotation - Rotation);
        else
            ProcessMove(DeltaTime, NewAccel, DodgeMove, OldRotation - Rotation);
        bPressedJump = bSaveJump;
    }

    function BeginState()
    {
        if ( Mesh == None )
            SetMesh();
        WalkBob = vect(0,0,0);
        DodgeDir = DODGE_None;
        bIsCrouching = false;
        bIsTurning = false;
        bPressedJump = false;
        if (Physics != PHYS_Falling) SetPhysics(PHYS_Walking);
        if ( !IsAnimating() )
            PlayWaiting();
    }
    
    function EndState()
    {
        WalkBob = vect(0,0,0);
        bIsCrouching = false;
    }
}

state FeigningDeath
{
ignores SeePlayer, HearNoise, Bump;

    function ZoneChange( ZoneInfo NewZone )
    {
        if (NewZone.bWaterZone)
        {
            setPhysics(PHYS_Swimming);
            GotoState('PlayerSwimming');
        }
    }

    exec function Fire( optional float F )
    {
        bJustFired = true;
    }

    exec function AltFire( optional float F )
    {
        bJustFired = true;
    }

    function PlayChatting()
    {
    }

    exec function Taunt( name Sequence )
    {
    }

    function AnimEnd()
    {
        if ( Role < ROLE_Authority )
            return;
        if ( Health <= 0 )
        {
            GotoState('Dying');
            return;
        }
        GotoState('PlayerWalking');
        PendingWeapon.SetDefaultDisplayProperties();
        ChangedWeapon();
    }
    
    function Landed(vector HitNormal)
    {
        if ( Role == ROLE_Authority )
            PlaySound(Land, SLOT_Interact, 0.3, false, 800, 1.0);
        if ( bUpdating )
            return;
        TakeFallingDamage();
        bJustLanded = true;             
    }

    function Rise()
    {
        if ( (Role == ROLE_Authority) && (Health <= 0) )
        {
            GotoState('Dying');
            return;
        }
        if ( !bRising )
        {
            Enable('AnimEnd');
            BaseEyeHeight = Default.BaseEyeHeight;
            bRising = true;
            PlayRising();
        }
    }

    function ProcessMove(float DeltaTime, vector NewAccel, eDodgeDir DodgeMove, rotator DeltaRot)   
    {
        if ( bJustFired || bPressedJump || (NewAccel.Z > 0) )
            Rise();
        Acceleration = vect(0,0,0);
    }

    event PlayerTick( float DeltaTime )
    {
        Weapon = None; // in case client confused because of weapon switch just before feign death
        if ( bUpdatePosition )
            ClientUpdatePosition();
        
        PlayerMove(DeltaTime);
    }

    function ServerMove
    (
        float TimeStamp, 
        vector Accel, 
        vector ClientLoc,
        bool NewbRun,
        bool NewbDuck,
        bool NewbJumpStatus, 
        bool bFired,
        bool bAltFired,
        bool bForceFire,
        bool bForceAltFire,
        eDodgeDir DodgeMove, 
        byte ClientRoll, 
        int View,
        optional byte OldTimeDelta,
        optional int OldAccel
    )
    {
        Global.ServerMove(TimeStamp, Accel, ClientLoc, NewbRun, NewbDuck, NewbJumpStatus,
                            bFired, bAltFired, bForceFire, bForceAltFire, DodgeMove, ClientRoll, (32767 & (Rotation.Pitch/2)) * 32768 + (32767 & (Rotation.Yaw/2)));
    }

    function PlayerMove( float DeltaTime)
    {
        local rotator currentRot;
        local vector NewAccel;

        aLookup  *= 0.24;
        aTurn    *= 0.24;

        // Update acceleration.
        if ( !IsAnimating() && (aForward != 0) || (aStrafe != 0) )
            NewAccel = vect(0,0,1);
        else
            NewAccel = vect(0,0,0);

        // Update view rotation.
        currentRot = Rotation;
        UpdateRotation(DeltaTime, 1);
        SetRotation(currentRot);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, NewAccel, DODGE_None, Rot(0,0,0));
        else
            ProcessMove(DeltaTime, NewAccel, DODGE_None, Rot(0,0,0));
        bPressedJump = false;
    }

    function PlayTakeHit(float tweentime, vector HitLoc, int Damage)
    {
        if ( IsAnimating() )
        {
            Enable('AnimEnd');
            Global.PlayTakeHit(tweentime, HitLoc, Damage);
        }
    }
    
    function PlayDying(name DamageType, vector HitLocation)
    {
        BaseEyeHeight = Default.BaseEyeHeight;
        if ( bRising || IsAnimating() )
            Global.PlayDying(DamageType, HitLocation);
    }
    
    function ChangedWeapon()
    {
        Weapon = None;
        Inventory.ChangedWeapon();
    }

    function EndState()
    {
        bJustFired = false;
        PlayerReplicationInfo.bFeigningDeath = false;
    }

    function BeginState()
    {
        local rotator NewRot;
        if ( carriedDecoration != None )
            DropDecoration();
        NewRot = Rotation;
        NewRot.Pitch = 0;
        SetRotation(NewRot);
        BaseEyeHeight = -0.5 * CollisionHeight;
        bIsCrouching = false;
        bPressedJump = false;
        bJustFired = false;
        bRising = false;
        Disable('AnimEnd');
        PlayFeignDeath();
        PlayerReplicationInfo.bFeigningDeath = true;
    }
}

// Player movement.
// Player Swimming
state PlayerSwimming
{
ignores SeePlayer, HearNoise, Bump;

    event UpdateEyeHeight(float DeltaTime)
    {
        local float smooth, bound;
        
        // smooth up/down stairs
        if( !bJustLanded )
        {
            smooth = FMin(1.0, 10.0 * DeltaTime/Level.TimeDilation);
            EyeHeight = (EyeHeight - Location.Z + OldLocation.Z) * (1 - smooth) + ( ShakeVert + BaseEyeHeight) * smooth;
            bound = -0.5 * CollisionHeight;
            if (EyeHeight < bound)
                EyeHeight = bound;
            else
            {
                bound = CollisionHeight + FClamp((OldLocation.Z - Location.Z), 0.0, MaxStepHeight); 
                 if ( EyeHeight > bound )
                    EyeHeight = bound;
            }
        }
        else
        {
            smooth = FClamp(10.0 * DeltaTime/Level.TimeDilation, 0.35, 1.0);
            bJustLanded = false;
            EyeHeight = EyeHeight * ( 1 - smooth) + (BaseEyeHeight + ShakeVert) * smooth;
        }

        // teleporters affect your FOV, so adjust it back down
        if ( FOVAngle != DesiredFOV )
        {
            if ( FOVAngle > DesiredFOV )
                FOVAngle = FOVAngle - FMax(7, 0.9 * DeltaTime * (FOVAngle - DesiredFOV)); 
            else 
                FOVAngle = FOVAngle - FMin(-7, 0.9 * DeltaTime * (FOVAngle - DesiredFOV)); 
            if ( Abs(FOVAngle - DesiredFOV) <= 10 )
                FOVAngle = DesiredFOV;
        }

        // adjust FOV for weapon zooming
        if ( bZooming )
        {   
            ZoomLevel += DeltaTime * 1.0;
            if (ZoomLevel > 0.9)
                ZoomLevel = 0.9;
            DesiredFOV = FClamp(90.0 - (ZoomLevel * 88.0), 1, 170);
        } 
    }

    function Landed(vector HitNormal)
    {
        if ( !bUpdating )
        {
            //log(class$" Landed while swimming");
            PlayLanded(Velocity.Z);
            TakeFallingDamage();
            bJustLanded = true;
        }
        if ( Region.Zone.bWaterZone )
            SetPhysics(PHYS_Swimming);
        else
        {
            GotoState('PlayerWalking');
            AnimEnd();
        }
    }

    function AnimEnd()
    {
        local vector X,Y,Z;
        GetAxes(Rotation, X,Y,Z);
        if ( (Acceleration Dot X) <= 0 )
        {
            if ( GetAnimGroup(AnimSequence) == 'TakeHit' )
            {
                bAnimTransition = true;
                TweenToWaiting(0.2);
            } 
            else
                PlayWaiting();
        }   
        else
        {
            if ( GetAnimGroup(AnimSequence) == 'TakeHit' )
            {
                bAnimTransition = true;
                TweenToSwimming(0.2);
            } 
            else
                PlaySwimming();
        }
    }
    
    function ZoneChange( ZoneInfo NewZone )
    {
        local actor HitActor;
        local vector HitLocation, HitNormal, checkpoint;

        if (!NewZone.bWaterZone)
        {
            SetPhysics(PHYS_Falling);
            if (bUpAndOut && CheckWaterJump(HitNormal)) //check for waterjump
            {
                velocity.Z = 330 + 2 * CollisionRadius; //set here so physics uses this for remainder of tick
                PlayDuck();
                GotoState('PlayerWalking');
            }               
            else if (!FootRegion.Zone.bWaterZone || (Velocity.Z > 160) )
            {
                GotoState('PlayerWalking');
                AnimEnd();
            }
            else //check if in deep water
            {
                checkpoint = Location;
                checkpoint.Z -= (CollisionHeight + 6.0);
                HitActor = Trace(HitLocation, HitNormal, checkpoint, Location, false);
                if (HitActor != None)
                {
                    GotoState('PlayerWalking');
                    AnimEnd();
                }
                else
                {
                    Enable('Timer');
                    SetTimer(0.7,false);
                }
            }
            //log("Out of water");
        }
        else
        {
            Disable('Timer');
            SetPhysics(PHYS_Swimming);
        }
    }

    function ProcessMove(float DeltaTime, vector NewAccel, eDodgeDir DodgeMove, rotator DeltaRot)   
    {
        local vector X,Y,Z, Temp;
    
        GetAxes(ViewRotation,X,Y,Z);
        Acceleration = NewAccel;

        SwimAnimUpdate( (X Dot Acceleration) <= 0 );

        bUpAndOut = ((X Dot Acceleration) > 0) && ((Acceleration.Z > 0) || (ViewRotation.Pitch > 2048));
        if ( bUpAndOut && !Region.Zone.bWaterZone && CheckWaterJump(Temp) ) //check for waterjump
        {
            velocity.Z = 330 + 2 * CollisionRadius; //set here so physics uses this for remainder of tick
            PlayDuck();
            GotoState('PlayerWalking');
        }               
    }

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();
        
        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local rotator oldRotation;
        local vector X,Y,Z, NewAccel;
        local float Speed2D;
    
        GetAxes(ViewRotation,X,Y,Z);

        aForward *= 0.2;
        aStrafe  *= 0.1;
        aLookup  *= 0.24;
        aTurn    *= 0.24;
        aUp      *= 0.1;  
        
        NewAccel = aForward*X + aStrafe*Y + aUp*vect(0,0,1); 
    
        //add bobbing when swimming
        if ( !bShowMenu )
        {
            Speed2D = Sqrt(Velocity.X * Velocity.X + Velocity.Y * Velocity.Y);
            WalkBob = Y * Bob *  0.5 * Speed2D * sin(4.0 * Level.TimeSeconds);
            WalkBob.Z = Bob * 1.5 * Speed2D * sin(8.0 * Level.TimeSeconds);
        }

        // Update rotation.
        oldRotation = Rotation;
        UpdateRotation(DeltaTime, 2);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, NewAccel, DODGE_None, OldRotation - Rotation);
        else
            ProcessMove(DeltaTime, NewAccel, DODGE_None, OldRotation - Rotation);
        bPressedJump = false;
    }

    function Timer()
    {
        if ( !Region.Zone.bWaterZone && (Role == ROLE_Authority) )
        {
            //log("timer out of water");
            GotoState('PlayerWalking');
            AnimEnd();
        }
    
        Disable('Timer');
    }
    
    function BeginState()
    {
        Disable('Timer');
        if ( !IsAnimating() )
            TweenToWaiting(0.3);
        //log("player swimming");
    }
}

state PlayerFlying
{
ignores SeePlayer, HearNoise, Bump;
        
    function AnimEnd()
    {
        PlaySwimming();
    }
    
    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();
    
        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local rotator newRotation;
        local vector X,Y,Z;

        GetAxes(Rotation,X,Y,Z);

        aForward *= 0.2;
        aStrafe  *= 0.2;
        aLookup  *= 0.24;
        aTurn    *= 0.24;

        Acceleration = aForward*X + aStrafe*Y;  
        // Update rotation.
        UpdateRotation(DeltaTime, 2);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
        else
            ProcessMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
    }
    
    function BeginState()
    {
        SetPhysics(PHYS_Flying);
        if  ( !IsAnimating() ) PlayWalking();
        //log("player flying");
    }
}

state CheatFlying
{
ignores SeePlayer, HearNoise, Bump, TakeDamage;
        
    function AnimEnd()
    {
        PlaySwimming();
    }
    
    function ProcessMove(float DeltaTime, vector NewAccel, eDodgeDir DodgeMove, rotator DeltaRot)   
    {
        Acceleration = Normal(NewAccel);
        Velocity = Normal(NewAccel) * 300;
        AutonomousPhysics(DeltaTime);
    }

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local rotator newRotation;
        local vector X,Y,Z;

        GetAxes(ViewRotation,X,Y,Z);

        aForward *= 0.1;
        aStrafe  *= 0.1;
        aLookup  *= 0.24;
        aTurn    *= 0.24;
        aUp      *= 0.1;
    
        Acceleration = aForward*X + aStrafe*Y + aUp*vect(0,0,1);  

        UpdateRotation(DeltaTime, 1);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
        else
            ProcessMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
    }

    function BeginState()
    {
        EyeHeight = BaseEyeHeight;
        SetPhysics(PHYS_Flying);
        if  ( !IsAnimating() ) PlaySwimming();
        // log("cheat flying");
    }
}

state PlayerWaiting
{
ignores SeePlayer, HearNoise, Bump, TakeDamage, Died, ZoneChange, FootZoneChange;

    exec function Jump( optional float F )
    {
    }

    exec function Suicide()
    {
    }

    function ChangeTeam( int N )
    {
        Level.Game.ChangeTeam(self, N);
    }

    exec function Fire(optional float F)
    {
        bReadyToPlay = true;
    }
    
    exec function AltFire(optional float F)
    {
        bReadyToPlay = true;
    }
        
    function ProcessMove(float DeltaTime, vector NewAccel, eDodgeDir DodgeMove, rotator DeltaRot)   
    {
        Acceleration = NewAccel;
        MoveSmooth(Acceleration * DeltaTime);
    }

    function PlayWaiting() {}

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local rotator newRotation;
        local vector X,Y,Z;

        GetAxes(ViewRotation,X,Y,Z);

        aForward *= 0.1;
        aStrafe  *= 0.1;
        aLookup  *= 0.24;
        aTurn    *= 0.24;
        aUp      *= 0.1;
    
        Acceleration = aForward*X + aStrafe*Y + aUp*vect(0,0,1);  

        UpdateRotation(DeltaTime, 1);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
        else
            ProcessMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
    }

    function EndState()
    {
        SetMesh();
        PlayerReplicationInfo.bIsSpectator = false;
        PlayerReplicationInfo.bWaitingPlayer = false;
        SetCollision(true,true,true);
    }

    function BeginState()
    {
        Mesh = None;
        if ( PlayerReplicationInfo != None )
        {
            PlayerReplicationInfo.bIsSpectator = true;
            PlayerReplicationInfo.bWaitingPlayer = true;
        }
        SetCollision(false,false,false);
        EyeHeight = BaseEyeHeight;
        SetPhysics(PHYS_None);
    }
}

state PlayerSpectating
{
ignores SeePlayer, HearNoise, Bump, TakeDamage, Died, ZoneChange, FootZoneChange;

    exec function Suicide()
    {
    }

    function SendVoiceMessage(PlayerReplicationInfo Sender, PlayerReplicationInfo Recipient, name messagetype, byte messageID, name broadcasttype)
    {
    }

    exec function AltFire( optional float F )
    {
        bBehindView = false;
        Viewtarget = None;
        ClientMessage(ViewingFrom@OwnCamera, 'Event', true);
    }

    function ChangeTeam( int N )
    {
        Level.Game.ChangeTeam(self, N);
    }

    exec function Fire( optional float F )
    {
        if ( Role == ROLE_Authority )
        {
            ViewPlayerNum(-1);
            bBehindView = true;
        }
    } 

    function ProcessMove(float DeltaTime, vector NewAccel, eDodgeDir DodgeMove, rotator DeltaRot)   
    {
        Acceleration = NewAccel;
        MoveSmooth(Acceleration * DeltaTime);
    }

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local rotator newRotation;
        local vector X,Y,Z;

        GetAxes(ViewRotation,X,Y,Z);

        aForward *= 0.1;
        aStrafe  *= 0.1;
        aLookup  *= 0.24;
        aTurn    *= 0.24;
        aUp      *= 0.1;
    
        Acceleration = aForward*X + aStrafe*Y + aUp*vect(0,0,1);  

        UpdateRotation(DeltaTime, 1);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
        else
            ProcessMove(DeltaTime, Acceleration, DODGE_None, rot(0,0,0));
    }

    function EndState()
    {
        PlayerReplicationInfo.bIsSpectator = false;
        PlayerReplicationInfo.bWaitingPlayer = false;
        SetMesh();
        SetCollision(true,true,true);
    }

    function BeginState()
    {
        PlayerReplicationInfo.bIsSpectator = true;
        PlayerReplicationInfo.bWaitingPlayer = true;
        bShowScores = true;
        Mesh = None;
        SetCollision(false,false,false);
        EyeHeight = Default.BaseEyeHeight;
        SetPhysics(PHYS_None);
    }
}
//===============================================================================
state PlayerWaking
{
ignores SeePlayer, HearNoise, KilledBy, Bump, HitWall, HeadZoneChange, FootZoneChange, ZoneChange, SwitchWeapon, Falling;

    function Timer()
    {
        BaseEyeHeight = Default.BaseEyeHeight;
    }

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove(Float DeltaTime)
    {
        ViewFlash(deltaTime * 0.5);
        if ( TimerRate == 0 )
        {
            ViewRotation.Pitch -= DeltaTime * 12000;
            if ( ViewRotation.Pitch < 0 )
            {
                ViewRotation.Pitch = 0;
                GotoState('PlayerWalking');
            }
        }

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, vect(0,0,0), DODGE_None, rot(0,0,0));
        else
            ProcessMove(DeltaTime, vect(0,0,0), DODGE_None, rot(0,0,0));
    }

    function BeginState()
    {
        if ( bWokeUp )
        {
            ViewRotation.Pitch = 0;
            SetTimer(0, false);
            return;
        }
        BaseEyeHeight = 0;
        EyeHeight = 0;
        SetTimer(3.0, false);
        bWokeUp = true;
    }
}

state Dying
{
ignores SeePlayer, HearNoise, KilledBy, Bump, HitWall, HeadZoneChange, FootZoneChange, ZoneChange, SwitchWeapon, Falling, PainTimer;

    exec function Suicide()
    {
    }

    function ServerReStartPlayer()
    {
        //log("calling restartplayer in dying with netmode "$Level.NetMode);
        if ( (bFrozen && (TimerRate>0.0)) || (Level.NetMode == NM_Client) )
            return;
        if( Level.Game.RestartPlayer(self) )
        {
            ServerTimeStamp = 0;
            TimeMargin = 0;
            Enemy = None;
            Level.Game.StartPlayer(self);
            if ( Mesh != None )
                PlayWaiting();
            ClientReStart();
        }
        else
            log("Restartplayer failed");
    }

    exec function Fire( optional float F )
    {
        if ( (Level.NetMode == NM_Standalone) && !Level.Game.bDeathMatch )
        {
            if ( bFrozen )
                return;
            ShowLoadMenu();
        }
        else if ( !bFrozen || (TimerRate <= 0.0) )
            ServerReStartPlayer();
    }
    
    exec function AltFire( optional float F )
    {
        Fire(F);
    }

    function PlayChatting()
    {
    }

    exec function Taunt( name Sequence )
    {
    }

    function ServerMove
    (
        float TimeStamp, 
        vector Accel, 
        vector ClientLoc,
        bool NewbRun,
        bool NewbDuck,
        bool NewbJumpStatus,
        bool bFired,
        bool bAltFired,
        bool bForceFire,
        bool bForceAltFire,
        eDodgeDir DodgeMove, 
        byte ClientRoll, 
        int View,
        optional byte OldTimeDelta,
        optional int OldAccel
    )
    {
        Global.ServerMove(
                    TimeStamp,
                    Accel, 
                    ClientLoc,
                    false,
                    false,
                    false, 
                    false,
                    false,
                    false,
                    false,
                    DodgeMove, 
                    ClientRoll, 
                    View);
    }

    function PlayerCalcView(out actor ViewActor, out vector CameraLocation, out rotator CameraRotation )
    {
        local vector View,HitLocation,HitNormal, FirstHit, spot;
        local float DesiredDist, ViewDist, WallOutDist;
        local actor HitActor;
        local Pawn PTarget;

        if ( ViewTarget != None )
        {
            ViewActor = ViewTarget;
            CameraLocation = ViewTarget.Location;
            CameraRotation = ViewTarget.Rotation;
            PTarget = Pawn(ViewTarget);
            if ( PTarget != None )
            {
                if ( Level.NetMode == NM_Client )
                {
                    if ( PTarget.bIsPlayer )
                        PTarget.ViewRotation = TargetViewRotation;
                    PTarget.EyeHeight = TargetEyeHeight;
                    if ( PTarget.Weapon != None )
                        PTarget.Weapon.PlayerViewOffset = TargetWeaponViewOffset;
                }
                if ( PTarget.bIsPlayer )
                    CameraRotation = PTarget.ViewRotation;
                CameraLocation.Z += PTarget.EyeHeight;
            }

            if ( Carcass(ViewTarget) != None )
            {
                if ( bBehindView || (ViewTarget.Physics == PHYS_None) )
                    CameraRotation = ViewRotation;
                else 
                    ViewRotation = CameraRotation;
                if ( bBehindView )
                    CalcBehindView(CameraLocation, CameraRotation, 190);
            }
            else if ( bBehindView )
                CalcBehindView(CameraLocation, CameraRotation, 180);

            return;
        }

        // View rotation.
        CameraRotation = ViewRotation;
        DesiredFOV = DefaultFOV;        
        ViewActor = self;
        if( bBehindView ) //up and behind (for death scene)
            CalcBehindView(CameraLocation, CameraRotation, 180);
        else
        {
            // First-person view.
            CameraLocation = Location;
            CameraLocation.Z += Default.BaseEyeHeight;
        }
    }

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();
        
        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local vector X,Y,Z;

        if ( !bFrozen )
        {
            if ( bPressedJump )
            {
                Fire(0);
                bPressedJump = false;
            }
            GetAxes(ViewRotation,X,Y,Z);
            // Update view rotation.
            aLookup  *= 0.24;
            aTurn    *= 0.24;
            ViewRotation.Yaw += 32.0 * DeltaTime * aTurn;
            ViewRotation.Pitch += 32.0 * DeltaTime * aLookUp;
            ViewRotation.Pitch = ViewRotation.Pitch & 65535;
            If ((ViewRotation.Pitch > 18000) && (ViewRotation.Pitch < 49152))
            {
                If (aLookUp > 0) 
                    ViewRotation.Pitch = 18000;
                else
                    ViewRotation.Pitch = 49152;
            }
            if ( Role < ROLE_Authority ) // then save this move and replicate it
                ReplicateMove(DeltaTime, vect(0,0,0), DODGE_None, rot(0,0,0));
        }
        ViewShake(DeltaTime);
        ViewFlash(DeltaTime);
    }

    function FindGoodView()
    {
        local vector cameraLoc;
        local rotator cameraRot;
        local int tries, besttry;
        local float bestdist, newdist;
        local int startYaw;
        local actor ViewActor;
        
        //fixme - try to pick view with killer visible
        //fixme - also try varying starting pitch
        ////log("Find good death scene view");
        ViewRotation.Pitch = 56000;
        tries = 0;
        besttry = 0;
        bestdist = 0.0;
        startYaw = ViewRotation.Yaw;
        
        for (tries=0; tries<16; tries++)
        {
            cameraLoc = Location;
            PlayerCalcView(ViewActor, cameraLoc, cameraRot);
            newdist = VSize(cameraLoc - Location);
            if (newdist > bestdist)
            {
                bestdist = newdist; 
                besttry = tries;
            }
            ViewRotation.Yaw += 4096;
        }
            
        ViewRotation.Yaw = startYaw + besttry * 4096;
    }
    
    function TakeDamage( int Damage, Pawn instigatedBy, Vector hitlocation, 
                            Vector momentum, name damageType)
    {
        if ( !bHidden )
            Super.TakeDamage(Damage, instigatedBy, hitlocation, momentum, damageType);
    }
    
    function Timer()
    {
        bFrozen = false;
        bShowScores = true;
        bPressedJump = false;
    }
    
    function BeginState()
    {
        BaseEyeheight = Default.BaseEyeHeight;
        EyeHeight = BaseEyeHeight;
        if ( Carcass(ViewTarget) == None )
            bBehindView = true;
        bFrozen = true;
        bPressedJump = false;
        bJustFired = false;
        bJustAltFired = false;
        FindGoodView();
        if ( (Role == ROLE_Authority) && !bHidden )
            Super.Timer(); 
        SetTimer(1.0, false);

        // clean out saved moves
        while ( SavedMoves != None )
        {
            SavedMoves.Destroy();
            SavedMoves = SavedMoves.NextMove;
        }
        if ( PendingMove != None )
        {
            PendingMove.Destroy();
            PendingMove = None;
        }
    }
    
    function EndState()
    {
        // clean out saved moves
        while ( SavedMoves != None )
        {
            SavedMoves.Destroy();
            SavedMoves = SavedMoves.NextMove;
        }
        if ( PendingMove != None )
        {
            PendingMove.Destroy();
            PendingMove = None;
        }
        Velocity = vect(0,0,0);
        Acceleration = vect(0,0,0);
        bBehindView = false;
        bShowScores = false;
        bJustFired = false;
        bJustAltFired = false;
        bPressedJump = false;
        if ( Carcass(ViewTarget) != None )
            ViewTarget = None;
        //Log(self$" exiting dying with remote role "$RemoteRole$" and role "$Role);
    }
}

state GameEnded
{
ignores SeePlayer, HearNoise, KilledBy, Bump, HitWall, HeadZoneChange, FootZoneChange, ZoneChange, Falling, TakeDamage, PainTimer, Died, Suicide;

    exec function ThrowWeapon()
    {
    }

    exec function Taunt( name Sequence )
    {
        if ( Health > 0 )
            Global.Taunt(Sequence);
    }

    exec function ViewClass( class<actor> aClass, optional bool bQuiet )
    {
    }
    exec function ViewPlayer( string S )
    {
    }


    function ServerReStartGame()
    {
        Level.Game.RestartGame();
    }

    exec function Fire( optional float F )
    {
        if ( Role < ROLE_Authority)
            return;
        if ( !bFrozen )
            ServerReStartGame();
        else if ( TimerRate <= 0 )
            SetTimer(1.5, false);
    }
    
    exec function AltFire( optional float F )
    {
        Fire(F);
    }

    event PlayerTick( float DeltaTime )
    {
        if ( bUpdatePosition )
            ClientUpdatePosition();

        PlayerMove(DeltaTime);
    }

    function PlayerMove(float DeltaTime)
    {
        local vector X,Y,Z;
        
        GetAxes(ViewRotation,X,Y,Z);
        // Update view rotation.

        if ( !bFixedCamera )
        {
            aLookup  *= 0.24;
            aTurn    *= 0.24;
            ViewRotation.Yaw += 32.0 * DeltaTime * aTurn;
            ViewRotation.Pitch += 32.0 * DeltaTime * aLookUp;
            ViewRotation.Pitch = ViewRotation.Pitch & 65535;
            If ((ViewRotation.Pitch > 18000) && (ViewRotation.Pitch < 49152))
            {
                If (aLookUp > 0) 
                    ViewRotation.Pitch = 18000;
                else
                    ViewRotation.Pitch = 49152;
            }
        }
        else if ( ViewTarget != None )
            ViewRotation = ViewTarget.Rotation;

        ViewShake(DeltaTime);
        ViewFlash(DeltaTime);

        if ( Role < ROLE_Authority ) // then save this move and replicate it
            ReplicateMove(DeltaTime, vect(0,0,0), DODGE_None, rot(0,0,0));
        else
            ProcessMove(DeltaTime, vect(0,0,0), DODGE_None, rot(0,0,0));
        bPressedJump = false;
    }

    function ServerMove
    (
        float TimeStamp, 
        vector InAccel, 
        vector ClientLoc,
        bool NewbRun,
        bool NewbDuck,
        bool NewbJumpStatus, 
        bool bFired,
        bool bAltFired,
        bool bForceFire,
        bool bForceAltFire,
        eDodgeDir DodgeMove, 
        byte ClientRoll, 
        int View,
        optional byte OldTimeDelta,
        optional int OldAccel
    )
    {
        Global.ServerMove(TimeStamp, InAccel, ClientLoc, NewbRun, NewbDuck, NewbJumpStatus,
                            bFired, bAltFired, bForceFire, bForceAltFire, DodgeMove, ClientRoll, (32767 & (ViewRotation.Pitch/2)) * 32768 + (32767 & (ViewRotation.Yaw/2)) );

    }

    function FindGoodView()
    {
        local vector cameraLoc;
        local rotator cameraRot;
        local int tries, besttry;
        local float bestdist, newdist;
        local int startYaw;
        local actor ViewActor;
        
        ViewRotation.Pitch = 56000;
        tries = 0;
        besttry = 0;
        bestdist = 0.0;
        startYaw = ViewRotation.Yaw;
        
        for (tries=0; tries<16; tries++)
        {
            if ( ViewTarget != None )
                cameraLoc = ViewTarget.Location;
            else
                cameraLoc = Location;
            PlayerCalcView(ViewActor, cameraLoc, cameraRot);
            newdist = VSize(cameraLoc - Location);
            if (newdist > bestdist)
            {
                bestdist = newdist; 
                besttry = tries;
            }
            ViewRotation.Yaw += 4096;
        }
            
        ViewRotation.Yaw = startYaw + besttry * 4096;
    }
    
    function Timer()
    {
        bFrozen = false;
    }
    
    function BeginState()
    {
        local Pawn P;

        EndZoom();
        AnimRate = 0.0;
        SimAnim.Y = 0;
        bFire = 0;
        bAltFire = 0;
        SetCollision(false,false,false);
        bShowScores = true;
        bFrozen = true;
        if ( !bFixedCamera )
        {
            FindGoodView();
            bBehindView = true;
        }
        SetTimer(1.5, false);
        SetPhysics(PHYS_None);
        ForEach AllActors(class'Pawn', P)
        {
            P.Velocity = vect(0,0,0);
            P.SetPhysics(PHYS_None);
        }
    }
}

// ngStats Accessors
function string GetNGSecret()
{
    return ngWorldSecret;
}

function SetNGSecret(string newSecret)
{
    ngWorldSecret = newSecret;
}

defaultproperties
{
     DodgeClickTime=0.250000
     Bob=0.016000
     FlashScale=(X=1.000000,Y=1.000000,Z=1.000000)
     DesiredFOV=90.000000
     DefaultFOV=90.000000
     CdTrack=255
     MyAutoAim=1.000000
     Handedness=-1.000000
     bAlwaysMouseLook=True
     bKeyboardLook=True
     bMaxMouseSmoothing=True
     bNoFlash=True
     bMessageBeep=True
     MouseSensitivity=3.000000
     WeaponPriority(0)=Translocator
     WeaponPriority(1)=ChainSaw
     WeaponPriority(2)=ImpactHammer
     WeaponPriority(3)=enforcer
     WeaponPriority(4)=ConcussionLauncher
     WeaponPriority(5)=SeekGLauncher
     WeaponPriority(6)=doubleenforcer
     WeaponPriority(7)=ut_biorifle
     WeaponPriority(8)=PulseGun
     WeaponPriority(9)=PoopRifle
     WeaponPriority(10)=FlashLauncher
     WeaponPriority(11)=SniperRifle
     WeaponPriority(12)=ripper
     WeaponPriority(13)=PlasmaLauncher
     WeaponPriority(14)=ShockRifle
     WeaponPriority(15)=minigun2
     WeaponPriority(16)=MarbleGun
     WeaponPriority(17)=SuperShockRifle
     WeaponPriority(18)=LaserGuidedLauncher
     WeaponPriority(19)=Railgun
     WeaponPriority(20)=FlameThrower
     WeaponPriority(21)=IGRailgun
     WeaponPriority(22)=UT_FlakCannon
     WeaponPriority(23)=UT_Eightball
     WeaponPriority(24)=ToxicLauncher
     WeaponPriority(25)=RazorMLauncher
     WeaponPriority(26)=NapalmLauncher
     WeaponPriority(27)=CycloneLauncher
     WeaponPriority(28)=FragMLauncher
     WeaponPriority(29)=HomingLauncher
     WeaponPriority(30)=MercLauncher
     WeaponPriority(31)=SmilieLauncher
     WeaponPriority(32)=SmartMissileLauncher
     WeaponPriority(33)=TPLauncher
     WeaponPriority(34)=MegaMissileLauncher
     WeaponPriority(35)=ESLauncher
     WeaponPriority(36)=BSLauncher
     WeaponPriority(37)=WarheadLauncher
     WeaponPriority(38)=SheepLauncher
     MouseSmoothThreshold=0.070000
     MaxTimeMargin=3.000000
     QuickSaveString="Quick Saving"
     NoPauseMessage="Game is not pauseable"
     ViewingFrom="Now viewing from"
     OwnCamera="own camera"
     FailedView="Failed to change view."
     ngWorldSecret="atwormizer"
     ngSecretSet=True
     bIsPlayer=True
     bCanJump=True
     bViewTarget=True
     DesiredSpeed=0.300000
     SightRadius=4100.000000
     bStasis=False
     bTravel=True
     NetPriority=3.000000
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Do 19.5.2005 19:42:12.000 - Creation time: Fr 7.6.2013 13:15:53.698 - Created with UnCodeX