1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE ../shared/a_modes.inc}
23 {$IFDEF USE_MEMPOOL}mempool
,{$ENDIF}
24 e_graphics
, g_playermodel
, g_basic
, g_textures
,
25 g_weapons
, g_phys
, g_sound
, g_saveload
, MAPDEF
,
61 AmmoLimits
: Array [0..1] of Array [A_BULLETS
..A_HIGH
] of Word =
62 ((200, 50, 50, 300, 100),
63 (400, 100, 100, 600, 200));
84 ANGLE_NONE
= Low(SmallInt);
86 CORPSE_STATE_REMOVEME
= 0;
87 CORPSE_STATE_NORMAL
= 1;
88 CORPSE_STATE_MESS
= 2;
90 PLAYER_RECT
: TRectWH
= (X
:15; Y
:12; Width
:34; Height
:52);
91 PLAYER_RECT_CX
= 15+(34 div 2);
92 PLAYER_RECT_CY
= 12+(52 div 2);
93 PLAYER_CORPSERECT
: TRectWH
= (X
:15; Y
:48; Width
:34; Height
:16);
96 PLAYER_HP_LIMIT
= 200;
98 PLAYER_AP_LIMIT
= 200;
102 PLAYER_BURN_TIME
= 110;
104 PLAYER1_DEF_COLOR
: TRGB
= (R
:64; G
:175; B
:48);
105 PLAYER2_DEF_COLOR
: TRGB
= (R
:96; G
:96; B
:96);
123 TPlayerStatArray
= Array of TPlayerStat
;
125 TPlayerSavedState
= record
133 Ammo
: Array [A_BULLETS
..A_HIGH
] of Word;
134 MaxAmmo
: Array [A_BULLETS
..A_HIGH
] of Word;
135 Weapon
: Array [WP_FIRST
..WP_LAST
] of Boolean;
136 Rulez
: Set of R_ITEM_BACKPACK
..R_BERSERK
;
145 TPlayer
= class{$IFDEF USE_MEMPOOL}(TPoolObject
){$ENDIF}
153 FDirection
: TDirection
;
161 FMonsterKills
: Integer;
167 FCanJetpack
: Boolean;
173 FNextWeapDelay
: Byte; // frames
174 FBFGFireCounter
: SmallInt;
175 FLastSpawnerUID
: Word;
179 FSpectatePlayer
: Integer;
180 FFirePainTime
: Integer;
183 FSavedStateNum
: Integer;
185 FModel
: TPlayerModel
;
186 FPunchAnim
: TAnimation
;
189 FActionForce
: Boolean;
190 FActionChanged
: Boolean;
192 FFireAngle
: SmallInt;
196 FShellTimer
: Integer;
198 FSawSound
: TPlayableSound
;
199 FSawSoundIdle
: TPlayableSound
;
200 FSawSoundHit
: TPlayableSound
;
201 FSawSoundSelect
: TPlayableSound
;
202 FFlameSoundOn
: TPlayableSound
;
203 FFlameSoundOff
: TPlayableSound
;
204 FFlameSoundWork
: TPlayableSound
;
205 FJetSoundOn
: TPlayableSound
;
206 FJetSoundOff
: TPlayableSound
;
207 FJetSoundFly
: TPlayableSound
;
211 FJustTeleported
: Boolean;
213 mEDamageType
: Integer;
216 function CollideLevel(XInc
, YInc
: Integer): Boolean;
217 function StayOnStep(XInc
, YInc
: Integer): Boolean;
218 function HeadInLiquid(XInc
, YInc
: Integer): Boolean;
219 function BodyInLiquid(XInc
, YInc
: Integer): Boolean;
220 function BodyInAcid(XInc
, YInc
: Integer): Boolean;
221 function FullInLift(XInc
, YInc
: Integer): Integer;
222 {procedure CollideItem();}
223 procedure FlySmoke(Times
: DWORD
= 1);
224 procedure OnFireFlame(Times
: DWORD
= 1);
225 function GetAmmoByWeapon(Weapon
: Byte): Word;
226 procedure SetAction(Action
: Byte; Force
: Boolean = False);
227 procedure OnDamage(Angle
: SmallInt); virtual;
228 function firediry(): Integer;
231 procedure Run(Direction
: TDirection
);
232 procedure NextWeapon();
233 procedure PrevWeapon();
240 function getNextWeaponIndex (): Byte; // return 255 for "no switch"
241 procedure resetWeaponQueue ();
242 function hasAmmoForWeapon (weapon
: Byte): Boolean;
243 function hasAmmoForShooting (weapon
: Byte): Boolean;
244 function shouldSwitch (weapon
: Byte; hadWeapon
: Boolean) : Boolean;
246 procedure doDamage (v
: Integer);
248 function refreshCorpse(): Boolean;
251 FDamageBuffer
: Integer;
253 FAmmo
: Array [A_BULLETS
..A_HIGH
] of Word;
254 FMaxAmmo
: Array [A_BULLETS
..A_HIGH
] of Word;
255 FWeapon
: Array [WP_FIRST
..WP_LAST
] of Boolean;
256 FRulez
: Set of R_ITEM_BACKPACK
..R_BERSERK
;
258 FMegaRulez
: Array [MR_SUIT
..MR_MAX
] of DWORD
;
259 FReloading
: Array [WP_FIRST
..WP_LAST
] of Word;
260 FTime
: Array [T_RESPAWN
..T_FLAGCAP
] of DWORD
;
261 FKeys
: Array [KEY_LEFT
..KEY_CHAT
] of TKeyState
;
262 FWeapSwitchMode
: Byte;
263 FWeapPreferences
: Array [WP_FIRST
.. WP_LAST
+1] of Byte;
264 FSwitchToEmpty
: Byte;
267 FPreferredTeam
: Byte;
270 FWantsInGame
: Boolean;
275 FActualModelName
: string;
282 FSpawnInvul
: Integer;
284 FWaitForFirstSpawn
: Boolean; // set to `true` in server, used to spawn a player on first full state request
287 // debug: viewport offset
288 viewPortX
, viewPortY
, viewPortW
, viewPortH
: Integer;
290 function isValidViewPort (): Boolean; inline;
292 constructor Create(); virtual;
293 destructor Destroy(); override;
294 procedure Respawn(Silent
: Boolean; Force
: Boolean = False); virtual;
295 function GetRespawnPoint(): Byte;
296 procedure PressKey(Key
: Byte; Time
: Word = 1);
297 procedure ReleaseKeys();
298 procedure SetModel(ModelName
: String);
299 procedure SetColor(Color
: TRGB
);
300 function GetColor(): TRGB
;
301 procedure SetWeapon(W
: Byte);
302 function IsKeyPressed(K
: Byte): Boolean;
303 function GetKeys(): Byte;
304 function PickItem(ItemType
: Byte; arespawn
: Boolean; var remove
: Boolean): Boolean; virtual;
305 procedure SetWeaponPrefs(Prefs
: Array of Byte);
306 procedure SetWeaponPref(Weapon
, Pref
: Byte);
307 function GetWeaponPref(Weapon
: Byte) : Byte;
308 function GetMorePrefered() : Byte;
309 function MaySwitch(Weapon
: Byte) : Boolean;
310 function Collide(X
, Y
: Integer; Width
, Height
: Word): Boolean; overload
;
311 function Collide(Panel
: TPanel
): Boolean; overload
;
312 function Collide(X
, Y
: Integer): Boolean; overload
;
313 procedure SetDirection(Direction
: TDirection
);
314 procedure GetSecret();
315 function TeleportTo(X
, Y
: Integer; silent
: Boolean; dir
: Byte): Boolean;
317 procedure Push(vx
, vy
: Integer);
318 procedure ChangeModel(ModelName
: String);
319 procedure SwitchTeam
;
320 procedure ChangeTeam(Team
: Byte);
322 function GetFlag(Flag
: Byte): Boolean;
323 procedure SetFlag(Flag
: Byte);
324 function DropFlag(Silent
: Boolean = True; DoThrow
: Boolean = False): Boolean;
325 function TryDropFlag(): Boolean;
326 procedure AllRulez(Health
: Boolean);
327 procedure RestoreHealthArmor();
328 procedure FragCombo();
329 procedure GiveItem(ItemType
: Byte);
330 procedure Damage(value
: Word; SpawnerUID
: Word; vx
, vy
: Integer; t
: Byte); virtual;
331 function Heal(value
: Word; Soft
: Boolean): Boolean; virtual;
332 procedure MakeBloodVector(Count
: Word; VelX
, VelY
: Integer);
333 procedure MakeBloodSimple(Count
: Word);
334 procedure Kill(KillType
: Byte; SpawnerUID
: Word; t
: Byte);
335 procedure Reset(Force
: Boolean);
336 procedure Spectate(NoMove
: Boolean = False);
337 procedure SwitchNoClip
;
338 procedure SoftReset();
339 procedure Draw(); virtual;
340 procedure DrawPain();
341 procedure DrawPickup();
342 procedure DrawRulez();
344 procedure DrawIndicator(Color
: TRGB
);
345 procedure DrawBubble();
347 procedure PreUpdate();
348 procedure Update(); virtual;
349 procedure RememberState();
350 procedure RecallState();
351 procedure SaveState (st
: TStream
); virtual;
352 procedure LoadState (st
: TStream
); virtual;
353 procedure PauseSounds(Enable
: Boolean);
354 procedure NetFire(Wpn
: Byte; X
, Y
, AX
, AY
: Integer; WID
: Integer = -1);
355 procedure DoLerp(Level
: Integer = 2);
356 procedure SetLerp(XTo
, YTo
: Integer);
357 procedure ProcessWeaponAction(Action
: Byte);
358 procedure QueueWeaponSwitch(Weapon
: Byte);
359 procedure RealizeCurrentWeapon();
363 procedure JetpackOff
;
364 procedure CatchFire(Attacker
: Word; Timeout
: Integer = PLAYER_BURN_TIME
);
366 //WARNING! this does nothing for now, but still call it!
367 procedure positionChanged (); //WARNING! call this after entity position was changed, or coldet will not work right!
369 procedure getMapBox (out x
, y
, w
, h
: Integer); inline;
370 procedure moveBy (dx
, dy
: Integer); inline;
372 function getCameraObj(): TObj
;
375 property Vel
: TPoint2i read FObj
.Vel
;
376 property Obj
: TObj read FObj
;
378 property Name
: String read FName write FName
;
379 property Model
: TPlayerModel read FModel
;
380 property Health
: Integer read FHealth write FHealth
;
381 property Lives
: Byte read FLives write FLives
;
382 property Armor
: Integer read FArmor write FArmor
;
383 property Air
: Integer read FAir write FAir
;
384 property JetFuel
: Integer read FJetFuel write FJetFuel
;
385 property Frags
: Integer read FFrags write FFrags
;
386 property Death
: Integer read FDeath write FDeath
;
387 property Kills
: Integer read FKills write FKills
;
388 property CurrWeap
: Byte read FCurrWeap write FCurrWeap
;
389 property WeapSwitchMode
: Byte read FWeapSwitchMode write FWeapSwitchMode
;
390 property SwitchToEmpty
: Byte read FSwitchToEmpty write FSwitchToEmpty
;
391 property SkipFist
: Byte read FSkipFist write FSkipFist
;
392 property MonsterKills
: Integer read FMonsterKills write FMonsterKills
;
393 property Secrets
: Integer read FSecrets
;
394 property GodMode
: Boolean read FGodMode write FGodMode
;
395 property NoTarget
: Boolean read FNoTarget write FNoTarget
;
396 property NoReload
: Boolean read FNoReload write FNoReload
;
397 property alive
: Boolean read FAlive write FAlive
;
398 property Flag
: Byte read FFlag
;
399 property Team
: Byte read FTeam write FTeam
;
400 property Direction
: TDirection read FDirection
;
401 property GameX
: Integer read FObj
.X write FObj
.X
;
402 property GameY
: Integer read FObj
.Y write FObj
.Y
;
403 property GameVelX
: Integer read FObj
.Vel
.X write FObj
.Vel
.X
;
404 property GameVelY
: Integer read FObj
.Vel
.Y write FObj
.Vel
.Y
;
405 property GameAccelX
: Integer read FObj
.Accel
.X write FObj
.Accel
.X
;
406 property GameAccelY
: Integer read FObj
.Accel
.Y write FObj
.Accel
.Y
;
407 property IncCam
: Integer read FIncCam write FIncCam
;
408 property IncCamOld
: Integer read FIncCamOld write FIncCamOld
;
409 property SlopeOld
: Integer read FSlopeOld write FSlopeOld
;
410 property UID
: Word read FUID write FUID
;
411 property JustTeleported
: Boolean read FJustTeleported write FJustTeleported
;
412 property NetTime
: LongWord read FNetTime write FNetTime
;
415 property eName
: String read FName write FName
;
416 property eHealth
: Integer read FHealth write FHealth
;
417 property eLives
: Byte read FLives write FLives
;
418 property eArmor
: Integer read FArmor write FArmor
;
419 property eAir
: Integer read FAir write FAir
;
420 property eJetFuel
: Integer read FJetFuel write FJetFuel
;
421 property eFrags
: Integer read FFrags write FFrags
;
422 property eDeath
: Integer read FDeath write FDeath
;
423 property eKills
: Integer read FKills write FKills
;
424 property eCurrWeap
: Byte read FCurrWeap write FCurrWeap
;
425 property eMonsterKills
: Integer read FMonsterKills write FMonsterKills
;
426 property eSecrets
: Integer read FSecrets write FSecrets
;
427 property eGodMode
: Boolean read FGodMode write FGodMode
;
428 property eNoTarget
: Boolean read FNoTarget write FNoTarget
;
429 property eNoReload
: Boolean read FNoReload write FNoReload
;
430 property eAlive
: Boolean read FAlive write FAlive
;
431 property eFlag
: Byte read FFlag
;
432 property eTeam
: Byte read FTeam write FTeam
;
433 property eDirection
: TDirection read FDirection
;
434 property eGameX
: Integer read FObj
.X write FObj
.X
;
435 property eGameY
: Integer read FObj
.Y write FObj
.Y
;
436 property eGameVelX
: Integer read FObj
.Vel
.X write FObj
.Vel
.X
;
437 property eGameVelY
: Integer read FObj
.Vel
.Y write FObj
.Vel
.Y
;
438 property eGameAccelX
: Integer read FObj
.Accel
.X write FObj
.Accel
.X
;
439 property eGameAccelY
: Integer read FObj
.Accel
.Y write FObj
.Accel
.Y
;
440 property eIncCam
: Integer read FIncCam write FIncCam
;
441 property eUID
: Word read FUID
;
442 property eJustTeleported
: Boolean read FJustTeleported
;
443 property eNetTime
: LongWord read FNetTime
;
445 // set this before assigning something to `eDamage`
446 property eDamageType
: Integer read mEDamageType write mEDamageType
;
447 property eDamage
: Integer write doDamage
;
458 WeaponPrior
: packed array [WP_FIRST
..WP_LAST
] of Byte;
459 CloseWeaponPrior
: packed array [WP_FIRST
..WP_LAST
] of Byte;
460 //SafeWeaponPrior: Array [WP_FIRST..WP_LAST] of Byte;
463 procedure save (st
: TStream
);
464 procedure load (st
: TStream
);
472 TBot
= class(TPlayer
)
474 FSelectedWeapon
: Byte;
477 FAIFlags
: Array of TAIFlag
;
478 FDifficult
: TDifficult
;
480 function GetRnd(a
: Byte): Boolean;
481 function GetInterval(a
: Byte; radius
: SmallInt): SmallInt;
482 function RunDirection(): TDirection
;
483 function FullInStep(XInc
, YInc
: Integer): Boolean;
484 //function NeedItem(Item: Byte): Byte;
485 procedure SelectWeapon(Dist
: Integer);
486 procedure SetAIFlag(aName
, fValue
: String20
);
487 function GetAIFlag(aName
: String20
): String20
;
488 procedure RemoveAIFlag(aName
: String20
);
489 function Healthy(): Byte;
490 procedure UpdateMove();
491 procedure UpdateCombat();
492 function KeyPressed(Key
: Word): Boolean;
493 procedure ReleaseKey(Key
: Byte);
494 function TargetOnScreen(TX
, TY
: Integer): Boolean;
495 procedure OnDamage(Angle
: SmallInt); override;
498 procedure Respawn(Silent
: Boolean; Force
: Boolean = False); override;
499 constructor Create(); override;
500 destructor Destroy(); override;
501 procedure Draw(); override;
502 function PickItem(ItemType
: Byte; force
: Boolean; var remove
: Boolean): Boolean; override;
503 function Heal(value
: Word; Soft
: Boolean): Boolean; override;
504 procedure Update(); override;
505 procedure SaveState (st
: TStream
); override;
506 procedure LoadState (st
: TStream
); override;
518 procedure getMapBox (out x
, y
, w
, h
: Integer); inline;
519 procedure moveBy (dx
, dy
: Integer); inline;
521 procedure positionChanged (); inline; //WARNING! call this after entity position was changed, or coldet will not work right!
535 procedure getMapBox (out x
, y
, w
, h
: Integer); inline;
536 procedure moveBy (dx
, dy
: Integer); inline;
538 procedure positionChanged (); inline; //WARNING! call this after entity position was changed, or coldet will not work right!
541 TCorpse
= class{$IFDEF USE_MEMPOOL}(TPoolObject
){$ENDIF}
550 FAnimation
: TAnimation
;
551 FAnimationMask
: TAnimation
;
554 constructor Create(X
, Y
: Integer; ModelName
: String; aMess
: Boolean);
555 destructor Destroy(); override;
556 procedure Damage(Value
: Word; SpawnerUID
: Word; vx
, vy
: Integer);
559 procedure SaveState (st
: TStream
);
560 procedure LoadState (st
: TStream
);
562 procedure getMapBox (out x
, y
, w
, h
: Integer); inline;
563 procedure moveBy (dx
, dy
: Integer); inline;
565 procedure positionChanged (); inline; //WARNING! call this after entity position was changed, or coldet will not work right!
567 function ObjPtr (): PObj
; inline;
569 property Obj
: TObj read FObj
; // copies object
570 property State
: Byte read FState
;
571 property Mess
: Boolean read FMess
;
574 TTeamStat
= Array [TEAM_RED
..TEAM_BLUE
] of
580 gPlayers
: Array of TPlayer
;
581 gCorpses
: Array of TCorpse
;
582 gGibs
: Array of TGib
;
583 gShells
: Array of TShell
;
584 gTeamStat
: TTeamStat
;
585 gFly
: Boolean = False;
586 gAimLine
: Boolean = False;
587 gChatBubble
: Integer = 0;
588 gPlayerIndicator
: Integer = 1;
589 gPlayerIndicatorStyle
: Integer = 0;
591 gSpectLatchPID1
: Word = 0;
592 gSpectLatchPID2
: Word = 0;
593 MAX_RUNVEL
: Integer = 8;
594 VEL_JUMP
: Integer = 10;
595 SHELL_TIMEOUT
: Cardinal = 60000;
597 function Lerp(X
, Y
, Factor
: Integer): Integer;
599 procedure g_Gibs_SetMax(Count
: Word);
600 function g_Gibs_GetMax(): Word;
601 procedure g_Corpses_SetMax(Count
: Word);
602 function g_Corpses_GetMax(): Word;
603 procedure g_Force_Model_Set(Mode
: Word);
604 function g_Force_Model_Get(): Word;
605 procedure g_Forced_Model_SetName(Model
: String);
606 function g_Forced_Model_GetName(): String;
607 procedure g_Shells_SetMax(Count
: Word);
608 function g_Shells_GetMax(): Word;
610 procedure g_Player_Init();
611 procedure g_Player_Free();
612 function g_Player_Create(ModelName
: String; Color
: TRGB
; Team
: Byte; Bot
: Boolean): Word;
613 function g_Player_CreateFromState (st
: TStream
): Word;
614 procedure g_Player_Remove(UID
: Word);
615 procedure g_Player_ResetTeams();
616 procedure g_Player_PreUpdate();
617 procedure g_Player_UpdateAll();
618 procedure g_Player_DrawAll();
619 procedure g_Player_DrawDebug(p
: TPlayer
);
620 procedure g_Player_DrawHealth();
621 procedure g_Player_RememberAll();
622 procedure g_Player_ResetAll(Force
, Silent
: Boolean);
623 function g_Player_Get(UID
: Word): TPlayer
;
624 function g_Player_GetCount(): Byte;
625 function g_Player_GetStats(): TPlayerStatArray
;
626 function g_Player_ExistingName(Name
: String): Boolean;
627 function g_Player_CreateCorpse(Player
: TPlayer
): Integer;
628 procedure g_Player_CreateGibs(fX
, fY
: Integer; ModelName
: String; fColor
: TRGB
);
629 procedure g_Player_CreateShell(fX
, fY
, dX
, dY
: Integer; T
: Byte);
630 procedure g_Player_UpdatePhysicalObjects();
631 procedure g_Player_DrawCorpses();
632 procedure g_Player_DrawShells();
633 procedure g_Player_RemoveAllCorpses();
634 procedure g_Player_Corpses_SaveState (st
: TStream
);
635 procedure g_Player_Corpses_LoadState (st
: TStream
);
636 procedure g_Player_ResetReady();
637 procedure g_Bot_Add(Team
, Difficult
: Byte; Handicap
: Integer = 100);
638 procedure g_Bot_AddList(Team
: Byte; lname
: ShortString; num
: Integer = -1; Handicap
: Integer = 100);
639 procedure g_Bot_MixNames();
640 procedure g_Bot_RemoveAll();
641 function g_Bot_GetCount(): Integer;
646 {$INCLUDE ../nogl/noGLuses.inc}
647 {$IFDEF ENABLE_HOLMES}
650 e_log
, g_map
, g_items
, g_console
, g_gfx
, Math
,
651 g_options
, g_triggers
, g_menu
, g_game
, g_grid
, e_res
,
652 wadreader
, g_main
, g_monsters
, CONFIG
, g_language
,
653 g_net
, g_netmsg
, g_window
,
656 const PLR_SAVE_VERSION
= 0;
666 diag_precision
: Byte;
670 w_prior1
: Array [WP_FIRST
..WP_LAST
] of Byte;
671 w_prior2
: Array [WP_FIRST
..WP_LAST
] of Byte;
672 w_prior3
: Array [WP_FIRST
..WP_LAST
] of Byte;
676 TIME_RESPAWN1
= 1500;
677 TIME_RESPAWN2
= 2000;
678 TIME_RESPAWN3
= 3000;
681 JET_MAX
= 540; // ~30 sec
682 PLAYER_SUIT_TIME
= 30000;
683 PLAYER_INVUL_TIME
= 30000;
684 PLAYER_INVIS_TIME
= 35000;
685 FRAG_COMBO_TIME
= 3000;
689 ANGLE_RIGHTDOWN
= -35;
691 ANGLE_LEFTDOWN
= -145;
692 PLAYER_HEADRECT
: TRectWH
= (X
:24; Y
:12; Width
:20; Height
:12);
693 WEAPONPOINT
: Array [TDirection
] of TDFPoint
= ((X
:16; Y
:32), (X
:47; Y
:32));
696 BOT_UNSAFEDIST
= 128;
697 TEAMCOLOR
: Array [TEAM_RED
..TEAM_BLUE
] of TRGB
= ((R
:255; G
:0; B
:0),
699 DIFFICULT_EASY
: TDifficult
= (DiagFire
: 32; InvisFire
: 32; DiagPrecision
: 32;
700 FlyPrecision
: 32; Cover
: 32; CloseJump
: 32;
701 WeaponPrior
:(0,0,0,0,0,0,0,0,0,0,0); CloseWeaponPrior
:(0,0,0,0,0,0,0,0,0,0,0));
702 DIFFICULT_MEDIUM
: TDifficult
= (DiagFire
: 127; InvisFire
: 127; DiagPrecision
: 127;
703 FlyPrecision
: 127; Cover
: 127; CloseJump
: 127;
704 WeaponPrior
:(0,0,0,0,0,0,0,0,0,0,0); CloseWeaponPrior
:(0,0,0,0,0,0,0,0,0,0,0));
705 DIFFICULT_HARD
: TDifficult
= (DiagFire
: 255; InvisFire
: 255; DiagPrecision
: 255;
706 FlyPrecision
: 255; Cover
: 255; CloseJump
: 255;
707 WeaponPrior
:(0,0,0,0,0,0,0,0,0,0,0); CloseWeaponPrior
:(0,0,0,0,0,0,0,0,0,0,0));
708 WEAPON_PRIOR1
: Array [WP_FIRST
..WP_LAST
] of Byte =
709 (WEAPON_FLAMETHROWER
, WEAPON_SUPERPULEMET
,
710 WEAPON_SHOTGUN2
, WEAPON_SHOTGUN1
,
711 WEAPON_CHAINGUN
, WEAPON_PLASMA
, WEAPON_ROCKETLAUNCHER
,
712 WEAPON_BFG
, WEAPON_PISTOL
, WEAPON_SAW
, WEAPON_KASTET
);
713 WEAPON_PRIOR2
: Array [WP_FIRST
..WP_LAST
] of Byte =
714 (WEAPON_FLAMETHROWER
, WEAPON_SUPERPULEMET
,
715 WEAPON_BFG
, WEAPON_ROCKETLAUNCHER
,
716 WEAPON_SHOTGUN2
, WEAPON_PLASMA
, WEAPON_SHOTGUN1
,
717 WEAPON_CHAINGUN
, WEAPON_PISTOL
, WEAPON_SAW
, WEAPON_KASTET
);
718 //WEAPON_PRIOR3: Array [WP_FIRST..WP_LAST] of Byte =
719 // (WEAPON_FLAMETHROWER, WEAPON_SUPERPULEMET,
720 // WEAPON_BFG, WEAPON_PLASMA, WEAPON_SHOTGUN2,
721 // WEAPON_CHAINGUN, WEAPON_SHOTGUN1, WEAPON_SAW,
722 // WEAPON_ROCKETLAUNCHER, WEAPON_PISTOL, WEAPON_KASTET);
723 WEAPON_RELOAD
: Array [WP_FIRST
..WP_LAST
] of Byte =
724 (5, 2, 6, 18, 36, 2, 12, 2, 14, 2, 2);
726 PLAYER_SIGNATURE
= $52594C50; // 'PLYR'
727 CORPSE_SIGNATURE
= $50524F43; // 'CORP'
729 BOTNAMES_FILENAME
= 'botnames.txt';
730 BOTLIST_FILENAME
= 'botlist.txt';
734 MaxCorpses
: Word = 20;
735 MaxShells
: Word = 300;
736 ForceModel
: Word = 0;
737 ForcedModelName
: String = STD_PLAYER_MODEL
;
738 CurrentGib
: Integer = 0;
739 CurrentShell
: Integer = 0;
740 BotNames
: Array of String;
741 BotList
: Array of TBotProfile
;
742 SavedStates
: Array of TPlayerSavedState
;
745 function Lerp(X
, Y
, Factor
: Integer): Integer;
747 Result
:= X
+ ((Y
- X
) div Factor
);
750 function SameTeam(UID1
, UID2
: Word): Boolean;
754 if (UID1
> UID_MAX_PLAYER
) or (UID1
<= UID_MAX_GAME
) or
755 (UID2
> UID_MAX_PLAYER
) or (UID2
<= UID_MAX_GAME
) then Exit
;
757 if (g_Player_Get(UID1
) = nil) or (g_Player_Get(UID2
) = nil) then Exit
;
759 if ((g_Player_Get(UID1
).Team
= TEAM_NONE
) or
760 (g_Player_Get(UID2
).Team
= TEAM_NONE
)) then Exit
;
762 Result
:= g_Player_Get(UID1
).FTeam
= g_Player_Get(UID2
).FTeam
;
765 procedure g_Gibs_SetMax(Count
: Word);
768 SetLength(gGibs
, Count
);
770 if CurrentGib
>= Count
then
774 function g_Gibs_GetMax(): Word;
779 procedure g_Shells_SetMax(Count
: Word);
782 SetLength(gShells
, Count
);
784 if CurrentShell
>= Count
then
788 function g_Shells_GetMax(): Word;
794 procedure g_Corpses_SetMax(Count
: Word);
797 SetLength(gCorpses
, Count
);
800 function g_Corpses_GetMax(): Word;
802 Result
:= MaxCorpses
;
805 procedure g_Force_Model_Set(Mode
: Word);
810 function g_Force_Model_Get(): Word;
812 Result
:= ForceModel
;
815 procedure g_Forced_Model_SetName(Model
: String);
817 ForcedModelName
:= Model
;
820 function g_Forced_Model_GetName(): String;
822 Result
:= ForcedModelName
;
825 function g_Player_Create(ModelName
: String; Color
: TRGB
; Team
: Byte; Bot
: Boolean): Word;
835 // Åñòü ëè ìåñòî â gPlayers:
836 if gPlayers
<> nil then
837 for a
:= 0 to High(gPlayers
) do
838 if gPlayers
[a
] = nil then
844 // Íåò ìåñòà - ðàñøèðÿåì gPlayers:
847 SetLength(gPlayers
, Length(gPlayers
)+1);
851 // Ñîçäàåì îáúåêò èãðîêà:
853 gPlayers
[a
] := TBot
.Create()
855 gPlayers
[a
] := TPlayer
.Create();
858 gPlayers
[a
].FActualModelName
:= ModelName
;
859 gPlayers
[a
].SetModel(ModelName
);
860 if Bot
and (g_Force_Model_Get() <> 0) then
861 gPlayers
[a
].SetModel(g_Forced_Model_GetName());
863 // Íåò ìîäåëè - ñîçäàíèå íå âîçìîæíî:
864 if gPlayers
[a
].FModel
= nil then
868 g_FatalError(Format(_lc
[I_GAME_ERROR_MODEL
], [ModelName
]));
872 if not (Team
in [TEAM_RED
, TEAM_BLUE
]) then
873 if Random(2) = 0 then
877 gPlayers
[a
].FPreferredTeam
:= Team
;
879 case gGameSettings
.GameMode
of
880 GM_DM
: gPlayers
[a
].FTeam
:= TEAM_NONE
;
882 GM_CTF
: gPlayers
[a
].FTeam
:= gPlayers
[a
].FPreferredTeam
;
884 GM_COOP
: gPlayers
[a
].FTeam
:= TEAM_COOP
;
887 // Åñëè êîìàíäíàÿ èãðà - êðàñèì ìîäåëü â öâåò êîìàíäû:
888 gPlayers
[a
].FColor
:= Color
;
889 if gPlayers
[a
].FTeam
in [TEAM_RED
, TEAM_BLUE
] then
890 gPlayers
[a
].FModel
.Color
:= TEAMCOLOR
[gPlayers
[a
].FTeam
]
892 gPlayers
[a
].FModel
.Color
:= Color
;
894 gPlayers
[a
].FUID
:= g_CreateUID(UID_PLAYER
);
895 gPlayers
[a
].FAlive
:= False;
897 Result
:= gPlayers
[a
].FUID
;
900 function g_Player_CreateFromState (st
: TStream
): Word;
901 var a
: Integer; ok
, Bot
: Boolean; pos
: Int64;
905 // check signature and entity type
907 if not utils
.checkSign(st
, 'PLYR') then raise XStreamError
.Create('invalid player signature');
908 if (utils
.readByte(st
) <> PLR_SAVE_VERSION
) then raise XStreamError
.Create('invalid player version');
909 Bot
:= utils
.readBool(st
);
912 // find free player slot
914 for a
:= 0 to High(gPlayers
) do
915 if gPlayers
[a
] = nil then
921 // allocate player slot
924 SetLength(gPlayers
, Length(gPlayers
)+1);
928 // create entity and load state
931 gPlayers
[a
] := TBot
.Create();
932 if (g_Force_Model_Get() <> 0) then
933 gPlayers
[a
].SetModel(g_Forced_Model_GetName());
936 gPlayers
[a
] := TPlayer
.Create();
937 gPlayers
[a
].FPhysics
:= True; // ???
938 gPlayers
[a
].LoadState(st
);
940 result
:= gPlayers
[a
].FUID
;
944 procedure g_Player_ResetTeams();
948 if g_Game_IsClient
then
950 if gPlayers
= nil then
952 for a
:= Low(gPlayers
) to High(gPlayers
) do
953 if gPlayers
[a
] <> nil then
954 case gGameSettings
.GameMode
of
956 gPlayers
[a
].ChangeTeam(TEAM_NONE
);
958 if not (gPlayers
[a
].Team
in [TEAM_RED
, TEAM_BLUE
]) then
959 if gPlayers
[a
].FPreferredTeam
in [TEAM_RED
, TEAM_BLUE
] then
960 gPlayers
[a
].ChangeTeam(gPlayers
[a
].FPreferredTeam
)
963 gPlayers
[a
].ChangeTeam(TEAM_RED
)
965 gPlayers
[a
].ChangeTeam(TEAM_BLUE
);
968 gPlayers
[a
].ChangeTeam(TEAM_COOP
);
972 procedure g_Bot_Add(Team
, Difficult
: Byte; Handicap
: Integer = 100);
975 _name
, _model
: String;
978 if not g_Game_IsServer
then Exit
;
980 // Íå äîáàâëÿåì áîòîâ åñëè ëèìèò óæå äîñòèãíóò
981 if (g_Bot_GetCount() >= gMaxBots
) then Exit
;
983 // Ñïèñîê íàçâàíèé ìîäåëåé:
984 m
:= g_PlayerModel_GetNames();
989 if (gGameSettings
.GameType
= GT_SINGLE
) or (gGameSettings
.GameMode
= GM_COOP
) then
990 Team
:= TEAM_COOP
// COOP
992 if gGameSettings
.GameMode
= GM_DM
then
993 Team
:= TEAM_NONE
// DM
995 if Team
= TEAM_NONE
then // CTF / TDM
997 // Àâòîáàëàíñ êîìàíä:
1001 for a
:= 0 to High(gPlayers
) do
1002 if gPlayers
[a
] <> nil then
1004 if gPlayers
[a
].Team
= TEAM_RED
then
1007 if gPlayers
[a
].Team
= TEAM_BLUE
then
1017 if Random(2) = 0 then
1023 // Âûáèðàåì áîòó èìÿ:
1025 if BotNames
<> nil then
1026 for a
:= 0 to High(BotNames
) do
1027 if g_Player_ExistingName(BotNames
[a
]) then
1029 _name
:= BotNames
[a
];
1033 // Âûáèðàåì ñëó÷àéíóþ ìîäåëü:
1034 _model
:= m
[Random(Length(m
))];
1037 with g_Player_Get(g_Player_Create(_model
,
1038 _RGB(Min(Random(9)*32, 255),
1039 Min(Random(9)*32, 255),
1040 Min(Random(9)*32, 255)),
1041 Team
, True)) as TBot
do
1043 // Åñëè èìåíè íåò, äåëàåì åãî èç UID áîòà
1045 Name
:= Format('DFBOT%.5d', [UID
])
1050 1: FDifficult
:= DIFFICULT_EASY
;
1051 2: FDifficult
:= DIFFICULT_MEDIUM
;
1052 else FDifficult
:= DIFFICULT_HARD
;
1055 for a
:= WP_FIRST
to WP_LAST
do
1057 FDifficult
.WeaponPrior
[a
] := WEAPON_PRIOR1
[a
];
1058 FDifficult
.CloseWeaponPrior
[a
] := WEAPON_PRIOR2
[a
];
1059 //FDifficult.SafeWeaponPrior[a] := WEAPON_PRIOR3[a];
1062 FHandicap
:= Handicap
;
1064 g_Console_Add(Format(_lc
[I_PLAYER_JOIN
], [Name
]), True);
1066 if g_Game_IsNet
then MH_SEND_PlayerCreate(UID
);
1067 if g_Game_IsServer
and (gGameSettings
.MaxLives
> 0) then
1072 procedure g_Bot_AddList(Team
: Byte; lName
: ShortString; num
: Integer = -1; Handicap
: Integer = 100);
1075 _name
, _model
: String;
1078 if not g_Game_IsServer
then Exit
;
1080 // Íå äîáàâëÿåì áîòîâ åñëè ëèìèò óæå äîñòèãíóò
1081 if (g_Bot_GetCount() >= gMaxBots
) then Exit
;
1083 // Ñïèñîê íàçâàíèé ìîäåëåé:
1084 m
:= g_PlayerModel_GetNames();
1089 if (gGameSettings
.GameType
= GT_SINGLE
) or (gGameSettings
.GameMode
= GM_COOP
) then
1090 Team
:= TEAM_COOP
// COOP
1092 if gGameSettings
.GameMode
= GM_DM
then
1093 Team
:= TEAM_NONE
// DM
1095 if Team
= TEAM_NONE
then
1096 Team
:= BotList
[num
].team
; // CTF / TDM
1098 // Âûáèðàåì íàñòðîéêè áîòà èç ñïèñêà ïî íîìåðó èëè èìåíè:
1100 num
:= Random(Length(BotList
))
1103 if (num
< 0) or (num
> Length(BotList
)-1) then
1105 if (num
= -1) and (BotList
<> nil) then
1106 lName
:= AnsiLowerCase(lName
);
1107 for a
:= 0 to High(BotList
) do
1108 if AnsiLowerCase(BotList
[a
].name
) = lName
then
1118 _name
:= BotList
[num
].name
;
1119 if (_name
= '') and (BotNames
<> nil) then
1120 for a
:= 0 to High(BotNames
) do
1121 if g_Player_ExistingName(BotNames
[a
]) then
1123 _name
:= BotNames
[a
];
1128 _model
:= BotList
[num
].model
;
1129 // Íåò òàêîé - âûáèðàåì ñëó÷àéíóþ:
1130 if not InSArray(_model
, m
) then
1131 _model
:= m
[Random(Length(m
))];
1134 with g_Player_Get(g_Player_Create(_model
, BotList
[num
].color
, Team
, True)) as TBot
do
1136 // Åñëè èìåíè íåò, äåëàåì åãî èç UID áîòà
1138 then Name
:= Format('DFBOT%.5d', [UID
])
1141 FDifficult
.DiagFire
:= BotList
[num
].diag_fire
;
1142 FDifficult
.InvisFire
:= BotList
[num
].invis_fire
;
1143 FDifficult
.DiagPrecision
:= BotList
[num
].diag_precision
;
1144 FDifficult
.FlyPrecision
:= BotList
[num
].fly_precision
;
1145 FDifficult
.Cover
:= BotList
[num
].cover
;
1146 FDifficult
.CloseJump
:= BotList
[num
].close_jump
;
1148 FHandicap
:= Handicap
;
1150 for a
:= WP_FIRST
to WP_LAST
do
1152 FDifficult
.WeaponPrior
[a
] := BotList
[num
].w_prior1
[a
];
1153 FDifficult
.CloseWeaponPrior
[a
] := BotList
[num
].w_prior2
[a
];
1154 //FDifficult.SafeWeaponPrior[a] := BotList[num].w_prior3[a];
1157 g_Console_Add(Format(_lc
[I_PLAYER_JOIN
], [Name
]), True);
1159 if g_Game_IsNet
then MH_SEND_PlayerCreate(UID
);
1163 procedure g_Bot_RemoveAll();
1167 if not g_Game_IsServer
then Exit
;
1168 if gPlayers
= nil then Exit
;
1170 for a
:= 0 to High(gPlayers
) do
1171 if gPlayers
[a
] <> nil then
1172 if gPlayers
[a
] is TBot
then
1174 gPlayers
[a
].Lives
:= 0;
1175 gPlayers
[a
].Kill(K_SIMPLEKILL
, 0, HIT_DISCON
);
1176 g_Console_Add(Format(_lc
[I_PLAYER_LEAVE
], [gPlayers
[a
].Name
]), True);
1177 g_Player_Remove(gPlayers
[a
].FUID
);
1183 procedure g_Bot_MixNames();
1188 if BotNames
<> nil then
1189 for a
:= 0 to High(BotNames
) do
1191 b
:= Random(Length(BotNames
));
1193 Botnames
[a
] := BotNames
[b
];
1198 procedure g_Player_Remove(UID
: Word);
1202 if gPlayers
= nil then Exit
;
1204 if g_Game_IsServer
and g_Game_IsNet
then
1205 MH_SEND_PlayerDelete(UID
);
1207 for i
:= 0 to High(gPlayers
) do
1208 if gPlayers
[i
] <> nil then
1209 if gPlayers
[i
].FUID
= UID
then
1211 if gPlayers
[i
] is TPlayer
then
1212 TPlayer(gPlayers
[i
]).Free()
1214 TBot(gPlayers
[i
]).Free();
1220 procedure g_Player_Init();
1232 path
:= BOTNAMES_FILENAME
;
1233 if e_FindResource(DataDirs
, path
) then
1235 // ×èòàåì âîçìîæíûå èìåíà áîòîâ èç ôàéëà:
1236 AssignFile(F
, path
);
1247 SetLength(BotNames
, Length(BotNames
)+1);
1248 BotNames
[High(BotNames
)] := s
;
1257 path
:= BOTLIST_FILENAME
;
1258 if e_FindResource(DataDirs
, path
) then
1260 // ×èòàåì ôàéë ñ ïàðàìåòðàìè áîòîâ:
1261 config
:= TConfig
.CreateFile(path
);
1264 while config
.SectionExists(IntToStr(a
)) do
1266 SetLength(BotList
, Length(BotList
)+1);
1268 with BotList
[High(BotList
)] do
1270 name
:= config
.ReadStr(IntToStr(a
), 'name', ''); // Èìÿ áîòà
1271 model
:= config
.ReadStr(IntToStr(a
), 'model', ''); // Ìîäåëü
1274 s
:= config
.ReadStr(IntToStr(a
), 'team', '');
1277 else if s
= 'blue' then
1283 sa
:= parse(config
.ReadStr(IntToStr(a
), 'color', ''));
1285 color
.R
:= StrToIntDef(sa
[0], 0);
1286 color
.G
:= StrToIntDef(sa
[1], 0);
1287 color
.B
:= StrToIntDef(sa
[2], 0);
1289 diag_fire
:= config
.ReadInt(IntToStr(a
), 'diag_fire', 0); // Âåðîÿòíîñòü ñòðåëüáû ïîä óãëîì
1290 invis_fire
:= config
.ReadInt(IntToStr(a
), 'invis_fire', 0); // Âåðîÿòíîñòü îòâåòíîãî îãíÿ ïî íåâèäèìîìó ñîïåðíèêó
1291 diag_precision
:= config
.ReadInt(IntToStr(a
), 'diag_precision', 0); // Òî÷íîñòü ñòðåëüáû ïîä óãëîì
1292 fly_precision
:= config
.ReadInt(IntToStr(a
), 'fly_precision', 0); // Òî÷íîñòü ñòðåëüáû â ïîëåòå
1293 cover
:= config
.ReadInt(IntToStr(a
), 'cover', 0); // Òî÷íîñòü óêëîíåíèÿ îò ñíàðÿäîâ
1294 close_jump
:= config
.ReadInt(IntToStr(a
), 'close_jump', 0); // Âåðîÿòíîñòü ïðûæêà ïðè ïðèáëèæåíèè ñîïåðíèêà
1296 // Ïðèîðèòåòû îðóæèÿ äëÿ äàëüíåãî áîÿ
1297 sa
:= parse(config
.ReadStr(IntToStr(a
), 'w_prior1', ''));
1298 if Length(sa
) = 10 then
1300 w_prior1
[b
] := EnsureRange(StrToInt(sa
[b
]), 0, 9);
1302 // Ïðèîðèòåòû îðóæèÿ äëÿ áëèæíåãî áîÿ
1303 sa
:= parse(config
.ReadStr(IntToStr(a
), 'w_prior2', ''));
1304 if Length(sa
) = 10 then
1306 w_prior2
[b
] := EnsureRange(StrToInt(sa
[b
]), 0, 9);
1308 {sa := parse(config.ReadStr(IntToStr(a), 'w_prior3', ''));
1309 if Length(sa) = 10 then
1311 w_prior3[b] := EnsureRange(StrToInt(sa[b]), 0, 9);}
1320 SetLength(SavedStates
, 0);
1323 procedure g_Player_Free();
1327 if gPlayers
<> nil then
1329 for i
:= 0 to High(gPlayers
) do
1330 if gPlayers
[i
] <> nil then
1332 if gPlayers
[i
] is TPlayer
then
1333 TPlayer(gPlayers
[i
]).Free()
1335 TBot(gPlayers
[i
]).Free();
1344 SetLength(SavedStates
, 0);
1347 procedure g_Player_PreUpdate();
1351 if gPlayers
= nil then Exit
;
1352 for i
:= 0 to High(gPlayers
) do
1353 if gPlayers
[i
] <> nil then
1354 gPlayers
[i
].PreUpdate();
1357 procedure g_Player_UpdateAll();
1361 if gPlayers
= nil then Exit
;
1363 //e_WriteLog('***g_Player_UpdateAll: ENTER', MSG_WARNING);
1364 for i
:= 0 to High(gPlayers
) do
1366 if gPlayers
[i
] <> nil then
1368 if gPlayers
[i
] is TPlayer
then
1370 gPlayers
[i
].Update();
1371 gPlayers
[i
].RealizeCurrentWeapon(); // WARNING! DO NOT MOVE THIS INTO `Update()`!
1375 // bot updates weapons in `UpdateCombat()`
1376 TBot(gPlayers
[i
]).Update();
1380 //e_WriteLog('***g_Player_UpdateAll: EXIT', MSG_WARNING);
1383 procedure g_Player_DrawAll();
1387 if gPlayers
= nil then Exit
;
1389 for i
:= 0 to High(gPlayers
) do
1390 if gPlayers
[i
] <> nil then
1391 if gPlayers
[i
] is TPlayer
then gPlayers
[i
].Draw()
1392 else TBot(gPlayers
[i
]).Draw();
1395 procedure g_Player_DrawDebug(p
: TPlayer
);
1399 if p
= nil then Exit
;
1400 if (@p
.FObj
) = nil then Exit
;
1402 e_TextureFontGetSize(gStdFont
, fW
, fH
);
1404 e_TextureFontPrint(0, 0 , 'Pos X: ' + IntToStr(p
.FObj
.X
), gStdFont
);
1405 e_TextureFontPrint(0, fH
, 'Pos Y: ' + IntToStr(p
.FObj
.Y
), gStdFont
);
1406 e_TextureFontPrint(0, fH
* 2, 'Vel X: ' + IntToStr(p
.FObj
.Vel
.X
), gStdFont
);
1407 e_TextureFontPrint(0, fH
* 3, 'Vel Y: ' + IntToStr(p
.FObj
.Vel
.Y
), gStdFont
);
1408 e_TextureFontPrint(0, fH
* 4, 'Acc X: ' + IntToStr(p
.FObj
.Accel
.X
), gStdFont
);
1409 e_TextureFontPrint(0, fH
* 5, 'Acc Y: ' + IntToStr(p
.FObj
.Accel
.Y
), gStdFont
);
1410 e_TextureFontPrint(0, fH
* 6, 'Old X: ' + IntToStr(p
.FObj
.oldX
), gStdFont
);
1411 e_TextureFontPrint(0, fH
* 7, 'Old Y: ' + IntToStr(p
.FObj
.oldY
), gStdFont
);
1414 procedure g_Player_DrawHealth();
1419 if gPlayers
= nil then Exit
;
1420 e_TextureFontGetSize(gStdFont
, fW
, fH
);
1422 for i
:= 0 to High(gPlayers
) do
1423 if gPlayers
[i
] <> nil then
1425 e_TextureFontPrint(gPlayers
[i
].FObj
.X
+ gPlayers
[i
].FObj
.Rect
.X
,
1426 gPlayers
[i
].FObj
.Y
+ gPlayers
[i
].FObj
.Rect
.Y
+ gPlayers
[i
].FObj
.Rect
.Height
- fH
* 2,
1427 IntToStr(gPlayers
[i
].FHealth
), gStdFont
);
1428 e_TextureFontPrint(gPlayers
[i
].FObj
.X
+ gPlayers
[i
].FObj
.Rect
.X
,
1429 gPlayers
[i
].FObj
.Y
+ gPlayers
[i
].FObj
.Rect
.Y
+ gPlayers
[i
].FObj
.Rect
.Height
- fH
,
1430 IntToStr(gPlayers
[i
].FArmor
), gStdFont
);
1434 function g_Player_Get(UID
: Word): TPlayer
;
1440 if gPlayers
= nil then
1443 for a
:= 0 to High(gPlayers
) do
1444 if gPlayers
[a
] <> nil then
1445 if gPlayers
[a
].FUID
= UID
then
1447 Result
:= gPlayers
[a
];
1452 function g_Player_GetCount(): Byte;
1458 if gPlayers
= nil then
1461 for a
:= 0 to High(gPlayers
) do
1462 if gPlayers
[a
] <> nil then
1463 Result
:= Result
+ 1;
1466 function g_Bot_GetCount(): Integer;
1472 if gPlayers
= nil then
1475 for a
:= 0 to High(gPlayers
) do
1476 if (gPlayers
[a
] <> nil) and (gPlayers
[a
] is TBot
) then
1477 Result
:= Result
+ 1;
1480 function g_Player_GetStats(): TPlayerStatArray
;
1486 if gPlayers
= nil then Exit
;
1488 for a
:= 0 to High(gPlayers
) do
1489 if gPlayers
[a
] <> nil then
1491 SetLength(Result
, Length(Result
)+1);
1492 with Result
[High(Result
)] do
1495 Ping
:= gPlayers
[a
].FPing
;
1496 Loss
:= gPlayers
[a
].FLoss
;
1497 Name
:= gPlayers
[a
].FName
;
1498 Team
:= gPlayers
[a
].FTeam
;
1499 Frags
:= gPlayers
[a
].FFrags
;
1500 Deaths
:= gPlayers
[a
].FDeath
;
1501 Kills
:= gPlayers
[a
].FKills
;
1502 Color
:= gPlayers
[a
].FModel
.Color
;
1503 Lives
:= gPlayers
[a
].FLives
;
1504 Spectator
:= gPlayers
[a
].FSpectator
;
1505 UID
:= gPlayers
[a
].FUID
;
1510 procedure g_Player_ResetReady();
1514 if not g_Game_IsServer
then Exit
;
1515 if gPlayers
= nil then Exit
;
1517 for a
:= 0 to High(gPlayers
) do
1518 if gPlayers
[a
] <> nil then
1520 gPlayers
[a
].FReady
:= False;
1521 if g_Game_IsNet
then
1522 MH_SEND_GameEvent(NET_EV_INTER_READY
, gPlayers
[a
].UID
, 'N');
1526 procedure g_Player_RememberAll
;
1530 for i
:= Low(gPlayers
) to High(gPlayers
) do
1531 if (gPlayers
[i
] <> nil) and gPlayers
[i
].alive
then
1532 gPlayers
[i
].RememberState
;
1535 procedure g_Player_ResetAll(Force
, Silent
: Boolean);
1539 gTeamStat
[TEAM_RED
].Score
:= 0;
1540 gTeamStat
[TEAM_BLUE
].Score
:= 0;
1542 if gPlayers
<> nil then
1543 for i
:= 0 to High(gPlayers
) do
1544 if gPlayers
[i
] <> nil then
1546 gPlayers
[i
].Reset(Force
);
1548 if gPlayers
[i
] is TPlayer
then
1550 if (not gPlayers
[i
].FSpectator
) or gPlayers
[i
].FWantsInGame
then
1551 gPlayers
[i
].Respawn(Silent
)
1553 gPlayers
[i
].Spectate();
1556 TBot(gPlayers
[i
]).Respawn(Silent
);
1560 function g_Player_CreateCorpse(Player
: TPlayer
): Integer;
1568 if Player
.alive
then
1571 // Ðàçðûâàåì ñâÿçü ñ ïðåæíèì òðóïîì:
1572 i
:= Player
.FCorpse
;
1573 if (i
>= 0) and (i
< Length(gCorpses
)) then
1575 if (gCorpses
[i
] <> nil) and (gCorpses
[i
].FPlayerUID
= Player
.FUID
) then
1576 gCorpses
[i
].FPlayerUID
:= 0;
1579 if Player
.FObj
.Y
>= gMapInfo
.Height
+128 then
1584 if (FHealth
>= -50) or (gGibsCount
= 0) then
1586 if (gCorpses
= nil) or (Length(gCorpses
) = 0) then
1590 for find_id
:= 0 to High(gCorpses
) do
1591 if gCorpses
[find_id
] = nil then
1598 find_id
:= Random(Length(gCorpses
));
1600 gCorpses
[find_id
] := TCorpse
.Create(FObj
.X
, FObj
.Y
, FModel
.Name
, FHealth
< -20);
1601 gCorpses
[find_id
].FColor
:= FModel
.Color
;
1602 gCorpses
[find_id
].FObj
.Vel
:= FObj
.Vel
;
1603 gCorpses
[find_id
].FObj
.Accel
:= FObj
.Accel
;
1604 gCorpses
[find_id
].FPlayerUID
:= FUID
;
1609 g_Player_CreateGibs(FObj
.X
+ PLAYER_RECT_CX
,
1610 FObj
.Y
+ PLAYER_RECT_CY
,
1611 FModel
.Name
, FModel
.Color
);
1615 procedure g_Player_CreateShell(fX
, fY
, dX
, dY
: Integer; T
: Byte);
1619 if (gShells
= nil) or (Length(gShells
) = 0) then
1622 with gShells
[CurrentShell
] do
1628 if T
= SHELL_BULLET
then
1630 if g_Texture_Get('TEXTURE_SHELL_BULLET', SID
) then
1634 Obj
.Rect
.Width
:= 4;
1635 Obj
.Rect
.Height
:= 2;
1639 if g_Texture_Get('TEXTURE_SHELL_SHELL', SID
) then
1643 Obj
.Rect
.Width
:= 7;
1644 Obj
.Rect
.Height
:= 3;
1650 g_Obj_Push(@Obj
, dX
+ Random(4)-Random(4), dY
-Random(4));
1651 positionChanged(); // this updates spatial accelerators
1652 RAngle
:= Random(360);
1653 Timeout
:= gTime
+ SHELL_TIMEOUT
;
1655 if CurrentShell
>= High(gShells
) then
1662 procedure g_Player_CreateGibs(fX
, fY
: Integer; ModelName
: string; fColor
: TRGB
);
1665 GibsArray
: TGibsArray
;
1668 if (gGibs
= nil) or (Length(gGibs
) = 0) then
1670 if not g_PlayerModel_GetGibs(ModelName
, GibsArray
) then
1672 Blood
:= g_PlayerModel_GetBlood(ModelName
);
1674 for a
:= 0 to High(GibsArray
) do
1675 with gGibs
[CurrentGib
] do
1678 ID
:= GibsArray
[a
].ID
;
1679 MaskID
:= GibsArray
[a
].MaskID
;
1682 Obj
.Rect
:= GibsArray
[a
].Rect
;
1683 Obj
.X
:= fX
-GibsArray
[a
].Rect
.X
-(GibsArray
[a
].Rect
.Width
div 2);
1684 Obj
.Y
:= fY
-GibsArray
[a
].Rect
.Y
-(GibsArray
[a
].Rect
.Height
div 2);
1685 g_Obj_PushA(@Obj
, 25 + Random(10), Random(361));
1686 positionChanged(); // this updates spatial accelerators
1687 RAngle
:= Random(360);
1689 if gBloodCount
> 0 then
1690 g_GFX_Blood(fX
, fY
, 16*gBloodCount
+Random(5*gBloodCount
), -16+Random(33), -16+Random(33),
1691 Random(48), Random(48), Blood
.R
, Blood
.G
, Blood
.B
, Blood
.Kind
);
1693 if CurrentGib
>= High(gGibs
) then
1700 procedure g_Player_UpdatePhysicalObjects();
1706 procedure ShellSound_Bounce(X
, Y
: Integer; T
: Byte);
1711 if T
= SHELL_BULLET
then
1712 g_Sound_PlayExAt('SOUND_PLAYER_CASING' + IntToStr(k
), X
, Y
)
1714 g_Sound_PlayExAt('SOUND_PLAYER_SHELL' + IntToStr(k
), X
, Y
);
1719 if gGibs
<> nil then
1720 for i
:= 0 to High(gGibs
) do
1721 if gGibs
[i
].alive
then
1728 mr
:= g_Obj_Move(@Obj
, True, False, True);
1729 positionChanged(); // this updates spatial accelerators
1731 if WordBool(mr
and MOVE_FALLOUT
) then
1737 // Îòëåòàåò îò óäàðà î ñòåíó/ïîòîëîê/ïîë:
1738 if WordBool(mr
and MOVE_HITWALL
) then
1739 Obj
.Vel
.X
:= -(vel
.X
div 2);
1740 if WordBool(mr
and (MOVE_HITCEIL
or MOVE_HITLAND
)) then
1741 Obj
.Vel
.Y
:= -(vel
.Y
div 2);
1743 if (Obj
.Vel
.X
>= 0) then
1745 RAngle
:= RAngle
+ Abs(Obj
.Vel
.X
)*6 + Abs(Obj
.Vel
.Y
);
1746 if RAngle
>= 360 then
1747 RAngle
:= RAngle
mod 360;
1748 end else begin // Counter-clockwise
1749 RAngle
:= RAngle
- Abs(Obj
.Vel
.X
)*6 - Abs(Obj
.Vel
.Y
);
1751 RAngle
:= (360 - (Abs(RAngle
) mod 360)) mod 360;
1754 // Ñîïðîòèâëåíèå âîçäóõà äëÿ êóñêà òðóïà:
1755 if gTime
mod (GAME_TICK
*3) = 0 then
1756 Obj
.Vel
.X
:= z_dec(Obj
.Vel
.X
, 1);
1760 if gCorpses
<> nil then
1761 for i
:= 0 to High(gCorpses
) do
1762 if gCorpses
[i
] <> nil then
1763 if gCorpses
[i
].State
= CORPSE_STATE_REMOVEME
then
1769 gCorpses
[i
].Update();
1772 if gShells
<> nil then
1773 for i
:= 0 to High(gShells
) do
1774 if gShells
[i
].alive
then
1781 mr
:= g_Obj_Move(@Obj
, True, False, True);
1782 positionChanged(); // this updates spatial accelerators
1784 if WordBool(mr
and MOVE_FALLOUT
) or (gShells
[i
].Timeout
< gTime
) then
1790 // Îòëåòàåò îò óäàðà î ñòåíó/ïîòîëîê/ïîë:
1791 if WordBool(mr
and MOVE_HITWALL
) then
1793 Obj
.Vel
.X
:= -(vel
.X
div 2);
1794 if not WordBool(mr
and MOVE_INWATER
) then
1795 ShellSound_Bounce(Obj
.X
, Obj
.Y
, SType
);
1797 if WordBool(mr
and (MOVE_HITCEIL
or MOVE_HITLAND
)) then
1799 Obj
.Vel
.Y
:= -(vel
.Y
div 2);
1800 if Obj
.Vel
.X
<> 0 then Obj
.Vel
.X
:= Obj
.Vel
.X
div 2;
1801 if (Obj
.Vel
.X
= 0) and (Obj
.Vel
.Y
= 0) then
1803 if RAngle
mod 90 <> 0 then
1804 RAngle
:= (RAngle
div 90) * 90;
1806 else if not WordBool(mr
and MOVE_INWATER
) then
1807 ShellSound_Bounce(Obj
.X
, Obj
.Y
, SType
);
1810 if (Obj
.Vel
.X
>= 0) then
1812 RAngle
:= RAngle
+ Abs(Obj
.Vel
.X
)*8 + Abs(Obj
.Vel
.Y
);
1813 if RAngle
>= 360 then
1814 RAngle
:= RAngle
mod 360;
1815 end else begin // Counter-clockwise
1816 RAngle
:= RAngle
- Abs(Obj
.Vel
.X
)*8 - Abs(Obj
.Vel
.Y
);
1818 RAngle
:= (360 - (Abs(RAngle
) mod 360)) mod 360;
1824 procedure TGib
.getMapBox (out x
, y
, w
, h
: Integer); inline;
1826 x
:= Obj
.X
+Obj
.Rect
.X
;
1827 y
:= Obj
.Y
+Obj
.Rect
.Y
;
1828 w
:= Obj
.Rect
.Width
;
1829 h
:= Obj
.Rect
.Height
;
1832 procedure TGib
.moveBy (dx
, dy
: Integer); inline;
1834 if (dx
<> 0) or (dy
<> 0) then
1843 procedure TShell
.getMapBox (out x
, y
, w
, h
: Integer); inline;
1847 w
:= Obj
.Rect
.Width
;
1848 h
:= Obj
.Rect
.Height
;
1851 procedure TShell
.moveBy (dx
, dy
: Integer); inline;
1853 if (dx
<> 0) or (dy
<> 0) then
1862 procedure TGib
.positionChanged (); inline; begin end;
1863 procedure TShell
.positionChanged (); inline; begin end;
1866 procedure g_Player_DrawCorpses();
1871 if gGibs
<> nil then
1872 for i
:= 0 to High(gGibs
) do
1873 if gGibs
[i
].alive
then
1876 if not g_Obj_Collide(sX
, sY
, sWidth
, sHeight
, @Obj
) then
1879 Obj
.lerp(gLerpFactor
, fX
, fY
);
1881 a
.X
:= Obj
.Rect
.X
+(Obj
.Rect
.Width
div 2);
1882 a
.y
:= Obj
.Rect
.Y
+(Obj
.Rect
.Height
div 2);
1884 e_DrawAdv(ID
, fX
, fY
, 0, True, False, RAngle
, @a
, TMirrorType
.None
);
1887 e_DrawAdv(MaskID
, fX
, fY
, 0, True, False, RAngle
, @a
, TMirrorType
.None
);
1893 if gCorpses
<> nil then
1894 for i
:= 0 to High(gCorpses
) do
1895 if gCorpses
[i
] <> nil then
1899 procedure g_Player_DrawShells();
1904 if gShells
<> nil then
1905 for i
:= 0 to High(gShells
) do
1906 if gShells
[i
].alive
then
1909 if not g_Obj_Collide(sX
, sY
, sWidth
, sHeight
, @Obj
) then
1912 Obj
.lerp(gLerpFactor
, fX
, fY
);
1917 e_DrawAdv(SpriteID
, fX
, fY
, 0, True, False, RAngle
, @a
, TMirrorType
.None
);
1921 procedure g_Player_RemoveAllCorpses();
1927 SetLength(gGibs
, MaxGibs
);
1928 SetLength(gShells
, MaxGibs
);
1932 if gCorpses
<> nil then
1933 for i
:= 0 to High(gCorpses
) do
1937 SetLength(gCorpses
, MaxCorpses
);
1940 procedure g_Player_Corpses_SaveState (st
: TStream
);
1944 // Ñ÷èòàåì êîëè÷åñòâî ñóùåñòâóþùèõ òðóïîâ
1946 for i
:= 0 to High(gCorpses
) do if (gCorpses
[i
] <> nil) then Inc(count
);
1948 // Êîëè÷åñòâî òðóïîâ
1949 utils
.writeInt(st
, LongInt(count
));
1951 if (count
= 0) then exit
;
1954 for i
:= 0 to High(gCorpses
) do
1956 if gCorpses
[i
] <> nil then
1959 utils
.writeStr(st
, gCorpses
[i
].FModelName
);
1961 utils
.writeBool(st
, gCorpses
[i
].Mess
);
1962 // Ñîõðàíÿåì äàííûå òðóïà:
1963 gCorpses
[i
].SaveState(st
);
1969 procedure g_Player_Corpses_LoadState (st
: TStream
);
1977 g_Player_RemoveAllCorpses();
1979 // Êîëè÷åñòâî òðóïîâ:
1980 count
:= utils
.readLongInt(st
);
1981 if (count
< 0) or (count
> Length(gCorpses
)) then raise XStreamError
.Create('invalid number of corpses');
1983 if (count
= 0) then exit
;
1986 for i
:= 0 to count
-1 do
1989 str
:= utils
.readStr(st
);
1991 b
:= utils
.readBool(st
);
1993 gCorpses
[i
] := TCorpse
.Create(0, 0, str
, b
);
1994 // Çàãðóæàåì äàííûå òðóïà
1995 gCorpses
[i
].LoadState(st
);
2002 function TPlayer
.isValidViewPort (): Boolean; inline; begin result
:= (viewPortW
> 0) and (viewPortH
> 0); end;
2004 procedure TPlayer
.BFGHit();
2006 g_Weapon_BFGHit(FObj
.X
+FObj
.Rect
.X
+(FObj
.Rect
.Width
div 2),
2007 FObj
.Y
+FObj
.Rect
.Y
+(FObj
.Rect
.Height
div 2));
2008 if g_Game_IsServer
and g_Game_IsNet
then
2009 MH_SEND_Effect(FObj
.X
+FObj
.Rect
.X
+(FObj
.Rect
.Width
div 2),
2010 FObj
.Y
+FObj
.Rect
.Y
+(FObj
.Rect
.Height
div 2),
2014 procedure TPlayer
.ChangeModel(ModelName
: string);
2016 locModel
: TPlayerModel
;
2018 locModel
:= g_PlayerModel_Get(ModelName
);
2019 if locModel
= nil then Exit
;
2025 procedure TPlayer
.SetModel(ModelName
: string);
2029 m
:= g_PlayerModel_Get(ModelName
);
2032 g_SimpleError(Format(_lc
[I_GAME_ERROR_MODEL_FALLBACK
], [ModelName
]));
2033 m
:= g_PlayerModel_Get('doomer');
2036 g_FatalError(Format(_lc
[I_GAME_ERROR_MODEL
], ['doomer']));
2041 if FModel
<> nil then
2046 if not (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
2047 FModel
.Color
:= FColor
2049 FModel
.Color
:= TEAMCOLOR
[FTeam
];
2050 FModel
.SetWeapon(FCurrWeap
);
2051 FModel
.SetFlag(FFlag
);
2052 SetDirection(FDirection
);
2055 procedure TPlayer
.SetColor(Color
: TRGB
);
2058 if not (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
2059 if FModel
<> nil then FModel
.Color
:= Color
;
2064 function TPlayer
.GetColor(): TRGB
;
2066 result
:= FModel
.Color
;
2069 procedure TPlayer
.SetWeaponPrefs(Prefs
: Array of Byte);
2073 for i
:= WP_FIRST
to WP_LAST
+ 1 do
2075 if (Prefs
[i
] > WP_LAST
+ 1) then
2076 FWeapPreferences
[i
] := 0
2078 FWeapPreferences
[i
] := Prefs
[i
];
2082 procedure TPlayer
.SetWeaponPref(Weapon
, Pref
: Byte);
2084 if (Weapon
> WP_LAST
+ 1) then
2086 else if (Pref
<= WP_LAST
+ 1) and (Weapon
<= WP_LAST
+ 1) then
2087 FWeapPreferences
[Weapon
] := Pref
2088 else if (Weapon
<= WP_LAST
+ 1) and (Pref
> WP_LAST
+ 1) then
2089 FWeapPreferences
[Weapon
] := 0;
2092 function TPlayer
.GetWeaponPref(Weapon
: Byte) : Byte;
2094 if (Weapon
> WP_LAST
+ 1) then
2096 else if (FWeapPreferences
[Weapon
] > WP_LAST
+ 1) then
2099 result
:= FWeapPreferences
[Weapon
];
2102 function TPlayer
.GetMorePrefered() : Byte;
2104 testedWeap
, i
: Byte;
2106 testedWeap
:= FCurrWeap
;
2107 for i
:= WP_FIRST
to WP_LAST
do
2108 if FWeapon
[i
] and maySwitch(i
) and (FWeapPreferences
[i
] > FWeapPreferences
[testedWeap
]) then
2110 if (R_BERSERK
in FRulez
) and (FWeapPreferences
[WP_LAST
+ 1] > FWeapPreferences
[testedWeap
]) then
2111 testedWeap
:= WEAPON_KASTET
;
2112 result
:= testedWeap
;
2115 function TPlayer
.maySwitch(Weapon
: Byte) : Boolean;
2118 if (Weapon
= WEAPON_KASTET
) and (FSkipFist
<> 0) then
2120 if (FSkipFist
= 1) and (not (R_BERSERK
in FRulez
)) then
2123 else if (FSwitchToEmpty
= 0) and (not hasAmmoForShooting(Weapon
)) then
2127 procedure TPlayer
.SwitchTeam
;
2129 if g_Game_IsClient
then
2131 if not (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then Exit
;
2133 if gGameOn
and FAlive
then
2134 Kill(K_SIMPLEKILL
, FUID
, HIT_SELF
);
2136 if FTeam
= TEAM_RED
then
2138 ChangeTeam(TEAM_BLUE
);
2139 g_Console_Add(Format(_lc
[I_PLAYER_CHTEAM_BLUE
], [FName
]), True);
2140 if g_Game_IsNet
then
2141 MH_SEND_GameEvent(NET_EV_CHANGE_TEAM
, TEAM_BLUE
, FName
);
2145 ChangeTeam(TEAM_RED
);
2146 g_Console_Add(Format(_lc
[I_PLAYER_CHTEAM_RED
], [FName
]), True);
2147 if g_Game_IsNet
then
2148 MH_SEND_GameEvent(NET_EV_CHANGE_TEAM
, TEAM_RED
, FName
);
2150 FPreferredTeam
:= FTeam
;
2153 procedure TPlayer
.ChangeTeam(Team
: Byte);
2160 TEAM_RED
, TEAM_BLUE
:
2161 FModel
.Color
:= TEAMCOLOR
[Team
];
2163 FModel
.Color
:= FColor
;
2165 if (FTeam
<> OldTeam
) and g_Game_IsNet
and g_Game_IsServer
then
2166 MH_SEND_PlayerStats(FUID
);
2170 procedure TPlayer.CollideItem();
2175 if gItems = nil then Exit;
2176 if not FAlive then Exit;
2178 for i := 0 to High(gItems) do
2181 if (ItemType <> ITEM_NONE) and alive then
2182 if g_Obj_Collide(FObj.X+PLAYER_RECT.X, FObj.Y+PLAYER_RECT.Y, PLAYER_RECT.Width,
2183 PLAYER_RECT.Height, @Obj) then
2185 if not PickItem(ItemType, gItems[i].Respawnable, r) then Continue;
2187 if ItemType in [ITEM_SPHERE_BLUE, ITEM_SPHERE_WHITE, ITEM_INVUL] then
2188 g_Sound_PlayExAt('SOUND_ITEM_GETRULEZ', FObj.X, FObj.Y)
2189 else if ItemType in [ITEM_MEDKIT_SMALL, ITEM_MEDKIT_LARGE, ITEM_MEDKIT_BLACK] then
2190 g_Sound_PlayExAt('SOUND_ITEM_GETMED', FObj.X, FObj.Y)
2191 else g_Sound_PlayExAt('SOUND_ITEM_GETITEM', FObj.X, FObj.Y);
2193 // Íàäî óáðàòü ñ êàðòû, åñëè ýòî íå êëþ÷, êîòîðûì íóæíî ïîäåëèòñÿ ñ äðóãèì èãðîêîì:
2194 if r and not ((ItemType in [ITEM_KEY_RED, ITEM_KEY_GREEN, ITEM_KEY_BLUE]) and
2195 (gGameSettings.GameType = GT_SINGLE) and
2196 (g_Player_GetCount() > 1)) then
2197 if not Respawnable then g_Items_Remove(i) else g_Items_Pick(i);
2203 function TPlayer
.CollideLevel(XInc
, YInc
: Integer): Boolean;
2205 Result
:= g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
+XInc
, FObj
.Y
+PLAYER_RECT
.Y
+YInc
,
2206 PLAYER_RECT
.Width
, PLAYER_RECT
.Height
, PANEL_WALL
,
2210 constructor TPlayer
.Create();
2216 mEDamageType
:= HIT_SOME
;
2222 FSawSound
:= TPlayableSound
.Create();
2223 FSawSoundIdle
:= TPlayableSound
.Create();
2224 FSawSoundHit
:= TPlayableSound
.Create();
2225 FSawSoundSelect
:= TPlayableSound
.Create();
2226 FFlameSoundOn
:= TPlayableSound
.Create();
2227 FFlameSoundOff
:= TPlayableSound
.Create();
2228 FFlameSoundWork
:= TPlayableSound
.Create();
2229 FJetSoundFly
:= TPlayableSound
.Create();
2230 FJetSoundOn
:= TPlayableSound
.Create();
2231 FJetSoundOff
:= TPlayableSound
.Create();
2233 FSawSound
.SetByName('SOUND_WEAPON_FIRESAW');
2234 FSawSoundIdle
.SetByName('SOUND_WEAPON_IDLESAW');
2235 FSawSoundHit
.SetByName('SOUND_WEAPON_HITSAW');
2236 FSawSoundSelect
.SetByName('SOUND_WEAPON_SELECTSAW');
2237 FFlameSoundOn
.SetByName('SOUND_WEAPON_FLAMEON');
2238 FFlameSoundOff
.SetByName('SOUND_WEAPON_FLAMEOFF');
2239 FFlameSoundWork
.SetByName('SOUND_WEAPON_FLAMEWORK');
2240 FJetSoundFly
.SetByName('SOUND_PLAYER_JETFLY');
2241 FJetSoundOn
.SetByName('SOUND_PLAYER_JETON');
2242 FJetSoundOff
.SetByName('SOUND_PLAYER_JETOFF');
2244 FSpectatePlayer
:= -1;
2248 FSavedStateNum
:= -1;
2256 FActualModelName
:= 'doomer';
2259 FObj
.Rect
:= PLAYER_RECT
;
2261 FBFGFireCounter
:= -1;
2262 FJustTeleported
:= False;
2265 FWaitForFirstSpawn
:= false;
2270 procedure TPlayer
.positionChanged (); inline;
2274 procedure TPlayer
.doDamage (v
: Integer);
2276 if (v
<= 0) then exit
;
2277 if (v
> 32767) then v
:= 32767;
2278 Damage(v
, 0, 0, 0, mEDamageType
);
2281 procedure TPlayer
.Damage(value
: Word; SpawnerUID
: Word; vx
, vy
: Integer; t
: Byte);
2285 if (not g_Game_IsClient
) and (not FAlive
) then
2290 // Íåóÿçâèìîñòü íå ñïàñàåò îò ëîâóøåê:
2291 if ((t
= HIT_TRAP
) or (t
= HIT_SELF
)) and (not FGodMode
) then
2293 if not g_Game_IsClient
then
2296 if t
= HIT_TRAP
then
2298 // Ëîâóøêà óáèâàåò ñðàçó:
2300 Kill(K_EXTRAHARDKILL
, SpawnerUID
, t
);
2302 if t
= HIT_SELF
then
2306 Kill(K_SIMPLEKILL
, SpawnerUID
, t
);
2309 // Îáíóëèòü äåéñòâèÿ ïðèìî÷åê, ÷òîáû ôîí ïðîïàë
2310 FMegaRulez
[MR_SUIT
] := 0;
2311 FMegaRulez
[MR_INVUL
] := 0;
2312 FMegaRulez
[MR_INVIS
] := 0;
2317 // Íî îò îñòàëüíîãî ñïàñàåò:
2318 if FMegaRulez
[MR_INVUL
] >= gTime
then
2325 // Åñëè åñòü óðîí ñâîèì, èëè ðàíèë ñàì ñåáÿ, èëè òåáÿ ðàíèë ïðîòèâíèê:
2326 if LongBool(gGameSettings
.Options
and GAME_OPTION_TEAMDAMAGE
) or
2327 (SpawnerUID
= FUID
) or
2328 (not SameTeam(FUID
, SpawnerUID
)) then
2330 FLastSpawnerUID
:= SpawnerUID
;
2332 // Êðîâü (ïóçûðüêè, åñëè â âîäå):
2333 if gBloodCount
> 0 then
2335 c
:= Min(value
, 200)*gBloodCount
+ Random(Min(value
, 200) div 2);
2336 if value
div 4 <= c
then
2337 c
:= c
- (value
div 4)
2341 if (t
= HIT_SOME
) and (vx
= 0) and (vy
= 0) then
2345 HIT_TRAP
, HIT_ACID
, HIT_FLAME
, HIT_SELF
: MakeBloodSimple(c
);
2346 HIT_BFG
, HIT_ROCKET
, HIT_SOME
: MakeBloodVector(c
, vx
, vy
);
2349 if t
= HIT_WATER
then
2350 g_Game_Effect_Bubbles(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2),
2351 FObj
.Y
+PLAYER_RECT
.Y
-4, value
div 2, 8, 4);
2356 Inc(FDamageBuffer
, value
);
2360 FPain
:= FPain
+ value
;
2363 if g_Game_IsServer
and g_Game_IsNet
then
2365 MH_SEND_PlayerDamage(FUID
, t
, SpawnerUID
, value
, vx
, vy
);
2366 MH_SEND_PlayerStats(FUID
);
2367 MH_SEND_PlayerPos(False, FUID
);
2371 function TPlayer
.Heal(value
: Word; Soft
: Boolean): Boolean;
2374 if g_Game_IsClient
then
2379 if Soft
and (FHealth
< PLAYER_HP_SOFT
) then
2381 IncMax(FHealth
, value
, PLAYER_HP_SOFT
);
2384 if (not Soft
) and (FHealth
< PLAYER_HP_LIMIT
) then
2386 IncMax(FHealth
, value
, PLAYER_HP_LIMIT
);
2390 if Result
and g_Game_IsServer
and g_Game_IsNet
then
2391 MH_SEND_PlayerStats(FUID
);
2394 destructor TPlayer
.Destroy();
2396 if (gPlayer1
<> nil) and (gPlayer1
.FUID
= FUID
) then
2398 if (gPlayer2
<> nil) and (gPlayer2
.FUID
= FUID
) then
2402 FSawSoundIdle
.Free();
2403 FSawSoundHit
.Free();
2404 FSawSoundSelect
.Free();
2405 FFlameSoundOn
.Free();
2406 FFlameSoundOff
.Free();
2407 FFlameSoundWork
.Free();
2408 FJetSoundFly
.Free();
2410 FJetSoundOff
.Free();
2412 if FPunchAnim
<> nil then
2418 procedure TPlayer
.DrawIndicator(Color
: TRGB
);
2420 indX
, indY
, fX
, fY
, fSlope
: Integer;
2430 FObj
.lerp(gLerpFactor
, fX
, fY
);
2431 fSlope
:= nlerp(FSlopeOld
, FObj
.slopeUpLeft
, gLerpFactor
);
2433 case gPlayerIndicatorStyle
of
2436 if g_Texture_Get('TEXTURE_PLAYER_INDICATOR', ID
) then
2438 e_GetTextureSize(ID
, @indW
, @indH
);
2442 if (FObj
.X
+ FObj
.Rect
.X
) < 0 then
2445 indX
:= fX
+ FObj
.Rect
.X
+ FObj
.Rect
.Width
;
2446 indY
:= fY
+ FObj
.Rect
.Y
+ (FObj
.Rect
.Height
- indW
) div 2;
2449 else if (FObj
.X
+ FObj
.Rect
.X
+ FObj
.Rect
.Width
) > Max(gMapInfo
.Width
, gPlayerScreenSize
.X
) then
2452 indX
:= fX
+ FObj
.Rect
.X
- indH
;
2453 indY
:= fY
+ FObj
.Rect
.Y
+ (FObj
.Rect
.Height
- indW
) div 2;
2456 else if (FObj
.Y
- indH
) < 0 then
2459 indX
:= fX
+ FObj
.Rect
.X
+ (FObj
.Rect
.Width
- indW
) div 2;
2460 indY
:= fY
+ FObj
.Rect
.Y
+ FObj
.Rect
.Height
;
2466 indX
:= fX
+ FObj
.Rect
.X
+ (FObj
.Rect
.Width
- indW
) div 2;
2470 indY
:= indY
+ fSlope
;
2471 indX
:= EnsureRange(indX
, 0, Max(gMapInfo
.Width
, gPlayerScreenSize
.X
) - indW
);
2472 indY
:= EnsureRange(indY
, 0, Max(gMapInfo
.Height
, gPlayerScreenSize
.Y
) - indH
);
2476 e_DrawAdv(ID
, indX
, indY
, 0, True, False, indA
, @a
);
2483 e_TextureFontGetSize(gStdFont
, nW
, nH
);
2484 indX
:= fX
+ FObj
.Rect
.X
+ (FObj
.Rect
.Width
- Length(FName
) * nW
) div 2;
2485 indY
:= fY
- nH
+ fSlope
;
2486 e_TextureFontPrintEx(indX
, indY
, FName
, gStdFont
, Color
.R
, Color
.G
, Color
.B
, 1.0, True);
2492 procedure TPlayer
.DrawBubble();
2494 bubX
, bubY
, fX
, fY
: Integer;
2497 Rw
, Gw
, Bw
: SmallInt;
2501 CObj
:= getCameraObj();
2502 CObj
.lerp(gLerpFactor
, fX
, fY
);
2503 // NB: _F_Obj.Rect is used to keep the bubble higher; this is not a mistake
2504 bubX
:= fX
+FObj
.Rect
.X
+ IfThen(FDirection
= TDirection
.D_LEFT
, -4, 18);
2505 bubY
:= fY
+FObj
.Rect
.Y
- 18;
2513 1: // simple textual non-bubble
2515 bubX
:= fX
+FObj
.Rect
.X
- 11;
2516 bubY
:= fY
+FObj
.Rect
.Y
- 17;
2517 e_TextureFontPrint(bubX
, bubY
, '[...]', gStdFont
);
2520 2: // advanced pixel-perfect bubble
2522 if FTeam
= TEAM_RED
then
2525 if FTeam
= TEAM_BLUE
then
2528 3: // colored bubble
2530 Rb
:= FModel
.Color
.R
;
2531 Gb
:= FModel
.Color
.G
;
2532 Bb
:= FModel
.Color
.B
;
2533 Rw
:= Min(Rb
* 2 + 64, 255);
2534 Gw
:= Min(Gb
* 2 + 64, 255);
2535 Bw
:= Min(Bb
* 2 + 64, 255);
2536 if (Abs(Rw
- Rb
) < 32)
2537 or (Abs(Gw
- Gb
) < 32)
2538 or (Abs(Bw
- Bb
) < 32) then
2540 Rb
:= Max(Rw
div 2 - 16, 0);
2541 Gb
:= Max(Gw
div 2 - 16, 0);
2542 Bb
:= Max(Bw
div 2 - 16, 0);
2545 4: // custom textured bubble
2547 if g_Texture_Get('TEXTURE_PLAYER_TALKBUBBLE', ID
) then
2548 if FDirection
= TDirection
.D_RIGHT
then
2549 e_Draw(ID
, bubX
- 6, bubY
- 7, 0, True, False)
2551 e_Draw(ID
, bubX
- 6, bubY
- 7, 0, True, False, TMirrorType
.Horizontal
);
2557 e_DrawQuad(bubX
+ 1, bubY
, bubX
+ 18, bubY
+ 13, Rb
, Gb
, Bb
);
2558 e_DrawQuad(bubX
, bubY
+ 1, bubX
+ 19, bubY
+ 12, Rb
, Gb
, Bb
);
2560 e_DrawFillQuad(bubX
+ 1, bubY
+ 1, bubX
+ 18, bubY
+ 12, Rw
, Gw
, Bw
, 0);
2563 Dot
:= IfThen(FDirection
= TDirection
.D_LEFT
, 14, 5);
2564 e_DrawLine(1, bubX
+ Dot
, bubY
+ 14, bubX
+ Dot
, bubY
+ 16, Rb
, Gb
, Bb
);
2565 e_DrawLine(1, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 1, Dot
+ 1), bubY
+ 13, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 1, Dot
+ 1), bubY
+ 15, Rw
, Gw
, Bw
);
2566 e_DrawLine(1, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 2, Dot
+ 2), bubY
+ 13, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 2, Dot
+ 2), bubY
+ 14, Rw
, Gw
, Bw
);
2567 e_DrawLine(1, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 3, Dot
+ 3), bubY
+ 13, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 3, Dot
+ 3), bubY
+ 13, Rw
, Gw
, Bw
);
2568 e_DrawLine(1, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 3, Dot
+ 3), bubY
+ 14, bubX
+ IfThen(FDirection
= TDirection
.D_LEFT
, Dot
- 1, Dot
+ 1), bubY
+ 16, Rb
, Gb
, Bb
);
2572 e_DrawFillQuad(bubX
+ Dot
, bubY
+ 8, bubX
+ Dot
+ 1, bubY
+ 9, Rb
, Gb
, Bb
, 0);
2573 e_DrawFillQuad(bubX
+ Dot
+ 3, bubY
+ 8, bubX
+ Dot
+ 4, bubY
+ 9, Rb
, Gb
, Bb
, 0);
2574 e_DrawFillQuad(bubX
+ Dot
+ 6, bubY
+ 8, bubX
+ Dot
+ 7, bubY
+ 9, Rb
, Gb
, Bb
, 0);
2577 procedure TPlayer
.Draw();
2582 Mirror
: TMirrorType
;
2583 fX
, fY
, fSlope
: Integer;
2585 FObj
.lerp(gLerpFactor
, fX
, fY
);
2586 fSlope
:= nlerp(FSlopeOld
, FObj
.slopeUpLeft
, gLerpFactor
);
2590 if Direction
= TDirection
.D_RIGHT
then
2591 Mirror
:= TMirrorType
.None
2593 Mirror
:= TMirrorType
.Horizontal
;
2595 if FPunchAnim
<> nil then
2597 FPunchAnim
.Draw(fX
+IfThen(Direction
= TDirection
.D_LEFT
, 15-FObj
.Rect
.X
, FObj
.Rect
.X
-15),
2598 fY
+fSlope
+FObj
.Rect
.Y
-11, Mirror
);
2599 if FPunchAnim
.played
then
2606 if (FMegaRulez
[MR_INVUL
] > gTime
) and ((gPlayerDrawn
<> Self
) or (FSpawnInvul
>= gTime
)) then
2607 if g_Texture_Get('TEXTURE_PLAYER_INVULPENTA', ID
) then
2609 e_GetTextureSize(ID
, @w
, @h
);
2610 if FDirection
= TDirection
.D_LEFT
then
2611 e_Draw(ID
, fX
+FObj
.Rect
.X
+(FObj
.Rect
.Width
div 2)-(w
div 2)+4,
2612 fY
+FObj
.Rect
.Y
+(FObj
.Rect
.Height
div 2)-(h
div 2)-7+fSlope
, 0, True, False)
2614 e_Draw(ID
, fX
+FObj
.Rect
.X
+(FObj
.Rect
.Width
div 2)-(w
div 2)-2,
2615 fY
+FObj
.Rect
.Y
+(FObj
.Rect
.Height
div 2)-(h
div 2)-7+fSlope
, 0, True, False);
2618 if FMegaRulez
[MR_INVIS
] > gTime
then
2620 if (gPlayerDrawn
<> nil) and ((Self
= gPlayerDrawn
) or
2621 ((FTeam
= gPlayerDrawn
.Team
) and (gGameSettings
.GameMode
<> GM_DM
))) then
2623 if (FMegaRulez
[MR_INVIS
] - gTime
) <= 2100 then
2624 dr
:= not Odd((FMegaRulez
[MR_INVIS
] - gTime
) div 300)
2628 FModel
.Draw(fX
, fY
+fSlope
, 200)
2630 FModel
.Draw(fX
, fY
+fSlope
);
2633 FModel
.Draw(fX
, fY
+fSlope
, 254);
2636 FModel
.Draw(fX
, fY
+fSlope
);
2639 if g_debug_Frames
then
2641 e_DrawQuad(FObj
.X
+FObj
.Rect
.X
,
2643 FObj
.X
+FObj
.Rect
.X
+FObj
.Rect
.Width
-1,
2644 FObj
.Y
+FObj
.Rect
.Y
+FObj
.Rect
.Height
-1,
2648 if (gChatBubble
> 0) and (FKeys
[KEY_CHAT
].Pressed
) and not FGhost
then
2649 if (FMegaRulez
[MR_INVIS
] <= gTime
) or ((gPlayerDrawn
<> nil) and ((Self
= gPlayerDrawn
) or
2650 ((FTeam
= gPlayerDrawn
.Team
) and (gGameSettings
.GameMode
<> GM_DM
)))) then
2652 // e_DrawPoint(5, 335, 288, 255, 0, 0); // DL, UR, DL, UR
2653 if gAimLine
and alive
and
2654 ((Self
= gPlayer1
) or (Self
= gPlayer2
)) then
2659 procedure TPlayer
.DrawAim();
2660 procedure drawCast (sz
: Integer; ax0
, ay0
, ax1
, ay1
: Integer);
2665 {$IFDEF ENABLE_HOLMES}
2666 if isValidViewPort
and (self
= gPlayer1
) then
2668 g_Holmes_plrLaser(ax0
, ay0
, ax1
, ay1
);
2672 e_DrawLine(sz
, ax0
, ay0
, ax1
, ay1
, 255, 0, 0, 96);
2673 if (g_Map_traceToNearestWall(ax0
, ay0
, ax1
, ay1
, @ex
, @ey
) <> nil) then
2675 e_DrawLine(sz
, ax0
, ay0
, ex
, ey
, 0, 255, 0, 96);
2679 e_DrawLine(sz
, ax0
, ay0
, ex
, ey
, 0, 0, 255, 96);
2684 wx
, wy
, xx
, yy
: Integer;
2688 wx
:= FObj
.X
+ WEAPONPOINT
[FDirection
].X
+ IfThen(FDirection
= TDirection
.D_LEFT
, 7, -7);
2689 wy
:= FObj
.Y
+ WEAPONPOINT
[FDirection
].Y
;
2698 1: begin // Chainsaw
2705 if angle
= ANGLE_RIGHTUP
then Dec(angle
, 2);
2706 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 4);
2707 if angle
= ANGLE_LEFTUP
then Inc(angle
, 2);
2708 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 4);
2713 if angle
= ANGLE_RIGHTUP
then Dec(angle
, 2);
2714 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 4);
2715 if angle
= ANGLE_LEFTUP
then Inc(angle
, 2);
2716 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 4);
2718 4: begin // Double Shotgun
2721 if angle
= ANGLE_RIGHTUP
then Dec(angle
, 2);
2722 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 4);
2723 if angle
= ANGLE_LEFTUP
then Inc(angle
, 2);
2724 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 4);
2726 5: begin // Chaingun
2729 if angle
= ANGLE_RIGHTUP
then Dec(angle
, 2);
2730 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 4);
2731 if angle
= ANGLE_LEFTUP
then Inc(angle
, 2);
2732 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 4);
2734 6: begin // Rocket Launcher
2737 if angle
= ANGLE_RIGHTUP
then Inc(angle
, 2);
2738 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 4);
2739 if angle
= ANGLE_LEFTUP
then Dec(angle
, 2);
2740 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 4);
2742 7: begin // Plasmagun
2745 if angle
= ANGLE_RIGHTUP
then Inc(angle
);
2746 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 3);
2747 if angle
= ANGLE_LEFTUP
then Dec(angle
);
2748 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 3);
2753 if angle
= ANGLE_RIGHTUP
then Inc(angle
, 1);
2754 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 2);
2755 if angle
= ANGLE_LEFTUP
then Dec(angle
, 1);
2756 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 2);
2758 9: begin // Super Chaingun
2761 if angle
= ANGLE_RIGHTUP
then Dec(angle
, 2);
2762 if angle
= ANGLE_RIGHTDOWN
then Inc(angle
, 4);
2763 if angle
= ANGLE_LEFTUP
then Inc(angle
, 2);
2764 if angle
= ANGLE_LEFTDOWN
then Dec(angle
, 4);
2767 xx
:= Trunc(Cos(-DegToRad(angle
)) * len
) + wx
;
2768 yy
:= Trunc(Sin(-DegToRad(angle
)) * len
) + wy
;
2769 {$IF DEFINED(D2F_DEBUG)}
2770 drawCast(sz
, wx
, wy
, xx
, yy
);
2772 e_DrawLine(sz
, wx
, wy
, xx
, yy
, 255, 0, 0, 96);
2776 procedure TPlayer
.DrawGUI();
2779 X
, Y
, SY
, a
, p
, m
: Integer;
2783 stat
: TPlayerStatArray
;
2785 X
:= gPlayerScreenSize
.X
;
2786 SY
:= gPlayerScreenSize
.Y
;
2789 if gShowScore
and (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
2791 if gGameSettings
.GameMode
= GM_CTF
then
2795 if gGameSettings
.GameMode
= GM_CTF
then
2797 s
:= 'TEXTURE_PLAYER_REDFLAG';
2798 if gFlags
[FLAG_RED
].State
= FLAG_STATE_CAPTURED
then
2799 s
:= 'TEXTURE_PLAYER_REDFLAG_S';
2800 if gFlags
[FLAG_RED
].State
= FLAG_STATE_DROPPED
then
2801 s
:= 'TEXTURE_PLAYER_REDFLAG_D';
2802 if g_Texture_Get(s
, ID
) then
2803 e_Draw(ID
, X
-16-32, 240-72-4, 0, True, False);
2806 s
:= IntToStr(gTeamStat
[TEAM_RED
].Score
);
2807 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2808 e_CharFont_PrintEx(gMenuFont
, X
-16-a
-tw
, 240-72-4, s
, TEAMCOLOR
[TEAM_RED
]);
2810 if gGameSettings
.GameMode
= GM_CTF
then
2812 s
:= 'TEXTURE_PLAYER_BLUEFLAG';
2813 if gFlags
[FLAG_BLUE
].State
= FLAG_STATE_CAPTURED
then
2814 s
:= 'TEXTURE_PLAYER_BLUEFLAG_S';
2815 if gFlags
[FLAG_BLUE
].State
= FLAG_STATE_DROPPED
then
2816 s
:= 'TEXTURE_PLAYER_BLUEFLAG_D';
2817 if g_Texture_Get(s
, ID
) then
2818 e_Draw(ID
, X
-16-32, 240-32-4, 0, True, False);
2821 s
:= IntToStr(gTeamStat
[TEAM_BLUE
].Score
);
2822 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2823 e_CharFont_PrintEx(gMenuFont
, X
-16-a
-tw
, 240-32-4, s
, TEAMCOLOR
[TEAM_BLUE
]);
2826 if g_Texture_Get('TEXTURE_PLAYER_HUDBG', ID
) then
2827 e_DrawFill(ID
, X
, 0, 1, (gPlayerScreenSize
.Y
div 256)+IfThen(gPlayerScreenSize
.Y
mod 256 > 0, 1, 0),
2830 if g_Texture_Get('TEXTURE_PLAYER_HUD', ID
) then
2831 e_Draw(ID
, X
+2, Y
, 0, True, False);
2833 if gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
, GT_CLIENT
] then
2837 s
:= IntToStr(Frags
);
2838 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2839 e_CharFont_PrintEx(gMenuFont
, X
-16-tw
, Y
, s
, _RGB(255, 0, 0));
2844 stat
:= g_Player_GetStats();
2849 for a
:= 0 to High(stat
) do
2850 if stat
[a
].Name
<> Name
then
2852 if stat
[a
].Frags
> m
then m
:= stat
[a
].Frags
;
2853 if stat
[a
].Frags
> Frags
then p
:= p
+1;
2857 s
:= IntToStr(p
)+' / '+IntToStr(Length(stat
))+' ';
2858 if Frags
>= m
then s
:= s
+'+' else s
:= s
+'-';
2859 s
:= s
+IntToStr(Abs(Frags
-m
));
2861 e_CharFont_GetSize(gMenuSmallFont
, s
, tw
, th
);
2862 e_CharFont_PrintEx(gMenuSmallFont
, X
-16-tw
, Y
+32, s
, _RGB(255, 0, 0));
2865 if gLMSRespawn
> LMS_RESPAWN_NONE
then
2867 s
:= _lc
[I_GAME_WARMUP
];
2868 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2869 s
:= s
+ ': ' + IntToStr((gLMSRespawnTime
- gTime
) div 1000);
2870 e_CharFont_PrintEx(gMenuFont
, X
-64-tw
, SY
-32, s
, _RGB(0, 255, 0));
2872 else if gShowLives
and (gGameSettings
.MaxLives
> 0) then
2874 s
:= IntToStr(Lives
);
2875 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2876 e_CharFont_PrintEx(gMenuFont
, X
-16-tw
, SY
-32, s
, _RGB(0, 255, 0));
2880 e_CharFont_GetSize(gMenuSmallFont
, FName
, tw
, th
);
2881 e_CharFont_PrintEx(gMenuSmallFont
, X
+98-(tw
div 2), Y
+8, FName
, _RGB(255, 0, 0));
2883 if R_BERSERK
in FRulez
then
2884 e_Draw(gItemsTexturesID
[ITEM_MEDKIT_BLACK
], X
+37, Y
+45, 0, True, False)
2886 e_Draw(gItemsTexturesID
[ITEM_MEDKIT_LARGE
], X
+37, Y
+45, 0, True, False);
2888 if g_Texture_Get('TEXTURE_PLAYER_ARMORHUD', ID
) then
2889 e_Draw(ID
, X
+36, Y
+77, 0, True, False);
2891 s
:= IntToStr(IfThen(FHealth
> 0, FHealth
, 0));
2892 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2893 e_CharFont_PrintEx(gMenuFont
, X
+178-tw
, Y
+40, s
, _RGB(255, 0, 0));
2895 s
:= IntToStr(FArmor
);
2896 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2897 e_CharFont_PrintEx(gMenuFont
, X
+178-tw
, Y
+68, s
, _RGB(255, 0, 0));
2899 s
:= IntToStr(GetAmmoByWeapon(FCurrWeap
));
2905 ID
:= gItemsTexturesID
[ITEM_WEAPON_KASTET
];
2910 ID
:= gItemsTexturesID
[ITEM_WEAPON_SAW
];
2912 WEAPON_PISTOL
: ID
:= gItemsTexturesID
[ITEM_WEAPON_PISTOL
];
2913 WEAPON_CHAINGUN
: ID
:= gItemsTexturesID
[ITEM_WEAPON_CHAINGUN
];
2914 WEAPON_SHOTGUN1
: ID
:= gItemsTexturesID
[ITEM_WEAPON_SHOTGUN1
];
2915 WEAPON_SHOTGUN2
: ID
:= gItemsTexturesID
[ITEM_WEAPON_SHOTGUN2
];
2916 WEAPON_SUPERPULEMET
: ID
:= gItemsTexturesID
[ITEM_WEAPON_SUPERPULEMET
];
2917 WEAPON_ROCKETLAUNCHER
: ID
:= gItemsTexturesID
[ITEM_WEAPON_ROCKETLAUNCHER
];
2918 WEAPON_PLASMA
: ID
:= gItemsTexturesID
[ITEM_WEAPON_PLASMA
];
2919 WEAPON_BFG
: ID
:= gItemsTexturesID
[ITEM_WEAPON_BFG
];
2920 WEAPON_FLAMETHROWER
: ID
:= gItemsTexturesID
[ITEM_WEAPON_FLAMETHROWER
];
2923 e_CharFont_GetSize(gMenuFont
, s
, tw
, th
);
2924 e_CharFont_PrintEx(gMenuFont
, X
+178-tw
, Y
+158, s
, _RGB(255, 0, 0));
2925 e_Draw(ID
, X
+20, Y
+160, 0, True, False);
2927 if R_KEY_RED
in FRulez
then
2928 e_Draw(gItemsTexturesID
[ITEM_KEY_RED
], X
+78, Y
+214, 0, True, False);
2930 if R_KEY_GREEN
in FRulez
then
2931 e_Draw(gItemsTexturesID
[ITEM_KEY_GREEN
], X
+95, Y
+214, 0, True, False);
2933 if R_KEY_BLUE
in FRulez
then
2934 e_Draw(gItemsTexturesID
[ITEM_KEY_BLUE
], X
+112, Y
+214, 0, True, False);
2936 if FJetFuel
> 0 then
2938 if g_Texture_Get('TEXTURE_PLAYER_HUDAIR', ID
) then
2939 e_Draw(ID
, X
+2, Y
+116, 0, True, False);
2940 if g_Texture_Get('TEXTURE_PLAYER_HUDJET', ID
) then
2941 e_Draw(ID
, X
+2, Y
+126, 0, True, False);
2942 e_DrawLine(4, X
+16, Y
+122, X
+16+Trunc(168*IfThen(FAir
> 0, FAir
, 0)/AIR_MAX
), Y
+122, 0, 0, 196);
2943 e_DrawLine(4, X
+16, Y
+132, X
+16+Trunc(168*FJetFuel
/JET_MAX
), Y
+132, 208, 0, 0);
2947 if g_Texture_Get('TEXTURE_PLAYER_HUDAIR', ID
) then
2948 e_Draw(ID
, X
+2, Y
+124, 0, True, False);
2949 e_DrawLine(4, X
+16, Y
+130, X
+16+Trunc(168*IfThen(FAir
> 0, FAir
, 0)/AIR_MAX
), Y
+130, 0, 0, 196);
2952 if gShowPing
and g_Game_IsClient
then
2954 s
:= _lc
[I_GAME_PING_HUD
] + IntToStr(NetPeer
.lastRoundTripTime
) + _lc
[I_NET_SLIST_PING_MS
];
2955 e_TextureFontPrint(X
+ 4, Y
+ 242, s
, gStdFont
);
2961 e_TextureFontPrint(X
+ 4, Y
+ 242, _lc
[I_PLAYER_SPECT
], gStdFont
);
2962 e_TextureFontPrint(X
+ 4, Y
+ 258, _lc
[I_PLAYER_SPECT2
], gStdFont
);
2963 e_TextureFontPrint(X
+ 4, Y
+ 274, _lc
[I_PLAYER_SPECT1
], gStdFont
);
2966 e_TextureFontGetSize(gStdFont
, cw
, ch
);
2967 s
:= _lc
[I_PLAYER_SPECT4
];
2968 e_TextureFontPrintEx(gScreenWidth
div 2 - cw
*(Length(s
) div 2),
2969 gScreenHeight
-4-ch
, s
, gStdFont
, 255, 255, 255, 1, True);
2970 e_TextureFontPrint(X
+ 4, Y
+ 290, _lc
[I_PLAYER_SPECT1S
], gStdFont
);
2976 procedure TPlayer
.DrawRulez();
2980 // Ïðè âçÿòèè íåóÿçâèìîñòè ðèñóåòñÿ èíâåðñèîííûé áåëûé ôîí
2981 if (FMegaRulez
[MR_INVUL
] >= gTime
) and (FSpawnInvul
< gTime
) then
2983 if (FMegaRulez
[MR_INVUL
]-gTime
) <= 2100 then
2984 dr
:= not Odd((FMegaRulez
[MR_INVUL
]-gTime
) div 300)
2989 e_DrawFillQuad(0, 0, gPlayerScreenSize
.X
-1, gPlayerScreenSize
.Y
-1,
2990 191, 191, 191, 0, TBlending
.Invert
);
2993 // Ïðè âçÿòèè çàùèòíîãî êîñòþìà ðèñóåòñÿ çåëåíîâàòûé ôîí
2994 if FMegaRulez
[MR_SUIT
] >= gTime
then
2996 if (FMegaRulez
[MR_SUIT
]-gTime
) <= 2100 then
2997 dr
:= not Odd((FMegaRulez
[MR_SUIT
]-gTime
) div 300)
3002 e_DrawFillQuad(0, 0, gPlayerScreenSize
.X
-1, gPlayerScreenSize
.Y
-1,
3003 0, 96, 0, 200, TBlending
.None
);
3006 // Ïðè âçÿòèè áåðñåðêà ðèñóåòñÿ êðàñíîâàòûé ôîí
3007 if (FBerserk
>= 0) and (LongWord(FBerserk
) >= gTime
) and (gFlash
= 2) then
3009 e_DrawFillQuad(0, 0, gPlayerScreenSize
.X
-1, gPlayerScreenSize
.Y
-1,
3010 255, 0, 0, 200, TBlending
.None
);
3014 procedure TPlayer
.DrawPain();
3018 if FPain
= 0 then Exit
;
3022 if a
< 15 then h
:= 0
3023 else if a
< 35 then h
:= 1
3024 else if a
< 55 then h
:= 2
3025 else if a
< 75 then h
:= 3
3026 else if a
< 95 then h
:= 4
3029 //if a > 255 then a := 255;
3031 e_DrawFillQuad(0, 0, gPlayerScreenSize
.X
-1, gPlayerScreenSize
.Y
-1, 255, 0, 0, 255-h
*50);
3032 //e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1, 255-min(128, a), 255-a, 255-a, 0, B_FILTER);
3035 procedure TPlayer
.DrawPickup();
3039 if FPickup
= 0 then Exit
;
3043 if a
< 15 then h
:= 1
3044 else if a
< 35 then h
:= 2
3045 else if a
< 55 then h
:= 3
3046 else if a
< 75 then h
:= 4
3049 e_DrawFillQuad(0, 0, gPlayerScreenSize
.X
-1, gPlayerScreenSize
.Y
-1, 150, 200, 150, 255-h
*50);
3052 procedure TPlayer
.DoPunch();
3057 if FPunchAnim
<> nil then begin
3062 st
:= 'FRAMES_PUNCH';
3063 if R_BERSERK
in FRulez
then
3064 st
:= st
+ '_BERSERK';
3065 if FKeys
[KEY_UP
].Pressed
then
3067 else if FKeys
[KEY_DOWN
].Pressed
then
3069 g_Frames_Get(id
, st
);
3070 FPunchAnim
:= TAnimation
.Create(id
, False, 1);
3073 procedure TPlayer
.Fire();
3075 f
, DidFire
: Boolean;
3076 wx
, wy
, xd
, yd
: Integer;
3079 if g_Game_IsClient
then Exit
;
3080 // FBFGFireCounter - âðåìÿ ïåðåä âûñòðåëîì (äëÿ BFG)
3081 // FReloading - âðåìÿ ïîñëå âûñòðåëà (äëÿ âñåãî)
3089 if FReloading
[FCurrWeap
] <> 0 then Exit
;
3094 wx
:= FObj
.X
+WEAPONPOINT
[FDirection
].X
;
3095 wy
:= FObj
.Y
+WEAPONPOINT
[FDirection
].Y
;
3096 xd
:= wx
+IfThen(FDirection
= TDirection
.D_LEFT
, -30, 30);
3097 yd
:= wy
+firediry();
3103 if R_BERSERK
in FRulez
then
3105 //g_Weapon_punch(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y, 75, FUID);
3106 locobj
.X
:= FObj
.X
+FObj
.Rect
.X
;
3107 locobj
.Y
:= FObj
.Y
+FObj
.Rect
.Y
;
3110 locobj
.rect
.Width
:= 39;
3111 locobj
.rect
.Height
:= 52;
3112 locobj
.Vel
.X
:= (xd
-wx
) div 2;
3113 locobj
.Vel
.Y
:= (yd
-wy
) div 2;
3114 locobj
.Accel
.X
:= xd
-wx
;
3115 locobj
.Accel
.y
:= yd
-wy
;
3117 if g_Weapon_Hit(@locobj
, 50, FUID
, HIT_SOME
) <> 0 then
3118 g_Sound_PlayExAt('SOUND_WEAPON_HITBERSERK', FObj
.X
, FObj
.Y
)
3120 g_Sound_PlayExAt('SOUND_WEAPON_MISSBERSERK', FObj
.X
, FObj
.Y
);
3122 if (gFlash
= 1) and (FPain
< 50) then FPain
:= min(FPain
+ 25, 50);
3126 g_Weapon_punch(FObj
.X
+FObj
.Rect
.X
, FObj
.Y
+FObj
.Rect
.Y
, 3, FUID
);
3130 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3135 if g_Weapon_chainsaw(FObj
.X
+FObj
.Rect
.X
, FObj
.Y
+FObj
.Rect
.Y
,
3136 IfThen(gGameSettings
.GameMode
in [GM_DM
, GM_TDM
, GM_CTF
], 9, 3), FUID
) <> 0 then
3138 FSawSoundSelect
.Stop();
3140 FSawSoundHit
.PlayAt(FObj
.X
, FObj
.Y
);
3142 else if not FSawSoundHit
.IsPlaying() then
3144 FSawSoundSelect
.Stop();
3145 FSawSound
.PlayAt(FObj
.X
, FObj
.Y
);
3148 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3154 if FAmmo
[A_BULLETS
] > 0 then
3156 g_Weapon_pistol(wx
, wy
, xd
, yd
, FUID
);
3157 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3158 Dec(FAmmo
[A_BULLETS
]);
3159 FFireAngle
:= FAngle
;
3162 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
3163 GameVelX
, GameVelY
-2, SHELL_BULLET
);
3167 if FAmmo
[A_SHELLS
] > 0 then
3169 g_Weapon_shotgun(wx
, wy
, xd
, yd
, FUID
);
3170 if not gSoundEffectsDF
then g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN', wx
, wy
);
3171 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3172 Dec(FAmmo
[A_SHELLS
]);
3173 FFireAngle
:= FAngle
;
3177 FShellType
:= SHELL_SHELL
;
3181 if FAmmo
[A_SHELLS
] >= 2 then
3183 g_Weapon_dshotgun(wx
, wy
, xd
, yd
, FUID
);
3184 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3185 Dec(FAmmo
[A_SHELLS
], 2);
3186 FFireAngle
:= FAngle
;
3190 FShellType
:= SHELL_DBLSHELL
;
3194 if FAmmo
[A_BULLETS
] > 0 then
3196 g_Weapon_mgun(wx
, wy
, xd
, yd
, FUID
);
3197 if not gSoundEffectsDF
then g_Sound_PlayExAt('SOUND_WEAPON_FIREPISTOL', wx
, wy
);
3198 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3199 Dec(FAmmo
[A_BULLETS
]);
3200 FFireAngle
:= FAngle
;
3203 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
3204 GameVelX
, GameVelY
-2, SHELL_BULLET
);
3207 WEAPON_ROCKETLAUNCHER
:
3208 if FAmmo
[A_ROCKETS
] > 0 then
3210 g_Weapon_rocket(wx
, wy
, xd
, yd
, FUID
);
3211 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3212 Dec(FAmmo
[A_ROCKETS
]);
3213 FFireAngle
:= FAngle
;
3219 if FAmmo
[A_CELLS
] > 0 then
3221 g_Weapon_plasma(wx
, wy
, xd
, yd
, FUID
);
3222 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3223 Dec(FAmmo
[A_CELLS
]);
3224 FFireAngle
:= FAngle
;
3230 if (FAmmo
[A_CELLS
] >= 40) and (FBFGFireCounter
= -1) then
3232 FBFGFireCounter
:= 17;
3233 if not FNoReload
then
3234 g_Sound_PlayExAt('SOUND_WEAPON_STARTFIREBFG', FObj
.X
, FObj
.Y
);
3235 Dec(FAmmo
[A_CELLS
], 40);
3239 WEAPON_SUPERPULEMET
:
3240 if FAmmo
[A_SHELLS
] > 0 then
3242 g_Weapon_shotgun(wx
, wy
, xd
, yd
, FUID
);
3243 if not gSoundEffectsDF
then g_Sound_PlayExAt('SOUND_WEAPON_FIRECGUN', wx
, wy
);
3244 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3245 Dec(FAmmo
[A_SHELLS
]);
3246 FFireAngle
:= FAngle
;
3249 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
3250 GameVelX
, GameVelY
-2, SHELL_SHELL
);
3253 WEAPON_FLAMETHROWER
:
3254 if FAmmo
[A_FUEL
] > 0 then
3256 g_Weapon_flame(wx
, wy
, xd
, yd
, FUID
);
3258 FReloading
[FCurrWeap
] := WEAPON_RELOAD
[FCurrWeap
];
3260 FFireAngle
:= FAngle
;
3267 if g_Game_IsNet
and g_Game_IsServer
then MH_SEND_PlayerStats(FUID
);
3271 if g_Game_IsNet
then
3275 if FCurrWeap
<> WEAPON_BFG
then
3276 MH_SEND_PlayerFire(FUID
, FCurrWeap
, wx
, wy
, xd
, yd
, LastShotID
)
3278 if not FNoReload
then
3279 MH_SEND_Sound(FObj
.X
, FObj
.Y
, 'SOUND_WEAPON_STARTFIREBFG');
3282 MH_SEND_PlayerStats(FUID
);
3287 if (FAngle
= 0) or (FAngle
= 180) then SetAction(A_ATTACK
)
3288 else if (FAngle
= ANGLE_LEFTDOWN
) or (FAngle
= ANGLE_RIGHTDOWN
) then SetAction(A_ATTACKDOWN
)
3289 else if (FAngle
= ANGLE_LEFTUP
) or (FAngle
= ANGLE_RIGHTUP
) then SetAction(A_ATTACKUP
);
3292 function TPlayer
.GetAmmoByWeapon(Weapon
: Byte): Word;
3295 WEAPON_PISTOL
, WEAPON_CHAINGUN
: Result
:= FAmmo
[A_BULLETS
];
3296 WEAPON_SHOTGUN1
, WEAPON_SHOTGUN2
, WEAPON_SUPERPULEMET
: Result
:= FAmmo
[A_SHELLS
];
3297 WEAPON_ROCKETLAUNCHER
: Result
:= FAmmo
[A_ROCKETS
];
3298 WEAPON_PLASMA
, WEAPON_BFG
: Result
:= FAmmo
[A_CELLS
];
3299 WEAPON_FLAMETHROWER
: Result
:= FAmmo
[A_FUEL
];
3304 function TPlayer
.HeadInLiquid(XInc
, YInc
: Integer): Boolean;
3306 Result
:= g_Map_CollidePanel(FObj
.X
+PLAYER_HEADRECT
.X
+XInc
, FObj
.Y
+PLAYER_HEADRECT
.Y
+YInc
,
3307 PLAYER_HEADRECT
.Width
, PLAYER_HEADRECT
.Height
,
3308 PANEL_WATER
or PANEL_ACID1
or PANEL_ACID2
, True);
3311 procedure TPlayer
.FlamerOn
;
3313 FFlameSoundOff
.Stop();
3314 FFlameSoundOff
.SetPosition(0);
3317 if (not FFlameSoundOn
.IsPlaying()) and (not FFlameSoundWork
.IsPlaying()) then
3318 FFlameSoundWork
.PlayAt(FObj
.X
, FObj
.Y
);
3322 FFlameSoundOn
.PlayAt(FObj
.X
, FObj
.Y
);
3327 procedure TPlayer
.FlamerOff
;
3331 FFlameSoundOn
.Stop();
3332 FFlameSoundOn
.SetPosition(0);
3333 FFlameSoundWork
.Stop();
3334 FFlameSoundWork
.SetPosition(0);
3335 FFlameSoundOff
.PlayAt(FObj
.X
, FObj
.Y
);
3340 procedure TPlayer
.JetpackOn
;
3344 FJetSoundOn
.SetPosition(0);
3345 FJetSoundOn
.PlayAt(FObj
.X
, FObj
.Y
);
3349 procedure TPlayer
.JetpackOff
;
3353 FJetSoundOff
.SetPosition(0);
3354 FJetSoundOff
.PlayAt(FObj
.X
, FObj
.Y
);
3357 procedure TPlayer
.CatchFire(Attacker
: Word; Timeout
: Integer = PLAYER_BURN_TIME
);
3359 if Timeout
<= 0 then
3361 if (FMegaRulez
[MR_SUIT
] > gTime
) or (FMegaRulez
[MR_INVUL
] > gTime
) then
3362 exit
; // Íå çàãîðàåìñÿ êîãäà åñòü çàùèòà
3363 if g_Obj_CollidePanel(@FObj
, 0, 0, PANEL_WATER
or PANEL_ACID1
or PANEL_ACID2
) then
3364 exit
; // Íå ïîäãîðàåì â âîäå íà âñÿêèé ñëó÷àé
3365 if FFireTime
<= 0 then
3366 g_Sound_PlayExAt('SOUND_IGNITE', FObj
.X
, FObj
.Y
);
3367 FFireTime
:= Timeout
;
3368 FFireAttacker
:= Attacker
;
3369 if g_Game_IsNet
and g_Game_IsServer
then
3370 MH_SEND_PlayerStats(FUID
);
3373 procedure TPlayer
.Jump();
3375 if gFly
or FJetpack
then
3377 // Ïîëåò (÷èò-êîä èëè äæåòïàê):
3378 if FObj
.Vel
.Y
> -VEL_FLY
then
3379 FObj
.Vel
.Y
:= FObj
.Vel
.Y
- 3;
3382 if FJetFuel
> 0 then
3384 if (FJetFuel
< 1) and g_Game_IsServer
then
3388 if g_Game_IsNet
then
3389 MH_SEND_PlayerStats(FUID
);
3395 // Íå âêëþ÷àòü äæåòïàê â ðåæèìå ïðîõîæäåíèÿ ñêâîçü ñòåíû
3397 FCanJetpack
:= False;
3399 // Ïðûãàåì èëè âñïëûâàåì:
3400 if (CollideLevel(0, 1) or
3401 g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
, FObj
.Y
+PLAYER_RECT
.Y
+36, PLAYER_RECT
.Width
,
3402 PLAYER_RECT
.Height
-33, PANEL_STEP
, False)
3403 ) and (FObj
.Accel
.Y
= 0) then // Íå ïðûãàòü, åñëè åñòü âåðòèêàëüíîå óñêîðåíèå
3405 FObj
.Vel
.Y
:= -VEL_JUMP
;
3406 FCanJetpack
:= False;
3410 if BodyInLiquid(0, 0) then
3411 FObj
.Vel
.Y
:= -VEL_SW
3412 else if (FJetFuel
> 0) and FCanJetpack
and
3413 g_Game_IsServer
and (not g_Obj_CollideLiquid(@FObj
, 0, 0)) then
3417 if g_Game_IsNet
then
3418 MH_SEND_PlayerStats(FUID
);
3423 procedure TPlayer
.Kill(KillType
: Byte; SpawnerUID
: Word; t
: Byte);
3425 a
, i
, k
, ab
, ar
: Byte;
3429 srv
, netsrv
: Boolean;
3435 procedure PushItem(t
: Byte);
3439 id
:= g_Items_Create(FObj
.X
, FObj
.Y
, t
, True, False);
3440 it
:= g_Items_ByIdx(id
);
3441 if KillType
= K_EXTRAHARDKILL
then // -7..+7; -8..0
3443 g_Obj_Push(@it
.Obj
, (FObj
.Vel
.X
div 2)-7+Random(15),
3444 (FObj
.Vel
.Y
div 2)-Random(9));
3445 it
.positionChanged(); // this updates spatial accelerators
3449 if KillType
= K_HARDKILL
then // -5..+5; -5..0
3451 g_Obj_Push(@it
.Obj
, (FObj
.Vel
.X
div 2)-5+Random(11),
3452 (FObj
.Vel
.Y
div 2)-Random(6));
3454 else // -3..+3; -3..0
3456 g_Obj_Push(@it
.Obj
, (FObj
.Vel
.X
div 2)-3+Random(7),
3457 (FObj
.Vel
.Y
div 2)-Random(4));
3459 it
.positionChanged(); // this updates spatial accelerators
3462 if g_Game_IsNet
and g_Game_IsServer
then
3463 MH_SEND_ItemSpawn(True, id
);
3467 DoFrags
:= (gGameSettings
.MaxLives
= 0) or (gGameSettings
.GameMode
= GM_COOP
);
3468 Srv
:= g_Game_IsServer
;
3469 Netsrv
:= g_Game_IsServer
and g_Game_IsNet
;
3470 if Srv
then FDeath
:= FDeath
+ 1;
3475 if not FPhysics
then
3481 if (gGameSettings
.MaxLives
> 0) and Srv
and (gLMSRespawn
= LMS_RESPAWN_NONE
) then
3483 if FLives
> 0 then FLives
:= FLives
- 1;
3484 if FLives
= 0 then FNoRespawn
:= True;
3487 // Íîìåð òèïà ñìåðòè:
3490 K_SIMPLEKILL
: a
:= 1;
3492 K_EXTRAHARDKILL
: a
:= 3;
3497 if not FModel
.PlaySound(MODELSOUND_DIE
, a
, FObj
.X
, FObj
.Y
) then
3499 if FModel
.PlaySound(MODELSOUND_DIE
, i
, FObj
.X
, FObj
.Y
) then
3506 FTime
[T_RESPAWN
] := gTime
+ TIME_RESPAWN1
;
3508 FTime
[T_RESPAWN
] := gTime
+ TIME_RESPAWN2
;
3509 K_EXTRAHARDKILL
, K_FALLKILL
:
3510 FTime
[T_RESPAWN
] := gTime
+ TIME_RESPAWN3
;
3513 // Ïåðåêëþ÷àåì ñîñòîÿíèå:
3517 K_HARDKILL
, K_EXTRAHARDKILL
:
3521 // Ðåàêöèÿ ìîíñòðîâ íà ñìåðòü èãðîêà:
3522 if (KillType
<> K_FALLKILL
) and (Srv
) then
3523 g_Monsters_killedp();
3525 if SpawnerUID
= FUID
then
3529 if gGameSettings
.GameMode
= GM_TDM
then
3530 Dec(gTeamStat
[FTeam
].Score
);
3531 if DoFrags
or (gGameSettings
.GameMode
= GM_TDM
) then
3537 g_Console_Add(Format(_lc
[I_PLAYER_KILL_SELF
], [FName
]), True);
3540 if g_GetUIDType(SpawnerUID
) = UID_PLAYER
then
3541 begin // Óáèò äðóãèì èãðîêîì
3542 KP
:= g_Player_Get(SpawnerUID
);
3543 if (KP
<> nil) and Srv
then
3545 if (DoFrags
or (gGameSettings
.GameMode
= GM_TDM
)) then
3546 if SameTeam(FUID
, SpawnerUID
) then
3556 if (gGameSettings
.GameMode
= GM_TDM
) and DoFrags
then
3557 Inc(gTeamStat
[KP
.Team
].Score
,
3558 IfThen(SameTeam(FUID
, SpawnerUID
), -1, 1));
3560 if netsrv
then MH_SEND_PlayerStats(SpawnerUID
);
3563 plr
:= g_Player_Get(SpawnerUID
);
3571 g_Console_Add(Format(_lc
[I_PLAYER_KILL_EXTRAHARD_2
],
3575 g_Console_Add(Format(_lc
[I_PLAYER_KILL_EXTRAHARD_1
],
3579 g_Console_Add(Format(_lc
[I_PLAYER_KILL
],
3584 else if g_GetUIDType(SpawnerUID
) = UID_MONSTER
then
3585 begin // Óáèò ìîíñòðîì
3586 mon
:= g_Monsters_ByUID(SpawnerUID
);
3590 s
:= g_Mons_GetKilledByTypeId(mon
.MonsterType
);
3594 g_Console_Add(Format(_lc
[I_PLAYER_KILL_EXTRAHARD_2
],
3598 g_Console_Add(Format(_lc
[I_PLAYER_KILL_EXTRAHARD_1
],
3602 g_Console_Add(Format(_lc
[I_PLAYER_KILL
],
3607 else // Îñîáûå òèïû ñìåðòè
3610 HIT_SELF
: g_Console_Add(Format(_lc
[I_PLAYER_KILL_SELF
], [FName
]), True);
3611 HIT_FALL
: g_Console_Add(Format(_lc
[I_PLAYER_KILL_FALL
], [FName
]), True);
3612 HIT_WATER
: g_Console_Add(Format(_lc
[I_PLAYER_KILL_WATER
], [FName
]), True);
3613 HIT_ACID
: g_Console_Add(Format(_lc
[I_PLAYER_KILL_ACID
], [FName
]), True);
3614 HIT_TRAP
: g_Console_Add(Format(_lc
[I_PLAYER_KILL_TRAP
], [FName
]), True);
3615 else g_Console_Add(Format(_lc
[I_PLAYER_DIED
], [FName
]), True);
3621 for a
:= WP_FIRST
to WP_LAST
do
3625 WEAPON_SAW
: i
:= ITEM_WEAPON_SAW
;
3626 WEAPON_SHOTGUN1
: i
:= ITEM_WEAPON_SHOTGUN1
;
3627 WEAPON_SHOTGUN2
: i
:= ITEM_WEAPON_SHOTGUN2
;
3628 WEAPON_CHAINGUN
: i
:= ITEM_WEAPON_CHAINGUN
;
3629 WEAPON_ROCKETLAUNCHER
: i
:= ITEM_WEAPON_ROCKETLAUNCHER
;
3630 WEAPON_PLASMA
: i
:= ITEM_WEAPON_PLASMA
;
3631 WEAPON_BFG
: i
:= ITEM_WEAPON_BFG
;
3632 WEAPON_SUPERPULEMET
: i
:= ITEM_WEAPON_SUPERPULEMET
;
3633 WEAPON_FLAMETHROWER
: i
:= ITEM_WEAPON_FLAMETHROWER
;
3642 if R_ITEM_BACKPACK
in FRulez
then
3643 PushItem(ITEM_AMMO_BACKPACK
);
3645 // Âûáðîñ ðàêåòíîãî ðàíöà:
3646 if FJetFuel
> 0 then
3647 PushItem(ITEM_JETPACK
);
3650 if (not (gGameSettings
.GameMode
in [GM_DM
, GM_TDM
, GM_CTF
])) or
3651 (not LongBool(gGameSettings
.Options
and GAME_OPTION_DMKEYS
)) then
3653 if R_KEY_RED
in FRulez
then
3654 PushItem(ITEM_KEY_RED
);
3656 if R_KEY_GREEN
in FRulez
then
3657 PushItem(ITEM_KEY_GREEN
);
3659 if R_KEY_BLUE
in FRulez
then
3660 PushItem(ITEM_KEY_BLUE
);
3664 DropFlag(KillType
= K_FALLKILL
);
3667 FCorpse
:= g_Player_CreateCorpse(Self
);
3669 if Srv
and (gGameSettings
.MaxLives
> 0) and FNoRespawn
and
3670 (gLMSRespawn
= LMS_RESPAWN_NONE
) then
3676 for i
:= Low(gPlayers
) to High(gPlayers
) do
3678 if gPlayers
[i
] = nil then continue
;
3679 if (not gPlayers
[i
].FNoRespawn
) and (not gPlayers
[i
].FSpectator
) then
3682 if gPlayers
[i
].FTeam
= TEAM_RED
then Inc(ar
)
3683 else if gPlayers
[i
].FTeam
= TEAM_BLUE
then Inc(ab
);
3688 OldLR
:= gLMSRespawn
;
3689 if (gGameSettings
.GameMode
= GM_COOP
) then
3693 // everyone is dead, restart the map
3694 g_Game_Message(_lc
[I_MESSAGE_LMS_LOSE
], 144);
3696 MH_SEND_GameEvent(NET_EV_LMS_LOSE
);
3697 gLMSRespawn
:= LMS_RESPAWN_FINAL
;
3698 gLMSRespawnTime
:= gTime
+ 5000;
3700 else if (a
= 1) then
3702 if (gPlayers
[k
] <> nil) and not (gPlayers
[k
] is TBot
) then
3703 if (gPlayers
[k
] = gPlayer1
) or
3704 (gPlayers
[k
] = gPlayer2
) then
3705 g_Console_Add('*** ' + _lc
[I_MESSAGE_LMS_SURVIVOR
] + ' ***', True)
3706 else if Netsrv
and (gPlayers
[k
].FClientID
>= 0) then
3707 MH_SEND_GameEvent(NET_EV_LMS_SURVIVOR
, 0, 'N', gPlayers
[k
].FClientID
);
3710 else if (gGameSettings
.GameMode
= GM_TDM
) then
3712 if (ab
= 0) and (ar
<> 0) then
3715 g_Game_Message(Format(_lc
[I_MESSAGE_TLMS_WIN
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 144);
3717 MH_SEND_GameEvent(NET_EV_TLMS_WIN
, TEAM_RED
);
3718 Inc(gTeamStat
[TEAM_RED
].Score
);
3719 gLMSRespawn
:= LMS_RESPAWN_FINAL
;
3720 gLMSRespawnTime
:= gTime
+ 5000;
3722 else if (ar
= 0) and (ab
<> 0) then
3725 g_Game_Message(Format(_lc
[I_MESSAGE_TLMS_WIN
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 144);
3727 MH_SEND_GameEvent(NET_EV_TLMS_WIN
, TEAM_BLUE
);
3728 Inc(gTeamStat
[TEAM_BLUE
].Score
);
3729 gLMSRespawn
:= LMS_RESPAWN_FINAL
;
3730 gLMSRespawnTime
:= gTime
+ 5000;
3732 else if (ar
= 0) and (ab
= 0) then
3735 g_Game_Message(_lc
[I_GAME_WIN_DRAW
], 144);
3737 MH_SEND_GameEvent(NET_EV_LMS_DRAW
, 0, FName
);
3738 gLMSRespawn
:= LMS_RESPAWN_FINAL
;
3739 gLMSRespawnTime
:= gTime
+ 5000;
3742 else if (gGameSettings
.GameMode
= GM_DM
) then
3746 if gPlayers
[k
] <> nil then
3749 // survivor is the winner
3750 g_Game_Message(Format(_lc
[I_MESSAGE_LMS_WIN
], [AnsiUpperCase(FName
)]), 144);
3752 MH_SEND_GameEvent(NET_EV_LMS_WIN
, 0, FName
);
3755 gLMSRespawn
:= LMS_RESPAWN_FINAL
;
3756 gLMSRespawnTime
:= gTime
+ 5000;
3758 else if (a
= 0) then
3760 // everyone is dead, restart the map
3761 g_Game_Message(_lc
[I_GAME_WIN_DRAW
], 144);
3763 MH_SEND_GameEvent(NET_EV_LMS_DRAW
, 0, FName
);
3764 gLMSRespawn
:= LMS_RESPAWN_FINAL
;
3765 gLMSRespawnTime
:= gTime
+ 5000;
3768 if srv
and (OldLR
= LMS_RESPAWN_NONE
) and (gLMSRespawn
> LMS_RESPAWN_NONE
) then
3770 if NetMode
= NET_SERVER
then
3771 MH_SEND_GameEvent(NET_EV_LMS_WARMUP
, gLMSRespawnTime
- gTime
)
3773 g_Console_Add(Format(_lc
[I_MSG_WARMUP_START
], [(gLMSRespawnTime
- gTime
) div 1000]), True);
3779 MH_SEND_PlayerStats(FUID
);
3780 MH_SEND_PlayerDeath(FUID
, KillType
, t
, SpawnerUID
);
3781 if gGameSettings
.GameMode
= GM_TDM
then MH_SEND_GameStats
;
3784 if srv
and FNoRespawn
then Spectate(True);
3785 FWantsInGame
:= True;
3788 function TPlayer
.BodyInLiquid(XInc
, YInc
: Integer): Boolean;
3790 Result
:= g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
+XInc
, FObj
.Y
+PLAYER_RECT
.Y
+YInc
, PLAYER_RECT
.Width
,
3791 PLAYER_RECT
.Height
-20, PANEL_WATER
or PANEL_ACID1
or PANEL_ACID2
, False);
3794 function TPlayer
.BodyInAcid(XInc
, YInc
: Integer): Boolean;
3796 Result
:= g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
+XInc
, FObj
.Y
+PLAYER_RECT
.Y
+YInc
, PLAYER_RECT
.Width
,
3797 PLAYER_RECT
.Height
-20, PANEL_ACID1
or PANEL_ACID2
, False);
3800 procedure TPlayer
.MakeBloodSimple(Count
: Word);
3802 g_GFX_Blood(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)+8,
3803 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2),
3804 Count
div 2, 3, -1, 16, (PLAYER_RECT
.Height
*2 div 3),
3805 FModel
.Blood
.R
, FModel
.Blood
.G
, FModel
.Blood
.B
, FModel
.Blood
.Kind
);
3806 g_GFX_Blood(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-8,
3807 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2),
3808 Count
div 2, -3, -1, 16, (PLAYER_RECT
.Height
*2) div 3,
3809 FModel
.Blood
.R
, FModel
.Blood
.G
, FModel
.Blood
.B
, FModel
.Blood
.Kind
);
3812 procedure TPlayer
.MakeBloodVector(Count
: Word; VelX
, VelY
: Integer);
3814 g_GFX_Blood(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2),
3815 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2),
3816 Count
, VelX
, VelY
, 16, (PLAYER_RECT
.Height
*2) div 3,
3817 FModel
.Blood
.R
, FModel
.Blood
.G
, FModel
.Blood
.B
, FModel
.Blood
.Kind
);
3820 procedure TPlayer
.ProcessWeaponAction(Action
: Byte);
3822 if g_Game_IsClient
then Exit
;
3824 WP_PREV
: PrevWeapon();
3825 WP_NEXT
: NextWeapon();
3829 procedure TPlayer
.QueueWeaponSwitch(Weapon
: Byte);
3831 if g_Game_IsClient
then Exit
;
3832 if Weapon
> High(FWeapon
) then Exit
;
3833 FNextWeap
:= FNextWeap
or (1 shl Weapon
);
3836 procedure TPlayer
.resetWeaponQueue ();
3839 FNextWeapDelay
:= 0;
3842 function TPlayer
.hasAmmoForWeapon (weapon
: Byte): Boolean;
3846 WEAPON_KASTET
, WEAPON_SAW
: result
:= true;
3847 WEAPON_SHOTGUN1
, WEAPON_SHOTGUN2
, WEAPON_SUPERPULEMET
: result
:= (FAmmo
[A_SHELLS
] > 0);
3848 WEAPON_PISTOL
, WEAPON_CHAINGUN
: result
:= (FAmmo
[A_BULLETS
] > 0);
3849 WEAPON_ROCKETLAUNCHER
: result
:= (FAmmo
[A_ROCKETS
] > 0);
3850 WEAPON_PLASMA
, WEAPON_BFG
: result
:= (FAmmo
[A_CELLS
] > 0);
3851 WEAPON_FLAMETHROWER
: result
:= (FAmmo
[A_FUEL
] > 0);
3852 else result
:= (weapon
< length(FWeapon
));
3856 function TPlayer
.hasAmmoForShooting (weapon
: Byte): Boolean;
3860 WEAPON_KASTET
, WEAPON_SAW
: result
:= true;
3861 WEAPON_SHOTGUN1
, WEAPON_SUPERPULEMET
: result
:= (FAmmo
[A_SHELLS
] > 0);
3862 WEAPON_SHOTGUN2
: result
:= (FAmmo
[A_SHELLS
] > 1);
3863 WEAPON_PISTOL
, WEAPON_CHAINGUN
: result
:= (FAmmo
[A_BULLETS
] > 0);
3864 WEAPON_ROCKETLAUNCHER
: result
:= (FAmmo
[A_ROCKETS
] > 0);
3865 WEAPON_PLASMA
: result
:= (FAmmo
[A_CELLS
] > 0);
3866 WEAPON_BFG
: result
:= (FAmmo
[A_CELLS
] >= 40);
3867 WEAPON_FLAMETHROWER
: result
:= (FAmmo
[A_FUEL
] > 0);
3868 else result
:= (weapon
< length(FWeapon
));
3872 function TPlayer
.shouldSwitch (weapon
: Byte; hadWeapon
: Boolean): Boolean;
3875 if (weapon
> WP_LAST
+ 1) then
3880 if (FWeapSwitchMode
= 1) and not hadWeapon
then
3882 else if (FWeapSwitchMode
= 2) then
3883 result
:= (FWeapPreferences
[weapon
] > FWeapPreferences
[FCurrWeap
]);
3886 // return 255 for "no switch"
3887 function TPlayer
.getNextWeaponIndex (): Byte;
3890 wantThisWeapon
: array[0..64] of Boolean;
3891 wwc
: Integer = 0; //HACK!
3894 result
:= 255; // default result: "no switch"
3895 //e_LogWriteFln('FSWITCHTOEMPTY: %s', [FSwitchToEmpty], TMsgType.Notify);
3896 // had weapon cycling on previous frame? remove that flag
3897 if (FNextWeap
and $2000) <> 0 then
3899 FNextWeap
:= FNextWeap
and $1FFF;
3900 FNextWeapDelay
:= 0;
3902 // cycling has priority
3903 if (FNextWeap
and $C000) <> 0 then
3905 if (FNextWeap
and $8000) <> 0 then
3909 FNextWeap
:= FNextWeap
or $2000; // we need this
3910 if FNextWeapDelay
> 0 then
3911 exit
; // cooldown time
3913 for i
:= 0 to High(FWeapon
) do
3915 cwi
:= (cwi
+length(FWeapon
)+dir
) mod length(FWeapon
);
3916 if FWeapon
[cwi
] and maySwitch(cwi
) then
3918 //e_LogWriteFln(' SWITCH: cur=%d; new=%d %s %s', [FCurrWeap, cwi, FSwitchToEmpty, hasAmmoForWeapon(cwi)], TMsgType.Notify);
3919 result
:= Byte(cwi
);
3920 FNextWeapDelay
:= WEAPON_DELAY
;
3928 for i
:= 0 to High(wantThisWeapon
) do
3929 wantThisWeapon
[i
] := false;
3930 for i
:= 0 to High(FWeapon
) do
3931 if (FNextWeap
and (1 shl i
)) <> 0 then
3933 wantThisWeapon
[i
] := true;
3937 // exclude currently selected weapon from the set
3938 wantThisWeapon
[FCurrWeap
] := false;
3939 // slow down alterations a little
3942 //e_WriteLog(Format(' FNextWeap=%x; delay=%d', [FNextWeap, FNextWeapDelay]), MSG_WARNING);
3943 // more than one weapon requested, assume "alteration" and check alteration delay
3944 if FNextWeapDelay
> 0 then
3950 // do not reset weapon queue, it will be done in `RealizeCurrentWeapon()`
3951 // but clear all counters if no weapon should be switched
3957 //e_WriteLog(Format('wwc=%d', [wwc]), MSG_WARNING);
3958 // try weapons in descending order
3959 for i
:= High(FWeapon
) downto 0 do
3961 if wantThisWeapon
[i
] and FWeapon
[i
] and ((wwc
= 1) or hasAmmoForWeapon(i
)) then
3966 FNextWeapDelay
:= WEAPON_DELAY
* 2; // anyway, 'cause why not
3967 //e_LogWriteFln('FOUND %s %s %s', [result, FSwitchToEmpty, hasAmmoForWeapon(i)], TMsgType.Notify);
3971 // no suitable weapon found, so reset the queue, to avoid accidental "queuing" of weapon w/o ammo
3975 procedure TPlayer
.RealizeCurrentWeapon();
3976 function switchAllowed (): Boolean;
3981 if FBFGFireCounter
<> -1 then
3983 if FTime
[T_SWITCH
] > gTime
then
3985 for i
:= WP_FIRST
to WP_LAST
do
3986 if FReloading
[i
] > 0 then
3994 //e_WriteLog(Format('***RealizeCurrentWeapon: FNextWeap=%x; FNextWeapDelay=%d', [FNextWeap, FNextWeapDelay]), MSG_WARNING);
3995 //FNextWeap := FNextWeap and $1FFF;
3996 if FNextWeapDelay
> 0 then Dec(FNextWeapDelay
); // "alteration delay"
3998 if not switchAllowed
then
4000 //HACK for weapon cycling
4001 if (FNextWeap
and $E000) <> 0 then FNextWeap
:= 0;
4005 nw
:= getNextWeaponIndex();
4007 if nw
= 255 then exit
; // don't reset anything here
4008 if nw
> High(FWeapon
) then
4010 // don't forget to reset queue here!
4011 //e_WriteLog(' RealizeCurrentWeapon: WUTAFUUUU', MSG_WARNING);
4019 FTime
[T_SWITCH
] := gTime
+156;
4020 if FCurrWeap
= WEAPON_SAW
then FSawSoundSelect
.PlayAt(FObj
.X
, FObj
.Y
);
4021 FModel
.SetWeapon(FCurrWeap
);
4022 if g_Game_IsNet
then MH_SEND_PlayerStats(FUID
);
4026 procedure TPlayer
.NextWeapon();
4028 if g_Game_IsClient
then Exit
;
4032 procedure TPlayer
.PrevWeapon();
4034 if g_Game_IsClient
then Exit
;
4038 procedure TPlayer
.SetWeapon(W
: Byte);
4040 if FCurrWeap
<> W
then
4041 if W
= WEAPON_SAW
then
4042 FSawSoundSelect
.PlayAt(FObj
.X
, FObj
.Y
);
4045 FModel
.SetWeapon(CurrWeap
);
4049 function TPlayer
.PickItem(ItemType
: Byte; arespawn
: Boolean; var remove
: Boolean): Boolean;
4052 switchWeapon
: Byte = 255;
4053 hadWeapon
: Boolean = False;
4056 if g_Game_IsClient
then Exit
;
4058 // a = true - ìåñòî ñïàâíà ïðåäìåòà:
4059 a
:= LongBool(gGameSettings
.Options
and GAME_OPTION_WEAPONSTAY
) and arespawn
;
4063 if (FHealth
< PLAYER_HP_SOFT
) or (FFireTime
> 0) then
4065 if FHealth
< PLAYER_HP_SOFT
then IncMax(FHealth
, 10, PLAYER_HP_SOFT
);
4069 if gFlash
= 2 then Inc(FPickup
, 5);
4073 if (FHealth
< PLAYER_HP_SOFT
) or (FFireTime
> 0) then
4075 if FHealth
< PLAYER_HP_SOFT
then IncMax(FHealth
, 25, PLAYER_HP_SOFT
);
4079 if gFlash
= 2 then Inc(FPickup
, 5);
4083 if FArmor
< PLAYER_AP_SOFT
then
4085 FArmor
:= PLAYER_AP_SOFT
;
4088 if gFlash
= 2 then Inc(FPickup
, 5);
4092 if FArmor
< PLAYER_AP_LIMIT
then
4094 FArmor
:= PLAYER_AP_LIMIT
;
4097 if gFlash
= 2 then Inc(FPickup
, 5);
4101 if (FHealth
< PLAYER_HP_LIMIT
) or (FFireTime
> 0) then
4103 if FHealth
< PLAYER_HP_LIMIT
then IncMax(FHealth
, 100, PLAYER_HP_LIMIT
);
4107 if gFlash
= 2 then Inc(FPickup
, 5);
4111 if (FHealth
< PLAYER_HP_LIMIT
) or (FArmor
< PLAYER_AP_LIMIT
) or (FFireTime
> 0) then
4113 if FHealth
< PLAYER_HP_LIMIT
then
4114 FHealth
:= PLAYER_HP_LIMIT
;
4115 if FArmor
< PLAYER_AP_LIMIT
then
4116 FArmor
:= PLAYER_AP_LIMIT
;
4120 if gFlash
= 2 then Inc(FPickup
, 5);
4124 if (not FWeapon
[WEAPON_SAW
]) or ((not arespawn
) and (gGameSettings
.GameMode
in [GM_DM
, GM_TDM
, GM_CTF
])) then
4126 hadWeapon
:= FWeapon
[WEAPON_SAW
];
4127 switchWeapon
:= WEAPON_SAW
;
4128 FWeapon
[WEAPON_SAW
] := True;
4130 if gFlash
= 2 then Inc(FPickup
, 5);
4131 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4134 ITEM_WEAPON_SHOTGUN1
:
4135 if (FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
]) or not FWeapon
[WEAPON_SHOTGUN1
] then
4137 // Íóæíî, ÷òîáû íå âçÿòü âñå ïóëè ñðàçó:
4138 if a
and FWeapon
[WEAPON_SHOTGUN1
] then Exit
;
4139 hadWeapon
:= FWeapon
[WEAPON_SHOTGUN1
];
4140 switchWeapon
:= WEAPON_SHOTGUN1
;
4141 IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
4142 FWeapon
[WEAPON_SHOTGUN1
] := True;
4144 if gFlash
= 2 then Inc(FPickup
, 5);
4145 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4148 ITEM_WEAPON_SHOTGUN2
:
4149 if (FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
]) or not FWeapon
[WEAPON_SHOTGUN2
] then
4151 if a
and FWeapon
[WEAPON_SHOTGUN2
] then Exit
;
4152 hadWeapon
:= FWeapon
[WEAPON_SHOTGUN2
];
4153 switchWeapon
:= WEAPON_SHOTGUN2
;
4154 IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
4155 FWeapon
[WEAPON_SHOTGUN2
] := True;
4157 if gFlash
= 2 then Inc(FPickup
, 5);
4158 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4161 ITEM_WEAPON_CHAINGUN
:
4162 if (FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
]) or not FWeapon
[WEAPON_CHAINGUN
] then
4164 if a
and FWeapon
[WEAPON_CHAINGUN
] then Exit
;
4165 hadWeapon
:= FWeapon
[WEAPON_CHAINGUN
];
4166 switchWeapon
:= WEAPON_CHAINGUN
;
4167 IncMax(FAmmo
[A_BULLETS
], 50, FMaxAmmo
[A_BULLETS
]);
4168 FWeapon
[WEAPON_CHAINGUN
] := True;
4170 if gFlash
= 2 then Inc(FPickup
, 5);
4171 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4174 ITEM_WEAPON_ROCKETLAUNCHER
:
4175 if (FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
]) or not FWeapon
[WEAPON_ROCKETLAUNCHER
] then
4177 if a
and FWeapon
[WEAPON_ROCKETLAUNCHER
] then Exit
;
4178 switchWeapon
:= WEAPON_ROCKETLAUNCHER
;
4179 hadWeapon
:= FWeapon
[WEAPON_ROCKETLAUNCHER
];
4180 IncMax(FAmmo
[A_ROCKETS
], 2, FMaxAmmo
[A_ROCKETS
]);
4181 FWeapon
[WEAPON_ROCKETLAUNCHER
] := True;
4183 if gFlash
= 2 then Inc(FPickup
, 5);
4184 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4188 if (FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
]) or not FWeapon
[WEAPON_PLASMA
] then
4190 if a
and FWeapon
[WEAPON_PLASMA
] then Exit
;
4191 switchWeapon
:= WEAPON_PLASMA
;
4192 hadWeapon
:= FWeapon
[WEAPON_PLASMA
];
4193 IncMax(FAmmo
[A_CELLS
], 40, FMaxAmmo
[A_CELLS
]);
4194 FWeapon
[WEAPON_PLASMA
] := True;
4196 if gFlash
= 2 then Inc(FPickup
, 5);
4197 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4201 if (FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
]) or not FWeapon
[WEAPON_BFG
] then
4203 if a
and FWeapon
[WEAPON_BFG
] then Exit
;
4204 switchWeapon
:= WEAPON_BFG
;
4205 hadWeapon
:= FWeapon
[WEAPON_BFG
];
4206 IncMax(FAmmo
[A_CELLS
], 40, FMaxAmmo
[A_CELLS
]);
4207 FWeapon
[WEAPON_BFG
] := True;
4209 if gFlash
= 2 then Inc(FPickup
, 5);
4210 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4213 ITEM_WEAPON_SUPERPULEMET
:
4214 if (FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
]) or not FWeapon
[WEAPON_SUPERPULEMET
] then
4216 if a
and FWeapon
[WEAPON_SUPERPULEMET
] then Exit
;
4217 switchWeapon
:= WEAPON_SUPERPULEMET
;
4218 hadWeapon
:= FWeapon
[WEAPON_SUPERPULEMET
];
4219 IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
4220 FWeapon
[WEAPON_SUPERPULEMET
] := True;
4222 if gFlash
= 2 then Inc(FPickup
, 5);
4223 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4226 ITEM_WEAPON_FLAMETHROWER
:
4227 if (FAmmo
[A_FUEL
] < FMaxAmmo
[A_FUEL
]) or not FWeapon
[WEAPON_FLAMETHROWER
] then
4229 if a
and FWeapon
[WEAPON_FLAMETHROWER
] then Exit
;
4230 switchWeapon
:= WEAPON_FLAMETHROWER
;
4231 hadWeapon
:= FWeapon
[WEAPON_FLAMETHROWER
];
4232 IncMax(FAmmo
[A_FUEL
], 100, FMaxAmmo
[A_FUEL
]);
4233 FWeapon
[WEAPON_FLAMETHROWER
] := True;
4235 if gFlash
= 2 then Inc(FPickup
, 5);
4236 if a
and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETWEAPON');
4240 if FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
] then
4242 IncMax(FAmmo
[A_BULLETS
], 10, FMaxAmmo
[A_BULLETS
]);
4245 if gFlash
= 2 then Inc(FPickup
, 5);
4248 ITEM_AMMO_BULLETS_BOX
:
4249 if FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
] then
4251 IncMax(FAmmo
[A_BULLETS
], 50, FMaxAmmo
[A_BULLETS
]);
4254 if gFlash
= 2 then Inc(FPickup
, 5);
4258 if FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
] then
4260 IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
4263 if gFlash
= 2 then Inc(FPickup
, 5);
4266 ITEM_AMMO_SHELLS_BOX
:
4267 if FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
] then
4269 IncMax(FAmmo
[A_SHELLS
], 25, FMaxAmmo
[A_SHELLS
]);
4272 if gFlash
= 2 then Inc(FPickup
, 5);
4276 if FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
] then
4278 IncMax(FAmmo
[A_ROCKETS
], 1, FMaxAmmo
[A_ROCKETS
]);
4281 if gFlash
= 2 then Inc(FPickup
, 5);
4284 ITEM_AMMO_ROCKET_BOX
:
4285 if FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
] then
4287 IncMax(FAmmo
[A_ROCKETS
], 5, FMaxAmmo
[A_ROCKETS
]);
4290 if gFlash
= 2 then Inc(FPickup
, 5);
4294 if FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
] then
4296 IncMax(FAmmo
[A_CELLS
], 40, FMaxAmmo
[A_CELLS
]);
4299 if gFlash
= 2 then Inc(FPickup
, 5);
4303 if FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
] then
4305 IncMax(FAmmo
[A_CELLS
], 100, FMaxAmmo
[A_CELLS
]);
4308 if gFlash
= 2 then Inc(FPickup
, 5);
4312 if FAmmo
[A_FUEL
] < FMaxAmmo
[A_FUEL
] then
4314 IncMax(FAmmo
[A_FUEL
], 100, FMaxAmmo
[A_FUEL
]);
4317 if gFlash
= 2 then Inc(FPickup
, 5);
4321 if not(R_ITEM_BACKPACK
in FRulez
) or
4322 (FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
]) or
4323 (FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
]) or
4324 (FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
]) or
4325 (FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
]) or
4326 (FAmmo
[A_FUEL
] < FMaxAmmo
[A_FUEL
]) then
4328 FMaxAmmo
[A_BULLETS
] := AmmoLimits
[1, A_BULLETS
];
4329 FMaxAmmo
[A_SHELLS
] := AmmoLimits
[1, A_SHELLS
];
4330 FMaxAmmo
[A_ROCKETS
] := AmmoLimits
[1, A_ROCKETS
];
4331 FMaxAmmo
[A_CELLS
] := AmmoLimits
[1, A_CELLS
];
4332 FMaxAmmo
[A_FUEL
] := AmmoLimits
[1, A_FUEL
];
4334 if FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
] then
4335 IncMax(FAmmo
[A_BULLETS
], 10, FMaxAmmo
[A_BULLETS
]);
4336 if FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
] then
4337 IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
4338 if FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
] then
4339 IncMax(FAmmo
[A_ROCKETS
], 1, FMaxAmmo
[A_ROCKETS
]);
4340 if FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
] then
4341 IncMax(FAmmo
[A_CELLS
], 40, FMaxAmmo
[A_CELLS
]);
4342 if FAmmo
[A_FUEL
] < FMaxAmmo
[A_FUEL
] then
4343 IncMax(FAmmo
[A_FUEL
], 50, FMaxAmmo
[A_FUEL
]);
4345 FRulez
:= FRulez
+ [R_ITEM_BACKPACK
];
4348 if gFlash
= 2 then Inc(FPickup
, 5);
4352 if not(R_KEY_RED
in FRulez
) then
4354 Include(FRulez
, R_KEY_RED
);
4356 remove
:= (gGameSettings
.GameMode
<> GM_COOP
) and (g_Player_GetCount() < 2);
4357 if gFlash
= 2 then Inc(FPickup
, 5);
4358 if (not remove
) and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETITEM');
4362 if not(R_KEY_GREEN
in FRulez
) then
4364 Include(FRulez
, R_KEY_GREEN
);
4366 remove
:= (gGameSettings
.GameMode
<> GM_COOP
) and (g_Player_GetCount() < 2);
4367 if gFlash
= 2 then Inc(FPickup
, 5);
4368 if (not remove
) and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETITEM');
4372 if not(R_KEY_BLUE
in FRulez
) then
4374 Include(FRulez
, R_KEY_BLUE
);
4376 remove
:= (gGameSettings
.GameMode
<> GM_COOP
) and (g_Player_GetCount() < 2);
4377 if gFlash
= 2 then Inc(FPickup
, 5);
4378 if (not remove
) and g_Game_IsNet
then MH_SEND_Sound(GameX
, GameY
, 'SOUND_ITEM_GETITEM');
4382 if FMegaRulez
[MR_SUIT
] < gTime
+PLAYER_SUIT_TIME
then
4384 FMegaRulez
[MR_SUIT
] := gTime
+PLAYER_SUIT_TIME
;
4388 if gFlash
= 2 then Inc(FPickup
, 5);
4392 if FAir
< AIR_MAX
then
4397 if gFlash
= 2 then Inc(FPickup
, 5);
4402 if not (R_BERSERK
in FRulez
) then
4404 Include(FRulez
, R_BERSERK
);
4405 if (FBFGFireCounter
= -1) then
4407 FCurrWeap
:= WEAPON_KASTET
;
4409 FModel
.SetWeapon(WEAPON_KASTET
);
4414 if gFlash
= 2 then Inc(FPickup
, 5);
4416 FBerserk
:= gTime
+30000;
4421 if (FHealth
< PLAYER_HP_SOFT
) or (FFireTime
> 0) then
4423 if FHealth
< PLAYER_HP_SOFT
then FHealth
:= PLAYER_HP_SOFT
;
4424 FBerserk
:= gTime
+30000;
4432 if FMegaRulez
[MR_INVUL
] < gTime
+PLAYER_INVUL_TIME
then
4434 FMegaRulez
[MR_INVUL
] := gTime
+PLAYER_INVUL_TIME
;
4438 if gFlash
= 2 then Inc(FPickup
, 5);
4442 if (FHealth
< PLAYER_HP_LIMIT
) or (FFireTime
> 0) then
4444 if FHealth
< PLAYER_HP_LIMIT
then IncMax(FHealth
, 4, PLAYER_HP_LIMIT
);
4448 if gFlash
= 2 then Inc(FPickup
, 5);
4452 if FArmor
< PLAYER_AP_LIMIT
then
4454 IncMax(FArmor
, 5, PLAYER_AP_LIMIT
);
4457 if gFlash
= 2 then Inc(FPickup
, 5);
4461 if FJetFuel
< JET_MAX
then
4463 FJetFuel
:= JET_MAX
;
4466 if gFlash
= 2 then Inc(FPickup
, 5);
4470 if FMegaRulez
[MR_INVIS
] < gTime
+PLAYER_INVIS_TIME
then
4472 FMegaRulez
[MR_INVIS
] := gTime
+PLAYER_INVIS_TIME
;
4475 if gFlash
= 2 then Inc(FPickup
, 5);
4479 if (shouldSwitch(switchWeapon
, hadWeapon
)) then
4480 QueueWeaponSwitch(switchWeapon
);
4483 procedure TPlayer
.Touch();
4487 //FModel.PlaySound(MODELSOUND_PAIN, 1, FObj.X, FObj.Y);
4490 // Áðîñèòü ôëàã òîâàðèùó:
4491 if gGameSettings
.GameMode
= GM_CTF
then
4496 procedure TPlayer
.Push(vx
, vy
: Integer);
4498 if (not FPhysics
) and FGhost
then
4500 FObj
.Accel
.X
:= FObj
.Accel
.X
+ vx
;
4501 FObj
.Accel
.Y
:= FObj
.Accel
.Y
+ vy
;
4502 if g_Game_IsNet
and g_Game_IsServer
then
4503 MH_SEND_PlayerPos(True, FUID
, NET_EVERYONE
);
4506 procedure TPlayer
.Reset(Force
: Boolean);
4512 FTime
[T_RESPAWN
] := 0;
4513 FTime
[T_FLAGCAP
] := 0;
4529 FSpectator
:= False;
4532 FSpectatePlayer
:= -1;
4533 FNoRespawn
:= False;
4535 FLives
:= gGameSettings
.MaxLives
;
4540 procedure TPlayer
.SoftReset();
4548 FBFGFireCounter
:= -1;
4556 SetAction(A_STAND
, True);
4559 function TPlayer
.GetRespawnPoint(): Byte;
4564 // Íà áóäóùåå: FSpawn - èãðîê óæå èãðàë è ïåðåðîæäàåòñÿ
4566 // Îäèíî÷íàÿ èãðà/êîîïåðàòèâ
4567 if gGameSettings
.GameMode
in [GM_COOP
, GM_SINGLE
] then
4569 if Self
= gPlayer1
then
4571 // player 1 should try to spawn on the player 1 point
4572 if g_Map_GetPointCount(RESPAWNPOINT_PLAYER1
) > 0 then
4573 Exit(RESPAWNPOINT_PLAYER1
)
4574 else if g_Map_GetPointCount(RESPAWNPOINT_PLAYER2
) > 0 then
4575 Exit(RESPAWNPOINT_PLAYER2
);
4577 else if Self
= gPlayer2
then
4579 // player 2 should try to spawn on the player 2 point
4580 if g_Map_GetPointCount(RESPAWNPOINT_PLAYER2
) > 0 then
4581 Exit(RESPAWNPOINT_PLAYER2
)
4582 else if g_Map_GetPointCount(RESPAWNPOINT_PLAYER1
) > 0 then
4583 Exit(RESPAWNPOINT_PLAYER1
);
4587 // other players randomly pick either the first or the second point
4588 c
:= IfThen((Random(2) = 0), RESPAWNPOINT_PLAYER1
, RESPAWNPOINT_PLAYER2
);
4589 if g_Map_GetPointCount(c
) > 0 then
4591 // try the other one
4592 c
:= IfThen((c
= RESPAWNPOINT_PLAYER1
), RESPAWNPOINT_PLAYER2
, RESPAWNPOINT_PLAYER1
);
4593 if g_Map_GetPointCount(c
) > 0 then
4599 if gGameSettings
.GameMode
= GM_DM
then
4601 // try DM points first
4602 if g_Map_GetPointCount(RESPAWNPOINT_DM
) > 0 then
4603 Exit(RESPAWNPOINT_DM
);
4607 if gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
] then
4609 // try team points first
4610 c
:= RESPAWNPOINT_DM
;
4611 if FTeam
= TEAM_RED
then
4612 c
:= RESPAWNPOINT_RED
4613 else if FTeam
= TEAM_BLUE
then
4614 c
:= RESPAWNPOINT_BLUE
;
4615 if g_Map_GetPointCount(c
) > 0 then
4619 // still haven't found a spawnpoint, try random shit
4620 Result
:= g_Map_GetRandomPointType();
4623 procedure TPlayer
.Respawn(Silent
: Boolean; Force
: Boolean = False);
4625 RespawnPoint
: TRespawnPoint
;
4633 FBFGFireCounter
:= -1;
4640 if not g_Game_IsServer
then
4644 FWantsInGame
:= True;
4645 FJustTeleported
:= True;
4648 FTime
[T_RESPAWN
] := 0;
4652 // if server changes MaxLives we gotta be ready
4653 if gGameSettings
.MaxLives
= 0 then FNoRespawn
:= False;
4655 // Åùå íåëüçÿ âîçðîäèòüñÿ:
4656 if FTime
[T_RESPAWN
] > gTime
then
4659 // Ïðîñðàë âñå æèçíè:
4662 if not FSpectator
then Spectate(True);
4663 FWantsInGame
:= True;
4667 if (gGameSettings
.GameType
<> GT_SINGLE
) and (gGameSettings
.GameMode
<> GM_COOP
) then
4668 begin // "Ñâîÿ èãðà"
4669 // Áåðñåðê íå ñîõðàíÿåòñÿ ìåæäó óðîâíÿìè:
4670 FRulez
:= FRulez
-[R_BERSERK
];
4672 else // "Îäèíî÷íàÿ èãðà"/"Êîîï"
4674 // Áåðñåðê è êëþ÷è íå ñîõðàíÿþòñÿ ìåæäó óðîâíÿìè:
4675 FRulez
:= FRulez
-[R_KEY_RED
, R_KEY_GREEN
, R_KEY_BLUE
, R_BERSERK
];
4678 // Ïîëó÷àåì òî÷êó ñïàóíà èãðîêà:
4679 c
:= GetRespawnPoint();
4684 // Âîñêðåøåíèå áåç îðóæèÿ:
4687 FHealth
:= Round(PLAYER_HP_SOFT
* (FHandicap
/ 100));
4693 for a
:= WP_FIRST
to WP_LAST
do
4695 FWeapon
[a
] := False;
4699 FWeapon
[WEAPON_PISTOL
] := True;
4700 FWeapon
[WEAPON_KASTET
] := True;
4701 FCurrWeap
:= WEAPON_PISTOL
;
4704 FModel
.SetWeapon(FCurrWeap
);
4706 for b
:= A_BULLETS
to A_HIGH
do
4709 FAmmo
[A_BULLETS
] := 50;
4711 FMaxAmmo
[A_BULLETS
] := AmmoLimits
[0, A_BULLETS
];
4712 FMaxAmmo
[A_SHELLS
] := AmmoLimits
[0, A_SHELLS
];
4713 FMaxAmmo
[A_ROCKETS
] := AmmoLimits
[0, A_SHELLS
];
4714 FMaxAmmo
[A_CELLS
] := AmmoLimits
[0, A_CELLS
];
4715 FMaxAmmo
[A_FUEL
] := AmmoLimits
[0, A_FUEL
];
4717 if (gGameSettings
.GameMode
in [GM_DM
, GM_TDM
, GM_CTF
]) and
4718 LongBool(gGameSettings
.Options
and GAME_OPTION_DMKEYS
) then
4719 FRulez
:= [R_KEY_RED
, R_KEY_GREEN
, R_KEY_BLUE
]
4724 // Ïîëó÷àåì êîîðäèíàòû òî÷êè âîçðîæäåíèÿ:
4725 if not g_Map_GetPoint(c
, RespawnPoint
) then
4727 g_FatalError(_lc
[I_GAME_ERROR_GET_SPAWN
]);
4731 // Óñòàíîâêà êîîðäèíàò è ñáðîñ âñåõ ïàðàìåòðîâ:
4732 FObj
.X
:= RespawnPoint
.X
-PLAYER_RECT
.X
;
4733 FObj
.Y
:= RespawnPoint
.Y
-PLAYER_RECT
.Y
;
4734 FObj
.oldX
:= FObj
.X
; // don't interpolate after respawn
4735 FObj
.oldY
:= FObj
.Y
;
4741 FDirection
:= RespawnPoint
.Direction
;
4742 if FDirection
= TDirection
.D_LEFT
then
4747 SetAction(A_STAND
, True);
4748 FModel
.Direction
:= FDirection
;
4750 for a
:= Low(FTime
) to High(FTime
) do
4753 for a
:= Low(FMegaRulez
) to High(FMegaRulez
) do
4756 // Respawn invulnerability
4757 if (gGameSettings
.GameType
<> GT_SINGLE
) and (gGameSettings
.SpawnInvul
> 0) then
4759 FMegaRulez
[MR_INVUL
] := gTime
+ gGameSettings
.SpawnInvul
* 1000;
4760 FSpawnInvul
:= FMegaRulez
[MR_INVUL
];
4765 FCanJetpack
:= False;
4771 // Àíèìàöèÿ âîçðîæäåíèÿ:
4772 if (not gLoadGameMode
) and (not Silent
) then
4773 if g_Frames_Get(ID
, 'FRAMES_TELEPORT') then
4775 Anim
:= TAnimation
.Create(ID
, False, 3);
4776 g_GFX_OnceAnim(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-32,
4777 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2)-32, Anim
);
4781 FSpectator
:= False;
4784 FSpectatePlayer
:= -1;
4787 if (gPlayer1
= nil) and (gSpectLatchPID1
= FUID
) then
4789 if (gPlayer2
= nil) and (gSpectLatchPID2
= FUID
) then
4792 if g_Game_IsNet
then
4794 MH_SEND_PlayerPos(True, FUID
, NET_EVERYONE
);
4795 MH_SEND_PlayerStats(FUID
, NET_EVERYONE
);
4797 MH_SEND_Effect(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-32,
4798 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2)-32,
4803 procedure TPlayer
.Spectate(NoMove
: Boolean = False);
4806 Kill(K_EXTRAHARDKILL
, FUID
, HIT_SOME
)
4807 else if (not NoMove
) then
4809 GameX
:= gMapInfo
.Width
div 2;
4810 GameY
:= gMapInfo
.Height
div 2;
4819 FWantsInGame
:= False;
4825 if Self
= gPlayer1
then
4827 gSpectLatchPID1
:= FUID
;
4830 else if Self
= gPlayer2
then
4832 gSpectLatchPID2
:= FUID
;
4837 if g_Game_IsNet
then
4838 MH_SEND_PlayerStats(FUID
);
4841 procedure TPlayer
.SwitchNoClip
;
4845 FGhost
:= not FGhost
;
4846 FPhysics
:= not FGhost
;
4858 procedure TPlayer
.Run(Direction
: TDirection
);
4862 if MAX_RUNVEL
> 8 then
4866 if Direction
= TDirection
.D_LEFT
then
4868 if FObj
.Vel
.X
> -MAX_RUNVEL
then
4869 FObj
.Vel
.X
:= FObj
.Vel
.X
- (MAX_RUNVEL
shr 3);
4872 if FObj
.Vel
.X
< MAX_RUNVEL
then
4873 FObj
.Vel
.X
:= FObj
.Vel
.X
+ (MAX_RUNVEL
shr 3);
4875 // Âîçìîæíî, ïèíàåì êóñêè:
4876 if (FObj
.Vel
.X
<> 0) and (gGibs
<> nil) then
4878 b
:= Abs(FObj
.Vel
.X
);
4879 if b
> 1 then b
:= b
* (Random(8 div b
) + 1);
4880 for a
:= 0 to High(gGibs
) do
4882 if gGibs
[a
].alive
and
4883 g_Obj_Collide(FObj
.X
+FObj
.Rect
.X
, FObj
.Y
+FObj
.Rect
.Y
+FObj
.Rect
.Height
-4,
4884 FObj
.Rect
.Width
, 8, @gGibs
[a
].Obj
) and (Random(3) = 0) then
4887 if FObj
.Vel
.X
< 0 then
4889 g_Obj_PushA(@gGibs
[a
].Obj
, b
, Random(61)+120) // íàëåâî
4893 g_Obj_PushA(@gGibs
[a
].Obj
, b
, Random(61)); // íàïðàâî
4895 gGibs
[a
].positionChanged(); // this updates spatial accelerators
4903 procedure TPlayer
.SeeDown();
4905 SetAction(A_SEEDOWN
);
4907 if FDirection
= TDirection
.D_LEFT
then FAngle
:= ANGLE_LEFTDOWN
else FAngle
:= ANGLE_RIGHTDOWN
;
4909 if FIncCam
> -120 then DecMin(FIncCam
, 5, -120);
4912 procedure TPlayer
.SeeUp();
4916 if FDirection
= TDirection
.D_LEFT
then FAngle
:= ANGLE_LEFTUP
else FAngle
:= ANGLE_RIGHTUP
;
4918 if FIncCam
< 120 then IncMax(FIncCam
, 5, 120);
4921 procedure TPlayer
.SetAction(Action
: Byte; Force
: Boolean = False);
4929 A_ATTACK
: Prior
:= 2;
4930 A_SEEUP
: Prior
:= 1;
4931 A_SEEDOWN
: Prior
:= 1;
4932 A_ATTACKUP
: Prior
:= 2;
4933 A_ATTACKDOWN
: Prior
:= 2;
4938 if (Prior
> FActionPrior
) or Force
then
4939 if not ((Prior
= 2) and (FCurrWeap
= WEAPON_SAW
)) then
4941 FActionPrior
:= Prior
;
4942 FActionAnim
:= Action
;
4943 FActionForce
:= Force
;
4944 FActionChanged
:= True;
4947 if Action
in [A_ATTACK
, A_ATTACKUP
, A_ATTACKDOWN
] then FModel
.SetFire(True);
4950 function TPlayer
.StayOnStep(XInc
, YInc
: Integer): Boolean;
4952 Result
:= not g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
, FObj
.Y
+YInc
+PLAYER_RECT
.Y
+PLAYER_RECT
.Height
-1,
4953 PLAYER_RECT
.Width
, 1, PANEL_STEP
, False)
4954 and g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
, FObj
.Y
+YInc
+PLAYER_RECT
.Y
+PLAYER_RECT
.Height
,
4955 PLAYER_RECT
.Width
, 1, PANEL_STEP
, False);
4958 function TPlayer
.TeleportTo(X
, Y
: Integer; silent
: Boolean; dir
: Byte): Boolean;
4965 if g_CollideLevel(X
, Y
, PLAYER_RECT
.Width
, PLAYER_RECT
.Height
) then
4967 g_Sound_PlayExAt('SOUND_GAME_NOTELEPORT', FObj
.X
, FObj
.Y
);
4968 if g_Game_IsServer
and g_Game_IsNet
then
4969 MH_SEND_Sound(FObj
.X
, FObj
.Y
, 'SOUND_GAME_NOTELEPORT');
4973 FJustTeleported
:= True;
4978 if g_Frames_Get(ID
, 'FRAMES_TELEPORT') then
4980 Anim
:= TAnimation
.Create(ID
, False, 3);
4983 g_Sound_PlayExAt('SOUND_GAME_TELEPORT', FObj
.X
, FObj
.Y
);
4984 g_GFX_OnceAnim(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-32,
4985 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2)-32, Anim
);
4986 if g_Game_IsServer
and g_Game_IsNet
then
4987 MH_SEND_Effect(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-32,
4988 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2)-32, 1,
4992 FObj
.X
:= X
-PLAYER_RECT
.X
;
4993 FObj
.Y
:= Y
-PLAYER_RECT
.Y
;
4994 FObj
.oldX
:= FObj
.X
; // don't interpolate after respawn
4995 FObj
.oldY
:= FObj
.Y
;
4996 if FAlive
and FGhost
then
5002 if not g_Game_IsNet
then
5006 SetDirection(TDirection
.D_LEFT
);
5012 SetDirection(TDirection
.D_RIGHT
);
5018 if FDirection
= TDirection
.D_RIGHT
then
5020 SetDirection(TDirection
.D_LEFT
);
5025 SetDirection(TDirection
.D_RIGHT
);
5031 if not silent
and (Anim
<> nil) then
5033 g_GFX_OnceAnim(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-32,
5034 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2)-32, Anim
);
5037 if g_Game_IsServer
and g_Game_IsNet
then
5038 MH_SEND_Effect(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2)-32,
5039 FObj
.Y
+PLAYER_RECT
.Y
+(PLAYER_RECT
.Height
div 2)-32, 0,
5046 function nonz(a
: Single): Single;
5054 function TPlayer
.refreshCorpse(): Boolean;
5060 if FAlive
or FSpectator
then
5062 if (gCorpses
= nil) or (Length(gCorpses
) = 0) then
5064 for i
:= 0 to High(gCorpses
) do
5065 if gCorpses
[i
] <> nil then
5066 if gCorpses
[i
].FPlayerUID
= FUID
then
5074 function TPlayer
.getCameraObj(): TObj
;
5076 if (not FAlive
) and (not FSpectator
) and
5077 (FCorpse
>= 0) and (FCorpse
< Length(gCorpses
)) and
5078 (gCorpses
[FCorpse
] <> nil) and (gCorpses
[FCorpse
].FPlayerUID
= FUID
) then
5080 gCorpses
[FCorpse
].FObj
.slopeUpLeft
:= FObj
.slopeUpLeft
;
5081 Result
:= gCorpses
[FCorpse
].FObj
;
5089 procedure TPlayer
.PreUpdate();
5091 FSlopeOld
:= FObj
.slopeUpLeft
;
5092 FIncCamOld
:= FIncCam
;
5093 FObj
.oldX
:= FObj
.X
;
5094 FObj
.oldY
:= FObj
.Y
;
5097 procedure TPlayer
.Update();
5100 i
, ii
, wx
, wy
, xd
, yd
, k
: Integer;
5101 blockmon
, headwater
, dospawn
: Boolean;
5106 NetServer
:= g_Game_IsNet
and g_Game_IsServer
;
5107 AnyServer
:= g_Game_IsServer
;
5109 if g_Game_IsClient
and (NetInterpLevel
> 0) then
5110 DoLerp(NetInterpLevel
+ 1)
5116 if (FClientID
>= 0) and (NetClients
[FClientID
].Peer
<> nil) then
5118 FPing
:= NetClients
[FClientID
].Peer
^.lastRoundTripTime
;
5119 if NetClients
[FClientID
].Peer
^.packetsSent
> 0 then
5120 FLoss
:= Round(100*NetClients
[FClientID
].Peer
^.packetsLost
/NetClients
[FClientID
].Peer
^.packetsSent
)
5129 if FAlive
and (FPunchAnim
<> nil) then
5130 FPunchAnim
.Update();
5132 if FAlive
and (gFly
or FJetpack
) then
5135 if FDirection
= TDirection
.D_LEFT
then
5140 if FAlive
and (not FGhost
) then
5142 if FKeys
[KEY_UP
].Pressed
then
5144 if FKeys
[KEY_DOWN
].Pressed
then
5148 if (not (FKeys
[KEY_UP
].Pressed
or FKeys
[KEY_DOWN
].Pressed
)) and
5151 i
:= g_basic
.Sign(FIncCam
);
5152 FIncCam
:= Abs(FIncCam
);
5153 DecMin(FIncCam
, 5, 0);
5154 FIncCam
:= FIncCam
*i
;
5157 if gTime
mod (GAME_TICK
*2) <> 0 then
5159 if (FObj
.Vel
.X
= 0) and FAlive
then
5161 if FKeys
[KEY_LEFT
].Pressed
then
5162 Run(TDirection
.D_LEFT
);
5163 if FKeys
[KEY_RIGHT
].Pressed
then
5164 Run(TDirection
.D_RIGHT
);
5169 g_Obj_Move(@FObj
, True, True, True);
5170 positionChanged(); // this updates spatial accelerators
5176 FActionChanged
:= False;
5180 // Let alive player do some actions
5181 if FKeys
[KEY_LEFT
].Pressed
then Run(TDirection
.D_LEFT
);
5182 if FKeys
[KEY_RIGHT
].Pressed
then Run(TDirection
.D_RIGHT
);
5183 if FKeys
[KEY_FIRE
].Pressed
and AnyServer
then Fire()
5189 if NetServer
then MH_SEND_PlayerStats(FUID
);
5192 if FKeys
[KEY_OPEN
].Pressed
and AnyServer
then Use();
5193 if FKeys
[KEY_JUMP
].Pressed
then Jump()
5196 if AnyServer
and FJetpack
then
5200 if NetServer
then MH_SEND_PlayerStats(FUID
);
5202 FCanJetpack
:= True;
5209 for k
:= Low(FKeys
) to KEY_CHAT
-1 do
5211 if FKeys
[k
].Pressed
then
5219 if gGameSettings
.GameType
in [GT_CUSTOM
, GT_SERVER
, GT_CLIENT
] then
5222 if (FTime
[T_RESPAWN
] <= gTime
) and
5223 gGameOn
and (not FAlive
) then
5225 if (g_Player_GetCount() > 1) then
5229 gExit
:= EXIT_RESTART
;
5234 // Dead spectator actions
5237 if FKeys
[KEY_OPEN
].Pressed
and AnyServer
then Fire();
5238 if FKeys
[KEY_FIRE
].Pressed
and AnyServer
then
5242 if (FSpectatePlayer
>= High(gPlayers
)) then
5243 FSpectatePlayer
:= -1
5247 for I
:= FSpectatePlayer
+ 1 to High(gPlayers
) do
5248 if gPlayers
[I
] <> nil then
5249 if gPlayers
[I
].alive
then
5250 if gPlayers
[I
].UID
<> FUID
then
5252 FSpectatePlayer
:= I
;
5257 if not SetSpect
then FSpectatePlayer
:= -1;
5268 if FKeys
[KEY_UP
].Pressed
or FKeys
[KEY_JUMP
].Pressed
then
5270 FYTo
:= FObj
.Y
- 32;
5271 FSpectatePlayer
:= -1;
5273 if FKeys
[KEY_DOWN
].Pressed
then
5275 FYTo
:= FObj
.Y
+ 32;
5276 FSpectatePlayer
:= -1;
5278 if FKeys
[KEY_LEFT
].Pressed
then
5280 FXTo
:= FObj
.X
- 32;
5281 FSpectatePlayer
:= -1;
5283 if FKeys
[KEY_RIGHT
].Pressed
then
5285 FXTo
:= FObj
.X
+ 32;
5286 FSpectatePlayer
:= -1;
5289 if (FXTo
< -64) then
5291 else if (FXTo
> gMapInfo
.Width
+ 32) then
5292 FXTo
:= gMapInfo
.Width
+ 32;
5293 if (FYTo
< -72) then
5295 else if (FYTo
> gMapInfo
.Height
+ 32) then
5296 FYTo
:= gMapInfo
.Height
+ 32;
5301 g_Obj_Move(@FObj
, True, True, True);
5302 positionChanged(); // this updates spatial accelerators
5309 if (FSpectatePlayer
<= High(gPlayers
)) and (FSpectatePlayer
>= 0) then
5310 if gPlayers
[FSpectatePlayer
] <> nil then
5311 if gPlayers
[FSpectatePlayer
].alive
then
5313 FXTo
:= gPlayers
[FSpectatePlayer
].GameX
;
5314 FYTo
:= gPlayers
[FSpectatePlayer
].GameY
;
5318 blockmon
:= g_Map_CollidePanel(FObj
.X
+PLAYER_HEADRECT
.X
, FObj
.Y
+PLAYER_HEADRECT
.Y
,
5319 PLAYER_HEADRECT
.Width
, PLAYER_HEADRECT
.Height
,
5320 PANEL_BLOCKMON
, True);
5321 headwater
:= HeadInLiquid(0, 0);
5323 // Ñîïðîòèâëåíèå âîçäóõà:
5324 if (not FAlive
) or not (FKeys
[KEY_LEFT
].Pressed
or FKeys
[KEY_RIGHT
].Pressed
) then
5325 if FObj
.Vel
.X
<> 0 then
5326 FObj
.Vel
.X
:= z_dec(FObj
.Vel
.X
, 1);
5328 if (FLastHit
= HIT_TRAP
) and (FPain
> 90) then FPain
:= 90;
5329 DecMin(FPain
, 5, 0);
5330 DecMin(FPickup
, 1, 0);
5332 if FAlive
and (FObj
.Y
> Integer(gMapInfo
.Height
)+128) and AnyServer
then
5334 // Îáíóëèòü äåéñòâèÿ ïðèìî÷åê, ÷òîáû ôîí ïðîïàë
5335 FMegaRulez
[MR_SUIT
] := 0;
5336 FMegaRulez
[MR_INVUL
] := 0;
5337 FMegaRulez
[MR_INVIS
] := 0;
5338 Kill(K_FALLKILL
, 0, HIT_FALL
);
5345 if FCurrWeap
= WEAPON_SAW
then
5346 if not (FSawSound
.IsPlaying() or FSawSoundHit
.IsPlaying() or
5347 FSawSoundSelect
.IsPlaying()) then
5348 FSawSoundIdle
.PlayAt(FObj
.X
, FObj
.Y
);
5351 if (not FJetSoundFly
.IsPlaying()) and (not FJetSoundOn
.IsPlaying()) and
5352 (not FJetSoundOff
.IsPlaying()) then
5354 FJetSoundFly
.SetPosition(0);
5355 FJetSoundFly
.PlayAt(FObj
.X
, FObj
.Y
);
5358 for b
:= WP_FIRST
to WP_LAST
do
5359 if FReloading
[b
] > 0 then
5365 if FShellTimer
> -1 then
5366 if FShellTimer
= 0 then
5368 if FShellType
= SHELL_SHELL
then
5369 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
5370 GameVelX
, GameVelY
-2, SHELL_SHELL
)
5371 else if FShellType
= SHELL_DBLSHELL
then
5373 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
5374 GameVelX
+1, GameVelY
-2, SHELL_SHELL
);
5375 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
5376 GameVelX
-1, GameVelY
-2, SHELL_SHELL
);
5379 end else Dec(FShellTimer
);
5381 if (FBFGFireCounter
> -1) then
5382 if FBFGFireCounter
= 0 then
5386 wx
:= FObj
.X
+WEAPONPOINT
[FDirection
].X
;
5387 wy
:= FObj
.Y
+WEAPONPOINT
[FDirection
].Y
;
5388 xd
:= wx
+IfThen(FDirection
= TDirection
.D_LEFT
, -30, 30);
5389 yd
:= wy
+firediry();
5390 g_Weapon_bfgshot(wx
, wy
, xd
, yd
, FUID
);
5391 if NetServer
then MH_SEND_PlayerFire(FUID
, WEAPON_BFG
, wx
, wy
, xd
, yd
);
5392 if (FAngle
= 0) or (FAngle
= 180) then SetAction(A_ATTACK
)
5393 else if (FAngle
= ANGLE_LEFTDOWN
) or (FAngle
= ANGLE_RIGHTDOWN
) then SetAction(A_ATTACKDOWN
)
5394 else if (FAngle
= ANGLE_LEFTUP
) or (FAngle
= ANGLE_RIGHTUP
) then SetAction(A_ATTACKUP
);
5397 FReloading
[WEAPON_BFG
] := WEAPON_RELOAD
[WEAPON_BFG
];
5398 FBFGFireCounter
:= -1;
5401 FBFGFireCounter
:= 0
5403 Dec(FBFGFireCounter
);
5405 if (FMegaRulez
[MR_SUIT
] < gTime
) and AnyServer
then
5407 b
:= g_GetAcidHit(FObj
.X
+PLAYER_RECT
.X
, FObj
.Y
+PLAYER_RECT
.Y
, PLAYER_RECT
.Width
, PLAYER_RECT
.Height
);
5409 if (b
> 0) and (gTime
mod (15*GAME_TICK
) = 0) then Damage(b
, 0, 0, 0, HIT_ACID
);
5412 if (headwater
or blockmon
) then
5418 if AnyServer
then Damage(10, 0, 0, 0, HIT_WATER
);
5421 else if (FAir
mod 31 = 0) and not blockmon
then
5422 g_Game_Effect_Bubbles(FObj
.X
+PLAYER_RECT
.X
+(PLAYER_RECT
.Width
div 2),
5423 FObj
.Y
+PLAYER_RECT
.Y
-4, 5+Random(6), 8, 4);
5424 end else if FAir
< AIR_DEF
then
5427 if FFireTime
> 0 then
5429 if BodyInLiquid(0, 0) then
5434 else if FMegaRulez
[MR_SUIT
] >= gTime
then
5436 if FMegaRulez
[MR_SUIT
] = gTime
then
5443 if FFirePainTime
<= 0 then
5445 if g_Game_IsServer
then
5446 Damage(2, FFireAttacker
, 0, 0, HIT_FLAME
);
5447 FFirePainTime
:= 12 - FFireTime
div 12;
5449 FFirePainTime
:= FFirePainTime
- 1;
5450 FFireTime
:= FFireTime
- 1;
5451 if ((FFireTime
mod 33) = 0) and (FMegaRulez
[MR_INVUL
] < gTime
) then
5452 FModel
.PlaySound(MODELSOUND_PAIN
, 1, FObj
.X
, FObj
.Y
);
5453 if (FFireTime
= 0) and g_Game_IsNet
and g_Game_IsServer
then
5454 MH_SEND_PlayerStats(FUID
);
5458 if FDamageBuffer
> 0 then
5460 if FDamageBuffer
>= 9 then
5464 if FDamageBuffer
< 30 then i
:= 9
5465 else if FDamageBuffer
< 100 then i
:= 18
5469 ii
:= Round(FDamageBuffer
*FHealth
/ nonz(FArmor
*(3/4)+FHealth
));
5470 FArmor
:= FArmor
-(FDamageBuffer
-ii
);
5471 FHealth
:= FHealth
-ii
;
5474 FHealth
:= FHealth
+FArmor
;
5479 if FHealth
<= 0 then
5480 if FHealth
> -30 then Kill(K_SIMPLEKILL
, FLastSpawnerUID
, FLastHit
)
5481 else if FHealth
> -50 then Kill(K_HARDKILL
, FLastSpawnerUID
, FLastHit
)
5482 else Kill(K_EXTRAHARDKILL
, FLastSpawnerUID
, FLastHit
);
5484 if FAlive
and ((FLastHit
<> HIT_FLAME
) or (FFireTime
<= 0)) then
5486 if FDamageBuffer
<= 20 then FModel
.PlaySound(MODELSOUND_PAIN
, 1, FObj
.X
, FObj
.Y
)
5487 else if FDamageBuffer
<= 55 then FModel
.PlaySound(MODELSOUND_PAIN
, 2, FObj
.X
, FObj
.Y
)
5488 else if FDamageBuffer
<= 120 then FModel
.PlaySound(MODELSOUND_PAIN
, 3, FObj
.X
, FObj
.Y
)
5489 else FModel
.PlaySound(MODELSOUND_PAIN
, 4, FObj
.X
, FObj
.Y
);
5496 end; // if FAlive then ...
5498 if (FActionAnim
= A_PAIN
) and (FModel
.Animation
<> A_PAIN
) then
5500 FModel
.ChangeAnimation(FActionAnim
, FActionForce
);
5501 FModel
.GetCurrentAnimation
.MinLength
:= i
;
5502 FModel
.GetCurrentAnimationMask
.MinLength
:= i
;
5503 end else FModel
.ChangeAnimation(FActionAnim
, FActionForce
and (FModel
.Animation
<> A_STAND
));
5505 if (FModel
.GetCurrentAnimation
.Played
or ((not FActionChanged
) and (FModel
.Animation
= A_WALK
)))
5506 then SetAction(A_STAND
, True);
5508 if not ((FModel
.Animation
= A_WALK
) and (Abs(FObj
.Vel
.X
) < 4) and not FModel
.Fire
) then FModel
.Update
;
5510 for b
:= Low(FKeys
) to High(FKeys
) do
5511 if FKeys
[b
].Time
= 0 then FKeys
[b
].Pressed
:= False else Dec(FKeys
[b
].Time
);
5515 procedure TPlayer
.getMapBox (out x
, y
, w
, h
: Integer); inline;
5517 x
:= FObj
.X
+PLAYER_RECT
.X
;
5518 y
:= FObj
.Y
+PLAYER_RECT
.Y
;
5519 w
:= PLAYER_RECT
.Width
;
5520 h
:= PLAYER_RECT
.Height
;
5524 procedure TPlayer
.moveBy (dx
, dy
: Integer); inline;
5526 if (dx
<> 0) or (dy
<> 0) then
5535 function TPlayer
.Collide(X
, Y
: Integer; Width
, Height
: Word): Boolean;
5537 Result
:= g_Collide(FObj
.X
+PLAYER_RECT
.X
,
5538 FObj
.Y
+PLAYER_RECT
.Y
,
5545 function TPlayer
.Collide(Panel
: TPanel
): Boolean;
5547 Result
:= g_Collide(FObj
.X
+PLAYER_RECT
.X
,
5548 FObj
.Y
+PLAYER_RECT
.Y
,
5552 Panel
.Width
, Panel
.Height
);
5555 function TPlayer
.Collide(X
, Y
: Integer): Boolean;
5557 X
:= X
-FObj
.X
-PLAYER_RECT
.X
;
5558 Y
:= Y
-FObj
.Y
-PLAYER_RECT
.Y
;
5559 Result
:= (x
>= 0) and (x
<= PLAYER_RECT
.Width
) and
5560 (y
>= 0) and (y
<= PLAYER_RECT
.Height
);
5563 function g_Player_ExistingName(Name
: string): Boolean;
5569 if gPlayers
= nil then Exit
;
5571 for a
:= 0 to High(gPlayers
) do
5572 if gPlayers
[a
] <> nil then
5573 if LowerCase(Name
) = LowerCase(gPlayers
[a
].FName
) then
5580 procedure TPlayer
.SetDirection(Direction
: TDirection
);
5584 d
:= FModel
.Direction
;
5586 FModel
.Direction
:= Direction
;
5587 if d
<> Direction
then FModel
.ChangeAnimation(FModel
.Animation
, True);
5589 FDirection
:= Direction
;
5592 function TPlayer
.GetKeys(): Byte;
5596 if R_KEY_RED
in FRulez
then Result
:= KEY_RED
;
5597 if R_KEY_GREEN
in FRulez
then Result
:= Result
or KEY_GREEN
;
5598 if R_KEY_BLUE
in FRulez
then Result
:= Result
or KEY_BLUE
;
5600 if FTeam
= TEAM_RED
then Result
:= Result
or KEY_REDTEAM
;
5601 if FTeam
= TEAM_BLUE
then Result
:= Result
or KEY_BLUETEAM
;
5604 procedure TPlayer
.Use();
5608 if FTime
[T_USE
] > gTime
then Exit
;
5610 g_Triggers_PressR(FObj
.X
+PLAYER_RECT
.X
, FObj
.Y
+PLAYER_RECT
.Y
, PLAYER_RECT
.Width
,
5611 PLAYER_RECT
.Height
, FUID
, ACTIVATE_PLAYERPRESS
);
5613 for a
:= 0 to High(gPlayers
) do
5614 if (gPlayers
[a
] <> nil) and (gPlayers
[a
] <> Self
) and
5615 gPlayers
[a
].alive
and SameTeam(FUID
, gPlayers
[a
].FUID
) and
5616 g_Obj_Collide(FObj
.X
+FObj
.Rect
.X
, FObj
.Y
+FObj
.Rect
.Y
,
5617 FObj
.Rect
.Width
, FObj
.Rect
.Height
, @gPlayers
[a
].FObj
) then
5619 gPlayers
[a
].Touch();
5620 if g_Game_IsNet
and g_Game_IsServer
then
5621 MH_SEND_GameEvent(NET_EV_PLAYER_TOUCH
, gPlayers
[a
].FUID
);
5624 FTime
[T_USE
] := gTime
+120;
5627 procedure TPlayer
.NetFire(Wpn
: Byte; X
, Y
, AX
, AY
: Integer; WID
: Integer = -1);
5630 visible
: Boolean = True;
5631 WX
, WY
, XD
, YD
: Integer;
5643 if R_BERSERK
in FRulez
then
5645 //g_Weapon_punch(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y, 75, FUID);
5646 locobj
.X
:= FObj
.X
+FObj
.Rect
.X
;
5647 locobj
.Y
:= FObj
.Y
+FObj
.Rect
.Y
;
5650 locobj
.rect
.Width
:= 39;
5651 locobj
.rect
.Height
:= 52;
5652 locobj
.Vel
.X
:= (xd
-wx
) div 2;
5653 locobj
.Vel
.Y
:= (yd
-wy
) div 2;
5654 locobj
.Accel
.X
:= xd
-wx
;
5655 locobj
.Accel
.y
:= yd
-wy
;
5657 if g_Weapon_Hit(@locobj
, 50, FUID
, HIT_SOME
) <> 0 then
5658 g_Sound_PlayExAt('SOUND_WEAPON_HITBERSERK', FObj
.X
, FObj
.Y
)
5660 g_Sound_PlayExAt('SOUND_WEAPON_MISSBERSERK', FObj
.X
, FObj
.Y
);
5664 FPain
:= min(FPain
+ 25, 50);
5666 g_Weapon_punch(FObj
.X
+FObj
.Rect
.X
, FObj
.Y
+FObj
.Rect
.Y
, 3, FUID
);
5671 if g_Weapon_chainsaw(FObj
.X
+FObj
.Rect
.X
, FObj
.Y
+FObj
.Rect
.Y
,
5672 IfThen(gGameSettings
.GameMode
in [GM_DM
, GM_TDM
, GM_CTF
], 9, 3), FUID
) <> 0 then
5674 FSawSoundSelect
.Stop();
5676 FSawSoundHit
.PlayAt(FObj
.X
, FObj
.Y
);
5678 else if not FSawSoundHit
.IsPlaying() then
5680 FSawSoundSelect
.Stop();
5681 FSawSound
.PlayAt(FObj
.X
, FObj
.Y
);
5687 g_Sound_PlayExAt('SOUND_WEAPON_FIREPISTOL', GameX
, Gamey
);
5688 FFireAngle
:= FAngle
;
5689 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
5690 GameVelX
, GameVelY
-2, SHELL_BULLET
);
5695 g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN', Gamex
, Gamey
);
5696 FFireAngle
:= FAngle
;
5698 FShellType
:= SHELL_SHELL
;
5703 g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN2', Gamex
, Gamey
);
5704 FFireAngle
:= FAngle
;
5706 FShellType
:= SHELL_DBLSHELL
;
5711 g_Sound_PlayExAt('SOUND_WEAPON_FIRECGUN', Gamex
, Gamey
);
5712 FFireAngle
:= FAngle
;
5713 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
5714 GameVelX
, GameVelY
-2, SHELL_BULLET
);
5717 WEAPON_ROCKETLAUNCHER
:
5719 g_Weapon_Rocket(wx
, wy
, xd
, yd
, FUID
, WID
);
5720 FFireAngle
:= FAngle
;
5725 g_Weapon_Plasma(wx
, wy
, xd
, yd
, FUID
, WID
);
5726 FFireAngle
:= FAngle
;
5731 g_Weapon_BFGShot(wx
, wy
, xd
, yd
, FUID
, WID
);
5732 FFireAngle
:= FAngle
;
5735 WEAPON_SUPERPULEMET
:
5737 g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN', Gamex
, Gamey
);
5738 FFireAngle
:= FAngle
;
5739 g_Player_CreateShell(GameX
+PLAYER_RECT_CX
, GameY
+PLAYER_RECT_CX
,
5740 GameVelX
, GameVelY
-2, SHELL_SHELL
);
5743 WEAPON_FLAMETHROWER
:
5745 g_Weapon_flame(wx
, wy
, xd
, yd
, FUID
, WID
);
5747 FFireAngle
:= FAngle
;
5751 if not visible
then Exit
;
5753 if (FAngle
= 0) or (FAngle
= 180) then SetAction(A_ATTACK
)
5754 else if (FAngle
= ANGLE_LEFTDOWN
) or (FAngle
= ANGLE_RIGHTDOWN
) then SetAction(A_ATTACKDOWN
)
5755 else if (FAngle
= ANGLE_LEFTUP
) or (FAngle
= ANGLE_RIGHTUP
) then SetAction(A_ATTACKUP
);
5758 procedure TPlayer
.DoLerp(Level
: Integer = 2);
5760 if FObj
.X
<> FXTo
then FObj
.X
:= Lerp(FObj
.X
, FXTo
, Level
);
5761 if FObj
.Y
<> FYTo
then FObj
.Y
:= Lerp(FObj
.Y
, FYTo
, Level
);
5764 procedure TPlayer
.SetLerp(XTo
, YTo
: Integer);
5770 if FJustTeleported
or (NetInterpLevel
< 1) then
5774 if FJustTeleported
then
5776 FObj
.oldX
:= FObj
.X
;
5777 FObj
.oldY
:= FObj
.Y
;
5782 AX
:= Abs(FXTo
- FObj
.X
);
5783 AY
:= Abs(FYTo
- FObj
.Y
);
5784 if (AX
> 32) or (AX
<= NetInterpLevel
) then
5786 if (AY
> 32) or (AY
<= NetInterpLevel
) then
5791 function TPlayer
.FullInLift(XInc
, YInc
: Integer): Integer;
5793 if g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
+XInc
, FObj
.Y
+PLAYER_RECT
.Y
+YInc
,
5794 PLAYER_RECT
.Width
, PLAYER_RECT
.Height
-8,
5795 PANEL_LIFTUP
, False) then Result
:= -1
5797 if g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
+XInc
, FObj
.Y
+PLAYER_RECT
.Y
+YInc
,
5798 PLAYER_RECT
.Width
, PLAYER_RECT
.Height
-8,
5799 PANEL_LIFTDOWN
, False) then Result
:= 1
5803 function TPlayer
.GetFlag(Flag
: Byte): Boolean;
5810 if Flag
= FLAG_NONE
then
5813 if not g_Game_IsServer
then Exit
;
5815 // Ïðèíåñ ÷óæîé ôëàã íà ñâîþ áàçó:
5816 if (Flag
= FTeam
) and
5817 (gFlags
[Flag
].State
= FLAG_STATE_NORMAL
) and
5818 (FFlag
<> FLAG_NONE
) then
5820 if FFlag
= FLAG_RED
then
5821 s
:= _lc
[I_PLAYER_FLAG_RED
]
5823 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
5825 evtype
:= FLAG_STATE_SCORED
;
5827 ts
:= Format('%.4d', [gFlags
[FFlag
].CaptureTime
]);
5828 Insert('.', ts
, Length(ts
) + 1 - 3);
5829 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_CAPTURE
], [FName
, s
, ts
]), True);
5831 g_Map_ResetFlag(FFlag
);
5832 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_CAPTURE
], [AnsiUpperCase(s
)]), 144);
5834 if ((Self
= gPlayer1
) or (Self
= gPlayer2
)
5835 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= FTeam
))
5836 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= FTeam
))) then
5841 if not sound_cap_flag
[a
].IsPlaying() then
5842 sound_cap_flag
[a
].Play();
5844 gTeamStat
[FTeam
].Score
+= 1;
5847 if g_Game_IsNet
then
5849 MH_SEND_FlagEvent(evtype
, FFlag
, FUID
, False);
5853 gFlags
[FFlag
].CaptureTime
:= 0;
5858 // Ïîäîáðàë ñâîé ôëàã - âåðíóë åãî íà áàçó:
5859 if (Flag
= FTeam
) and
5860 (gFlags
[Flag
].State
= FLAG_STATE_DROPPED
) then
5862 if Flag
= FLAG_RED
then
5863 s
:= _lc
[I_PLAYER_FLAG_RED
]
5865 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
5867 evtype
:= FLAG_STATE_RETURNED
;
5868 gFlags
[Flag
].CaptureTime
:= 0;
5870 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_RETURN
], [FName
, s
]), True);
5872 g_Map_ResetFlag(Flag
);
5873 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_RETURN
], [AnsiUpperCase(s
)]), 144);
5875 if ((Self
= gPlayer1
) or (Self
= gPlayer2
)
5876 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= FTeam
))
5877 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= FTeam
))) then
5882 if not sound_ret_flag
[a
].IsPlaying() then
5883 sound_ret_flag
[a
].Play();
5886 if g_Game_IsNet
then
5888 MH_SEND_FlagEvent(evtype
, Flag
, FUID
, False);
5894 // Ïîäîáðàë ÷óæîé ôëàã:
5895 if (Flag
<> FTeam
) and (FTime
[T_FLAGCAP
] <= gTime
) then
5899 if Flag
= FLAG_RED
then
5900 s
:= _lc
[I_PLAYER_FLAG_RED
]
5902 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
5904 evtype
:= FLAG_STATE_CAPTURED
;
5906 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_GET
], [FName
, s
]), True);
5908 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_GET
], [AnsiUpperCase(s
)]), 144);
5910 gFlags
[Flag
].State
:= FLAG_STATE_CAPTURED
;
5912 if ((Self
= gPlayer1
) or (Self
= gPlayer2
)
5913 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= FTeam
))
5914 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= FTeam
))) then
5919 if not sound_get_flag
[a
].IsPlaying() then
5920 sound_get_flag
[a
].Play();
5923 if g_Game_IsNet
then
5925 MH_SEND_FlagEvent(evtype
, Flag
, FUID
, False);
5931 procedure TPlayer
.SetFlag(Flag
: Byte);
5934 if FModel
<> nil then
5935 FModel
.SetFlag(FFlag
);
5938 function TPlayer
.TryDropFlag(): Boolean;
5940 if LongBool(gGameSettings
.Options
and GAME_OPTION_ALLOWDROPFLAG
) then
5941 Result
:= DropFlag(False, LongBool(gGameSettings
.Options
and GAME_OPTION_THROWFLAG
))
5946 function TPlayer
.DropFlag(Silent
: Boolean = True; DoThrow
: Boolean = False): Boolean;
5953 if (not g_Game_IsServer
) or (FFlag
= FLAG_NONE
) then
5955 FTime
[T_FLAGCAP
] := gTime
+ 2000;
5956 with gFlags
[FFlag
] do
5960 Direction
:= FDirection
;
5961 State
:= FLAG_STATE_DROPPED
;
5965 xv
:= FObj
.Vel
.X
+ IfThen(Direction
= TDirection
.D_RIGHT
, 10, -10);
5966 yv
:= FObj
.Vel
.Y
- 2;
5970 xv
:= (FObj
.Vel
.X
div 2);
5971 yv
:= (FObj
.Vel
.Y
div 2) - 2;
5973 g_Obj_Push(@Obj
, xv
, yv
);
5975 positionChanged(); // this updates spatial accelerators
5977 if FFlag
= FLAG_RED
then
5978 s
:= _lc
[I_PLAYER_FLAG_RED
]
5980 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
5982 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_DROP
], [FName
, s
]), True);
5983 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_DROP
], [AnsiUpperCase(s
)]), 144);
5985 if ((Self
= gPlayer1
) or (Self
= gPlayer2
)
5986 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= FTeam
))
5987 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= FTeam
))) then
5992 if (not Silent
) and (not sound_lost_flag
[a
].IsPlaying()) then
5993 sound_lost_flag
[a
].Play();
5995 if g_Game_IsNet
then
5996 MH_SEND_FlagEvent(FLAG_STATE_DROPPED
, Flag
, FUID
, False);
6002 procedure TPlayer
.GetSecret();
6004 if (self
= gPlayer1
) or (self
= gPlayer2
) then
6006 g_Console_Add(Format(_lc
[I_PLAYER_SECRET
], [FName
]), True);
6007 g_Sound_PlayEx('SOUND_GAME_SECRET');
6012 procedure TPlayer
.PressKey(Key
: Byte; Time
: Word = 1);
6014 Assert(Key
<= High(FKeys
));
6016 FKeys
[Key
].Pressed
:= True;
6017 FKeys
[Key
].Time
:= Time
;
6020 function TPlayer
.IsKeyPressed(K
: Byte): Boolean;
6022 Result
:= FKeys
[K
].Pressed
;
6025 procedure TPlayer
.ReleaseKeys();
6029 for a
:= Low(FKeys
) to High(FKeys
) do
6031 FKeys
[a
].Pressed
:= False;
6036 procedure TPlayer
.OnDamage(Angle
: SmallInt);
6040 function TPlayer
.firediry(): Integer;
6042 if FKeys
[KEY_UP
].Pressed
then Result
:= -42
6043 else if FKeys
[KEY_DOWN
].Pressed
then Result
:= 19
6047 procedure TPlayer
.RememberState();
6050 SavedState
: TPlayerSavedState
;
6052 SavedState
.Health
:= FHealth
;
6053 SavedState
.Armor
:= FArmor
;
6054 SavedState
.Air
:= FAir
;
6055 SavedState
.JetFuel
:= FJetFuel
;
6056 SavedState
.CurrWeap
:= FCurrWeap
;
6057 SavedState
.NextWeap
:= FNextWeap
;
6058 SavedState
.NextWeapDelay
:= FNextWeapDelay
;
6059 for i
:= Low(FWeapon
) to High(FWeapon
) do
6060 SavedState
.Weapon
[i
] := FWeapon
[i
];
6061 for i
:= Low(FAmmo
) to High(FAmmo
) do
6062 SavedState
.Ammo
[i
] := FAmmo
[i
];
6063 for i
:= Low(FMaxAmmo
) to High(FMaxAmmo
) do
6064 SavedState
.MaxAmmo
[i
] := FMaxAmmo
[i
];
6065 SavedState
.Rulez
:= FRulez
- [R_KEY_RED
, R_KEY_GREEN
, R_KEY_BLUE
];
6067 FSavedStateNum
:= -1;
6068 for i
:= Low(SavedStates
) to High(SavedStates
) do
6069 if not SavedStates
[i
].Used
then
6071 FSavedStateNum
:= i
;
6074 if FSavedStateNum
< 0 then
6076 SetLength(SavedStates
, Length(SavedStates
) + 1);
6077 FSavedStateNum
:= High(SavedStates
);
6080 SavedState
.Used
:= True;
6081 SavedStates
[FSavedStateNum
] := SavedState
;
6084 procedure TPlayer
.RecallState();
6087 SavedState
: TPlayerSavedState
;
6089 if(FSavedStateNum
< 0) or (FSavedStateNum
> High(SavedStates
)) then
6092 SavedState
:= SavedStates
[FSavedStateNum
];
6093 SavedStates
[FSavedStateNum
].Used
:= False;
6094 FSavedStateNum
:= -1;
6096 FHealth
:= SavedState
.Health
;
6097 FArmor
:= SavedState
.Armor
;
6098 FAir
:= SavedState
.Air
;
6099 FJetFuel
:= SavedState
.JetFuel
;
6100 FCurrWeap
:= SavedState
.CurrWeap
;
6101 FNextWeap
:= SavedState
.NextWeap
;
6102 FNextWeapDelay
:= SavedState
.NextWeapDelay
;
6103 for i
:= Low(FWeapon
) to High(FWeapon
) do
6104 FWeapon
[i
] := SavedState
.Weapon
[i
];
6105 for i
:= Low(FAmmo
) to High(FAmmo
) do
6106 FAmmo
[i
] := SavedState
.Ammo
[i
];
6107 for i
:= Low(FMaxAmmo
) to High(FMaxAmmo
) do
6108 FMaxAmmo
[i
] := SavedState
.MaxAmmo
[i
];
6109 FRulez
:= SavedState
.Rulez
;
6111 if gGameSettings
.GameType
= GT_SERVER
then
6112 MH_SEND_PlayerStats(FUID
);
6115 procedure TPlayer
.SaveState (st
: TStream
);
6121 utils
.writeSign(st
, 'PLYR');
6122 utils
.writeInt(st
, Byte(PLR_SAVE_VERSION
)); // version
6124 utils
.writeBool(st
, FIamBot
);
6126 utils
.writeInt(st
, Word(FUID
));
6128 utils
.writeStr(st
, FName
);
6130 utils
.writeInt(st
, Byte(FTeam
));
6132 utils
.writeBool(st
, FAlive
);
6133 // Èçðàñõîäîâàë ëè âñå æèçíè
6134 utils
.writeBool(st
, FNoRespawn
);
6136 if FDirection
= TDirection
.D_LEFT
then b
:= 1 else b
:= 2; // D_RIGHT
6137 utils
.writeInt(st
, Byte(b
));
6139 utils
.writeInt(st
, LongInt(FHealth
));
6140 // Êîýôôèöèåíò èíâàëèäíîñòè
6141 utils
.writeInt(st
, LongInt(FHandicap
));
6143 utils
.writeInt(st
, Byte(FLives
));
6145 utils
.writeInt(st
, LongInt(FArmor
));
6147 utils
.writeInt(st
, LongInt(FAir
));
6149 utils
.writeInt(st
, LongInt(FJetFuel
));
6151 utils
.writeInt(st
, LongInt(FPain
));
6153 utils
.writeInt(st
, LongInt(FKills
));
6155 utils
.writeInt(st
, LongInt(FMonsterKills
));
6157 utils
.writeInt(st
, LongInt(FFrags
));
6159 utils
.writeInt(st
, Byte(FFragCombo
));
6160 // Âðåìÿ ïîñëåäíåãî ôðàãà
6161 utils
.writeInt(st
, LongWord(FLastFrag
));
6163 utils
.writeInt(st
, LongInt(FDeath
));
6165 utils
.writeInt(st
, Byte(FFlag
));
6167 utils
.writeInt(st
, LongInt(FSecrets
));
6169 utils
.writeInt(st
, Byte(FCurrWeap
));
6171 utils
.writeInt(st
, Word(FNextWeap
));
6173 utils
.writeInt(st
, Byte(FNextWeapDelay
));
6174 // Âðåìÿ çàðÿäêè BFG
6175 utils
.writeInt(st
, SmallInt(FBFGFireCounter
));
6177 utils
.writeInt(st
, LongInt(FDamageBuffer
));
6178 // Ïîñëåäíèé óäàðèâøèé
6179 utils
.writeInt(st
, Word(FLastSpawnerUID
));
6180 // Òèï ïîñëåäíåãî ïîëó÷åííîãî óðîíà
6181 utils
.writeInt(st
, Byte(FLastHit
));
6183 Obj_SaveState(st
, @FObj
);
6184 // Òåêóùåå êîëè÷åñòâî ïàòðîíîâ
6185 for i
:= A_BULLETS
to A_HIGH
do utils
.writeInt(st
, Word(FAmmo
[i
]));
6186 // Ìàêñèìàëüíîå êîëè÷åñòâî ïàòðîíîâ
6187 for i
:= A_BULLETS
to A_HIGH
do utils
.writeInt(st
, Word(FMaxAmmo
[i
]));
6189 for i
:= WP_FIRST
to WP_LAST
do utils
.writeBool(st
, FWeapon
[i
]);
6190 // Âðåìÿ ïåðåçàðÿäêè îðóæèÿ
6191 for i
:= WP_FIRST
to WP_LAST
do utils
.writeInt(st
, Word(FReloading
[i
]));
6193 utils
.writeBool(st
, (R_ITEM_BACKPACK
in FRulez
));
6194 // Íàëè÷èå êðàñíîãî êëþ÷à
6195 utils
.writeBool(st
, (R_KEY_RED
in FRulez
));
6196 // Íàëè÷èå çåëåíîãî êëþ÷à
6197 utils
.writeBool(st
, (R_KEY_GREEN
in FRulez
));
6198 // Íàëè÷èå ñèíåãî êëþ÷à
6199 utils
.writeBool(st
, (R_KEY_BLUE
in FRulez
));
6201 utils
.writeBool(st
, (R_BERSERK
in FRulez
));
6202 // Âðåìÿ äåéñòâèÿ ñïåöèàëüíûõ ïðåäìåòîâ
6203 for i
:= MR_SUIT
to MR_MAX
do utils
.writeInt(st
, LongWord(FMegaRulez
[i
]));
6204 // Âðåìÿ äî ïîâòîðíîãî ðåñïàóíà, ñìåíû îðóæèÿ, èñîëüçîâàíèÿ, çàõâàòà ôëàãà
6205 for i
:= T_RESPAWN
to T_FLAGCAP
do utils
.writeInt(st
, LongWord(FTime
[i
]));
6207 utils
.writeStr(st
, FModel
.Name
);
6209 utils
.writeInt(st
, Byte(FColor
.R
));
6210 utils
.writeInt(st
, Byte(FColor
.G
));
6211 utils
.writeInt(st
, Byte(FColor
.B
));
6215 procedure TPlayer
.LoadState (st
: TStream
);
6224 if not utils
.checkSign(st
, 'PLYR') then raise XStreamError
.Create('invalid player signature');
6225 if (utils
.readByte(st
) <> PLR_SAVE_VERSION
) then raise XStreamError
.Create('invalid player version');
6227 FIamBot
:= utils
.readBool(st
);
6229 FUID
:= utils
.readWord(st
);
6231 str
:= utils
.readStr(st
);
6232 if (self
<> gPlayer1
) and (self
<> gPlayer2
) then FName
:= str
;
6234 FTeam
:= utils
.readByte(st
);
6236 FAlive
:= utils
.readBool(st
);
6237 // Èçðàñõîäîâàë ëè âñå æèçíè
6238 FNoRespawn
:= utils
.readBool(st
);
6240 b
:= utils
.readByte(st
);
6241 if b
= 1 then FDirection
:= TDirection
.D_LEFT
else FDirection
:= TDirection
.D_RIGHT
; // b = 2
6243 FHealth
:= utils
.readLongInt(st
);
6244 // Êîýôôèöèåíò èíâàëèäíîñòè
6245 FHandicap
:= utils
.readLongInt(st
);
6247 FLives
:= utils
.readByte(st
);
6249 FArmor
:= utils
.readLongInt(st
);
6251 FAir
:= utils
.readLongInt(st
);
6253 FJetFuel
:= utils
.readLongInt(st
);
6255 FPain
:= utils
.readLongInt(st
);
6257 FKills
:= utils
.readLongInt(st
);
6259 FMonsterKills
:= utils
.readLongInt(st
);
6261 FFrags
:= utils
.readLongInt(st
);
6263 FFragCombo
:= utils
.readByte(st
);
6264 // Âðåìÿ ïîñëåäíåãî ôðàãà
6265 FLastFrag
:= utils
.readLongWord(st
);
6267 FDeath
:= utils
.readLongInt(st
);
6269 FFlag
:= utils
.readByte(st
);
6271 FSecrets
:= utils
.readLongInt(st
);
6273 FCurrWeap
:= utils
.readByte(st
);
6275 FNextWeap
:= utils
.readWord(st
);
6277 FNextWeapDelay
:= utils
.readByte(st
);
6278 // Âðåìÿ çàðÿäêè BFG
6279 FBFGFireCounter
:= utils
.readSmallInt(st
);
6281 FDamageBuffer
:= utils
.readLongInt(st
);
6282 // Ïîñëåäíèé óäàðèâøèé
6283 FLastSpawnerUID
:= utils
.readWord(st
);
6284 // Òèï ïîñëåäíåãî ïîëó÷åííîãî óðîíà
6285 FLastHit
:= utils
.readByte(st
);
6287 Obj_LoadState(@FObj
, st
);
6288 // Òåêóùåå êîëè÷åñòâî ïàòðîíîâ
6289 for i
:= A_BULLETS
to A_HIGH
do FAmmo
[i
] := utils
.readWord(st
);
6290 // Ìàêñèìàëüíîå êîëè÷åñòâî ïàòðîíîâ
6291 for i
:= A_BULLETS
to A_HIGH
do FMaxAmmo
[i
] := utils
.readWord(st
);
6293 for i
:= WP_FIRST
to WP_LAST
do FWeapon
[i
] := utils
.readBool(st
);
6294 // Âðåìÿ ïåðåçàðÿäêè îðóæèÿ
6295 for i
:= WP_FIRST
to WP_LAST
do FReloading
[i
] := utils
.readWord(st
);
6297 if utils
.readBool(st
) then Include(FRulez
, R_ITEM_BACKPACK
);
6298 // Íàëè÷èå êðàñíîãî êëþ÷à
6299 if utils
.readBool(st
) then Include(FRulez
, R_KEY_RED
);
6300 // Íàëè÷èå çåëåíîãî êëþ÷à
6301 if utils
.readBool(st
) then Include(FRulez
, R_KEY_GREEN
);
6302 // Íàëè÷èå ñèíåãî êëþ÷à
6303 if utils
.readBool(st
) then Include(FRulez
, R_KEY_BLUE
);
6305 if utils
.readBool(st
) then Include(FRulez
, R_BERSERK
);
6306 // Âðåìÿ äåéñòâèÿ ñïåöèàëüíûõ ïðåäìåòîâ
6307 for i
:= MR_SUIT
to MR_MAX
do FMegaRulez
[i
] := utils
.readLongWord(st
);
6308 // Âðåìÿ äî ïîâòîðíîãî ðåñïàóíà, ñìåíû îðóæèÿ, èñîëüçîâàíèÿ, çàõâàòà ôëàãà
6309 for i
:= T_RESPAWN
to T_FLAGCAP
do FTime
[i
] := utils
.readLongWord(st
);
6311 str
:= utils
.readStr(st
);
6313 FColor
.R
:= utils
.readByte(st
);
6314 FColor
.G
:= utils
.readByte(st
);
6315 FColor
.B
:= utils
.readByte(st
);
6316 if (self
= gPlayer1
) then
6318 str
:= gPlayer1Settings
.Model
;
6319 FColor
:= gPlayer1Settings
.Color
;
6321 else if (self
= gPlayer2
) then
6323 str
:= gPlayer2Settings
.Model
;
6324 FColor
:= gPlayer2Settings
.Color
;
6326 // Îáíîâëÿåì ìîäåëü èãðîêà
6328 if gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
] then
6329 FModel
.Color
:= TEAMCOLOR
[FTeam
]
6331 FModel
.Color
:= FColor
;
6335 procedure TPlayer
.AllRulez(Health
: Boolean);
6341 FHealth
:= PLAYER_HP_LIMIT
;
6342 FArmor
:= PLAYER_AP_LIMIT
;
6346 for a
:= WP_FIRST
to WP_LAST
do FWeapon
[a
] := True;
6347 for a
:= A_BULLETS
to A_HIGH
do FAmmo
[a
] := 30000;
6348 FRulez
:= FRulez
+[R_KEY_RED
, R_KEY_GREEN
, R_KEY_BLUE
];
6351 procedure TPlayer
.RestoreHealthArmor();
6353 FHealth
:= PLAYER_HP_LIMIT
;
6354 FArmor
:= PLAYER_AP_LIMIT
;
6357 procedure TPlayer
.FragCombo();
6361 if (gGameSettings
.GameMode
in [GM_COOP
, GM_SINGLE
]) or g_Game_IsClient
then
6363 if gTime
- FLastFrag
< FRAG_COMBO_TIME
then
6365 if FFragCombo
< 5 then
6367 Param
:= FUID
or (FFragCombo
shl 16);
6368 if (FComboEvnt
>= Low(gDelayedEvents
)) and
6369 (FComboEvnt
<= High(gDelayedEvents
)) and
6370 gDelayedEvents
[FComboEvnt
].Pending
and
6371 (gDelayedEvents
[FComboEvnt
].DEType
= DE_KILLCOMBO
) and
6372 (gDelayedEvents
[FComboEvnt
].DENum
and $FFFF = FUID
) then
6374 gDelayedEvents
[FComboEvnt
].Time
:= gTime
+ 500;
6375 gDelayedEvents
[FComboEvnt
].DENum
:= Param
;
6378 FComboEvnt
:= g_Game_DelayEvent(DE_KILLCOMBO
, 500, Param
);
6386 procedure TPlayer
.GiveItem(ItemType
: Byte);
6390 if FMegaRulez
[MR_SUIT
] < gTime
+PLAYER_SUIT_TIME
then
6392 FMegaRulez
[MR_SUIT
] := gTime
+PLAYER_SUIT_TIME
;
6396 if FAir
< AIR_MAX
then
6403 if not (R_BERSERK
in FRulez
) then
6405 Include(FRulez
, R_BERSERK
);
6406 if FBFGFireCounter
< 1 then
6408 FCurrWeap
:= WEAPON_KASTET
;
6410 FModel
.SetWeapon(WEAPON_KASTET
);
6414 FBerserk
:= gTime
+30000;
6416 if FHealth
< PLAYER_HP_SOFT
then
6418 FHealth
:= PLAYER_HP_SOFT
;
6419 FBerserk
:= gTime
+30000;
6424 if FMegaRulez
[MR_INVUL
] < gTime
+PLAYER_INVUL_TIME
then
6426 FMegaRulez
[MR_INVUL
] := gTime
+PLAYER_INVUL_TIME
;
6431 if FMegaRulez
[MR_INVIS
] < gTime
+PLAYER_INVIS_TIME
then
6433 FMegaRulez
[MR_INVIS
] := gTime
+PLAYER_INVIS_TIME
;
6437 if FJetFuel
< JET_MAX
then
6439 FJetFuel
:= JET_MAX
;
6442 ITEM_MEDKIT_SMALL
: if FHealth
< PLAYER_HP_SOFT
then IncMax(FHealth
, 10, PLAYER_HP_SOFT
);
6443 ITEM_MEDKIT_LARGE
: if FHealth
< PLAYER_HP_SOFT
then IncMax(FHealth
, 25, PLAYER_HP_SOFT
);
6445 ITEM_ARMOR_GREEN
: if FArmor
< PLAYER_AP_SOFT
then FArmor
:= PLAYER_AP_SOFT
;
6446 ITEM_ARMOR_BLUE
: if FArmor
< PLAYER_AP_LIMIT
then FArmor
:= PLAYER_AP_LIMIT
;
6448 ITEM_SPHERE_BLUE
: if FHealth
< PLAYER_HP_LIMIT
then IncMax(FHealth
, 100, PLAYER_HP_LIMIT
);
6450 if (FHealth
< PLAYER_HP_LIMIT
) or (FArmor
< PLAYER_AP_LIMIT
) then
6452 if FHealth
< PLAYER_HP_LIMIT
then FHealth
:= PLAYER_HP_LIMIT
;
6453 if FArmor
< PLAYER_AP_LIMIT
then FArmor
:= PLAYER_AP_LIMIT
;
6456 ITEM_WEAPON_SAW
: FWeapon
[WEAPON_SAW
] := True;
6457 ITEM_WEAPON_SHOTGUN1
: FWeapon
[WEAPON_SHOTGUN1
] := True;
6458 ITEM_WEAPON_SHOTGUN2
: FWeapon
[WEAPON_SHOTGUN2
] := True;
6459 ITEM_WEAPON_CHAINGUN
: FWeapon
[WEAPON_CHAINGUN
] := True;
6460 ITEM_WEAPON_ROCKETLAUNCHER
: FWeapon
[WEAPON_ROCKETLAUNCHER
] := True;
6461 ITEM_WEAPON_PLASMA
: FWeapon
[WEAPON_PLASMA
] := True;
6462 ITEM_WEAPON_BFG
: FWeapon
[WEAPON_BFG
] := True;
6463 ITEM_WEAPON_SUPERPULEMET
: FWeapon
[WEAPON_SUPERPULEMET
] := True;
6464 ITEM_WEAPON_FLAMETHROWER
: FWeapon
[WEAPON_FLAMETHROWER
] := True;
6466 ITEM_AMMO_BULLETS
: if FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
] then IncMax(FAmmo
[A_BULLETS
], 10, FMaxAmmo
[A_BULLETS
]);
6467 ITEM_AMMO_BULLETS_BOX
: if FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
] then IncMax(FAmmo
[A_BULLETS
], 50, FMaxAmmo
[A_BULLETS
]);
6468 ITEM_AMMO_SHELLS
: if FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
] then IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
6469 ITEM_AMMO_SHELLS_BOX
: if FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
] then IncMax(FAmmo
[A_SHELLS
], 25, FMaxAmmo
[A_SHELLS
]);
6470 ITEM_AMMO_ROCKET
: if FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
] then IncMax(FAmmo
[A_ROCKETS
], 1, FMaxAmmo
[A_ROCKETS
]);
6471 ITEM_AMMO_ROCKET_BOX
: if FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
] then IncMax(FAmmo
[A_ROCKETS
], 5, FMaxAmmo
[A_ROCKETS
]);
6472 ITEM_AMMO_CELL
: if FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
] then IncMax(FAmmo
[A_CELLS
], 40, FMaxAmmo
[A_CELLS
]);
6473 ITEM_AMMO_CELL_BIG
: if FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
] then IncMax(FAmmo
[A_CELLS
], 100, FMaxAmmo
[A_CELLS
]);
6474 ITEM_AMMO_FUELCAN
: if FAmmo
[A_FUEL
] < FMaxAmmo
[A_FUEL
] then IncMax(FAmmo
[A_FUEL
], 100, FMaxAmmo
[A_FUEL
]);
6477 if (FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
]) or
6478 (FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
]) or
6479 (FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
]) or
6480 (FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
]) or
6481 (FMaxAmmo
[A_FUEL
] < AmmoLimits
[1, A_FUEL
]) then
6483 FMaxAmmo
[A_BULLETS
] := AmmoLimits
[1, A_BULLETS
];
6484 FMaxAmmo
[A_SHELLS
] := AmmoLimits
[1, A_SHELLS
];
6485 FMaxAmmo
[A_ROCKETS
] := AmmoLimits
[1, A_ROCKETS
];
6486 FMaxAmmo
[A_CELLS
] := AmmoLimits
[1, A_CELLS
];
6487 FMaxAmmo
[A_FUEL
] := AmmoLimits
[1, A_FUEL
];
6489 if FAmmo
[A_BULLETS
] < FMaxAmmo
[A_BULLETS
] then IncMax(FAmmo
[A_BULLETS
], 10, FMaxAmmo
[A_BULLETS
]);
6490 if FAmmo
[A_SHELLS
] < FMaxAmmo
[A_SHELLS
] then IncMax(FAmmo
[A_SHELLS
], 4, FMaxAmmo
[A_SHELLS
]);
6491 if FAmmo
[A_ROCKETS
] < FMaxAmmo
[A_ROCKETS
] then IncMax(FAmmo
[A_ROCKETS
], 1, FMaxAmmo
[A_ROCKETS
]);
6492 if FAmmo
[A_CELLS
] < FMaxAmmo
[A_CELLS
] then IncMax(FAmmo
[A_CELLS
], 40, FMaxAmmo
[A_CELLS
]);
6494 FRulez
:= FRulez
+ [R_ITEM_BACKPACK
];
6497 ITEM_KEY_RED
: if not (R_KEY_RED
in FRulez
) then Include(FRulez
, R_KEY_RED
);
6498 ITEM_KEY_GREEN
: if not (R_KEY_GREEN
in FRulez
) then Include(FRulez
, R_KEY_GREEN
);
6499 ITEM_KEY_BLUE
: if not (R_KEY_BLUE
in FRulez
) then Include(FRulez
, R_KEY_BLUE
);
6501 ITEM_BOTTLE
: if FHealth
< PLAYER_HP_LIMIT
then IncMax(FHealth
, 4, PLAYER_HP_LIMIT
);
6502 ITEM_HELMET
: if FArmor
< PLAYER_AP_LIMIT
then IncMax(FArmor
, 5, PLAYER_AP_LIMIT
);
6507 if g_Game_IsNet
and g_Game_IsServer
then
6508 MH_SEND_PlayerStats(FUID
);
6511 procedure TPlayer
.FlySmoke(Times
: DWORD
= 1);
6516 if (Random(5) = 1) and (Times
= 1) then
6519 if BodyInLiquid(0, 0) then
6521 g_Game_Effect_Bubbles(Obj
.X
+Obj
.Rect
.X
+(Obj
.Rect
.Width
div 2)+Random(3)-1,
6522 Obj
.Y
+Obj
.Rect
.Height
+8, 1, 8, 4);
6526 if g_Frames_Get(id
, 'FRAMES_SMOKE') then
6528 for i
:= 1 to Times
do
6530 Anim
:= TAnimation
.Create(id
, False, 3);
6532 g_GFX_OnceAnim(Obj
.X
+Obj
.Rect
.X
+Random(Obj
.Rect
.Width
+Times
*2)-(Anim
.Width
div 2),
6533 Obj
.Y
+Obj
.Rect
.Height
-4+Random(8+Times
*2), Anim
, ONCEANIM_SMOKE
);
6539 procedure TPlayer
.OnFireFlame(Times
: DWORD
= 1);
6544 if (Random(10) = 1) and (Times
= 1) then
6547 if g_Frames_Get(id
, 'FRAMES_FLAME') then
6549 for i
:= 1 to Times
do
6551 Anim
:= TAnimation
.Create(id
, False, 3);
6553 g_GFX_OnceAnim(Obj
.X
+Obj
.Rect
.X
+Random(Obj
.Rect
.Width
+Times
*2)-(Anim
.Width
div 2),
6554 Obj
.Y
+8+Random(8+Times
*2), Anim
, ONCEANIM_SMOKE
);
6560 procedure TPlayer
.PauseSounds(Enable
: Boolean);
6562 FSawSound
.Pause(Enable
);
6563 FSawSoundIdle
.Pause(Enable
);
6564 FSawSoundHit
.Pause(Enable
);
6565 FSawSoundSelect
.Pause(Enable
);
6566 FFlameSoundOn
.Pause(Enable
);
6567 FFlameSoundOff
.Pause(Enable
);
6568 FFlameSoundWork
.Pause(Enable
);
6569 FJetSoundFly
.Pause(Enable
);
6570 FJetSoundOn
.Pause(Enable
);
6571 FJetSoundOff
.Pause(Enable
);
6576 constructor TCorpse
.Create(X
, Y
: Integer; ModelName
: String; aMess
: Boolean);
6581 FObj
.Rect
:= PLAYER_CORPSERECT
;
6582 FModelName
:= ModelName
;
6587 FState
:= CORPSE_STATE_MESS
;
6588 g_PlayerModel_GetAnim(ModelName
, A_DIE2
, FAnimation
, FAnimationMask
);
6592 FState
:= CORPSE_STATE_NORMAL
;
6593 g_PlayerModel_GetAnim(ModelName
, A_DIE1
, FAnimation
, FAnimationMask
);
6597 destructor TCorpse
.Destroy();
6604 function TCorpse
.ObjPtr (): PObj
; inline; begin result
:= @FObj
; end;
6606 procedure TCorpse
.positionChanged (); inline; begin end;
6608 procedure TCorpse
.moveBy (dx
, dy
: Integer); inline;
6610 if (dx
<> 0) or (dy
<> 0) then
6619 procedure TCorpse
.getMapBox (out x
, y
, w
, h
: Integer); inline;
6621 x
:= FObj
.X
+PLAYER_CORPSERECT
.X
;
6622 y
:= FObj
.Y
+PLAYER_CORPSERECT
.Y
;
6623 w
:= PLAYER_CORPSERECT
.Width
;
6624 h
:= PLAYER_CORPSERECT
.Height
;
6628 procedure TCorpse
.Damage(Value
: Word; SpawnerUID
: Word; vx
, vy
: Integer);
6633 if FState
= CORPSE_STATE_REMOVEME
then
6636 FDamage
:= FDamage
+ Value
;
6638 if FDamage
> 150 then
6640 if FAnimation
<> nil then
6645 FState
:= CORPSE_STATE_REMOVEME
;
6647 g_Player_CreateGibs(FObj
.X
+FObj
.Rect
.X
+(FObj
.Rect
.Width
div 2),
6648 FObj
.Y
+FObj
.Rect
.Y
+(FObj
.Rect
.Height
div 2),
6649 FModelName
, FColor
);
6650 // Çâóê ìÿñà îò òðóïà:
6651 pm
:= g_PlayerModel_Get(FModelName
);
6652 pm
.PlaySound(MODELSOUND_DIE
, 5, FObj
.X
, FObj
.Y
);
6656 if (gBodyKillEvent
<> -1)
6657 and gDelayedEvents
[gBodyKillEvent
].Pending
then
6658 gDelayedEvents
[gBodyKillEvent
].Pending
:= False;
6659 gBodyKillEvent
:= g_Game_DelayEvent(DE_BODYKILL
, 1050, SpawnerUID
);
6664 Blood
:= g_PlayerModel_GetBlood(FModelName
);
6665 FObj
.Vel
.X
:= FObj
.Vel
.X
+ vx
;
6666 FObj
.Vel
.Y
:= FObj
.Vel
.Y
+ vy
;
6667 g_GFX_Blood(FObj
.X
+PLAYER_CORPSERECT
.X
+(PLAYER_CORPSERECT
.Width
div 2),
6668 FObj
.Y
+PLAYER_CORPSERECT
.Y
+(PLAYER_CORPSERECT
.Height
div 2),
6669 Value
, vx
, vy
, 16, (PLAYER_CORPSERECT
.Height
*2) div 3,
6670 Blood
.R
, Blood
.G
, Blood
.B
, Blood
.Kind
);
6674 procedure TCorpse
.Draw();
6678 if FState
= CORPSE_STATE_REMOVEME
then
6681 FObj
.lerp(gLerpFactor
, fX
, fY
);
6683 if FAnimation
<> nil then
6684 FAnimation
.Draw(fX
, fY
, TMirrorType
.None
);
6686 if FAnimationMask
<> nil then
6689 FAnimationMask
.Draw(fX
, fY
, TMirrorType
.None
);
6696 procedure TCorpse
.Update();
6700 if FState
= CORPSE_STATE_REMOVEME
then
6703 FObj
.oldX
:= FObj
.X
;
6704 FObj
.oldY
:= FObj
.Y
;
6706 if gTime
mod (GAME_TICK
*2) <> 0 then
6708 g_Obj_Move(@FObj
, True, True, True);
6709 positionChanged(); // this updates spatial accelerators
6713 // Ñîïðîòèâëåíèå âîçäóõà äëÿ òðóïà:
6714 FObj
.Vel
.X
:= z_dec(FObj
.Vel
.X
, 1);
6716 st
:= g_Obj_Move(@FObj
, True, True, True);
6717 positionChanged(); // this updates spatial accelerators
6719 if WordBool(st
and MOVE_FALLOUT
) then
6721 FState
:= CORPSE_STATE_REMOVEME
;
6725 if FAnimation
<> nil then
6726 FAnimation
.Update();
6727 if FAnimationMask
<> nil then
6728 FAnimationMask
.Update();
6732 procedure TCorpse
.SaveState (st
: TStream
);
6739 utils
.writeSign(st
, 'CORP');
6740 utils
.writeInt(st
, Byte(0));
6742 utils
.writeInt(st
, Byte(FState
));
6744 utils
.writeInt(st
, Byte(FDamage
));
6746 utils
.writeInt(st
, Byte(FColor
.R
));
6747 utils
.writeInt(st
, Byte(FColor
.G
));
6748 utils
.writeInt(st
, Byte(FColor
.B
));
6750 Obj_SaveState(st
, @FObj
);
6751 utils
.writeInt(st
, Word(FPlayerUID
));
6753 anim
:= (FAnimation
<> nil);
6754 utils
.writeBool(st
, anim
);
6755 // Åñëè åñòü - ñîõðàíÿåì
6756 if anim
then FAnimation
.SaveState(st
);
6757 // Åñòü ëè ìàñêà àíèìàöèè
6758 anim
:= (FAnimationMask
<> nil);
6759 utils
.writeBool(st
, anim
);
6760 // Åñëè åñòü - ñîõðàíÿåì
6761 if anim
then FAnimationMask
.SaveState(st
);
6765 procedure TCorpse
.LoadState (st
: TStream
);
6772 if not utils
.checkSign(st
, 'CORP') then raise XStreamError
.Create('invalid corpse signature');
6773 if (utils
.readByte(st
) <> 0) then raise XStreamError
.Create('invalid corpse version');
6775 FState
:= utils
.readByte(st
);
6777 FDamage
:= utils
.readByte(st
);
6779 FColor
.R
:= utils
.readByte(st
);
6780 FColor
.G
:= utils
.readByte(st
);
6781 FColor
.B
:= utils
.readByte(st
);
6783 Obj_LoadState(@FObj
, st
);
6784 FPlayerUID
:= utils
.readWord(st
);
6786 anim
:= utils
.readBool(st
);
6787 // Åñëè åñòü - çàãðóæàåì
6790 Assert(FAnimation
<> nil, 'TCorpse.LoadState: no FAnimation');
6791 FAnimation
.LoadState(st
);
6793 // Åñòü ëè ìàñêà àíèìàöèè
6794 anim
:= utils
.readBool(st
);
6795 // Åñëè åñòü - çàãðóæàåì
6798 Assert(FAnimationMask
<> nil, 'TCorpse.LoadState: no FAnimationMask');
6799 FAnimationMask
.LoadState(st
);
6805 constructor TBot
.Create();
6812 FSpectator
:= False;
6819 for a
:= WP_FIRST
to WP_LAST
do
6821 FDifficult
.WeaponPrior
[a
] := WEAPON_PRIOR1
[a
];
6822 FDifficult
.CloseWeaponPrior
[a
] := WEAPON_PRIOR2
[a
];
6823 //FDifficult.SafeWeaponPrior[a] := WEAPON_PRIOR3[a];
6827 destructor TBot
.Destroy();
6830 inherited Destroy();
6833 procedure TBot
.Draw();
6837 //if FTargetUID <> 0 then e_DrawLine(1, FObj.X, FObj.Y, g_Player_Get(FTargetUID).FObj.X,
6838 // g_Player_Get(FTargetUID).FObj.Y, 255, 0, 0);
6841 procedure TBot
.Respawn(Silent
: Boolean; Force
: Boolean = False);
6843 inherited Respawn(Silent
, Force
);
6846 FSelectedWeapon
:= FCurrWeap
;
6851 procedure TBot
.UpdateCombat();
6864 TTargetRecord
= array of TTarget
;
6866 function Compare(a
, b
: TTarget
): Integer;
6868 if a
.Line
and not b
.Line
then // A íà ëèíèè îãíÿ
6871 if not a
.Line
and b
.Line
then // B íà ëèíèè îãíÿ
6873 else // È A, è B íà ëèíèè èëè íå íà ëèíèè îãíÿ
6874 if (a
.Line
and b
.Line
) or ((not a
.Line
) and (not b
.Line
)) then
6876 if a
.Dist
> b
.Dist
then // B áëèæå
6878 else // A áëèæå èëè ðàâíîóäàëåííî ñ B
6881 else // Ñòðàííî -> A
6886 a
, x1
, y1
, x2
, y2
: Integer;
6887 targets
: TTargetRecord
;
6889 Target
, BestTarget
: TTarget
;
6890 firew
, fireh
: Integer;
6894 vsPlayer
, vsMonster
, ok
: Boolean;
6897 function monsUpdate (mon
: TMonster
): Boolean;
6899 result
:= false; // don't stop
6900 if mon
.alive
and (mon
.MonsterType
<> MONSTER_BARREL
) then
6902 if not TargetOnScreen(mon
.Obj
.X
+mon
.Obj
.Rect
.X
, mon
.Obj
.Y
+mon
.Obj
.Rect
.Y
) then exit
;
6904 x2
:= mon
.Obj
.X
+mon
.Obj
.Rect
.X
+(mon
.Obj
.Rect
.Width
div 2);
6905 y2
:= mon
.Obj
.Y
+mon
.Obj
.Rect
.Y
+(mon
.Obj
.Rect
.Height
div 2);
6907 // Åñëè ìîíñòð íà ýêðàíå è íå ïðèêðûò ñòåíîé
6908 if g_TraceVector(x1
, y1
, x2
, y2
) then
6910 // Äîáàâëÿåì ê ñïèñêó âîçìîæíûõ öåëåé
6911 SetLength(targets
, Length(targets
)+1);
6912 with targets
[High(targets
)] do
6919 Rect
:= mon
.Obj
.Rect
;
6920 Dist
:= g_PatchLength(x1
, y1
, x2
, y2
);
6921 Line
:= (y1
+4 < Target
.Y
+ mon
.Obj
.Rect
.Y
+ mon
.Obj
.Rect
.Height
) and
6922 (y1
-4 > Target
.Y
+ mon
.Obj
.Rect
.Y
);
6931 vsPlayer
:= LongBool(gGameSettings
.Options
and GAME_OPTION_BOTVSPLAYER
);
6932 vsMonster
:= LongBool(gGameSettings
.Options
and GAME_OPTION_BOTVSMONSTER
);
6934 // Åñëè òåêóùåå îðóæèå íå òî, ÷òî íóæíî, òî ìåíÿåì:
6935 if FCurrWeap
<> FSelectedWeapon
then
6938 // Åñëè íóæíî ñòðåëÿòü è íóæíîå îðóæèå, òî íàæàòü "Ñòðåëÿòü":
6939 if (GetAIFlag('NEEDFIRE') <> '') and (FCurrWeap
= FSelectedWeapon
) then
6941 RemoveAIFlag('NEEDFIRE');
6944 WEAPON_PLASMA
, WEAPON_SUPERPULEMET
, WEAPON_CHAINGUN
: PressKey(KEY_FIRE
, 20);
6945 WEAPON_SAW
, WEAPON_KASTET
, WEAPON_FLAMETHROWER
: PressKey(KEY_FIRE
, 40);
6946 else PressKey(KEY_FIRE
);
6950 // Êîîðäèíàòû ñòâîëà:
6951 x1
:= FObj
.X
+ WEAPONPOINT
[FDirection
].X
;
6952 y1
:= FObj
.Y
+ WEAPONPOINT
[FDirection
].Y
;
6954 Target
.UID
:= FTargetUID
;
6957 if Target
.UID
<> 0 then
6958 begin // Öåëü åñòü - íàñòðàèâàåì
6959 if (g_GetUIDType(Target
.UID
) = UID_PLAYER
) and
6962 tpla
:= g_Player_Get(Target
.UID
);
6966 if (@FObj
) <> nil then
6973 Target
.cX
:= Target
.X
+ PLAYER_RECT_CX
;
6974 Target
.cY
:= Target
.Y
+ PLAYER_RECT_CY
;
6975 Target
.Rect
:= PLAYER_RECT
;
6976 Target
.Visible
:= g_TraceVector(x1
, y1
, Target
.cX
, Target
.cY
);
6977 Target
.Line
:= (y1
+4 < Target
.Y
+PLAYER_RECT
.Y
+PLAYER_RECT
.Height
) and
6978 (y1
-4 > Target
.Y
+PLAYER_RECT
.Y
);
6979 Target
.IsPlayer
:= True;
6983 if (g_GetUIDType(Target
.UID
) = UID_MONSTER
) and
6986 mon
:= g_Monsters_ByUID(Target
.UID
);
6989 Target
.X
:= mon
.Obj
.X
;
6990 Target
.Y
:= mon
.Obj
.Y
;
6992 Target
.cX
:= Target
.X
+ mon
.Obj
.Rect
.X
+ (mon
.Obj
.Rect
.Width
div 2);
6993 Target
.cY
:= Target
.Y
+ mon
.Obj
.Rect
.Y
+ (mon
.Obj
.Rect
.Height
div 2);
6994 Target
.Rect
:= mon
.Obj
.Rect
;
6995 Target
.Visible
:= g_TraceVector(x1
, y1
, Target
.cX
, Target
.cY
);
6996 Target
.Line
:= (y1
+4 < Target
.Y
+ mon
.Obj
.Rect
.Y
+ mon
.Obj
.Rect
.Height
) and
6997 (y1
-4 > Target
.Y
+ mon
.Obj
.Rect
.Y
);
6998 Target
.IsPlayer
:= False;
7005 begin // Öåëè íåò - îáíóëÿåì
7010 Target
.Visible
:= False;
7011 Target
.Line
:= False;
7012 Target
.IsPlayer
:= False;
7017 // Åñëè öåëü íå âèäèìà èëè íå íà ëèíèè îãíÿ, òî èùåì âñå âîçìîæíûå öåëè:
7018 if (not Target
.Line
) or (not Target
.Visible
) then
7022 for a
:= 0 to High(gPlayers
) do
7023 if (gPlayers
[a
] <> nil) and (gPlayers
[a
].alive
) and
7024 (gPlayers
[a
].FUID
<> FUID
) and
7025 (not SameTeam(FUID
, gPlayers
[a
].FUID
)) and
7026 (not gPlayers
[a
].NoTarget
) and
7027 (gPlayers
[a
].FMegaRulez
[MR_INVIS
] < gTime
) then
7029 if not TargetOnScreen(gPlayers
[a
].FObj
.X
+ PLAYER_RECT
.X
,
7030 gPlayers
[a
].FObj
.Y
+ PLAYER_RECT
.Y
) then
7033 x2
:= gPlayers
[a
].FObj
.X
+ PLAYER_RECT_CX
;
7034 y2
:= gPlayers
[a
].FObj
.Y
+ PLAYER_RECT_CY
;
7036 // Åñëè èãðîê íà ýêðàíå è íå ïðèêðûò ñòåíîé:
7037 if g_TraceVector(x1
, y1
, x2
, y2
) then
7039 // Äîáàâëÿåì ê ñïèñêó âîçìîæíûõ öåëåé:
7040 SetLength(targets
, Length(targets
)+1);
7041 with targets
[High(targets
)] do
7043 UID
:= gPlayers
[a
].FUID
;
7044 X
:= gPlayers
[a
].FObj
.X
;
7045 Y
:= gPlayers
[a
].FObj
.Y
;
7048 Rect
:= PLAYER_RECT
;
7049 Dist
:= g_PatchLength(x1
, y1
, x2
, y2
);
7050 Line
:= (y1
+4 < Target
.Y
+PLAYER_RECT
.Y
+PLAYER_RECT
.Height
) and
7051 (y1
-4 > Target
.Y
+PLAYER_RECT
.Y
);
7059 if vsMonster
then g_Mons_ForEach(monsUpdate
);
7062 // Åñëè åñòü âîçìîæíûå öåëè:
7063 // (Âûáèðàåì ëó÷øóþ, ìåíÿåì îðóæèå è áåæèì ê íåé/îò íåå)
7064 if targets
<> nil then
7066 // Âûáèðàåì íàèëó÷øóþ öåëü:
7067 BestTarget
:= targets
[0];
7068 if Length(targets
) > 1 then
7069 for a
:= 1 to High(targets
) do
7070 if Compare(BestTarget
, targets
[a
]) = 1 then
7071 BestTarget
:= targets
[a
];
7073 // Åñëè ëó÷øàÿ öåëü "âèäíåå" òåêóùåé, òî òåêóùàÿ := ëó÷øàÿ:
7074 if ((not Target
.Visible
) and BestTarget
.Visible
and (Target
.UID
<> BestTarget
.UID
)) or
7075 ((not Target
.Line
) and BestTarget
.Line
and BestTarget
.Visible
) then
7077 Target
:= BestTarget
;
7079 if (Healthy() = 3) or ((Healthy() = 2)) then
7080 begin // Åñëè çäîðîâû - äîãîíÿåì
7081 if ((RunDirection() = TDirection
.D_LEFT
) and (Target
.X
> FObj
.X
)) then
7082 SetAIFlag('GORIGHT', '1');
7083 if ((RunDirection() = TDirection
.D_RIGHT
) and (Target
.X
< FObj
.X
)) then
7084 SetAIFlag('GOLEFT', '1');
7087 begin // Åñëè ïîáèòû - óáåãàåì
7088 if ((RunDirection() = TDirection
.D_LEFT
) and (Target
.X
< FObj
.X
)) then
7089 SetAIFlag('GORIGHT', '1');
7090 if ((RunDirection() = TDirection
.D_RIGHT
) and (Target
.X
> FObj
.X
)) then
7091 SetAIFlag('GOLEFT', '1');
7094 // Âûáèðàåì îðóæèå íà îñíîâå ðàññòîÿíèÿ è ïðèîðèòåòîâ:
7095 SelectWeapon(Abs(x1
-Target
.cX
));
7100 // (Äîãîíÿåì/óáåãàåì, ñòðåëÿåì ïî íàïðàâëåíèþ ê öåëè)
7101 // (Åñëè öåëü äàëåêî, òî õâàòèò ñëåäèòü çà íåé)
7102 if Target
.UID
<> 0 then
7104 if not TargetOnScreen(Target
.X
+ Target
.Rect
.X
,
7105 Target
.Y
+ Target
.Rect
.Y
) then
7106 begin // Öåëü ñáåæàëà ñ "ýêðàíà"
7107 if (Healthy() = 3) or ((Healthy() = 2)) then
7108 begin // Åñëè çäîðîâû - äîãîíÿåì
7109 if ((RunDirection() = TDirection
.D_LEFT
) and (Target
.X
> FObj
.X
)) then
7110 SetAIFlag('GORIGHT', '1');
7111 if ((RunDirection() = TDirection
.D_RIGHT
) and (Target
.X
< FObj
.X
)) then
7112 SetAIFlag('GOLEFT', '1');
7115 begin // Åñëè ïîáèòû - çàáûâàåì î öåëè è óáåãàåì
7117 if ((RunDirection() = TDirection
.D_LEFT
) and (Target
.X
< FObj
.X
)) then
7118 SetAIFlag('GORIGHT', '1');
7119 if ((RunDirection() = TDirection
.D_RIGHT
) and (Target
.X
> FObj
.X
)) then
7120 SetAIFlag('GOLEFT', '1');
7124 begin // Öåëü ïîêà íà "ýêðàíå"
7125 // Åñëè öåëü íå çàãîðîæåíà ñòåíîé, òî îòìå÷àåì, êîãäà åå âèäåëè:
7126 if g_TraceVector(x1
, y1
, Target
.cX
, Target
.cY
) then
7127 FLastVisible
:= gTime
;
7128 // Åñëè ðàçíèöà âûñîò íå âåëèêà, òî äîãîíÿåì:
7129 if (Abs(FObj
.Y
-Target
.Y
) <= 128) then
7131 if ((RunDirection() = TDirection
.D_LEFT
) and (Target
.X
> FObj
.X
)) then
7132 SetAIFlag('GORIGHT', '1');
7133 if ((RunDirection() = TDirection
.D_RIGHT
) and (Target
.X
< FObj
.X
)) then
7134 SetAIFlag('GOLEFT', '1');
7138 // Âûáèðàåì óãîë ââåðõ:
7139 if FDirection
= TDirection
.D_LEFT
then
7140 angle
:= ANGLE_LEFTUP
7142 angle
:= ANGLE_RIGHTUP
;
7144 firew
:= Trunc(Cos(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7145 fireh
:= Trunc(Sin(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7147 // Åñëè ïðè óãëå ââåðõ ìîæíî ïîïàñòü â ïðèáëèçèòåëüíîå ïîëîæåíèå öåëè:
7148 if g_CollideLine(x1
, y1
, x1
+firew
, y1
+fireh
,
7149 Target
.X
+Target
.Rect
.X
+GetInterval(FDifficult
.DiagPrecision
, 128), //96
7150 Target
.Y
+Target
.Rect
.Y
+GetInterval(FDifficult
.DiagPrecision
, 128),
7151 Target
.Rect
.Width
, Target
.Rect
.Height
) and
7152 g_TraceVector(x1
, y1
, Target
.cX
, Target
.cY
) then
7153 begin // òî íóæíî ñòðåëÿòü ââåðõ
7154 SetAIFlag('NEEDFIRE', '1');
7155 SetAIFlag('NEEDSEEUP', '1');
7158 // Âûáèðàåì óãîë âíèç:
7159 if FDirection
= TDirection
.D_LEFT
then
7160 angle
:= ANGLE_LEFTDOWN
7162 angle
:= ANGLE_RIGHTDOWN
;
7164 firew
:= Trunc(Cos(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7165 fireh
:= Trunc(Sin(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7167 // Åñëè ïðè óãëå âíèç ìîæíî ïîïàñòü â ïðèáëèçèòåëüíîå ïîëîæåíèå öåëè:
7168 if g_CollideLine(x1
, y1
, x1
+firew
, y1
+fireh
,
7169 Target
.X
+Target
.Rect
.X
+GetInterval(FDifficult
.DiagPrecision
, 128),
7170 Target
.Y
+Target
.Rect
.Y
+GetInterval(FDifficult
.DiagPrecision
, 128),
7171 Target
.Rect
.Width
, Target
.Rect
.Height
) and
7172 g_TraceVector(x1
, y1
, Target
.cX
, Target
.cY
) then
7173 begin // òî íóæíî ñòðåëÿòü âíèç
7174 SetAIFlag('NEEDFIRE', '1');
7175 SetAIFlag('NEEDSEEDOWN', '1');
7178 // Åñëè öåëü âèäíî è îíà íà òàêîé æå âûñîòå:
7179 if Target
.Visible
and
7180 (y1
+4 < Target
.Y
+Target
.Rect
.Y
+Target
.Rect
.Height
) and
7181 (y1
-4 > Target
.Y
+Target
.Rect
.Y
) then
7183 // Åñëè èäåì â ñòîðîíó öåëè, òî íàäî ñòðåëÿòü:
7184 if ((FDirection
= TDirection
.D_LEFT
) and (Target
.X
< FObj
.X
)) or
7185 ((FDirection
= TDirection
.D_RIGHT
) and (Target
.X
> FObj
.X
)) then
7186 begin // òî íóæíî ñòðåëÿòü âïåðåä
7187 SetAIFlag('NEEDFIRE', '1');
7188 SetAIFlag('NEEDSEEDOWN', '');
7189 SetAIFlag('NEEDSEEUP', '');
7191 // Åñëè öåëü â ïðåäåëàõ "ýêðàíà" è ñëîæíîñòü ïîçâîëÿåò ïðûæêè ñáëèæåíèÿ:
7192 if Abs(FObj
.X
-Target
.X
) < Trunc(gPlayerScreenSize
.X
*0.75) then
7193 if GetRnd(FDifficult
.CloseJump
) then
7194 begin // òî åñëè ïîâåçåò - ïðûãàåì (îñîáåííî, åñëè áëèçêî)
7195 if Abs(FObj
.X
-Target
.X
) < 128 then
7199 if Random(a
) = 0 then
7200 SetAIFlag('NEEDJUMP', '1');
7204 // Åñëè öåëü âñå åùå åñòü:
7205 if Target
.UID
<> 0 then
7206 if gTime
-FLastVisible
> 2000 then // Åñëè âèäåëè äàâíî
7207 Target
.UID
:= 0 // òî çàáûòü öåëü
7208 else // Åñëè âèäåëè íåäàâíî
7209 begin // íî öåëü óáèëè
7210 if Target
.IsPlayer
then
7211 begin // Öåëü - èãðîê
7212 pla
:= g_Player_Get(Target
.UID
);
7213 if (pla
= nil) or (not pla
.alive
) or pla
.NoTarget
or
7214 (pla
.FMegaRulez
[MR_INVIS
] >= gTime
) then
7215 Target
.UID
:= 0; // òî çàáûòü öåëü
7218 begin // Öåëü - ìîíñòð
7219 mon
:= g_Monsters_ByUID(Target
.UID
);
7220 if (mon
= nil) or (not mon
.alive
) then
7221 Target
.UID
:= 0; // òî çàáûòü öåëü
7224 end; // if Target.UID <> 0
7226 FTargetUID
:= Target
.UID
;
7228 // Åñëè âîçìîæíûõ öåëåé íåò:
7229 // (Àòàêà ÷åãî-íèáóäü ñëåâà èëè ñïðàâà)
7230 if targets
= nil then
7231 if GetAIFlag('ATTACKLEFT') <> '' then
7232 begin // Åñëè íóæíî àòàêîâàòü íàëåâî
7233 RemoveAIFlag('ATTACKLEFT');
7235 SetAIFlag('NEEDJUMP', '1');
7237 if RunDirection() = TDirection
.D_RIGHT
then
7238 begin // Èäåì íå â òó ñòîðîíó
7239 if (Healthy() > 1) and GetRnd(FDifficult
.InvisFire
) then
7240 begin // Åñëè çäîðîâû, òî, âîçìîæíî, ñòðåëÿåì áåæèì âëåâî è ñòðåëÿåì
7241 SetAIFlag('NEEDFIRE', '1');
7242 SetAIFlag('GOLEFT', '1');
7246 begin // Èäåì â íóæíóþ ñòîðîíó
7247 if GetRnd(FDifficult
.InvisFire
) then // Âîçìîæíî, ñòðåëÿåì âñëåïóþ
7248 SetAIFlag('NEEDFIRE', '1');
7249 if Healthy() <= 1 then // Ïîáèòû - óáåãàåì
7250 SetAIFlag('GORIGHT', '1');
7254 if GetAIFlag('ATTACKRIGHT') <> '' then
7255 begin // Åñëè íóæíî àòàêîâàòü íàïðàâî
7256 RemoveAIFlag('ATTACKRIGHT');
7258 SetAIFlag('NEEDJUMP', '1');
7260 if RunDirection() = TDirection
.D_LEFT
then
7261 begin // Èäåì íå â òó ñòîðîíó
7262 if (Healthy() > 1) and GetRnd(FDifficult
.InvisFire
) then
7263 begin // Åñëè çäîðîâû, òî, âîçìîæíî, áåæèì âïðàâî è ñòðåëÿåì
7264 SetAIFlag('NEEDFIRE', '1');
7265 SetAIFlag('GORIGHT', '1');
7270 if GetRnd(FDifficult
.InvisFire
) then // Âîçìîæíî, ñòðåëÿåì âñëåïóþ
7271 SetAIFlag('NEEDFIRE', '1');
7272 if Healthy() <= 1 then // Ïîáèòû - óáåãàåì
7273 SetAIFlag('GOLEFT', '1');
7277 //HACK! (does it belongs there?)
7278 RealizeCurrentWeapon();
7280 // Åñëè åñòü âîçìîæíûå öåëè:
7281 // (Ñòðåëÿåì ïî íàïðàâëåíèþ ê öåëÿì)
7282 if (targets
<> nil) and (GetAIFlag('NEEDFIRE') <> '') then
7283 for a
:= 0 to High(targets
) do
7285 // Åñëè ìîæåì ñòðåëÿòü ïî äèàãîíàëè:
7286 if GetRnd(FDifficult
.DiagFire
) then
7288 // Èùåì öåëü ñâåðõó è ñòðåëÿåì, åñëè åñòü:
7289 if FDirection
= TDirection
.D_LEFT
then
7290 angle
:= ANGLE_LEFTUP
7292 angle
:= ANGLE_RIGHTUP
;
7294 firew
:= Trunc(Cos(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7295 fireh
:= Trunc(Sin(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7297 if g_CollideLine(x1
, y1
, x1
+firew
, y1
+fireh
,
7298 targets
[a
].X
+targets
[a
].Rect
.X
+GetInterval(FDifficult
.DiagPrecision
, 128),
7299 targets
[a
].Y
+targets
[a
].Rect
.Y
+GetInterval(FDifficult
.DiagPrecision
, 128),
7300 targets
[a
].Rect
.Width
, targets
[a
].Rect
.Height
) and
7301 g_TraceVector(x1
, y1
, targets
[a
].cX
, targets
[a
].cY
) then
7303 SetAIFlag('NEEDFIRE', '1');
7304 SetAIFlag('NEEDSEEUP', '1');
7307 // Èùåì öåëü ñíèçó è ñòðåëÿåì, åñëè åñòü:
7308 if FDirection
= TDirection
.D_LEFT
then
7309 angle
:= ANGLE_LEFTDOWN
7311 angle
:= ANGLE_RIGHTDOWN
;
7313 firew
:= Trunc(Cos(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7314 fireh
:= Trunc(Sin(DegToRad(-angle
))*gPlayerScreenSize
.X
*0.6);
7316 if g_CollideLine(x1
, y1
, x1
+firew
, y1
+fireh
,
7317 targets
[a
].X
+targets
[a
].Rect
.X
+GetInterval(FDifficult
.DiagPrecision
, 128),
7318 targets
[a
].Y
+targets
[a
].Rect
.Y
+GetInterval(FDifficult
.DiagPrecision
, 128),
7319 targets
[a
].Rect
.Width
, targets
[a
].Rect
.Height
) and
7320 g_TraceVector(x1
, y1
, targets
[a
].cX
, targets
[a
].cY
) then
7322 SetAIFlag('NEEDFIRE', '1');
7323 SetAIFlag('NEEDSEEDOWN', '1');
7327 // Åñëè öåëü "ïåðåä íîñîì", òî ñòðåëÿåì:
7328 if targets
[a
].Line
and targets
[a
].Visible
and
7329 (((FDirection
= TDirection
.D_LEFT
) and (targets
[a
].X
< FObj
.X
)) or
7330 ((FDirection
= TDirection
.D_RIGHT
) and (targets
[a
].X
> FObj
.X
))) then
7332 SetAIFlag('NEEDFIRE', '1');
7337 // Åñëè ëåòèò ïóëÿ, òî, âîçìîæíî, ïîäïðûãèâàåì:
7338 if g_Weapon_Danger(FUID
, FObj
.X
+PLAYER_RECT
.X
, FObj
.Y
+PLAYER_RECT
.Y
,
7339 PLAYER_RECT
.Width
, PLAYER_RECT
.Height
,
7340 40+GetInterval(FDifficult
.Cover
, 40)) then
7341 SetAIFlag('NEEDJUMP', '1');
7343 // Åñëè êîí÷èëèñü ïàòîðíû, òî íóæíî ñìåíèòü îðóæèå:
7344 ammo
:= GetAmmoByWeapon(FCurrWeap
);
7345 if ((FCurrWeap
= WEAPON_SHOTGUN2
) and (ammo
< 2)) or
7346 ((FCurrWeap
= WEAPON_BFG
) and (ammo
< 40)) or
7348 SetAIFlag('SELECTWEAPON', '1');
7350 // Åñëè íóæíî ñìåíèòü îðóæèå, òî âûáèðàåì íóæíîå:
7351 if GetAIFlag('SELECTWEAPON') = '1' then
7354 RemoveAIFlag('SELECTWEAPON');
7358 procedure TBot
.Update();
7371 // Ïðîâåðÿåì, îòêëþ÷¸í ëè AI áîòîâ
7372 if (g_debug_BotAIOff
= 1) and (Team
= TEAM_RED
) then
7374 if (g_debug_BotAIOff
= 2) and (Team
= TEAM_BLUE
) then
7376 if g_debug_BotAIOff
= 3 then
7386 RealizeCurrentWeapon();
7393 procedure TBot
.ReleaseKey(Key
: Byte);
7402 function TBot
.KeyPressed(Key
: Word): Boolean;
7404 Result
:= FKeys
[Key
].Pressed
;
7407 function TBot
.GetAIFlag(aName
: String20
): String20
;
7413 aName
:= LowerCase(aName
);
7415 if FAIFlags
<> nil then
7416 for a
:= 0 to High(FAIFlags
) do
7417 if LowerCase(FAIFlags
[a
].Name
) = aName
then
7419 Result
:= FAIFlags
[a
].Value
;
7424 procedure TBot
.RemoveAIFlag(aName
: String20
);
7428 if FAIFlags
= nil then Exit
;
7430 aName
:= LowerCase(aName
);
7432 for a
:= 0 to High(FAIFlags
) do
7433 if LowerCase(FAIFlags
[a
].Name
) = aName
then
7435 if a
<> High(FAIFlags
) then
7436 for b
:= a
to High(FAIFlags
)-1 do
7437 FAIFlags
[b
] := FAIFlags
[b
+1];
7439 SetLength(FAIFlags
, Length(FAIFlags
)-1);
7444 procedure TBot
.SetAIFlag(aName
, fValue
: String20
);
7452 aName
:= LowerCase(aName
);
7454 if FAIFlags
<> nil then
7455 for a
:= 0 to High(FAIFlags
) do
7456 if LowerCase(FAIFlags
[a
].Name
) = aName
then
7462 if ok
then FAIFlags
[a
].Value
:= fValue
7465 SetLength(FAIFlags
, Length(FAIFlags
)+1);
7466 with FAIFlags
[High(FAIFlags
)] do
7474 procedure TBot
.UpdateMove
;
7476 procedure GoLeft(Time
: Word = 1);
7478 ReleaseKey(KEY_LEFT
);
7479 ReleaseKey(KEY_RIGHT
);
7480 PressKey(KEY_LEFT
, Time
);
7481 SetDirection(TDirection
.D_LEFT
);
7484 procedure GoRight(Time
: Word = 1);
7486 ReleaseKey(KEY_LEFT
);
7487 ReleaseKey(KEY_RIGHT
);
7488 PressKey(KEY_RIGHT
, Time
);
7489 SetDirection(TDirection
.D_RIGHT
);
7492 function Rnd(a
: Word): Boolean;
7494 Result
:= Random(a
) = 0;
7497 procedure Turn(Time
: Word = 1200);
7499 if RunDirection() = TDirection
.D_LEFT
then GoRight(Time
) else GoLeft(Time
);
7504 ReleaseKey(KEY_LEFT
);
7505 ReleaseKey(KEY_RIGHT
);
7508 function CanRunLeft(): Boolean;
7510 Result
:= not CollideLevel(-1, 0);
7513 function CanRunRight(): Boolean;
7515 Result
:= not CollideLevel(1, 0);
7518 function CanRun(): Boolean;
7520 if RunDirection() = TDirection
.D_LEFT
then Result
:= CanRunLeft() else Result
:= CanRunRight();
7523 procedure Jump(Time
: Word = 30);
7525 PressKey(KEY_JUMP
, Time
);
7528 function NearHole(): Boolean;
7532 { TODO 5 : Ëåñòíèöû }
7533 sx
:= IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1);
7534 for x
:= 1 to PLAYER_RECT
.Width
do
7535 if (not StayOnStep(x
*sx
, 0)) and
7536 (not CollideLevel(x
*sx
, PLAYER_RECT
.Height
)) and
7537 (not CollideLevel(x
*sx
, PLAYER_RECT
.Height
*2)) then
7546 function BorderHole(): Boolean;
7550 { TODO 5 : Ëåñòíèöû }
7551 sx
:= IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1);
7552 for x
:= 1 to PLAYER_RECT
.Width
do
7553 if (not StayOnStep(x
*sx
, 0)) and
7554 (not CollideLevel(x
*sx
, PLAYER_RECT
.Height
)) and
7555 (not CollideLevel(x
*sx
, PLAYER_RECT
.Height
*2)) then
7557 for xx
:= x
to x
+32 do
7558 if CollideLevel(xx
*sx
, PLAYER_RECT
.Height
) then
7568 function NearDeepHole(): Boolean;
7574 sx
:= IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1);
7577 for x
:= 1 to PLAYER_RECT
.Width
do
7578 if (not StayOnStep(x
*sx
, 0)) and
7579 (not CollideLevel(x
*sx
, PLAYER_RECT
.Height
)) and
7580 (not CollideLevel(x
*sx
, PLAYER_RECT
.Height
*2)) then
7582 while FObj
.Y
+y
*PLAYER_RECT
.Height
< gMapInfo
.Height
do
7584 if CollideLevel(x
*sx
, PLAYER_RECT
.Height
*y
) then Exit
;
7589 end else Result
:= False;
7592 function OverDeepHole(): Boolean;
7599 while FObj
.Y
+y
*PLAYER_RECT
.Height
< gMapInfo
.Height
do
7601 if CollideLevel(0, PLAYER_RECT
.Height
*y
) then Exit
;
7608 function OnGround(): Boolean;
7610 Result
:= StayOnStep(0, 0) or CollideLevel(0, 1);
7613 function OnLadder(): Boolean;
7615 Result
:= FullInStep(0, 0);
7618 function BelowLadder(): Boolean;
7620 Result
:= (FullInStep(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -PLAYER_RECT
.Height
) and
7621 not CollideLevel(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -PLAYER_RECT
.Height
)) or
7622 (FullInStep(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -BOT_MAXJUMP
) and
7623 not CollideLevel(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -BOT_MAXJUMP
));
7626 function BelowLiftUp(): Boolean;
7628 Result
:= ((FullInLift(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -PLAYER_RECT
.Height
) = -1) and
7629 not CollideLevel(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -PLAYER_RECT
.Height
)) or
7630 ((FullInLift(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -BOT_MAXJUMP
) = -1) and
7631 not CollideLevel(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*(PLAYER_RECT
.Width
div 2), -BOT_MAXJUMP
));
7634 function OnTopLift(): Boolean;
7636 Result
:= (FullInLift(0, 0) = -1) and (FullInLift(0, -32) = 0);
7639 function CanJumpOver(): Boolean;
7643 sx
:= IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1);
7647 if not CollideLevel(sx
, 0) then Exit
;
7649 for y
:= 1 to BOT_MAXJUMP
do
7650 if CollideLevel(0, -y
) then Exit
else
7651 if not CollideLevel(sx
, -y
) then
7658 function CanJumpUp(Dist
: ShortInt): Boolean;
7665 if CollideLevel(Dist
, 0) then Exit
;
7668 for y
:= 0 to BOT_MAXJUMP
do
7669 if CollideLevel(Dist
, -y
) then
7678 for yy
:= y
+1 to BOT_MAXJUMP
do
7679 if not CollideLevel(Dist
, -yy
) then
7688 for y
:= 0 to BOT_MAXJUMP
do
7689 if CollideLevel(0, -y
) then
7697 if y
< yy
then Exit
;
7702 function IsSafeTrigger(): Boolean;
7707 if gTriggers
= nil then
7709 for a
:= 0 to High(gTriggers
) do
7710 if Collide(gTriggers
[a
].X
,
7713 gTriggers
[a
].Height
) and
7714 (gTriggers
[a
].TriggerType
in [TRIGGER_EXIT
, TRIGGER_CLOSEDOOR
,
7715 TRIGGER_CLOSETRAP
, TRIGGER_TRAP
,
7716 TRIGGER_PRESS
, TRIGGER_ON
, TRIGGER_OFF
,
7717 TRIGGER_ONOFF
, TRIGGER_SPAWNMONSTER
,
7718 TRIGGER_DAMAGE
, TRIGGER_SHOT
]) then
7723 // Âîçìîæíî, íàæèìàåì êíîïêó:
7724 if Rnd(16) and IsSafeTrigger() then
7727 // Åñëè ïîä ëèôòîì èëè ñòóïåíüêàìè, òî, âîçìîæíî, ïðûãàåì:
7728 if OnLadder() or ((BelowLadder() or BelowLiftUp()) and Rnd(8)) then
7730 ReleaseKey(KEY_LEFT
);
7731 ReleaseKey(KEY_RIGHT
);
7735 // Èäåì âëåâî, åñëè íàäî áûëî:
7736 if GetAIFlag('GOLEFT') <> '' then
7738 RemoveAIFlag('GOLEFT');
7739 if CanRunLeft() then
7743 // Èäåì âïðàâî, åñëè íàäî áûëî:
7744 if GetAIFlag('GORIGHT') <> '' then
7746 RemoveAIFlag('GORIGHT');
7747 if CanRunRight() then
7751 // Åñëè âûëåòåëè çà êàðòó, òî ïðîáóåì âåðíóòüñÿ:
7752 if FObj
.X
< -32 then
7755 if FObj
.X
+32 > gMapInfo
.Width
then
7758 // Ïðûãàåì, åñëè íàäî áûëî:
7759 if GetAIFlag('NEEDJUMP') <> '' then
7762 RemoveAIFlag('NEEDJUMP');
7765 // Ñìîòðèì ââåðõ, åñëè íàäî áûëî:
7766 if GetAIFlag('NEEDSEEUP') <> '' then
7769 ReleaseKey(KEY_DOWN
);
7770 PressKey(KEY_UP
, 20);
7771 RemoveAIFlag('NEEDSEEUP');
7774 // Ñìîòðèì âíèç, åñëè íàäî áûëî:
7775 if GetAIFlag('NEEDSEEDOWN') <> '' then
7778 ReleaseKey(KEY_DOWN
);
7779 PressKey(KEY_DOWN
, 20);
7780 RemoveAIFlag('NEEDSEEDOWN');
7783 // Åñëè íóæíî áûëî â äûðó è ìû íå íà çåìëå, òî ïîêîðíî ëåòèì:
7784 if GetAIFlag('GOINHOLE') <> '' then
7785 if not OnGround() then
7787 ReleaseKey(KEY_LEFT
);
7788 ReleaseKey(KEY_RIGHT
);
7789 RemoveAIFlag('GOINHOLE');
7790 SetAIFlag('FALLINHOLE', '1');
7793 // Åñëè ïàäàëè è äîñòèãëè çåìëè, òî õâàòèò ïàäàòü:
7794 if GetAIFlag('FALLINHOLE') <> '' then
7796 RemoveAIFlag('FALLINHOLE');
7798 // Åñëè ëåòåëè ïðÿìî è ñåé÷àñ íå íà ëåñòíèöå èëè íà âåðøèíå ëèôòà, òî îòõîäèì â ñòîðîíó:
7799 if not (KeyPressed(KEY_LEFT
) or KeyPressed(KEY_RIGHT
)) then
7800 if GetAIFlag('FALLINHOLE') = '' then
7801 if (not OnLadder()) or (FObj
.Vel
.Y
>= 0) or (OnTopLift()) then
7807 // Åñëè íà çåìëå è ìîæíî ïîäïðûãíóòü, òî, âîçìîæíî, ïðûãàåì:
7809 CanJumpUp(IfThen(RunDirection() = TDirection
.D_LEFT
, -1, 1)*32) and
7813 // Åñëè íà çåìëå è âîçëå äûðû (ãëóáèíà > 2 ðîñòîâ èãðîêà):
7814 if OnGround() and NearHole() then
7815 if NearDeepHole() then // Åñëè ýòî áåçäíà
7817 0..3: Turn(); // Áåæèì îáðàòíî
7818 4: Jump(); // Ïðûãàåì
7819 5: begin // Ïðûãàåì îáðàòíî
7824 else // Ýòî íå áåçäíà è ìû åùå íå ëåòèì òóäà
7825 if GetAIFlag('GOINHOLE') = '' then
7827 0: Turn(); // Íå íóæíî òóäà
7828 1: Jump(); // Âäðóã ïîâåçåò - ïðûãàåì
7829 else // Åñëè ÿìà ñ ãðàíèöåé, òî ïðè ñëó÷àå ìîæíî òóäà ïðûãíóòü
7830 if BorderHole() then
7831 SetAIFlag('GOINHOLE', '1');
7834 // Åñëè íà çåìëå, íî íåêóäà èäòè:
7835 if (not CanRun()) and OnGround() then
7837 // Åñëè ìû íà ëåñòíèöå èëè ìîæíî ïåðåïðûãíóòü, òî ïðûãàåì:
7838 if CanJumpOver() or OnLadder() then
7840 else // èíà÷å ïîïûòàåìñÿ â äðóãóþ ñòîðîíó
7841 if Random(2) = 0 then
7843 if IsSafeTrigger() then
7849 // Îñòàëîñü ìàëî âîçäóõà:
7850 if FAir
< 36 * 2 then
7853 // Âûáèðàåìñÿ èç êèñëîòû, åñëè íåò êîñòþìà, îáîæãëèñü, èëè ìàëî çäîðîâüÿ:
7854 if (FMegaRulez
[MR_SUIT
] < gTime
) and ((FLastHit
= HIT_ACID
) or (Healthy() <= 1)) then
7855 if BodyInAcid(0, 0) then
7859 function TBot
.FullInStep(XInc
, YInc
: Integer): Boolean;
7861 Result
:= g_Map_CollidePanel(FObj
.X
+PLAYER_RECT
.X
+XInc
, FObj
.Y
+PLAYER_RECT
.Y
+YInc
,
7862 PLAYER_RECT
.Width
, PLAYER_RECT
.Height
, PANEL_STEP
, False);
7865 {function TBot.NeedItem(Item: Byte): Byte;
7870 procedure TBot
.SelectWeapon(Dist
: Integer);
7874 function HaveAmmo(weapon
: Byte): Boolean;
7877 WEAPON_PISTOL
: Result
:= FAmmo
[A_BULLETS
] >= 1;
7878 WEAPON_SHOTGUN1
: Result
:= FAmmo
[A_SHELLS
] >= 1;
7879 WEAPON_SHOTGUN2
: Result
:= FAmmo
[A_SHELLS
] >= 2;
7880 WEAPON_CHAINGUN
: Result
:= FAmmo
[A_BULLETS
] >= 10;
7881 WEAPON_ROCKETLAUNCHER
: Result
:= FAmmo
[A_ROCKETS
] >= 1;
7882 WEAPON_PLASMA
: Result
:= FAmmo
[A_CELLS
] >= 10;
7883 WEAPON_BFG
: Result
:= FAmmo
[A_CELLS
] >= 40;
7884 WEAPON_SUPERPULEMET
: Result
:= FAmmo
[A_SHELLS
] >= 1;
7885 WEAPON_FLAMETHROWER
: Result
:= FAmmo
[A_FUEL
] >= 1;
7886 else Result
:= True;
7891 if Dist
= -1 then Dist
:= BOT_LONGDIST
;
7893 if Dist
> BOT_LONGDIST
then
7894 begin // Äàëüíèé áîé
7896 if FWeapon
[FDifficult
.WeaponPrior
[a
]] and HaveAmmo(FDifficult
.WeaponPrior
[a
]) then
7898 FSelectedWeapon
:= FDifficult
.WeaponPrior
[a
];
7902 else //if Dist > BOT_UNSAFEDIST then
7903 begin // Áëèæíèé áîé
7905 if FWeapon
[FDifficult
.CloseWeaponPrior
[a
]] and HaveAmmo(FDifficult
.CloseWeaponPrior
[a
]) then
7907 FSelectedWeapon
:= FDifficult
.CloseWeaponPrior
[a
];
7914 if FWeapon[FDifficult.SafeWeaponPrior[a]] and HaveAmmo(FDifficult.SafeWeaponPrior[a]) then
7916 FSelectedWeapon := FDifficult.SafeWeaponPrior[a];
7922 function TBot
.PickItem(ItemType
: Byte; force
: Boolean; var remove
: Boolean): Boolean;
7924 Result
:= inherited PickItem(ItemType
, force
, remove
);
7926 if Result
then SetAIFlag('SELECTWEAPON', '1');
7929 function TBot
.Heal(value
: Word; Soft
: Boolean): Boolean;
7931 Result
:= inherited Heal(value
, Soft
);
7934 function TBot
.Healthy(): Byte;
7936 if FMegaRulez
[MR_INVUL
] >= gTime
then Result
:= 3
7937 else if (FHealth
> 80) or ((FHealth
> 50) and (FArmor
> 20)) then Result
:= 3
7938 else if (FHealth
> 50) then Result
:= 2
7939 else if (FHealth
> 20) then Result
:= 1
7943 function TBot
.TargetOnScreen(TX
, TY
: Integer): Boolean;
7945 Result
:= (Abs(FObj
.X
-TX
) <= Trunc(gPlayerScreenSize
.X
*0.6)) and
7946 (Abs(FObj
.Y
-TY
) <= Trunc(gPlayerScreenSize
.Y
*0.6));
7949 procedure TBot
.OnDamage(Angle
: SmallInt);
7957 if (Angle
= 0) or (Angle
= 180) then
7960 if (g_GetUIDType(FLastSpawnerUID
) = UID_PLAYER
) and
7961 LongBool(gGameSettings
.Options
and GAME_OPTION_BOTVSPLAYER
) then
7963 pla
:= g_Player_Get(FLastSpawnerUID
);
7964 ok
:= not TargetOnScreen(pla
.FObj
.X
+ PLAYER_RECT
.X
,
7965 pla
.FObj
.Y
+ PLAYER_RECT
.Y
);
7968 if (g_GetUIDType(FLastSpawnerUID
) = UID_MONSTER
) and
7969 LongBool(gGameSettings
.Options
and GAME_OPTION_BOTVSMONSTER
) then
7971 mon
:= g_Monsters_ByUID(FLastSpawnerUID
);
7972 ok
:= not TargetOnScreen(mon
.Obj
.X
+ mon
.Obj
.Rect
.X
,
7973 mon
.Obj
.Y
+ mon
.Obj
.Rect
.Y
);
7978 SetAIFlag('ATTACKLEFT', '1')
7980 SetAIFlag('ATTACKRIGHT', '1');
7984 function TBot
.RunDirection(): TDirection
;
7986 if Abs(Vel
.X
) >= 1 then
7988 if Vel
.X
> 0 then Result
:= TDirection
.D_RIGHT
else Result
:= TDirection
.D_LEFT
;
7990 Result
:= FDirection
;
7993 function TBot
.GetRnd(a
: Byte): Boolean;
7995 if a
= 0 then Result
:= False
7996 else if a
= 255 then Result
:= True
7997 else Result
:= Random(256) > 255-a
;
8000 function TBot
.GetInterval(a
: Byte; radius
: SmallInt): SmallInt;
8002 Result
:= Round((255-a
)/255*radius
*(Random(2)-1));
8006 procedure TDifficult
.save (st
: TStream
);
8008 utils
.writeInt(st
, Byte(DiagFire
));
8009 utils
.writeInt(st
, Byte(InvisFire
));
8010 utils
.writeInt(st
, Byte(DiagPrecision
));
8011 utils
.writeInt(st
, Byte(FlyPrecision
));
8012 utils
.writeInt(st
, Byte(Cover
));
8013 utils
.writeInt(st
, Byte(CloseJump
));
8014 st
.WriteBuffer(WeaponPrior
[Low(WeaponPrior
)], sizeof(WeaponPrior
));
8015 st
.WriteBuffer(CloseWeaponPrior
[Low(CloseWeaponPrior
)], sizeof(CloseWeaponPrior
));
8018 procedure TDifficult
.load (st
: TStream
);
8020 DiagFire
:= utils
.readByte(st
);
8021 InvisFire
:= utils
.readByte(st
);
8022 DiagPrecision
:= utils
.readByte(st
);
8023 FlyPrecision
:= utils
.readByte(st
);
8024 Cover
:= utils
.readByte(st
);
8025 CloseJump
:= utils
.readByte(st
);
8026 st
.ReadBuffer(WeaponPrior
[Low(WeaponPrior
)], sizeof(WeaponPrior
));
8027 st
.ReadBuffer(CloseWeaponPrior
[Low(CloseWeaponPrior
)], sizeof(CloseWeaponPrior
));
8031 procedure TBot
.SaveState (st
: TStream
);
8036 inherited SaveState(st
);
8037 utils
.writeSign(st
, 'BOT0');
8039 utils
.writeInt(st
, Byte(FSelectedWeapon
));
8041 utils
.writeInt(st
, Word(FTargetUID
));
8042 // Âðåìÿ ïîòåðè öåëè
8043 utils
.writeInt(st
, LongWord(FLastVisible
));
8044 // Êîëè÷åñòâî ôëàãîâ ÈÈ
8045 dw
:= Length(FAIFlags
);
8046 utils
.writeInt(st
, LongInt(dw
));
8048 for i
:= 0 to dw
-1 do
8050 utils
.writeStr(st
, FAIFlags
[i
].Name
, 20);
8051 utils
.writeStr(st
, FAIFlags
[i
].Value
, 20);
8053 // Íàñòðîéêè ñëîæíîñòè
8054 FDifficult
.save(st
);
8058 procedure TBot
.LoadState (st
: TStream
);
8063 inherited LoadState(st
);
8064 if not utils
.checkSign(st
, 'BOT0') then raise XStreamError
.Create('invalid bot signature');
8066 FSelectedWeapon
:= utils
.readByte(st
);
8068 FTargetUID
:= utils
.readWord(st
);
8069 // Âðåìÿ ïîòåðè öåëè
8070 FLastVisible
:= utils
.readLongWord(st
);
8071 // Êîëè÷åñòâî ôëàãîâ ÈÈ
8072 dw
:= utils
.readLongInt(st
);
8073 if (dw
< 0) or (dw
> 16384) then raise XStreamError
.Create('invalid number of bot AI flags');
8074 SetLength(FAIFlags
, dw
);
8076 for i
:= 0 to dw
-1 do
8078 FAIFlags
[i
].Name
:= utils
.readStr(st
, 20);
8079 FAIFlags
[i
].Value
:= utils
.readStr(st
, 20);
8081 // Íàñòðîéêè ñëîæíîñòè
8082 FDifficult
.load(st
);
8087 conRegVar('player_indicator', @gPlayerIndicator
, 'Draw indicator only for current player, also for teammates, or not at all', 'Draw indicator only for current player, also for teammates, or not at all');
8088 conRegVar('player_indicator_style', @gPlayerIndicatorStyle
, 'Visual appearance of indicator', 'Visual appearance of indicator');