DEADSOFTWARE

759450b25be60295da39a099a2a12d68e6ac2bdf
[d2df-sdl.git] / src / game / g_player.pas
1 (* Copyright (C) Doom 2D: Forever Developers
2 *
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.
6 *
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.
11 *
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/>.
14 *)
15 {$INCLUDE ../shared/a_modes.inc}
16 {$M+}
17 unit g_player;
19 interface
21 uses
22 SysUtils, Classes,
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,
26 g_panel;
28 const
29 KEY_LEFT = 1;
30 KEY_RIGHT = 2;
31 KEY_UP = 3;
32 KEY_DOWN = 4;
33 KEY_FIRE = 5;
34 KEY_OPEN = 6;
35 KEY_JUMP = 7;
36 KEY_CHAT = 8;
38 WP_PREV = 0;
39 WP_NEXT = 1;
40 WP_FACT = WP_PREV;
41 WP_LACT = WP_NEXT;
43 R_ITEM_BACKPACK = 0;
44 R_KEY_RED = 1;
45 R_KEY_GREEN = 2;
46 R_KEY_BLUE = 3;
47 R_BERSERK = 4;
49 MR_SUIT = 0;
50 MR_INVUL = 1;
51 MR_INVIS = 2;
52 MR_MAX = 2;
54 A_BULLETS = 0;
55 A_SHELLS = 1;
56 A_ROCKETS = 2;
57 A_CELLS = 3;
58 A_FUEL = 4;
59 A_HIGH = 4;
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));
65 K_SIMPLEKILL = 0;
66 K_HARDKILL = 1;
67 K_EXTRAHARDKILL = 2;
68 K_FALLKILL = 3;
70 T_RESPAWN = 0;
71 T_SWITCH = 1;
72 T_USE = 2;
73 T_FLAGCAP = 3;
75 TEAM_NONE = 0;
76 TEAM_RED = 1;
77 TEAM_BLUE = 2;
78 TEAM_COOP = 3;
80 SHELL_BULLET = 0;
81 SHELL_SHELL = 1;
82 SHELL_DBLSHELL = 2;
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);
95 PLAYER_HP_SOFT = 100;
96 PLAYER_HP_LIMIT = 200;
97 PLAYER_AP_SOFT = 100;
98 PLAYER_AP_LIMIT = 200;
99 SUICIDE_DAMAGE = 112;
100 WEAPON_DELAY = 5;
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);
107 type
108 TPlayerStat = record
109 Num: Integer;
110 Ping: Word;
111 Loss: Byte;
112 Name: String;
113 Team: Byte;
114 Frags: SmallInt;
115 Deaths: SmallInt;
116 Lives: Byte;
117 Kills: Word;
118 Color: TRGB;
119 Spectator: Boolean;
120 UID: Word;
121 end;
123 TPlayerStatArray = Array of TPlayerStat;
125 TPlayerSavedState = record
126 Health: Integer;
127 Armor: Integer;
128 Air: Integer;
129 JetFuel: Integer;
130 CurrWeap: Byte;
131 NextWeap: WORD;
132 NextWeapDelay: Byte;
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;
137 Used: Boolean;
138 end;
140 TKeyState = record
141 Pressed: Boolean;
142 Time: Word;
143 end;
145 TPlayer = class{$IFDEF USE_MEMPOOL}(TPoolObject){$ENDIF}
146 private
147 FIamBot: Boolean;
148 FUID: Word;
149 FName: String;
150 FTeam: Byte;
151 FAlive: Boolean;
152 FSpawned: Boolean;
153 FDirection: TDirection;
154 FHealth: Integer;
155 FLives: Byte;
156 FArmor: Integer;
157 FAir: Integer;
158 FPain: Integer;
159 FPickup: Integer;
160 FKills: Integer;
161 FMonsterKills: Integer;
162 FFrags: Integer;
163 FFragCombo: Byte;
164 FLastFrag: LongWord;
165 FComboEvnt: Integer;
166 FDeath: Integer;
167 FCanJetpack: Boolean;
168 FJetFuel: Integer;
169 FFlag: Byte;
170 FSecrets: Integer;
171 FCurrWeap: Byte;
172 FNextWeap: WORD;
173 FNextWeapDelay: Byte; // frames
174 FBFGFireCounter: SmallInt;
175 FLastSpawnerUID: Word;
176 FLastHit: Byte;
177 FObj: TObj;
178 FXTo, FYTo: Integer;
179 FSpectatePlayer: Integer;
180 FFirePainTime: Integer;
181 FFireAttacker: Word;
183 FSavedStateNum: Integer;
185 FModel: TPlayerModel;
186 FPunchAnim: TAnimation;
187 FActionPrior: Byte;
188 FActionAnim: Byte;
189 FActionForce: Boolean;
190 FActionChanged: Boolean;
191 FAngle: SmallInt;
192 FFireAngle: SmallInt;
193 FIncCamOld: Integer;
194 FIncCam: Integer;
195 FSlopeOld: Integer;
196 FShellTimer: Integer;
197 FShellType: Byte;
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;
208 FGodMode: Boolean;
209 FNoTarget: Boolean;
210 FNoReload: Boolean;
211 FJustTeleported: Boolean;
212 FNetTime: LongWord;
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;
229 procedure DoPunch();
231 procedure Run(Direction: TDirection);
232 procedure NextWeapon();
233 procedure PrevWeapon();
234 procedure SeeUp();
235 procedure SeeDown();
236 procedure Fire();
237 procedure Jump();
238 procedure Use();
240 function getNextWeaponIndex (): Byte; // return 255 for "no switch"
241 procedure resetWeaponQueue ();
242 function hasAmmoForWeapon (weapon: Byte): Boolean;
244 procedure doDamage (v: Integer);
246 function refreshCorpse(): Boolean;
248 public
249 FDamageBuffer: Integer;
251 FAmmo: Array [A_BULLETS..A_HIGH] of Word;
252 FMaxAmmo: Array [A_BULLETS..A_HIGH] of Word;
253 FWeapon: Array [WP_FIRST..WP_LAST] of Boolean;
254 FRulez: Set of R_ITEM_BACKPACK..R_BERSERK;
255 FBerserk: Integer;
256 FMegaRulez: Array [MR_SUIT..MR_MAX] of DWORD;
257 FReloading: Array [WP_FIRST..WP_LAST] of Word;
258 FTime: Array [T_RESPAWN..T_FLAGCAP] of DWORD;
259 FKeys: Array [KEY_LEFT..KEY_CHAT] of TKeyState;
260 FColor: TRGB;
261 FPreferredTeam: Byte;
262 FSpectator: Boolean;
263 FNoRespawn: Boolean;
264 FWantsInGame: Boolean;
265 FGhost: Boolean;
266 FPhysics: Boolean;
267 FFlaming: Boolean;
268 FJetpack: Boolean;
269 FActualModelName: string;
270 FClientID: SmallInt;
271 FPing: Word;
272 FLoss: Byte;
273 FReady: Boolean;
274 FDummy: Boolean;
275 FFireTime: Integer;
276 FSpawnInvul: Integer;
277 FHandicap: Integer;
278 FWaitForFirstSpawn: Boolean; // set to `true` in server, used to spawn a player on first full state request
279 FCorpse: Integer;
281 // debug: viewport offset
282 viewPortX, viewPortY, viewPortW, viewPortH: Integer;
284 function isValidViewPort (): Boolean; inline;
286 constructor Create(); virtual;
287 destructor Destroy(); override;
288 procedure Respawn(Silent: Boolean; Force: Boolean = False); virtual;
289 function GetRespawnPoint(): Byte;
290 procedure PressKey(Key: Byte; Time: Word = 1);
291 procedure ReleaseKeys();
292 procedure SetModel(ModelName: String);
293 procedure SetColor(Color: TRGB);
294 function GetColor(): TRGB;
295 procedure SetWeapon(W: Byte);
296 function IsKeyPressed(K: Byte): Boolean;
297 function GetKeys(): Byte;
298 function PickItem(ItemType: Byte; arespawn: Boolean; var remove: Boolean): Boolean; virtual;
299 function Collide(X, Y: Integer; Width, Height: Word): Boolean; overload;
300 function Collide(Panel: TPanel): Boolean; overload;
301 function Collide(X, Y: Integer): Boolean; overload;
302 procedure SetDirection(Direction: TDirection);
303 procedure GetSecret();
304 function TeleportTo(X, Y: Integer; silent: Boolean; dir: Byte): Boolean;
305 procedure Touch();
306 procedure Push(vx, vy: Integer);
307 procedure ChangeModel(ModelName: String);
308 procedure SwitchTeam;
309 procedure ChangeTeam(Team: Byte);
310 procedure BFGHit();
311 function GetFlag(Flag: Byte): Boolean;
312 procedure SetFlag(Flag: Byte);
313 function DropFlag(Silent: Boolean = True; DoThrow: Boolean = False): Boolean;
314 function TryDropFlag(): Boolean;
315 procedure AllRulez(Health: Boolean);
316 procedure RestoreHealthArmor();
317 procedure FragCombo();
318 procedure GiveItem(ItemType: Byte);
319 procedure Damage(value: Word; SpawnerUID: Word; vx, vy: Integer; t: Byte); virtual;
320 function Heal(value: Word; Soft: Boolean): Boolean; virtual;
321 procedure MakeBloodVector(Count: Word; VelX, VelY: Integer);
322 procedure MakeBloodSimple(Count: Word);
323 procedure Kill(KillType: Byte; SpawnerUID: Word; t: Byte);
324 procedure Reset(Force: Boolean);
325 procedure Spectate(NoMove: Boolean = False);
326 procedure SwitchNoClip;
327 procedure SoftReset();
328 procedure Draw(); virtual;
329 procedure DrawPain();
330 procedure DrawPickup();
331 procedure DrawRulez();
332 procedure DrawAim();
333 procedure DrawIndicator(Color: TRGB);
334 procedure DrawBubble();
335 procedure DrawGUI();
336 procedure PreUpdate();
337 procedure Update(); virtual;
338 procedure RememberState();
339 procedure RecallState();
340 procedure SaveState (st: TStream); virtual;
341 procedure LoadState (st: TStream); virtual;
342 procedure PauseSounds(Enable: Boolean);
343 procedure NetFire(Wpn: Byte; X, Y, AX, AY: Integer; WID: Integer = -1);
344 procedure DoLerp(Level: Integer = 2);
345 procedure SetLerp(XTo, YTo: Integer);
346 procedure ProcessWeaponAction(Action: Byte);
347 procedure QueueWeaponSwitch(Weapon: Byte);
348 procedure RealizeCurrentWeapon();
349 procedure FlamerOn;
350 procedure FlamerOff;
351 procedure JetpackOn;
352 procedure JetpackOff;
353 procedure CatchFire(Attacker: Word; Timeout: Integer = PLAYER_BURN_TIME);
355 //WARNING! this does nothing for now, but still call it!
356 procedure positionChanged (); //WARNING! call this after entity position was changed, or coldet will not work right!
358 procedure getMapBox (out x, y, w, h: Integer); inline;
359 procedure moveBy (dx, dy: Integer); inline;
361 function getCameraObj(): TObj;
363 public
364 property Vel: TPoint2i read FObj.Vel;
365 property Obj: TObj read FObj;
367 property Name: String read FName write FName;
368 property Model: TPlayerModel read FModel;
369 property Health: Integer read FHealth write FHealth;
370 property Lives: Byte read FLives write FLives;
371 property Armor: Integer read FArmor write FArmor;
372 property Air: Integer read FAir write FAir;
373 property JetFuel: Integer read FJetFuel write FJetFuel;
374 property Frags: Integer read FFrags write FFrags;
375 property Death: Integer read FDeath write FDeath;
376 property Kills: Integer read FKills write FKills;
377 property CurrWeap: Byte read FCurrWeap write FCurrWeap;
378 property MonsterKills: Integer read FMonsterKills write FMonsterKills;
379 property Secrets: Integer read FSecrets;
380 property GodMode: Boolean read FGodMode write FGodMode;
381 property NoTarget: Boolean read FNoTarget write FNoTarget;
382 property NoReload: Boolean read FNoReload write FNoReload;
383 property alive: Boolean read FAlive write FAlive;
384 property Flag: Byte read FFlag;
385 property Team: Byte read FTeam write FTeam;
386 property Direction: TDirection read FDirection;
387 property GameX: Integer read FObj.X write FObj.X;
388 property GameY: Integer read FObj.Y write FObj.Y;
389 property GameVelX: Integer read FObj.Vel.X write FObj.Vel.X;
390 property GameVelY: Integer read FObj.Vel.Y write FObj.Vel.Y;
391 property GameAccelX: Integer read FObj.Accel.X write FObj.Accel.X;
392 property GameAccelY: Integer read FObj.Accel.Y write FObj.Accel.Y;
393 property IncCam: Integer read FIncCam write FIncCam;
394 property IncCamOld: Integer read FIncCamOld write FIncCamOld;
395 property SlopeOld: Integer read FSlopeOld write FSlopeOld;
396 property UID: Word read FUID write FUID;
397 property JustTeleported: Boolean read FJustTeleported write FJustTeleported;
398 property NetTime: LongWord read FNetTime write FNetTime;
400 published
401 property eName: String read FName write FName;
402 property eHealth: Integer read FHealth write FHealth;
403 property eLives: Byte read FLives write FLives;
404 property eArmor: Integer read FArmor write FArmor;
405 property eAir: Integer read FAir write FAir;
406 property eJetFuel: Integer read FJetFuel write FJetFuel;
407 property eFrags: Integer read FFrags write FFrags;
408 property eDeath: Integer read FDeath write FDeath;
409 property eKills: Integer read FKills write FKills;
410 property eCurrWeap: Byte read FCurrWeap write FCurrWeap;
411 property eMonsterKills: Integer read FMonsterKills write FMonsterKills;
412 property eSecrets: Integer read FSecrets write FSecrets;
413 property eGodMode: Boolean read FGodMode write FGodMode;
414 property eNoTarget: Boolean read FNoTarget write FNoTarget;
415 property eNoReload: Boolean read FNoReload write FNoReload;
416 property eAlive: Boolean read FAlive write FAlive;
417 property eFlag: Byte read FFlag;
418 property eTeam: Byte read FTeam write FTeam;
419 property eDirection: TDirection read FDirection;
420 property eGameX: Integer read FObj.X write FObj.X;
421 property eGameY: Integer read FObj.Y write FObj.Y;
422 property eGameVelX: Integer read FObj.Vel.X write FObj.Vel.X;
423 property eGameVelY: Integer read FObj.Vel.Y write FObj.Vel.Y;
424 property eGameAccelX: Integer read FObj.Accel.X write FObj.Accel.X;
425 property eGameAccelY: Integer read FObj.Accel.Y write FObj.Accel.Y;
426 property eIncCam: Integer read FIncCam write FIncCam;
427 property eUID: Word read FUID;
428 property eJustTeleported: Boolean read FJustTeleported;
429 property eNetTime: LongWord read FNetTime;
431 // set this before assigning something to `eDamage`
432 property eDamageType: Integer read mEDamageType write mEDamageType;
433 property eDamage: Integer write doDamage;
434 end;
436 TDifficult = record
437 public
438 DiagFire: Byte;
439 InvisFire: Byte;
440 DiagPrecision: Byte;
441 FlyPrecision: Byte;
442 Cover: Byte;
443 CloseJump: Byte;
444 WeaponPrior: packed array [WP_FIRST..WP_LAST] of Byte;
445 CloseWeaponPrior: packed array [WP_FIRST..WP_LAST] of Byte;
446 //SafeWeaponPrior: Array [WP_FIRST..WP_LAST] of Byte;
448 public
449 procedure save (st: TStream);
450 procedure load (st: TStream);
451 end;
453 TAIFlag = record
454 Name: String;
455 Value: String;
456 end;
458 TBot = class(TPlayer)
459 private
460 FSelectedWeapon: Byte;
461 FTargetUID: Word;
462 FLastVisible: DWORD;
463 FAIFlags: Array of TAIFlag;
464 FDifficult: TDifficult;
466 function GetRnd(a: Byte): Boolean;
467 function GetInterval(a: Byte; radius: SmallInt): SmallInt;
468 function RunDirection(): TDirection;
469 function FullInStep(XInc, YInc: Integer): Boolean;
470 //function NeedItem(Item: Byte): Byte;
471 procedure SelectWeapon(Dist: Integer);
472 procedure SetAIFlag(aName, fValue: String20);
473 function GetAIFlag(aName: String20): String20;
474 procedure RemoveAIFlag(aName: String20);
475 function Healthy(): Byte;
476 procedure UpdateMove();
477 procedure UpdateCombat();
478 function KeyPressed(Key: Word): Boolean;
479 procedure ReleaseKey(Key: Byte);
480 function TargetOnScreen(TX, TY: Integer): Boolean;
481 procedure OnDamage(Angle: SmallInt); override;
483 public
484 procedure Respawn(Silent: Boolean; Force: Boolean = False); override;
485 constructor Create(); override;
486 destructor Destroy(); override;
487 procedure Draw(); override;
488 function PickItem(ItemType: Byte; force: Boolean; var remove: Boolean): Boolean; override;
489 function Heal(value: Word; Soft: Boolean): Boolean; override;
490 procedure Update(); override;
491 procedure SaveState (st: TStream); override;
492 procedure LoadState (st: TStream); override;
493 end;
495 PGib = ^TGib;
496 TGib = record
497 alive: Boolean;
498 ID: DWORD;
499 MaskID: DWORD;
500 RAngle: Integer;
501 Color: TRGB;
502 Obj: TObj;
504 procedure getMapBox (out x, y, w, h: Integer); inline;
505 procedure moveBy (dx, dy: Integer); inline;
507 procedure positionChanged (); inline; //WARNING! call this after entity position was changed, or coldet will not work right!
508 end;
511 PShell = ^TShell;
512 TShell = record
513 SpriteID: DWORD;
514 alive: Boolean;
515 SType: Byte;
516 RAngle: Integer;
517 Timeout: Cardinal;
518 CX, CY: Integer;
519 Obj: TObj;
521 procedure getMapBox (out x, y, w, h: Integer); inline;
522 procedure moveBy (dx, dy: Integer); inline;
524 procedure positionChanged (); inline; //WARNING! call this after entity position was changed, or coldet will not work right!
525 end;
527 TCorpse = class{$IFDEF USE_MEMPOOL}(TPoolObject){$ENDIF}
528 private
529 FModelName: String;
530 FMess: Boolean;
531 FState: Byte;
532 FDamage: Byte;
533 FColor: TRGB;
534 FObj: TObj;
535 FPlayerUID: Word;
536 FAnimation: TAnimation;
537 FAnimationMask: TAnimation;
539 public
540 constructor Create(X, Y: Integer; ModelName: String; aMess: Boolean);
541 destructor Destroy(); override;
542 procedure Damage(Value: Word; SpawnerUID: Word; vx, vy: Integer);
543 procedure Update();
544 procedure Draw();
545 procedure SaveState (st: TStream);
546 procedure LoadState (st: TStream);
548 procedure getMapBox (out x, y, w, h: Integer); inline;
549 procedure moveBy (dx, dy: Integer); inline;
551 procedure positionChanged (); inline; //WARNING! call this after entity position was changed, or coldet will not work right!
553 function ObjPtr (): PObj; inline;
555 property Obj: TObj read FObj; // copies object
556 property State: Byte read FState;
557 property Mess: Boolean read FMess;
558 end;
560 TTeamStat = Array [TEAM_RED..TEAM_BLUE] of
561 record
562 Goals: SmallInt;
563 end;
565 var
566 gPlayers: Array of TPlayer;
567 gCorpses: Array of TCorpse;
568 gGibs: Array of TGib;
569 gShells: Array of TShell;
570 gTeamStat: TTeamStat;
571 gFly: Boolean = False;
572 gAimLine: Boolean = False;
573 gChatBubble: Integer = 0;
574 gPlayerIndicator: Integer = 1;
575 gPlayerIndicatorStyle: Integer = 0;
576 gNumBots: Word = 0;
577 gSpectLatchPID1: Word = 0;
578 gSpectLatchPID2: Word = 0;
579 MAX_RUNVEL: Integer = 8;
580 VEL_JUMP: Integer = 10;
581 SHELL_TIMEOUT: Cardinal = 60000;
583 function Lerp(X, Y, Factor: Integer): Integer;
585 procedure g_Gibs_SetMax(Count: Word);
586 function g_Gibs_GetMax(): Word;
587 procedure g_Corpses_SetMax(Count: Word);
588 function g_Corpses_GetMax(): Word;
589 procedure g_Shells_SetMax(Count: Word);
590 function g_Shells_GetMax(): Word;
592 procedure g_Player_Init();
593 procedure g_Player_Free();
594 function g_Player_Create(ModelName: String; Color: TRGB; Team: Byte; Bot: Boolean): Word;
595 function g_Player_CreateFromState (st: TStream): Word;
596 procedure g_Player_Remove(UID: Word);
597 procedure g_Player_ResetTeams();
598 procedure g_Player_PreUpdate();
599 procedure g_Player_UpdateAll();
600 procedure g_Player_DrawAll();
601 procedure g_Player_DrawDebug(p: TPlayer);
602 procedure g_Player_DrawHealth();
603 procedure g_Player_RememberAll();
604 procedure g_Player_ResetAll(Force, Silent: Boolean);
605 function g_Player_Get(UID: Word): TPlayer;
606 function g_Player_GetCount(): Byte;
607 function g_Player_GetStats(): TPlayerStatArray;
608 function g_Player_ValidName(Name: String): Boolean;
609 function g_Player_CreateCorpse(Player: TPlayer): Integer;
610 procedure g_Player_CreateGibs(fX, fY: Integer; ModelName: String; fColor: TRGB);
611 procedure g_Player_CreateShell(fX, fY, dX, dY: Integer; T: Byte);
612 procedure g_Player_UpdatePhysicalObjects();
613 procedure g_Player_DrawCorpses();
614 procedure g_Player_DrawShells();
615 procedure g_Player_RemoveAllCorpses();
616 procedure g_Player_Corpses_SaveState (st: TStream);
617 procedure g_Player_Corpses_LoadState (st: TStream);
618 procedure g_Player_ResetReady();
619 procedure g_Bot_Add(Team, Difficult: Byte; Handicap: Integer = 100);
620 procedure g_Bot_AddList(Team: Byte; lname: ShortString; num: Integer = -1; Handicap: Integer = 100);
621 procedure g_Bot_MixNames();
622 procedure g_Bot_RemoveAll();
624 implementation
626 uses
627 {$INCLUDE ../nogl/noGLuses.inc}
628 {$IFDEF ENABLE_HOLMES}
629 g_holmes,
630 {$ENDIF}
631 e_log, g_map, g_items, g_console, g_gfx, Math,
632 g_options, g_triggers, g_menu, g_game, g_grid, e_res,
633 wadreader, g_main, g_monsters, CONFIG, g_language,
634 g_net, g_netmsg, g_window,
635 utils, xstreams;
637 const PLR_SAVE_VERSION = 0;
639 type
640 TBotProfile = record
641 name: ShortString;
642 model: ShortString;
643 team: Byte;
644 color: TRGB;
645 diag_fire: Byte;
646 invis_fire: Byte;
647 diag_precision: Byte;
648 fly_precision: Byte;
649 cover: Byte;
650 close_jump: Byte;
651 w_prior1: Array [WP_FIRST..WP_LAST] of Byte;
652 w_prior2: Array [WP_FIRST..WP_LAST] of Byte;
653 w_prior3: Array [WP_FIRST..WP_LAST] of Byte;
654 end;
656 const
657 TIME_RESPAWN1 = 1500;
658 TIME_RESPAWN2 = 2000;
659 TIME_RESPAWN3 = 3000;
660 AIR_DEF = 360;
661 AIR_MAX = 1091;
662 JET_MAX = 540; // ~30 sec
663 PLAYER_SUIT_TIME = 30000;
664 PLAYER_INVUL_TIME = 30000;
665 PLAYER_INVIS_TIME = 35000;
666 FRAG_COMBO_TIME = 3000;
667 VEL_SW = 4;
668 VEL_FLY = 6;
669 ANGLE_RIGHTUP = 55;
670 ANGLE_RIGHTDOWN = -35;
671 ANGLE_LEFTUP = 125;
672 ANGLE_LEFTDOWN = -145;
673 PLAYER_HEADRECT: TRectWH = (X:24; Y:12; Width:20; Height:12);
674 WEAPONPOINT: Array [TDirection] of TDFPoint = ((X:16; Y:32), (X:47; Y:32));
675 BOT_MAXJUMP = 84;
676 BOT_LONGDIST = 300;
677 BOT_UNSAFEDIST = 128;
678 TEAMCOLOR: Array [TEAM_RED..TEAM_BLUE] of TRGB = ((R:255; G:0; B:0),
679 (R:0; G:0; B:255));
680 DIFFICULT_EASY: TDifficult = (DiagFire: 32; InvisFire: 32; DiagPrecision: 32;
681 FlyPrecision: 32; Cover: 32; CloseJump: 32;
682 WeaponPrior:(0,0,0,0,0,0,0,0,0,0,0); CloseWeaponPrior:(0,0,0,0,0,0,0,0,0,0,0));
683 DIFFICULT_MEDIUM: TDifficult = (DiagFire: 127; InvisFire: 127; DiagPrecision: 127;
684 FlyPrecision: 127; Cover: 127; CloseJump: 127;
685 WeaponPrior:(0,0,0,0,0,0,0,0,0,0,0); CloseWeaponPrior:(0,0,0,0,0,0,0,0,0,0,0));
686 DIFFICULT_HARD: TDifficult = (DiagFire: 255; InvisFire: 255; DiagPrecision: 255;
687 FlyPrecision: 255; Cover: 255; CloseJump: 255;
688 WeaponPrior:(0,0,0,0,0,0,0,0,0,0,0); CloseWeaponPrior:(0,0,0,0,0,0,0,0,0,0,0));
689 WEAPON_PRIOR1: Array [WP_FIRST..WP_LAST] of Byte =
690 (WEAPON_FLAMETHROWER, WEAPON_SUPERPULEMET,
691 WEAPON_SHOTGUN2, WEAPON_SHOTGUN1,
692 WEAPON_CHAINGUN, WEAPON_PLASMA, WEAPON_ROCKETLAUNCHER,
693 WEAPON_BFG, WEAPON_PISTOL, WEAPON_SAW, WEAPON_KASTET);
694 WEAPON_PRIOR2: Array [WP_FIRST..WP_LAST] of Byte =
695 (WEAPON_FLAMETHROWER, WEAPON_SUPERPULEMET,
696 WEAPON_BFG, WEAPON_ROCKETLAUNCHER,
697 WEAPON_SHOTGUN2, WEAPON_PLASMA, WEAPON_SHOTGUN1,
698 WEAPON_CHAINGUN, WEAPON_PISTOL, WEAPON_SAW, WEAPON_KASTET);
699 //WEAPON_PRIOR3: Array [WP_FIRST..WP_LAST] of Byte =
700 // (WEAPON_FLAMETHROWER, WEAPON_SUPERPULEMET,
701 // WEAPON_BFG, WEAPON_PLASMA, WEAPON_SHOTGUN2,
702 // WEAPON_CHAINGUN, WEAPON_SHOTGUN1, WEAPON_SAW,
703 // WEAPON_ROCKETLAUNCHER, WEAPON_PISTOL, WEAPON_KASTET);
704 WEAPON_RELOAD: Array [WP_FIRST..WP_LAST] of Byte =
705 (5, 2, 6, 18, 36, 2, 12, 2, 14, 2, 2);
707 PLAYER_SIGNATURE = $52594C50; // 'PLYR'
708 CORPSE_SIGNATURE = $50524F43; // 'CORP'
710 BOTNAMES_FILENAME = 'botnames.txt';
711 BOTLIST_FILENAME = 'botlist.txt';
713 var
714 MaxGibs: Word = 150;
715 MaxCorpses: Word = 20;
716 MaxShells: Word = 300;
717 CurrentGib: Integer = 0;
718 CurrentShell: Integer = 0;
719 BotNames: Array of String;
720 BotList: Array of TBotProfile;
721 SavedStates: Array of TPlayerSavedState;
724 function Lerp(X, Y, Factor: Integer): Integer;
725 begin
726 Result := X + ((Y - X) div Factor);
727 end;
729 function SameTeam(UID1, UID2: Word): Boolean;
730 begin
731 Result := False;
733 if (UID1 > UID_MAX_PLAYER) or (UID1 <= UID_MAX_GAME) or
734 (UID2 > UID_MAX_PLAYER) or (UID2 <= UID_MAX_GAME) then Exit;
736 if (g_Player_Get(UID1) = nil) or (g_Player_Get(UID2) = nil) then Exit;
738 if ((g_Player_Get(UID1).Team = TEAM_NONE) or
739 (g_Player_Get(UID2).Team = TEAM_NONE)) then Exit;
741 Result := g_Player_Get(UID1).FTeam = g_Player_Get(UID2).FTeam;
742 end;
744 procedure g_Gibs_SetMax(Count: Word);
745 begin
746 MaxGibs := Count;
747 SetLength(gGibs, Count);
749 if CurrentGib >= Count then
750 CurrentGib := 0;
751 end;
753 function g_Gibs_GetMax(): Word;
754 begin
755 Result := MaxGibs;
756 end;
758 procedure g_Shells_SetMax(Count: Word);
759 begin
760 MaxShells := Count;
761 SetLength(gShells, Count);
763 if CurrentShell >= Count then
764 CurrentShell := 0;
765 end;
767 function g_Shells_GetMax(): Word;
768 begin
769 Result := MaxShells;
770 end;
773 procedure g_Corpses_SetMax(Count: Word);
774 begin
775 MaxCorpses := Count;
776 SetLength(gCorpses, Count);
777 end;
779 function g_Corpses_GetMax(): Word;
780 begin
781 Result := MaxCorpses;
782 end;
784 function g_Player_Create(ModelName: String; Color: TRGB; Team: Byte; Bot: Boolean): Word;
785 var
786 a: Integer;
787 ok: Boolean;
788 begin
789 Result := 0;
791 ok := False;
792 a := 0;
794 // Åñòü ëè ìåñòî â gPlayers:
795 if gPlayers <> nil then
796 for a := 0 to High(gPlayers) do
797 if gPlayers[a] = nil then
798 begin
799 ok := True;
800 Break;
801 end;
803 // Íåò ìåñòà - ðàñøèðÿåì gPlayers:
804 if not ok then
805 begin
806 SetLength(gPlayers, Length(gPlayers)+1);
807 a := High(gPlayers);
808 end;
810 // Ñîçäàåì îáúåêò èãðîêà:
811 if Bot then
812 gPlayers[a] := TBot.Create()
813 else
814 gPlayers[a] := TPlayer.Create();
817 gPlayers[a].FActualModelName := ModelName;
818 gPlayers[a].SetModel(ModelName);
820 // Íåò ìîäåëè - ñîçäàíèå íå âîçìîæíî:
821 if gPlayers[a].FModel = nil then
822 begin
823 gPlayers[a].Free();
824 gPlayers[a] := nil;
825 g_FatalError(Format(_lc[I_GAME_ERROR_MODEL], [ModelName]));
826 Exit;
827 end;
829 if not (Team in [TEAM_RED, TEAM_BLUE]) then
830 if Random(2) = 0 then
831 Team := TEAM_RED
832 else
833 Team := TEAM_BLUE;
834 gPlayers[a].FPreferredTeam := Team;
836 case gGameSettings.GameMode of
837 GM_DM: gPlayers[a].FTeam := TEAM_NONE;
838 GM_TDM,
839 GM_CTF: gPlayers[a].FTeam := gPlayers[a].FPreferredTeam;
840 GM_SINGLE,
841 GM_COOP: gPlayers[a].FTeam := TEAM_COOP;
842 end;
844 // Åñëè êîìàíäíàÿ èãðà - êðàñèì ìîäåëü â öâåò êîìàíäû:
845 gPlayers[a].FColor := Color;
846 if gPlayers[a].FTeam in [TEAM_RED, TEAM_BLUE] then
847 gPlayers[a].FModel.Color := TEAMCOLOR[gPlayers[a].FTeam]
848 else
849 gPlayers[a].FModel.Color := Color;
851 gPlayers[a].FUID := g_CreateUID(UID_PLAYER);
852 gPlayers[a].FAlive := False;
854 Result := gPlayers[a].FUID;
855 end;
857 function g_Player_CreateFromState (st: TStream): Word;
858 var a: Integer; ok, Bot: Boolean; pos: Int64;
859 begin
860 assert(st <> nil);
862 // check signature and entity type
863 pos := st.Position;
864 if not utils.checkSign(st, 'PLYR') then raise XStreamError.Create('invalid player signature');
865 if (utils.readByte(st) <> PLR_SAVE_VERSION) then raise XStreamError.Create('invalid player version');
866 Bot := utils.readBool(st);
867 st.Position := pos;
869 // find free player slot
870 ok := false;
871 for a := 0 to High(gPlayers) do
872 if gPlayers[a] = nil then
873 begin
874 ok := true;
875 break;
876 end;
878 // allocate player slot
879 if not ok then
880 begin
881 SetLength(gPlayers, Length(gPlayers)+1);
882 a := High(gPlayers);
883 end;
885 // create entity and load state
886 if Bot then
887 gPlayers[a] := TBot.Create()
888 else
889 gPlayers[a] := TPlayer.Create();
890 gPlayers[a].FPhysics := True; // ???
891 gPlayers[a].LoadState(st);
893 result := gPlayers[a].FUID;
894 end;
897 procedure g_Player_ResetTeams();
898 var
899 a: Integer;
900 begin
901 if g_Game_IsClient then
902 Exit;
903 if gPlayers = nil then
904 Exit;
905 for a := Low(gPlayers) to High(gPlayers) do
906 if gPlayers[a] <> nil then
907 case gGameSettings.GameMode of
908 GM_DM:
909 gPlayers[a].ChangeTeam(TEAM_NONE);
910 GM_TDM, GM_CTF:
911 if not (gPlayers[a].Team in [TEAM_RED, TEAM_BLUE]) then
912 if gPlayers[a].FPreferredTeam in [TEAM_RED, TEAM_BLUE] then
913 gPlayers[a].ChangeTeam(gPlayers[a].FPreferredTeam)
914 else
915 if a mod 2 = 0 then
916 gPlayers[a].ChangeTeam(TEAM_RED)
917 else
918 gPlayers[a].ChangeTeam(TEAM_BLUE);
919 GM_SINGLE,
920 GM_COOP:
921 gPlayers[a].ChangeTeam(TEAM_COOP);
922 end;
923 end;
925 procedure g_Bot_Add(Team, Difficult: Byte; Handicap: Integer = 100);
926 var
927 m: SSArray;
928 _name, _model: String;
929 a, tr, tb: Integer;
930 begin
931 if not g_Game_IsServer then Exit;
933 // Ñïèñîê íàçâàíèé ìîäåëåé:
934 m := g_PlayerModel_GetNames();
935 if m = nil then
936 Exit;
938 // Êîìàíäà:
939 if (gGameSettings.GameType = GT_SINGLE) or (gGameSettings.GameMode = GM_COOP) then
940 Team := TEAM_COOP // COOP
941 else
942 if gGameSettings.GameMode = GM_DM then
943 Team := TEAM_NONE // DM
944 else
945 if Team = TEAM_NONE then // CTF / TDM
946 begin
947 // Àâòîáàëàíñ êîìàíä:
948 tr := 0;
949 tb := 0;
951 for a := 0 to High(gPlayers) do
952 if gPlayers[a] <> nil then
953 begin
954 if gPlayers[a].Team = TEAM_RED then
955 Inc(tr)
956 else
957 if gPlayers[a].Team = TEAM_BLUE then
958 Inc(tb);
959 end;
961 if tr > tb then
962 Team := TEAM_BLUE
963 else
964 if tb > tr then
965 Team := TEAM_RED
966 else // tr = tb
967 if Random(2) = 0 then
968 Team := TEAM_RED
969 else
970 Team := TEAM_BLUE;
971 end;
973 // Âûáèðàåì áîòó èìÿ:
974 _name := '';
975 if BotNames <> nil then
976 for a := 0 to High(BotNames) do
977 if g_Player_ValidName(BotNames[a]) then
978 begin
979 _name := BotNames[a];
980 Break;
981 end;
983 // Âûáèðàåì ñëó÷àéíóþ ìîäåëü:
984 _model := m[Random(Length(m))];
986 // Ñîçäàåì áîòà:
987 with g_Player_Get(g_Player_Create(_model,
988 _RGB(Min(Random(9)*32, 255),
989 Min(Random(9)*32, 255),
990 Min(Random(9)*32, 255)),
991 Team, True)) as TBot do
992 begin
993 // Åñëè èìåíè íåò, äåëàåì åãî èç UID áîòà
994 if _name = '' then
995 Name := Format('DFBOT%.5d', [UID])
996 else
997 Name := _name;
999 case Difficult of
1000 1: FDifficult := DIFFICULT_EASY;
1001 2: FDifficult := DIFFICULT_MEDIUM;
1002 else FDifficult := DIFFICULT_HARD;
1003 end;
1005 for a := WP_FIRST to WP_LAST do
1006 begin
1007 FDifficult.WeaponPrior[a] := WEAPON_PRIOR1[a];
1008 FDifficult.CloseWeaponPrior[a] := WEAPON_PRIOR2[a];
1009 //FDifficult.SafeWeaponPrior[a] := WEAPON_PRIOR3[a];
1010 end;
1012 FHandicap := Handicap;
1014 g_Console_Add(Format(_lc[I_PLAYER_JOIN], [Name]), True);
1016 if g_Game_IsNet then MH_SEND_PlayerCreate(UID);
1017 if g_Game_IsServer and (gGameSettings.MaxLives > 0) then
1018 Spectate();
1019 end;
1020 end;
1022 procedure g_Bot_AddList(Team: Byte; lName: ShortString; num: Integer = -1; Handicap: Integer = 100);
1023 var
1024 m: SSArray;
1025 _name, _model: String;
1026 a: Integer;
1027 begin
1028 if not g_Game_IsServer then Exit;
1030 // Ñïèñîê íàçâàíèé ìîäåëåé:
1031 m := g_PlayerModel_GetNames();
1032 if m = nil then
1033 Exit;
1035 // Êîìàíäà:
1036 if (gGameSettings.GameType = GT_SINGLE) or (gGameSettings.GameMode = GM_COOP) then
1037 Team := TEAM_COOP // COOP
1038 else
1039 if gGameSettings.GameMode = GM_DM then
1040 Team := TEAM_NONE // DM
1041 else
1042 if Team = TEAM_NONE then
1043 Team := BotList[num].team; // CTF / TDM
1045 // Âûáèðàåì íàñòðîéêè áîòà èç ñïèñêà ïî íîìåðó èëè èìåíè:
1046 lName := AnsiLowerCase(lName);
1047 if (num < 0) or (num > Length(BotList)-1) then
1048 num := -1;
1049 if (num = -1) and (lName <> '') and (BotList <> nil) then
1050 for a := 0 to High(BotList) do
1051 if AnsiLowerCase(BotList[a].name) = lName then
1052 begin
1053 num := a;
1054 Break;
1055 end;
1056 if num = -1 then
1057 Exit;
1059 // Èìÿ áîòà:
1060 _name := BotList[num].name;
1061 // Çàíÿòî - âûáèðàåì ñëó÷àéíîå:
1062 if not g_Player_ValidName(_name) then
1063 repeat
1064 _name := Format('DFBOT%.2d', [Random(100)]);
1065 until g_Player_ValidName(_name);
1067 // Ìîäåëü:
1068 _model := BotList[num].model;
1069 // Íåò òàêîé - âûáèðàåì ñëó÷àéíóþ:
1070 if not InSArray(_model, m) then
1071 _model := m[Random(Length(m))];
1073 // Ñîçäàåì áîòà:
1074 with g_Player_Get(g_Player_Create(_model, BotList[num].color, Team, True)) as TBot do
1075 begin
1076 Name := _name;
1078 FDifficult.DiagFire := BotList[num].diag_fire;
1079 FDifficult.InvisFire := BotList[num].invis_fire;
1080 FDifficult.DiagPrecision := BotList[num].diag_precision;
1081 FDifficult.FlyPrecision := BotList[num].fly_precision;
1082 FDifficult.Cover := BotList[num].cover;
1083 FDifficult.CloseJump := BotList[num].close_jump;
1085 FHandicap := Handicap;
1087 for a := WP_FIRST to WP_LAST do
1088 begin
1089 FDifficult.WeaponPrior[a] := BotList[num].w_prior1[a];
1090 FDifficult.CloseWeaponPrior[a] := BotList[num].w_prior2[a];
1091 //FDifficult.SafeWeaponPrior[a] := BotList[num].w_prior3[a];
1092 end;
1094 g_Console_Add(Format(_lc[I_PLAYER_JOIN], [Name]), True);
1096 if g_Game_IsNet then MH_SEND_PlayerCreate(UID);
1097 end;
1098 end;
1100 procedure g_Bot_RemoveAll();
1101 var
1102 a: Integer;
1103 begin
1104 if not g_Game_IsServer then Exit;
1105 if gPlayers = nil then Exit;
1107 for a := 0 to High(gPlayers) do
1108 if gPlayers[a] <> nil then
1109 if gPlayers[a] is TBot then
1110 begin
1111 gPlayers[a].Lives := 0;
1112 gPlayers[a].Kill(K_SIMPLEKILL, 0, HIT_DISCON);
1113 g_Console_Add(Format(_lc[I_PLAYER_LEAVE], [gPlayers[a].Name]), True);
1114 g_Player_Remove(gPlayers[a].FUID);
1115 end;
1117 g_Bot_MixNames();
1118 end;
1120 procedure g_Bot_MixNames();
1121 var
1122 s: String;
1123 a, b: Integer;
1124 begin
1125 if BotNames <> nil then
1126 for a := 0 to High(BotNames) do
1127 begin
1128 b := Random(Length(BotNames));
1129 s := BotNames[a];
1130 Botnames[a] := BotNames[b];
1131 BotNames[b] := s;
1132 end;
1133 end;
1135 procedure g_Player_Remove(UID: Word);
1136 var
1137 i: Integer;
1138 begin
1139 if gPlayers = nil then Exit;
1141 if g_Game_IsServer and g_Game_IsNet then
1142 MH_SEND_PlayerDelete(UID);
1144 for i := 0 to High(gPlayers) do
1145 if gPlayers[i] <> nil then
1146 if gPlayers[i].FUID = UID then
1147 begin
1148 if gPlayers[i] is TPlayer then
1149 TPlayer(gPlayers[i]).Free()
1150 else
1151 TBot(gPlayers[i]).Free();
1152 gPlayers[i] := nil;
1153 Exit;
1154 end;
1155 end;
1157 procedure g_Player_Init();
1158 var
1159 F: TextFile;
1160 s: String;
1161 a, b: Integer;
1162 config: TConfig;
1163 sa: SSArray;
1164 path: AnsiString;
1165 begin
1166 BotNames := nil;
1168 path := BOTNAMES_FILENAME;
1169 if e_FindResource(DataDirs, path) = false then
1170 Exit;
1172 // ×èòàåì âîçìîæíûå èìåíà áîòîâ èç ôàéëà:
1173 AssignFile(F, path);
1174 Reset(F);
1176 while not EOF(F) do
1177 begin
1178 ReadLn(F, s);
1180 s := Trim(s);
1181 if s = '' then
1182 Continue;
1184 SetLength(BotNames, Length(BotNames)+1);
1185 BotNames[High(BotNames)] := s;
1186 end;
1188 CloseFile(F);
1190 // Ïåðåìåøèâàåì èõ:
1191 g_Bot_MixNames();
1193 // ×èòàåì ôàéë ñ ïàðàìåòðàìè áîòîâ:
1194 config := TConfig.CreateFile(path);
1195 BotList := nil;
1196 a := 0;
1198 while config.SectionExists(IntToStr(a)) do
1199 begin
1200 SetLength(BotList, Length(BotList)+1);
1202 with BotList[High(BotList)] do
1203 begin
1204 // Èìÿ áîòà:
1205 name := config.ReadStr(IntToStr(a), 'name', '');
1206 // Ìîäåëü:
1207 model := config.ReadStr(IntToStr(a), 'model', '');
1208 // Êîìàíäà:
1209 if config.ReadStr(IntToStr(a), 'team', 'red') = 'red' then
1210 team := TEAM_RED
1211 else
1212 team := TEAM_BLUE;
1213 // Öâåò ìîäåëè:
1214 sa := parse(config.ReadStr(IntToStr(a), 'color', ''));
1215 color.R := StrToIntDef(sa[0], 0);
1216 color.G := StrToIntDef(sa[1], 0);
1217 color.B := StrToIntDef(sa[2], 0);
1218 // Âåðîÿòíîñòü ñòðåëüáû ïîä óãëîì:
1219 diag_fire := config.ReadInt(IntToStr(a), 'diag_fire', 0);
1220 // Âåðîÿòíîñòü îòâåòíîãî îãíÿ ïî íåâèäèìîìó ñîïåðíèêó:
1221 invis_fire := config.ReadInt(IntToStr(a), 'invis_fire', 0);
1222 // Òî÷íîñòü ñòðåëüáû ïîä óãëîì:
1223 diag_precision := config.ReadInt(IntToStr(a), 'diag_precision', 0);
1224 // Òî÷íîñòü ñòðåëüáû â ïîëåòå:
1225 fly_precision := config.ReadInt(IntToStr(a), 'fly_precision', 0);
1226 // Òî÷íîñòü óêëîíåíèÿ îò ñíàðÿäîâ:
1227 cover := config.ReadInt(IntToStr(a), 'cover', 0);
1228 // Âåðîÿòíîñòü ïðûæêà ïðè ïðèáëèæåíèè ñîïåðíèêà:
1229 close_jump := config.ReadInt(IntToStr(a), 'close_jump', 0);
1230 // Ïðèîðèòåòû îðóæèÿ äëÿ äàëüíåãî áîÿ:
1231 sa := parse(config.ReadStr(IntToStr(a), 'w_prior1', ''));
1232 if Length(sa) = 10 then
1233 for b := 0 to 9 do
1234 w_prior1[b] := EnsureRange(StrToInt(sa[b]), 0, 9);
1235 // Ïðèîðèòåòû îðóæèÿ äëÿ áëèæíåãî áîÿ:
1236 sa := parse(config.ReadStr(IntToStr(a), 'w_prior2', ''));
1237 if Length(sa) = 10 then
1238 for b := 0 to 9 do
1239 w_prior2[b] := EnsureRange(StrToInt(sa[b]), 0, 9);
1241 {sa := parse(config.ReadStr(IntToStr(a), 'w_prior3', ''));
1242 if Length(sa) = 10 then
1243 for b := 0 to 9 do
1244 w_prior3[b] := EnsureRange(StrToInt(sa[b]), 0, 9);}
1245 end;
1247 a := a + 1;
1248 end;
1250 config.Free();
1251 SetLength(SavedStates, 0);
1252 end;
1254 procedure g_Player_Free();
1255 var
1256 i: Integer;
1257 begin
1258 if gPlayers <> nil then
1259 begin
1260 for i := 0 to High(gPlayers) do
1261 if gPlayers[i] <> nil then
1262 begin
1263 if gPlayers[i] is TPlayer then
1264 TPlayer(gPlayers[i]).Free()
1265 else
1266 TBot(gPlayers[i]).Free();
1267 gPlayers[i] := nil;
1268 end;
1270 gPlayers := nil;
1271 end;
1273 gPlayer1 := nil;
1274 gPlayer2 := nil;
1275 SetLength(SavedStates, 0);
1276 end;
1278 procedure g_Player_PreUpdate();
1279 var
1280 i: Integer;
1281 begin
1282 if gPlayers = nil then Exit;
1283 for i := 0 to High(gPlayers) do
1284 if gPlayers[i] <> nil then
1285 gPlayers[i].PreUpdate();
1286 end;
1288 procedure g_Player_UpdateAll();
1289 var
1290 i: Integer;
1291 begin
1292 if gPlayers = nil then Exit;
1294 //e_WriteLog('***g_Player_UpdateAll: ENTER', MSG_WARNING);
1295 for i := 0 to High(gPlayers) do
1296 begin
1297 if gPlayers[i] <> nil then
1298 begin
1299 if gPlayers[i] is TPlayer then
1300 begin
1301 gPlayers[i].Update();
1302 gPlayers[i].RealizeCurrentWeapon(); // WARNING! DO NOT MOVE THIS INTO `Update()`!
1303 end
1304 else
1305 begin
1306 // bot updates weapons in `UpdateCombat()`
1307 TBot(gPlayers[i]).Update();
1308 end;
1309 end;
1310 end;
1311 //e_WriteLog('***g_Player_UpdateAll: EXIT', MSG_WARNING);
1312 end;
1314 procedure g_Player_DrawAll();
1315 var
1316 i: Integer;
1317 begin
1318 if gPlayers = nil then Exit;
1320 for i := 0 to High(gPlayers) do
1321 if gPlayers[i] <> nil then
1322 if gPlayers[i] is TPlayer then gPlayers[i].Draw()
1323 else TBot(gPlayers[i]).Draw();
1324 end;
1326 procedure g_Player_DrawDebug(p: TPlayer);
1327 var
1328 fW, fH: Byte;
1329 begin
1330 if p = nil then Exit;
1331 if (@p.FObj) = nil then Exit;
1333 e_TextureFontGetSize(gStdFont, fW, fH);
1335 e_TextureFontPrint(0, 0 , 'Pos X: ' + IntToStr(p.FObj.X), gStdFont);
1336 e_TextureFontPrint(0, fH , 'Pos Y: ' + IntToStr(p.FObj.Y), gStdFont);
1337 e_TextureFontPrint(0, fH * 2, 'Vel X: ' + IntToStr(p.FObj.Vel.X), gStdFont);
1338 e_TextureFontPrint(0, fH * 3, 'Vel Y: ' + IntToStr(p.FObj.Vel.Y), gStdFont);
1339 e_TextureFontPrint(0, fH * 4, 'Acc X: ' + IntToStr(p.FObj.Accel.X), gStdFont);
1340 e_TextureFontPrint(0, fH * 5, 'Acc Y: ' + IntToStr(p.FObj.Accel.Y), gStdFont);
1341 e_TextureFontPrint(0, fH * 6, 'Old X: ' + IntToStr(p.FObj.oldX), gStdFont);
1342 e_TextureFontPrint(0, fH * 7, 'Old Y: ' + IntToStr(p.FObj.oldY), gStdFont);
1343 end;
1345 procedure g_Player_DrawHealth();
1346 var
1347 i: Integer;
1348 fW, fH: Byte;
1349 begin
1350 if gPlayers = nil then Exit;
1351 e_TextureFontGetSize(gStdFont, fW, fH);
1353 for i := 0 to High(gPlayers) do
1354 if gPlayers[i] <> nil then
1355 begin
1356 e_TextureFontPrint(gPlayers[i].FObj.X + gPlayers[i].FObj.Rect.X,
1357 gPlayers[i].FObj.Y + gPlayers[i].FObj.Rect.Y + gPlayers[i].FObj.Rect.Height - fH * 2,
1358 IntToStr(gPlayers[i].FHealth), gStdFont);
1359 e_TextureFontPrint(gPlayers[i].FObj.X + gPlayers[i].FObj.Rect.X,
1360 gPlayers[i].FObj.Y + gPlayers[i].FObj.Rect.Y + gPlayers[i].FObj.Rect.Height - fH,
1361 IntToStr(gPlayers[i].FArmor), gStdFont);
1362 end;
1363 end;
1365 function g_Player_Get(UID: Word): TPlayer;
1366 var
1367 a: Integer;
1368 begin
1369 Result := nil;
1371 if gPlayers = nil then
1372 Exit;
1374 for a := 0 to High(gPlayers) do
1375 if gPlayers[a] <> nil then
1376 if gPlayers[a].FUID = UID then
1377 begin
1378 Result := gPlayers[a];
1379 Exit;
1380 end;
1381 end;
1383 function g_Player_GetCount(): Byte;
1384 var
1385 a: Integer;
1386 begin
1387 Result := 0;
1389 if gPlayers = nil then
1390 Exit;
1392 for a := 0 to High(gPlayers) do
1393 if gPlayers[a] <> nil then
1394 Result := Result + 1;
1395 end;
1397 function g_Player_GetStats(): TPlayerStatArray;
1398 var
1399 a: Integer;
1400 begin
1401 Result := nil;
1403 if gPlayers = nil then Exit;
1405 for a := 0 to High(gPlayers) do
1406 if gPlayers[a] <> nil then
1407 begin
1408 SetLength(Result, Length(Result)+1);
1409 with Result[High(Result)] do
1410 begin
1411 Num := a;
1412 Ping := gPlayers[a].FPing;
1413 Loss := gPlayers[a].FLoss;
1414 Name := gPlayers[a].FName;
1415 Team := gPlayers[a].FTeam;
1416 Frags := gPlayers[a].FFrags;
1417 Deaths := gPlayers[a].FDeath;
1418 Kills := gPlayers[a].FKills;
1419 Color := gPlayers[a].FModel.Color;
1420 Lives := gPlayers[a].FLives;
1421 Spectator := gPlayers[a].FSpectator;
1422 UID := gPlayers[a].FUID;
1423 end;
1424 end;
1425 end;
1427 procedure g_Player_ResetReady();
1428 var
1429 a: Integer;
1430 begin
1431 if not g_Game_IsServer then Exit;
1432 if gPlayers = nil then Exit;
1434 for a := 0 to High(gPlayers) do
1435 if gPlayers[a] <> nil then
1436 begin
1437 gPlayers[a].FReady := False;
1438 if g_Game_IsNet then
1439 MH_SEND_GameEvent(NET_EV_INTER_READY, gPlayers[a].UID, 'N');
1440 end;
1441 end;
1443 procedure g_Player_RememberAll;
1444 var
1445 i: Integer;
1446 begin
1447 for i := Low(gPlayers) to High(gPlayers) do
1448 if (gPlayers[i] <> nil) and gPlayers[i].alive then
1449 gPlayers[i].RememberState;
1450 end;
1452 procedure g_Player_ResetAll(Force, Silent: Boolean);
1453 var
1454 i: Integer;
1455 begin
1456 gTeamStat[TEAM_RED].Goals := 0;
1457 gTeamStat[TEAM_BLUE].Goals := 0;
1459 if gPlayers <> nil then
1460 for i := 0 to High(gPlayers) do
1461 if gPlayers[i] <> nil then
1462 begin
1463 gPlayers[i].Reset(Force);
1465 if gPlayers[i] is TPlayer then
1466 begin
1467 if (not gPlayers[i].FSpectator) or gPlayers[i].FWantsInGame then
1468 gPlayers[i].Respawn(Silent)
1469 else
1470 gPlayers[i].Spectate();
1471 end
1472 else
1473 TBot(gPlayers[i]).Respawn(Silent);
1474 end;
1475 end;
1477 function g_Player_CreateCorpse(Player: TPlayer): Integer;
1478 var
1479 i: Integer;
1480 find_id: DWORD;
1481 ok: Boolean;
1482 begin
1483 Result := -1;
1485 if Player.alive then
1486 Exit;
1488 // Ðàçðûâàåì ñâÿçü ñ ïðåæíèì òðóïîì:
1489 i := Player.FCorpse;
1490 if (i >= 0) and (i < Length(gCorpses)) then
1491 begin
1492 if (gCorpses[i] <> nil) and (gCorpses[i].FPlayerUID = Player.FUID) then
1493 gCorpses[i].FPlayerUID := 0;
1494 end;
1496 if Player.FObj.Y >= gMapInfo.Height+128 then
1497 Exit;
1499 with Player do
1500 begin
1501 if (FHealth >= -50) or (gGibsCount = 0) then
1502 begin
1503 if (gCorpses = nil) or (Length(gCorpses) = 0) then
1504 Exit;
1506 ok := False;
1507 for find_id := 0 to High(gCorpses) do
1508 if gCorpses[find_id] = nil then
1509 begin
1510 ok := True;
1511 Break;
1512 end;
1514 if not ok then
1515 find_id := Random(Length(gCorpses));
1517 gCorpses[find_id] := TCorpse.Create(FObj.X, FObj.Y, FModel.Name, FHealth < -20);
1518 gCorpses[find_id].FColor := FModel.Color;
1519 gCorpses[find_id].FObj.Vel := FObj.Vel;
1520 gCorpses[find_id].FObj.Accel := FObj.Accel;
1521 gCorpses[find_id].FPlayerUID := FUID;
1523 Result := find_id;
1524 end
1525 else
1526 g_Player_CreateGibs(FObj.X + PLAYER_RECT_CX,
1527 FObj.Y + PLAYER_RECT_CY,
1528 FModel.Name, FModel.Color);
1529 end;
1530 end;
1532 procedure g_Player_CreateShell(fX, fY, dX, dY: Integer; T: Byte);
1533 var
1534 SID: DWORD;
1535 begin
1536 if (gShells = nil) or (Length(gShells) = 0) then
1537 Exit;
1539 with gShells[CurrentShell] do
1540 begin
1541 SpriteID := 0;
1542 g_Obj_Init(@Obj);
1543 Obj.Rect.X := 0;
1544 Obj.Rect.Y := 0;
1545 if T = SHELL_BULLET then
1546 begin
1547 if g_Texture_Get('TEXTURE_SHELL_BULLET', SID) then
1548 SpriteID := SID;
1549 CX := 2;
1550 CY := 1;
1551 Obj.Rect.Width := 4;
1552 Obj.Rect.Height := 2;
1553 end
1554 else
1555 begin
1556 if g_Texture_Get('TEXTURE_SHELL_SHELL', SID) then
1557 SpriteID := SID;
1558 CX := 4;
1559 CY := 2;
1560 Obj.Rect.Width := 7;
1561 Obj.Rect.Height := 3;
1562 end;
1563 SType := T;
1564 alive := True;
1565 Obj.X := fX;
1566 Obj.Y := fY;
1567 g_Obj_Push(@Obj, dX + Random(4)-Random(4), dY-Random(4));
1568 positionChanged(); // this updates spatial accelerators
1569 RAngle := Random(360);
1570 Timeout := gTime + SHELL_TIMEOUT;
1572 if CurrentShell >= High(gShells) then
1573 CurrentShell := 0
1574 else
1575 Inc(CurrentShell);
1576 end;
1577 end;
1579 procedure g_Player_CreateGibs(fX, fY: Integer; ModelName: string; fColor: TRGB);
1580 var
1581 a: Integer;
1582 GibsArray: TGibsArray;
1583 Blood: TModelBlood;
1584 begin
1585 if (gGibs = nil) or (Length(gGibs) = 0) then
1586 Exit;
1587 if not g_PlayerModel_GetGibs(ModelName, GibsArray) then
1588 Exit;
1589 Blood := g_PlayerModel_GetBlood(ModelName);
1591 for a := 0 to High(GibsArray) do
1592 with gGibs[CurrentGib] do
1593 begin
1594 Color := fColor;
1595 ID := GibsArray[a].ID;
1596 MaskID := GibsArray[a].MaskID;
1597 alive := True;
1598 g_Obj_Init(@Obj);
1599 Obj.Rect := GibsArray[a].Rect;
1600 Obj.X := fX-GibsArray[a].Rect.X-(GibsArray[a].Rect.Width div 2);
1601 Obj.Y := fY-GibsArray[a].Rect.Y-(GibsArray[a].Rect.Height div 2);
1602 g_Obj_PushA(@Obj, 25 + Random(10), Random(361));
1603 positionChanged(); // this updates spatial accelerators
1604 RAngle := Random(360);
1606 if gBloodCount > 0 then
1607 g_GFX_Blood(fX, fY, 16*gBloodCount+Random(5*gBloodCount), -16+Random(33), -16+Random(33),
1608 Random(48), Random(48), Blood.R, Blood.G, Blood.B, Blood.Kind);
1610 if CurrentGib >= High(gGibs) then
1611 CurrentGib := 0
1612 else
1613 Inc(CurrentGib);
1614 end;
1615 end;
1617 procedure g_Player_UpdatePhysicalObjects();
1618 var
1619 i: Integer;
1620 vel: TPoint2i;
1621 mr: Word;
1623 procedure ShellSound_Bounce(X, Y: Integer; T: Byte);
1624 var
1625 k: Integer;
1626 begin
1627 k := 1 + Random(2);
1628 if T = SHELL_BULLET then
1629 g_Sound_PlayExAt('SOUND_PLAYER_CASING' + IntToStr(k), X, Y)
1630 else
1631 g_Sound_PlayExAt('SOUND_PLAYER_SHELL' + IntToStr(k), X, Y);
1632 end;
1634 begin
1635 // Êóñêè ìÿñà:
1636 if gGibs <> nil then
1637 for i := 0 to High(gGibs) do
1638 if gGibs[i].alive then
1639 with gGibs[i] do
1640 begin
1641 Obj.oldX := Obj.X;
1642 Obj.oldY := Obj.Y;
1644 vel := Obj.Vel;
1645 mr := g_Obj_Move(@Obj, True, False, True);
1646 positionChanged(); // this updates spatial accelerators
1648 if WordBool(mr and MOVE_FALLOUT) then
1649 begin
1650 alive := False;
1651 Continue;
1652 end;
1654 // Îòëåòàåò îò óäàðà î ñòåíó/ïîòîëîê/ïîë:
1655 if WordBool(mr and MOVE_HITWALL) then
1656 Obj.Vel.X := -(vel.X div 2);
1657 if WordBool(mr and (MOVE_HITCEIL or MOVE_HITLAND)) then
1658 Obj.Vel.Y := -(vel.Y div 2);
1660 if (Obj.Vel.X >= 0) then
1661 begin // Clockwise
1662 RAngle := RAngle + Abs(Obj.Vel.X)*6 + Abs(Obj.Vel.Y);
1663 if RAngle >= 360 then
1664 RAngle := RAngle mod 360;
1665 end else begin // Counter-clockwise
1666 RAngle := RAngle - Abs(Obj.Vel.X)*6 - Abs(Obj.Vel.Y);
1667 if RAngle < 0 then
1668 RAngle := (360 - (Abs(RAngle) mod 360)) mod 360;
1669 end;
1671 // Ñîïðîòèâëåíèå âîçäóõà äëÿ êóñêà òðóïà:
1672 if gTime mod (GAME_TICK*3) = 0 then
1673 Obj.Vel.X := z_dec(Obj.Vel.X, 1);
1674 end;
1676 // Òðóïû:
1677 if gCorpses <> nil then
1678 for i := 0 to High(gCorpses) do
1679 if gCorpses[i] <> nil then
1680 if gCorpses[i].State = CORPSE_STATE_REMOVEME then
1681 begin
1682 gCorpses[i].Free();
1683 gCorpses[i] := nil;
1684 end
1685 else
1686 gCorpses[i].Update();
1688 // Ãèëüçû:
1689 if gShells <> nil then
1690 for i := 0 to High(gShells) do
1691 if gShells[i].alive then
1692 with gShells[i] do
1693 begin
1694 Obj.oldX := Obj.X;
1695 Obj.oldY := Obj.Y;
1697 vel := Obj.Vel;
1698 mr := g_Obj_Move(@Obj, True, False, True);
1699 positionChanged(); // this updates spatial accelerators
1701 if WordBool(mr and MOVE_FALLOUT) or (gShells[i].Timeout < gTime) then
1702 begin
1703 alive := False;
1704 Continue;
1705 end;
1707 // Îòëåòàåò îò óäàðà î ñòåíó/ïîòîëîê/ïîë:
1708 if WordBool(mr and MOVE_HITWALL) then
1709 begin
1710 Obj.Vel.X := -(vel.X div 2);
1711 if not WordBool(mr and MOVE_INWATER) then
1712 ShellSound_Bounce(Obj.X, Obj.Y, SType);
1713 end;
1714 if WordBool(mr and (MOVE_HITCEIL or MOVE_HITLAND)) then
1715 begin
1716 Obj.Vel.Y := -(vel.Y div 2);
1717 if Obj.Vel.X <> 0 then Obj.Vel.X := Obj.Vel.X div 2;
1718 if (Obj.Vel.X = 0) and (Obj.Vel.Y = 0) then
1719 begin
1720 if RAngle mod 90 <> 0 then
1721 RAngle := (RAngle div 90) * 90;
1722 end
1723 else if not WordBool(mr and MOVE_INWATER) then
1724 ShellSound_Bounce(Obj.X, Obj.Y, SType);
1725 end;
1727 if (Obj.Vel.X >= 0) then
1728 begin // Clockwise
1729 RAngle := RAngle + Abs(Obj.Vel.X)*8 + Abs(Obj.Vel.Y);
1730 if RAngle >= 360 then
1731 RAngle := RAngle mod 360;
1732 end else begin // Counter-clockwise
1733 RAngle := RAngle - Abs(Obj.Vel.X)*8 - Abs(Obj.Vel.Y);
1734 if RAngle < 0 then
1735 RAngle := (360 - (Abs(RAngle) mod 360)) mod 360;
1736 end;
1737 end;
1738 end;
1741 procedure TGib.getMapBox (out x, y, w, h: Integer); inline;
1742 begin
1743 x := Obj.X+Obj.Rect.X;
1744 y := Obj.Y+Obj.Rect.Y;
1745 w := Obj.Rect.Width;
1746 h := Obj.Rect.Height;
1747 end;
1749 procedure TGib.moveBy (dx, dy: Integer); inline;
1750 begin
1751 if (dx <> 0) or (dy <> 0) then
1752 begin
1753 Obj.X += dx;
1754 Obj.Y += dy;
1755 positionChanged();
1756 end;
1757 end;
1760 procedure TShell.getMapBox (out x, y, w, h: Integer); inline;
1761 begin
1762 x := Obj.X;
1763 y := Obj.Y;
1764 w := Obj.Rect.Width;
1765 h := Obj.Rect.Height;
1766 end;
1768 procedure TShell.moveBy (dx, dy: Integer); inline;
1769 begin
1770 if (dx <> 0) or (dy <> 0) then
1771 begin
1772 Obj.X += dx;
1773 Obj.Y += dy;
1774 positionChanged();
1775 end;
1776 end;
1779 procedure TGib.positionChanged (); inline; begin end;
1780 procedure TShell.positionChanged (); inline; begin end;
1783 procedure g_Player_DrawCorpses();
1784 var
1785 i, fX, fY: Integer;
1786 a: TDFPoint;
1787 begin
1788 if gGibs <> nil then
1789 for i := 0 to High(gGibs) do
1790 if gGibs[i].alive then
1791 with gGibs[i] do
1792 begin
1793 if not g_Obj_Collide(sX, sY, sWidth, sHeight, @Obj) then
1794 Continue;
1796 Obj.lerp(gLerpFactor, fX, fY);
1798 a.X := Obj.Rect.X+(Obj.Rect.Width div 2);
1799 a.y := Obj.Rect.Y+(Obj.Rect.Height div 2);
1801 e_DrawAdv(ID, fX, fY, 0, True, False, RAngle, @a, TMirrorType.None);
1803 e_Colors := Color;
1804 e_DrawAdv(MaskID, fX, fY, 0, True, False, RAngle, @a, TMirrorType.None);
1805 e_Colors.R := 255;
1806 e_Colors.G := 255;
1807 e_Colors.B := 255;
1808 end;
1810 if gCorpses <> nil then
1811 for i := 0 to High(gCorpses) do
1812 if gCorpses[i] <> nil then
1813 gCorpses[i].Draw();
1814 end;
1816 procedure g_Player_DrawShells();
1817 var
1818 i, fX, fY: Integer;
1819 a: TDFPoint;
1820 begin
1821 if gShells <> nil then
1822 for i := 0 to High(gShells) do
1823 if gShells[i].alive then
1824 with gShells[i] do
1825 begin
1826 if not g_Obj_Collide(sX, sY, sWidth, sHeight, @Obj) then
1827 Continue;
1829 Obj.lerp(gLerpFactor, fX, fY);
1831 a.X := CX;
1832 a.Y := CY;
1834 e_DrawAdv(SpriteID, fX, fY, 0, True, False, RAngle, @a, TMirrorType.None);
1835 end;
1836 end;
1838 procedure g_Player_RemoveAllCorpses();
1839 var
1840 i: Integer;
1841 begin
1842 gGibs := nil;
1843 gShells := nil;
1844 SetLength(gGibs, MaxGibs);
1845 SetLength(gShells, MaxGibs);
1846 CurrentGib := 0;
1847 CurrentShell := 0;
1849 if gCorpses <> nil then
1850 for i := 0 to High(gCorpses) do
1851 gCorpses[i].Free();
1853 gCorpses := nil;
1854 SetLength(gCorpses, MaxCorpses);
1855 end;
1857 procedure g_Player_Corpses_SaveState (st: TStream);
1858 var
1859 count, i: Integer;
1860 begin
1861 // Ñ÷èòàåì êîëè÷åñòâî ñóùåñòâóþùèõ òðóïîâ
1862 count := 0;
1863 for i := 0 to High(gCorpses) do if (gCorpses[i] <> nil) then Inc(count);
1865 // Êîëè÷åñòâî òðóïîâ
1866 utils.writeInt(st, LongInt(count));
1868 if (count = 0) then exit;
1870 // Ñîõðàíÿåì òðóïû
1871 for i := 0 to High(gCorpses) do
1872 begin
1873 if gCorpses[i] <> nil then
1874 begin
1875 // Íàçâàíèå ìîäåëè
1876 utils.writeStr(st, gCorpses[i].FModelName);
1877 // Òèï ñìåðòè
1878 utils.writeBool(st, gCorpses[i].Mess);
1879 // Ñîõðàíÿåì äàííûå òðóïà:
1880 gCorpses[i].SaveState(st);
1881 end;
1882 end;
1883 end;
1886 procedure g_Player_Corpses_LoadState (st: TStream);
1887 var
1888 count, i: Integer;
1889 str: String;
1890 b: Boolean;
1891 begin
1892 assert(st <> nil);
1894 g_Player_RemoveAllCorpses();
1896 // Êîëè÷åñòâî òðóïîâ:
1897 count := utils.readLongInt(st);
1898 if (count < 0) or (count > Length(gCorpses)) then raise XStreamError.Create('invalid number of corpses');
1900 if (count = 0) then exit;
1902 // Çàãðóæàåì òðóïû
1903 for i := 0 to count-1 do
1904 begin
1905 // Íàçâàíèå ìîäåëè:
1906 str := utils.readStr(st);
1907 // Òèï ñìåðòè
1908 b := utils.readBool(st);
1909 // Ñîçäàåì òðóï
1910 gCorpses[i] := TCorpse.Create(0, 0, str, b);
1911 // Çàãðóæàåì äàííûå òðóïà
1912 gCorpses[i].LoadState(st);
1913 end;
1914 end;
1917 { T P l a y e r : }
1919 function TPlayer.isValidViewPort (): Boolean; inline; begin result := (viewPortW > 0) and (viewPortH > 0); end;
1921 procedure TPlayer.BFGHit();
1922 begin
1923 g_Weapon_BFGHit(FObj.X+FObj.Rect.X+(FObj.Rect.Width div 2),
1924 FObj.Y+FObj.Rect.Y+(FObj.Rect.Height div 2));
1925 if g_Game_IsServer and g_Game_IsNet then
1926 MH_SEND_Effect(FObj.X+FObj.Rect.X+(FObj.Rect.Width div 2),
1927 FObj.Y+FObj.Rect.Y+(FObj.Rect.Height div 2),
1928 0, NET_GFX_BFGHIT);
1929 end;
1931 procedure TPlayer.ChangeModel(ModelName: string);
1932 var
1933 locModel: TPlayerModel;
1934 begin
1935 locModel := g_PlayerModel_Get(ModelName);
1936 if locModel = nil then Exit;
1938 FModel.Free();
1939 FModel := locModel;
1940 end;
1942 procedure TPlayer.SetModel(ModelName: string);
1943 var
1944 m: TPlayerModel;
1945 begin
1946 m := g_PlayerModel_Get(ModelName);
1947 if m = nil then
1948 begin
1949 g_SimpleError(Format(_lc[I_GAME_ERROR_MODEL_FALLBACK], [ModelName]));
1950 m := g_PlayerModel_Get('doomer');
1951 if m = nil then
1952 begin
1953 g_FatalError(Format(_lc[I_GAME_ERROR_MODEL], ['doomer']));
1954 Exit;
1955 end;
1956 end;
1958 if FModel <> nil then
1959 FModel.Free();
1961 FModel := m;
1963 if not (gGameSettings.GameMode in [GM_TDM, GM_CTF]) then
1964 FModel.Color := FColor
1965 else
1966 FModel.Color := TEAMCOLOR[FTeam];
1967 FModel.SetWeapon(FCurrWeap);
1968 FModel.SetFlag(FFlag);
1969 SetDirection(FDirection);
1970 end;
1972 procedure TPlayer.SetColor(Color: TRGB);
1973 begin
1974 FColor := Color;
1975 if not (gGameSettings.GameMode in [GM_TDM, GM_CTF]) then
1976 if FModel <> nil then FModel.Color := Color;
1977 end;
1979 function TPlayer.GetColor(): TRGB;
1980 begin
1981 result := FModel.Color;
1982 end;
1984 procedure TPlayer.SwitchTeam;
1985 begin
1986 if g_Game_IsClient then
1987 Exit;
1988 if not (gGameSettings.GameMode in [GM_TDM, GM_CTF]) then Exit;
1990 if gGameOn and FAlive then
1991 Kill(K_SIMPLEKILL, FUID, HIT_SELF);
1993 if FTeam = TEAM_RED then
1994 begin
1995 ChangeTeam(TEAM_BLUE);
1996 g_Console_Add(Format(_lc[I_PLAYER_CHTEAM_BLUE], [FName]), True);
1997 if g_Game_IsNet then
1998 MH_SEND_GameEvent(NET_EV_CHANGE_TEAM, TEAM_BLUE, FName);
1999 end
2000 else
2001 begin
2002 ChangeTeam(TEAM_RED);
2003 g_Console_Add(Format(_lc[I_PLAYER_CHTEAM_RED], [FName]), True);
2004 if g_Game_IsNet then
2005 MH_SEND_GameEvent(NET_EV_CHANGE_TEAM, TEAM_RED, FName);
2006 end;
2007 FPreferredTeam := FTeam;
2008 end;
2010 procedure TPlayer.ChangeTeam(Team: Byte);
2011 var
2012 OldTeam: Byte;
2013 begin
2014 OldTeam := FTeam;
2015 FTeam := Team;
2016 case Team of
2017 TEAM_RED, TEAM_BLUE:
2018 FModel.Color := TEAMCOLOR[Team];
2019 else
2020 FModel.Color := FColor;
2021 end;
2022 if (FTeam <> OldTeam) and g_Game_IsNet and g_Game_IsServer then
2023 MH_SEND_PlayerStats(FUID);
2024 end;
2027 procedure TPlayer.CollideItem();
2028 var
2029 i: Integer;
2030 r: Boolean;
2031 begin
2032 if gItems = nil then Exit;
2033 if not FAlive then Exit;
2035 for i := 0 to High(gItems) do
2036 with gItems[i] do
2037 begin
2038 if (ItemType <> ITEM_NONE) and alive then
2039 if g_Obj_Collide(FObj.X+PLAYER_RECT.X, FObj.Y+PLAYER_RECT.Y, PLAYER_RECT.Width,
2040 PLAYER_RECT.Height, @Obj) then
2041 begin
2042 if not PickItem(ItemType, gItems[i].Respawnable, r) then Continue;
2044 if ItemType in [ITEM_SPHERE_BLUE, ITEM_SPHERE_WHITE, ITEM_INVUL] then
2045 g_Sound_PlayExAt('SOUND_ITEM_GETRULEZ', FObj.X, FObj.Y)
2046 else if ItemType in [ITEM_MEDKIT_SMALL, ITEM_MEDKIT_LARGE, ITEM_MEDKIT_BLACK] then
2047 g_Sound_PlayExAt('SOUND_ITEM_GETMED', FObj.X, FObj.Y)
2048 else g_Sound_PlayExAt('SOUND_ITEM_GETITEM', FObj.X, FObj.Y);
2050 // Íàäî óáðàòü ñ êàðòû, åñëè ýòî íå êëþ÷, êîòîðûì íóæíî ïîäåëèòñÿ ñ äðóãèì èãðîêîì:
2051 if r and not ((ItemType in [ITEM_KEY_RED, ITEM_KEY_GREEN, ITEM_KEY_BLUE]) and
2052 (gGameSettings.GameType = GT_SINGLE) and
2053 (g_Player_GetCount() > 1)) then
2054 if not Respawnable then g_Items_Remove(i) else g_Items_Pick(i);
2055 end;
2056 end;
2057 end;
2060 function TPlayer.CollideLevel(XInc, YInc: Integer): Boolean;
2061 begin
2062 Result := g_Map_CollidePanel(FObj.X+PLAYER_RECT.X+XInc, FObj.Y+PLAYER_RECT.Y+YInc,
2063 PLAYER_RECT.Width, PLAYER_RECT.Height, PANEL_WALL,
2064 False);
2065 end;
2067 constructor TPlayer.Create();
2068 begin
2069 viewPortX := 0;
2070 viewPortY := 0;
2071 viewPortW := 0;
2072 viewPortH := 0;
2073 mEDamageType := HIT_SOME;
2075 FIamBot := False;
2076 FDummy := False;
2077 FSpawned := False;
2079 FSawSound := TPlayableSound.Create();
2080 FSawSoundIdle := TPlayableSound.Create();
2081 FSawSoundHit := TPlayableSound.Create();
2082 FSawSoundSelect := TPlayableSound.Create();
2083 FFlameSoundOn := TPlayableSound.Create();
2084 FFlameSoundOff := TPlayableSound.Create();
2085 FFlameSoundWork := TPlayableSound.Create();
2086 FJetSoundFly := TPlayableSound.Create();
2087 FJetSoundOn := TPlayableSound.Create();
2088 FJetSoundOff := TPlayableSound.Create();
2090 FSawSound.SetByName('SOUND_WEAPON_FIRESAW');
2091 FSawSoundIdle.SetByName('SOUND_WEAPON_IDLESAW');
2092 FSawSoundHit.SetByName('SOUND_WEAPON_HITSAW');
2093 FSawSoundSelect.SetByName('SOUND_WEAPON_SELECTSAW');
2094 FFlameSoundOn.SetByName('SOUND_WEAPON_FLAMEON');
2095 FFlameSoundOff.SetByName('SOUND_WEAPON_FLAMEOFF');
2096 FFlameSoundWork.SetByName('SOUND_WEAPON_FLAMEWORK');
2097 FJetSoundFly.SetByName('SOUND_PLAYER_JETFLY');
2098 FJetSoundOn.SetByName('SOUND_PLAYER_JETON');
2099 FJetSoundOff.SetByName('SOUND_PLAYER_JETOFF');
2101 FSpectatePlayer := -1;
2102 FClientID := -1;
2103 FPing := 0;
2104 FLoss := 0;
2105 FSavedStateNum := -1;
2106 FShellTimer := -1;
2107 FFireTime := 0;
2108 FFirePainTime := 0;
2109 FFireAttacker := 0;
2110 FHandicap := 100;
2111 FCorpse := -1;
2113 FActualModelName := 'doomer';
2115 g_Obj_Init(@FObj);
2116 FObj.Rect := PLAYER_RECT;
2118 FBFGFireCounter := -1;
2119 FJustTeleported := False;
2120 FNetTime := 0;
2122 FWaitForFirstSpawn := false;
2124 resetWeaponQueue();
2125 end;
2127 procedure TPlayer.positionChanged (); inline;
2128 begin
2129 end;
2131 procedure TPlayer.doDamage (v: Integer);
2132 begin
2133 if (v <= 0) then exit;
2134 if (v > 32767) then v := 32767;
2135 Damage(v, 0, 0, 0, mEDamageType);
2136 end;
2138 procedure TPlayer.Damage(value: Word; SpawnerUID: Word; vx, vy: Integer; t: Byte);
2139 var
2140 c: Word;
2141 begin
2142 if (not g_Game_IsClient) and (not FAlive) then
2143 Exit;
2145 FLastHit := t;
2147 // Íåóÿçâèìîñòü íå ñïàñàåò îò ëîâóøåê:
2148 if ((t = HIT_TRAP) or (t = HIT_SELF)) and (not FGodMode) then
2149 begin
2150 if not g_Game_IsClient then
2151 begin
2152 FArmor := 0;
2153 if t = HIT_TRAP then
2154 begin
2155 // Ëîâóøêà óáèâàåò ñðàçó:
2156 FHealth := -100;
2157 Kill(K_EXTRAHARDKILL, SpawnerUID, t);
2158 end;
2159 if t = HIT_SELF then
2160 begin
2161 // Ñàìîóáèéñòâî:
2162 FHealth := 0;
2163 Kill(K_SIMPLEKILL, SpawnerUID, t);
2164 end;
2165 end;
2166 // Îáíóëèòü äåéñòâèÿ ïðèìî÷åê, ÷òîáû ôîí ïðîïàë
2167 FMegaRulez[MR_SUIT] := 0;
2168 FMegaRulez[MR_INVUL] := 0;
2169 FMegaRulez[MR_INVIS] := 0;
2170 FSpawnInvul := 0;
2171 FBerserk := 0;
2172 end;
2174 // Íî îò îñòàëüíîãî ñïàñàåò:
2175 if FMegaRulez[MR_INVUL] >= gTime then
2176 Exit;
2178 // ×èò-êîä "ÃÎÐÅÖ":
2179 if FGodMode then
2180 Exit;
2182 // Åñëè åñòü óðîí ñâîèì, èëè ðàíèë ñàì ñåáÿ, èëè òåáÿ ðàíèë ïðîòèâíèê:
2183 if LongBool(gGameSettings.Options and GAME_OPTION_TEAMDAMAGE) or
2184 (SpawnerUID = FUID) or
2185 (not SameTeam(FUID, SpawnerUID)) then
2186 begin
2187 FLastSpawnerUID := SpawnerUID;
2189 // Êðîâü (ïóçûðüêè, åñëè â âîäå):
2190 if gBloodCount > 0 then
2191 begin
2192 c := Min(value, 200)*gBloodCount + Random(Min(value, 200) div 2);
2193 if value div 4 <= c then
2194 c := c - (value div 4)
2195 else
2196 c := 0;
2198 if (t = HIT_SOME) and (vx = 0) and (vy = 0) then
2199 MakeBloodSimple(c)
2200 else
2201 case t of
2202 HIT_TRAP, HIT_ACID, HIT_FLAME, HIT_SELF: MakeBloodSimple(c);
2203 HIT_BFG, HIT_ROCKET, HIT_SOME: MakeBloodVector(c, vx, vy);
2204 end;
2206 if t = HIT_WATER then
2207 g_GFX_Bubbles(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2),
2208 FObj.Y+PLAYER_RECT.Y-4, value div 2, 8, 4);
2209 end;
2211 // Áóôåð óðîíà:
2212 if FAlive then
2213 Inc(FDamageBuffer, value);
2215 // Âñïûøêà áîëè:
2216 if gFlash <> 0 then
2217 FPain := FPain + value;
2218 end;
2220 if g_Game_IsServer and g_Game_IsNet then
2221 begin
2222 MH_SEND_PlayerDamage(FUID, t, SpawnerUID, value, vx, vy);
2223 MH_SEND_PlayerStats(FUID);
2224 MH_SEND_PlayerPos(False, FUID);
2225 end;
2226 end;
2228 function TPlayer.Heal(value: Word; Soft: Boolean): Boolean;
2229 begin
2230 Result := False;
2231 if g_Game_IsClient then
2232 Exit;
2233 if not FAlive then
2234 Exit;
2236 if Soft and (FHealth < PLAYER_HP_SOFT) then
2237 begin
2238 IncMax(FHealth, value, PLAYER_HP_SOFT);
2239 Result := True;
2240 end;
2241 if (not Soft) and (FHealth < PLAYER_HP_LIMIT) then
2242 begin
2243 IncMax(FHealth, value, PLAYER_HP_LIMIT);
2244 Result := True;
2245 end;
2247 if Result and g_Game_IsServer and g_Game_IsNet then
2248 MH_SEND_PlayerStats(FUID);
2249 end;
2251 destructor TPlayer.Destroy();
2252 begin
2253 if (gPlayer1 <> nil) and (gPlayer1.FUID = FUID) then
2254 gPlayer1 := nil;
2255 if (gPlayer2 <> nil) and (gPlayer2.FUID = FUID) then
2256 gPlayer2 := nil;
2258 FSawSound.Free();
2259 FSawSoundIdle.Free();
2260 FSawSoundHit.Free();
2261 FSawSoundSelect.Free();
2262 FFlameSoundOn.Free();
2263 FFlameSoundOff.Free();
2264 FFlameSoundWork.Free();
2265 FJetSoundFly.Free();
2266 FJetSoundOn.Free();
2267 FJetSoundOff.Free();
2268 FModel.Free();
2269 if FPunchAnim <> nil then
2270 FPunchAnim.Free();
2272 inherited;
2273 end;
2275 procedure TPlayer.DrawIndicator(Color: TRGB);
2276 var
2277 indX, indY, fX, fY, fSlope: Integer;
2278 indW, indH: Word;
2279 indA: Single;
2280 a: TDFPoint;
2281 nW, nH: Byte;
2282 ID: DWORD;
2283 c: TRGB;
2284 begin
2285 if FAlive then
2286 begin
2287 FObj.lerp(gLerpFactor, fX, fY);
2288 fSlope := nlerp(FSlopeOld, FObj.slopeUpLeft, gLerpFactor);
2290 case gPlayerIndicatorStyle of
2291 0:
2292 begin
2293 if g_Texture_Get('TEXTURE_PLAYER_INDICATOR', ID) then
2294 begin
2295 e_GetTextureSize(ID, @indW, @indH);
2296 a.X := indW div 2;
2297 a.Y := indH div 2;
2299 if (FObj.X + FObj.Rect.X) < 0 then
2300 begin
2301 indA := 90;
2302 indX := fX + FObj.Rect.X + FObj.Rect.Width;
2303 indY := fY + FObj.Rect.Y + (FObj.Rect.Height - indW) div 2;
2304 end
2306 else if (FObj.X + FObj.Rect.X + FObj.Rect.Width) > Max(gMapInfo.Width, gPlayerScreenSize.X) then
2307 begin
2308 indA := 270;
2309 indX := fX + FObj.Rect.X - indH;
2310 indY := fY + FObj.Rect.Y + (FObj.Rect.Height - indW) div 2;
2311 end
2313 else if (FObj.Y - indH) < 0 then
2314 begin
2315 indA := 180;
2316 indX := fX + FObj.Rect.X + (FObj.Rect.Width - indW) div 2;
2317 indY := fY + FObj.Rect.Y + FObj.Rect.Height;
2318 end
2320 else
2321 begin
2322 indA := 0;
2323 indX := fX + FObj.Rect.X + (FObj.Rect.Width - indW) div 2;
2324 indY := fY - indH;
2325 end;
2327 indY := indY + fSlope;
2328 indX := EnsureRange(indX, 0, Max(gMapInfo.Width, gPlayerScreenSize.X) - indW);
2329 indY := EnsureRange(indY, 0, Max(gMapInfo.Height, gPlayerScreenSize.Y) - indH);
2331 c := e_Colors;
2332 e_Colors := Color;
2333 e_DrawAdv(ID, indX, indY, 0, True, False, indA, @a);
2334 e_Colors := c;
2335 end;
2336 end;
2338 1:
2339 begin
2340 e_TextureFontGetSize(gStdFont, nW, nH);
2341 indX := fX + FObj.Rect.X + (FObj.Rect.Width - Length(FName) * nW) div 2;
2342 indY := fY - nH + fSlope;
2343 e_TextureFontPrintEx(indX, indY, FName, gStdFont, Color.R, Color.G, Color.B, 1.0, True);
2344 end;
2345 end;
2346 end;
2347 end;
2349 procedure TPlayer.DrawBubble();
2350 var
2351 bubX, bubY, fX, fY: Integer;
2352 ID: LongWord;
2353 Rb, Gb, Bb,
2354 Rw, Gw, Bw: SmallInt;
2355 Dot: Byte;
2356 CObj: TObj;
2357 begin
2358 CObj := getCameraObj();
2359 CObj.lerp(gLerpFactor, fX, fY);
2360 // NB: _F_Obj.Rect is used to keep the bubble higher; this is not a mistake
2361 bubX := fX+FObj.Rect.X + IfThen(FDirection = TDirection.D_LEFT, -4, 18);
2362 bubY := fY+FObj.Rect.Y - 18;
2363 Rb := 64;
2364 Gb := 64;
2365 Bb := 64;
2366 Rw := 240;
2367 Gw := 240;
2368 Bw := 240;
2369 case gChatBubble of
2370 1: // simple textual non-bubble
2371 begin
2372 bubX := fX+FObj.Rect.X - 11;
2373 bubY := fY+FObj.Rect.Y - 17;
2374 e_TextureFontPrint(bubX, bubY, '[...]', gStdFont);
2375 Exit;
2376 end;
2377 2: // advanced pixel-perfect bubble
2378 begin
2379 if FTeam = TEAM_RED then
2380 Rb := 255
2381 else
2382 if FTeam = TEAM_BLUE then
2383 Bb := 255;
2384 end;
2385 3: // colored bubble
2386 begin
2387 Rb := FModel.Color.R;
2388 Gb := FModel.Color.G;
2389 Bb := FModel.Color.B;
2390 Rw := Min(Rb * 2 + 64, 255);
2391 Gw := Min(Gb * 2 + 64, 255);
2392 Bw := Min(Bb * 2 + 64, 255);
2393 if (Abs(Rw - Rb) < 32)
2394 or (Abs(Gw - Gb) < 32)
2395 or (Abs(Bw - Bb) < 32) then
2396 begin
2397 Rb := Max(Rw div 2 - 16, 0);
2398 Gb := Max(Gw div 2 - 16, 0);
2399 Bb := Max(Bw div 2 - 16, 0);
2400 end;
2401 end;
2402 4: // custom textured bubble
2403 begin
2404 if g_Texture_Get('TEXTURE_PLAYER_TALKBUBBLE', ID) then
2405 if FDirection = TDirection.D_RIGHT then
2406 e_Draw(ID, bubX - 6, bubY - 7, 0, True, False)
2407 else
2408 e_Draw(ID, bubX - 6, bubY - 7, 0, True, False, TMirrorType.Horizontal);
2409 Exit;
2410 end;
2411 end;
2413 // Outer borders
2414 e_DrawQuad(bubX + 1, bubY , bubX + 18, bubY + 13, Rb, Gb, Bb);
2415 e_DrawQuad(bubX , bubY + 1, bubX + 19, bubY + 12, Rb, Gb, Bb);
2416 // Inner box
2417 e_DrawFillQuad(bubX + 1, bubY + 1, bubX + 18, bubY + 12, Rw, Gw, Bw, 0);
2419 // Tail
2420 Dot := IfThen(FDirection = TDirection.D_LEFT, 14, 5);
2421 e_DrawLine(1, bubX + Dot, bubY + 14, bubX + Dot, bubY + 16, Rb, Gb, Bb);
2422 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);
2423 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);
2424 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);
2425 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);
2427 // Dots
2428 Dot := 6;
2429 e_DrawFillQuad(bubX + Dot, bubY + 8, bubX + Dot + 1, bubY + 9, Rb, Gb, Bb, 0);
2430 e_DrawFillQuad(bubX + Dot + 3, bubY + 8, bubX + Dot + 4, bubY + 9, Rb, Gb, Bb, 0);
2431 e_DrawFillQuad(bubX + Dot + 6, bubY + 8, bubX + Dot + 7, bubY + 9, Rb, Gb, Bb, 0);
2432 end;
2434 procedure TPlayer.Draw();
2435 var
2436 ID: DWORD;
2437 w, h: Word;
2438 dr: Boolean;
2439 Mirror: TMirrorType;
2440 fX, fY, fSlope: Integer;
2441 begin
2442 FObj.lerp(gLerpFactor, fX, fY);
2443 fSlope := nlerp(FSlopeOld, FObj.slopeUpLeft, gLerpFactor);
2445 if FAlive then
2446 begin
2447 if Direction = TDirection.D_RIGHT then
2448 Mirror := TMirrorType.None
2449 else
2450 Mirror := TMirrorType.Horizontal;
2452 if FPunchAnim <> nil then
2453 begin
2454 FPunchAnim.Draw(fX+IfThen(Direction = TDirection.D_LEFT, 15-FObj.Rect.X, FObj.Rect.X-15),
2455 fY+fSlope+FObj.Rect.Y-11, Mirror);
2456 if FPunchAnim.played then
2457 begin
2458 FPunchAnim.Free;
2459 FPunchAnim := nil;
2460 end;
2461 end;
2463 if (FMegaRulez[MR_INVUL] > gTime) and ((gPlayerDrawn <> Self) or (FSpawnInvul >= gTime)) then
2464 if g_Texture_Get('TEXTURE_PLAYER_INVULPENTA', ID) then
2465 begin
2466 e_GetTextureSize(ID, @w, @h);
2467 if FDirection = TDirection.D_LEFT then
2468 e_Draw(ID, fX+FObj.Rect.X+(FObj.Rect.Width div 2)-(w div 2)+4,
2469 fY+FObj.Rect.Y+(FObj.Rect.Height div 2)-(h div 2)-7+fSlope, 0, True, False)
2470 else
2471 e_Draw(ID, fX+FObj.Rect.X+(FObj.Rect.Width div 2)-(w div 2)-2,
2472 fY+FObj.Rect.Y+(FObj.Rect.Height div 2)-(h div 2)-7+fSlope, 0, True, False);
2473 end;
2475 if FMegaRulez[MR_INVIS] > gTime then
2476 begin
2477 if (gPlayerDrawn <> nil) and ((Self = gPlayerDrawn) or
2478 ((FTeam = gPlayerDrawn.Team) and (gGameSettings.GameMode <> GM_DM))) then
2479 begin
2480 if (FMegaRulez[MR_INVIS] - gTime) <= 2100 then
2481 dr := not Odd((FMegaRulez[MR_INVIS] - gTime) div 300)
2482 else
2483 dr := True;
2484 if dr then
2485 FModel.Draw(fX, fY+fSlope, 200)
2486 else
2487 FModel.Draw(fX, fY+fSlope);
2488 end
2489 else
2490 FModel.Draw(fX, fY+fSlope, 254);
2491 end
2492 else
2493 FModel.Draw(fX, fY+fSlope);
2494 end;
2496 if g_debug_Frames then
2497 begin
2498 e_DrawQuad(FObj.X+FObj.Rect.X,
2499 FObj.Y+FObj.Rect.Y,
2500 FObj.X+FObj.Rect.X+FObj.Rect.Width-1,
2501 FObj.Y+FObj.Rect.Y+FObj.Rect.Height-1,
2502 0, 255, 0);
2503 end;
2505 if (gChatBubble > 0) and (FKeys[KEY_CHAT].Pressed) and not FGhost then
2506 if (FMegaRulez[MR_INVIS] <= gTime) or ((gPlayerDrawn <> nil) and ((Self = gPlayerDrawn) or
2507 ((FTeam = gPlayerDrawn.Team) and (gGameSettings.GameMode <> GM_DM)))) then
2508 DrawBubble();
2509 // e_DrawPoint(5, 335, 288, 255, 0, 0); // DL, UR, DL, UR
2510 if gAimLine and alive and
2511 ((Self = gPlayer1) or (Self = gPlayer2)) then
2512 DrawAim();
2513 end;
2516 procedure TPlayer.DrawAim();
2517 procedure drawCast (sz: Integer; ax0, ay0, ax1, ay1: Integer);
2518 var
2519 ex, ey: Integer;
2520 begin
2522 {$IFDEF ENABLE_HOLMES}
2523 if isValidViewPort and (self = gPlayer1) then
2524 begin
2525 g_Holmes_plrLaser(ax0, ay0, ax1, ay1);
2526 end;
2527 {$ENDIF}
2529 e_DrawLine(sz, ax0, ay0, ax1, ay1, 255, 0, 0, 96);
2530 if (g_Map_traceToNearestWall(ax0, ay0, ax1, ay1, @ex, @ey) <> nil) then
2531 begin
2532 e_DrawLine(sz, ax0, ay0, ex, ey, 0, 255, 0, 96);
2533 end
2534 else
2535 begin
2536 e_DrawLine(sz, ax0, ay0, ex, ey, 0, 0, 255, 96);
2537 end;
2538 end;
2540 var
2541 wx, wy, xx, yy: Integer;
2542 angle: SmallInt;
2543 sz, len: Word;
2544 begin
2545 wx := FObj.X + WEAPONPOINT[FDirection].X + IfThen(FDirection = TDirection.D_LEFT, 7, -7);
2546 wy := FObj.Y + WEAPONPOINT[FDirection].Y;
2547 angle := FAngle;
2548 len := 1024;
2549 sz := 2;
2550 case FCurrWeap of
2551 0: begin // Punch
2552 len := 12;
2553 sz := 4;
2554 end;
2555 1: begin // Chainsaw
2556 len := 24;
2557 sz := 6;
2558 end;
2559 2: begin // Pistol
2560 len := 1024;
2561 sz := 2;
2562 if angle = ANGLE_RIGHTUP then Dec(angle, 2);
2563 if angle = ANGLE_RIGHTDOWN then Inc(angle, 4);
2564 if angle = ANGLE_LEFTUP then Inc(angle, 2);
2565 if angle = ANGLE_LEFTDOWN then Dec(angle, 4);
2566 end;
2567 3: begin // Shotgun
2568 len := 1024;
2569 sz := 3;
2570 if angle = ANGLE_RIGHTUP then Dec(angle, 2);
2571 if angle = ANGLE_RIGHTDOWN then Inc(angle, 4);
2572 if angle = ANGLE_LEFTUP then Inc(angle, 2);
2573 if angle = ANGLE_LEFTDOWN then Dec(angle, 4);
2574 end;
2575 4: begin // Double Shotgun
2576 len := 1024;
2577 sz := 4;
2578 if angle = ANGLE_RIGHTUP then Dec(angle, 2);
2579 if angle = ANGLE_RIGHTDOWN then Inc(angle, 4);
2580 if angle = ANGLE_LEFTUP then Inc(angle, 2);
2581 if angle = ANGLE_LEFTDOWN then Dec(angle, 4);
2582 end;
2583 5: begin // Chaingun
2584 len := 1024;
2585 sz := 3;
2586 if angle = ANGLE_RIGHTUP then Dec(angle, 2);
2587 if angle = ANGLE_RIGHTDOWN then Inc(angle, 4);
2588 if angle = ANGLE_LEFTUP then Inc(angle, 2);
2589 if angle = ANGLE_LEFTDOWN then Dec(angle, 4);
2590 end;
2591 6: begin // Rocket Launcher
2592 len := 1024;
2593 sz := 7;
2594 if angle = ANGLE_RIGHTUP then Inc(angle, 2);
2595 if angle = ANGLE_RIGHTDOWN then Inc(angle, 4);
2596 if angle = ANGLE_LEFTUP then Dec(angle, 2);
2597 if angle = ANGLE_LEFTDOWN then Dec(angle, 4);
2598 end;
2599 7: begin // Plasmagun
2600 len := 1024;
2601 sz := 5;
2602 if angle = ANGLE_RIGHTUP then Inc(angle);
2603 if angle = ANGLE_RIGHTDOWN then Inc(angle, 3);
2604 if angle = ANGLE_LEFTUP then Dec(angle);
2605 if angle = ANGLE_LEFTDOWN then Dec(angle, 3);
2606 end;
2607 8: begin // BFG
2608 len := 1024;
2609 sz := 12;
2610 if angle = ANGLE_RIGHTUP then Inc(angle, 1);
2611 if angle = ANGLE_RIGHTDOWN then Inc(angle, 2);
2612 if angle = ANGLE_LEFTUP then Dec(angle, 1);
2613 if angle = ANGLE_LEFTDOWN then Dec(angle, 2);
2614 end;
2615 9: begin // Super Chaingun
2616 len := 1024;
2617 sz := 4;
2618 if angle = ANGLE_RIGHTUP then Dec(angle, 2);
2619 if angle = ANGLE_RIGHTDOWN then Inc(angle, 4);
2620 if angle = ANGLE_LEFTUP then Inc(angle, 2);
2621 if angle = ANGLE_LEFTDOWN then Dec(angle, 4);
2622 end;
2623 end;
2624 xx := Trunc(Cos(-DegToRad(angle)) * len) + wx;
2625 yy := Trunc(Sin(-DegToRad(angle)) * len) + wy;
2626 {$IF DEFINED(D2F_DEBUG)}
2627 drawCast(sz, wx, wy, xx, yy);
2628 {$ELSE}
2629 e_DrawLine(sz, wx, wy, xx, yy, 255, 0, 0, 96);
2630 {$ENDIF}
2631 end;
2633 procedure TPlayer.DrawGUI();
2634 var
2635 ID: DWORD;
2636 X, Y, SY, a, p, m: Integer;
2637 tw, th: Word;
2638 cw, ch: Byte;
2639 s: string;
2640 stat: TPlayerStatArray;
2641 begin
2642 X := gPlayerScreenSize.X;
2643 SY := gPlayerScreenSize.Y;
2644 Y := 0;
2646 if gShowGoals and (gGameSettings.GameMode in [GM_TDM, GM_CTF]) then
2647 begin
2648 if gGameSettings.GameMode = GM_CTF then
2649 a := 32 + 8
2650 else
2651 a := 0;
2652 if gGameSettings.GameMode = GM_CTF then
2653 begin
2654 s := 'TEXTURE_PLAYER_REDFLAG';
2655 if gFlags[FLAG_RED].State = FLAG_STATE_CAPTURED then
2656 s := 'TEXTURE_PLAYER_REDFLAG_S';
2657 if gFlags[FLAG_RED].State = FLAG_STATE_DROPPED then
2658 s := 'TEXTURE_PLAYER_REDFLAG_D';
2659 if g_Texture_Get(s, ID) then
2660 e_Draw(ID, X-16-32, 240-72-4, 0, True, False);
2661 end;
2663 s := IntToStr(gTeamStat[TEAM_RED].Goals);
2664 e_CharFont_GetSize(gMenuFont, s, tw, th);
2665 e_CharFont_PrintEx(gMenuFont, X-16-a-tw, 240-72-4, s, TEAMCOLOR[TEAM_RED]);
2667 if gGameSettings.GameMode = GM_CTF then
2668 begin
2669 s := 'TEXTURE_PLAYER_BLUEFLAG';
2670 if gFlags[FLAG_BLUE].State = FLAG_STATE_CAPTURED then
2671 s := 'TEXTURE_PLAYER_BLUEFLAG_S';
2672 if gFlags[FLAG_BLUE].State = FLAG_STATE_DROPPED then
2673 s := 'TEXTURE_PLAYER_BLUEFLAG_D';
2674 if g_Texture_Get(s, ID) then
2675 e_Draw(ID, X-16-32, 240-32-4, 0, True, False);
2676 end;
2678 s := IntToStr(gTeamStat[TEAM_BLUE].Goals);
2679 e_CharFont_GetSize(gMenuFont, s, tw, th);
2680 e_CharFont_PrintEx(gMenuFont, X-16-a-tw, 240-32-4, s, TEAMCOLOR[TEAM_BLUE]);
2681 end;
2683 if g_Texture_Get('TEXTURE_PLAYER_HUDBG', ID) then
2684 e_DrawFill(ID, X, 0, 1, (gPlayerScreenSize.Y div 256)+IfThen(gPlayerScreenSize.Y mod 256 > 0, 1, 0),
2685 0, False, False);
2687 if g_Texture_Get('TEXTURE_PLAYER_HUD', ID) then
2688 e_Draw(ID, X+2, Y, 0, True, False);
2690 if gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT] then
2691 begin
2692 if gShowStat then
2693 begin
2694 s := IntToStr(Frags);
2695 e_CharFont_GetSize(gMenuFont, s, tw, th);
2696 e_CharFont_PrintEx(gMenuFont, X-16-tw, Y, s, _RGB(255, 0, 0));
2698 s := '';
2699 p := 1;
2700 m := 0;
2701 stat := g_Player_GetStats();
2702 if stat <> nil then
2703 begin
2704 p := 1;
2706 for a := 0 to High(stat) do
2707 if stat[a].Name <> Name then
2708 begin
2709 if stat[a].Frags > m then m := stat[a].Frags;
2710 if stat[a].Frags > Frags then p := p+1;
2711 end;
2712 end;
2714 s := IntToStr(p)+' / '+IntToStr(Length(stat))+' ';
2715 if Frags >= m then s := s+'+' else s := s+'-';
2716 s := s+IntToStr(Abs(Frags-m));
2718 e_CharFont_GetSize(gMenuSmallFont, s, tw, th);
2719 e_CharFont_PrintEx(gMenuSmallFont, X-16-tw, Y+32, s, _RGB(255, 0, 0));
2720 end;
2722 if gLMSRespawn > LMS_RESPAWN_NONE then
2723 begin
2724 s := _lc[I_GAME_WARMUP];
2725 e_CharFont_GetSize(gMenuFont, s, tw, th);
2726 s := s + ': ' + IntToStr((gLMSRespawnTime - gTime) div 1000);
2727 e_CharFont_PrintEx(gMenuFont, X-64-tw, SY-32, s, _RGB(0, 255, 0));
2728 end
2729 else if gShowLives and (gGameSettings.MaxLives > 0) then
2730 begin
2731 s := IntToStr(Lives);
2732 e_CharFont_GetSize(gMenuFont, s, tw, th);
2733 e_CharFont_PrintEx(gMenuFont, X-16-tw, SY-32, s, _RGB(0, 255, 0));
2734 end;
2735 end;
2737 e_CharFont_GetSize(gMenuSmallFont, FName, tw, th);
2738 e_CharFont_PrintEx(gMenuSmallFont, X+98-(tw div 2), Y+8, FName, _RGB(255, 0, 0));
2740 if R_BERSERK in FRulez then
2741 e_Draw(gItemsTexturesID[ITEM_MEDKIT_BLACK], X+37, Y+45, 0, True, False)
2742 else
2743 e_Draw(gItemsTexturesID[ITEM_MEDKIT_LARGE], X+37, Y+45, 0, True, False);
2745 if g_Texture_Get('TEXTURE_PLAYER_ARMORHUD', ID) then
2746 e_Draw(ID, X+36, Y+77, 0, True, False);
2748 s := IntToStr(IfThen(FHealth > 0, FHealth, 0));
2749 e_CharFont_GetSize(gMenuFont, s, tw, th);
2750 e_CharFont_PrintEx(gMenuFont, X+178-tw, Y+40, s, _RGB(255, 0, 0));
2752 s := IntToStr(FArmor);
2753 e_CharFont_GetSize(gMenuFont, s, tw, th);
2754 e_CharFont_PrintEx(gMenuFont, X+178-tw, Y+68, s, _RGB(255, 0, 0));
2756 s := IntToStr(GetAmmoByWeapon(FCurrWeap));
2758 case FCurrWeap of
2759 WEAPON_KASTET:
2760 begin
2761 s := '--';
2762 ID := gItemsTexturesID[ITEM_WEAPON_KASTET];
2763 end;
2764 WEAPON_SAW:
2765 begin
2766 s := '--';
2767 ID := gItemsTexturesID[ITEM_WEAPON_SAW];
2768 end;
2769 WEAPON_PISTOL: ID := gItemsTexturesID[ITEM_WEAPON_PISTOL];
2770 WEAPON_CHAINGUN: ID := gItemsTexturesID[ITEM_WEAPON_CHAINGUN];
2771 WEAPON_SHOTGUN1: ID := gItemsTexturesID[ITEM_WEAPON_SHOTGUN1];
2772 WEAPON_SHOTGUN2: ID := gItemsTexturesID[ITEM_WEAPON_SHOTGUN2];
2773 WEAPON_SUPERPULEMET: ID := gItemsTexturesID[ITEM_WEAPON_SUPERPULEMET];
2774 WEAPON_ROCKETLAUNCHER: ID := gItemsTexturesID[ITEM_WEAPON_ROCKETLAUNCHER];
2775 WEAPON_PLASMA: ID := gItemsTexturesID[ITEM_WEAPON_PLASMA];
2776 WEAPON_BFG: ID := gItemsTexturesID[ITEM_WEAPON_BFG];
2777 WEAPON_FLAMETHROWER: ID := gItemsTexturesID[ITEM_WEAPON_FLAMETHROWER];
2778 end;
2780 e_CharFont_GetSize(gMenuFont, s, tw, th);
2781 e_CharFont_PrintEx(gMenuFont, X+178-tw, Y+158, s, _RGB(255, 0, 0));
2782 e_Draw(ID, X+20, Y+160, 0, True, False);
2784 if R_KEY_RED in FRulez then
2785 e_Draw(gItemsTexturesID[ITEM_KEY_RED], X+78, Y+214, 0, True, False);
2787 if R_KEY_GREEN in FRulez then
2788 e_Draw(gItemsTexturesID[ITEM_KEY_GREEN], X+95, Y+214, 0, True, False);
2790 if R_KEY_BLUE in FRulez then
2791 e_Draw(gItemsTexturesID[ITEM_KEY_BLUE], X+112, Y+214, 0, True, False);
2793 if FJetFuel > 0 then
2794 begin
2795 if g_Texture_Get('TEXTURE_PLAYER_HUDAIR', ID) then
2796 e_Draw(ID, X+2, Y+116, 0, True, False);
2797 if g_Texture_Get('TEXTURE_PLAYER_HUDJET', ID) then
2798 e_Draw(ID, X+2, Y+126, 0, True, False);
2799 e_DrawLine(4, X+16, Y+122, X+16+Trunc(168*IfThen(FAir > 0, FAir, 0)/AIR_MAX), Y+122, 0, 0, 196);
2800 e_DrawLine(4, X+16, Y+132, X+16+Trunc(168*FJetFuel/JET_MAX), Y+132, 208, 0, 0);
2801 end
2802 else
2803 begin
2804 if g_Texture_Get('TEXTURE_PLAYER_HUDAIR', ID) then
2805 e_Draw(ID, X+2, Y+124, 0, True, False);
2806 e_DrawLine(4, X+16, Y+130, X+16+Trunc(168*IfThen(FAir > 0, FAir, 0)/AIR_MAX), Y+130, 0, 0, 196);
2807 end;
2809 if gShowPing and g_Game_IsClient then
2810 begin
2811 s := _lc[I_GAME_PING_HUD] + IntToStr(NetPeer.lastRoundTripTime) + _lc[I_NET_SLIST_PING_MS];
2812 e_TextureFontPrint(X + 4, Y + 242, s, gStdFont);
2813 Y := Y + 16;
2814 end;
2816 if FSpectator then
2817 begin
2818 e_TextureFontPrint(X + 4, Y + 242, _lc[I_PLAYER_SPECT], gStdFont);
2819 e_TextureFontPrint(X + 4, Y + 258, _lc[I_PLAYER_SPECT2], gStdFont);
2820 e_TextureFontPrint(X + 4, Y + 274, _lc[I_PLAYER_SPECT1], gStdFont);
2821 if FNoRespawn then
2822 begin
2823 e_TextureFontGetSize(gStdFont, cw, ch);
2824 s := _lc[I_PLAYER_SPECT4];
2825 e_TextureFontPrintEx(gScreenWidth div 2 - cw*(Length(s) div 2),
2826 gScreenHeight-4-ch, s, gStdFont, 255, 255, 255, 1, True);
2827 e_TextureFontPrint(X + 4, Y + 290, _lc[I_PLAYER_SPECT1S], gStdFont);
2828 end;
2830 end;
2831 end;
2833 procedure TPlayer.DrawRulez();
2834 var
2835 dr: Boolean;
2836 begin
2837 // Ïðè âçÿòèè íåóÿçâèìîñòè ðèñóåòñÿ èíâåðñèîííûé áåëûé ôîí
2838 if (FMegaRulez[MR_INVUL] >= gTime) and (FSpawnInvul < gTime) then
2839 begin
2840 if (FMegaRulez[MR_INVUL]-gTime) <= 2100 then
2841 dr := not Odd((FMegaRulez[MR_INVUL]-gTime) div 300)
2842 else
2843 dr := True;
2845 if dr then
2846 e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1,
2847 191, 191, 191, 0, TBlending.Invert);
2848 end;
2850 // Ïðè âçÿòèè çàùèòíîãî êîñòþìà ðèñóåòñÿ çåëåíîâàòûé ôîí
2851 if FMegaRulez[MR_SUIT] >= gTime then
2852 begin
2853 if (FMegaRulez[MR_SUIT]-gTime) <= 2100 then
2854 dr := not Odd((FMegaRulez[MR_SUIT]-gTime) div 300)
2855 else
2856 dr := True;
2858 if dr then
2859 e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1,
2860 0, 96, 0, 200, TBlending.None);
2861 end;
2863 // Ïðè âçÿòèè áåðñåðêà ðèñóåòñÿ êðàñíîâàòûé ôîí
2864 if (FBerserk >= 0) and (LongWord(FBerserk) >= gTime) and (gFlash = 2) then
2865 begin
2866 e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1,
2867 255, 0, 0, 200, TBlending.None);
2868 end;
2869 end;
2871 procedure TPlayer.DrawPain();
2872 var
2873 a, h: Integer;
2874 begin
2875 if FPain = 0 then Exit;
2877 a := FPain;
2879 if a < 15 then h := 0
2880 else if a < 35 then h := 1
2881 else if a < 55 then h := 2
2882 else if a < 75 then h := 3
2883 else if a < 95 then h := 4
2884 else h := 5;
2886 //if a > 255 then a := 255;
2888 e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1, 255, 0, 0, 255-h*50);
2889 //e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1, 255-min(128, a), 255-a, 255-a, 0, B_FILTER);
2890 end;
2892 procedure TPlayer.DrawPickup();
2893 var
2894 a, h: Integer;
2895 begin
2896 if FPickup = 0 then Exit;
2898 a := FPickup;
2900 if a < 15 then h := 1
2901 else if a < 35 then h := 2
2902 else if a < 55 then h := 3
2903 else if a < 75 then h := 4
2904 else h := 5;
2906 e_DrawFillQuad(0, 0, gPlayerScreenSize.X-1, gPlayerScreenSize.Y-1, 150, 200, 150, 255-h*50);
2907 end;
2909 procedure TPlayer.DoPunch();
2910 var
2911 id: DWORD;
2912 st: String;
2913 begin
2914 if FPunchAnim <> nil then begin
2915 FPunchAnim.reset();
2916 FPunchAnim.Free;
2917 FPunchAnim := nil;
2918 end;
2919 st := 'FRAMES_PUNCH';
2920 if R_BERSERK in FRulez then
2921 st := st + '_BERSERK';
2922 if FKeys[KEY_UP].Pressed then
2923 st := st + '_UP'
2924 else if FKeys[KEY_DOWN].Pressed then
2925 st := st + '_DN';
2926 g_Frames_Get(id, st);
2927 FPunchAnim := TAnimation.Create(id, False, 1);
2928 end;
2930 procedure TPlayer.Fire();
2931 var
2932 f, DidFire: Boolean;
2933 wx, wy, xd, yd: Integer;
2934 locobj: TObj;
2935 begin
2936 if g_Game_IsClient then Exit;
2937 // FBFGFireCounter - âðåìÿ ïåðåä âûñòðåëîì (äëÿ BFG)
2938 // FReloading - âðåìÿ ïîñëå âûñòðåëà (äëÿ âñåãî)
2940 if FSpectator then
2941 begin
2942 Respawn(False);
2943 Exit;
2944 end;
2946 if FReloading[FCurrWeap] <> 0 then Exit;
2948 DidFire := False;
2950 f := False;
2951 wx := FObj.X+WEAPONPOINT[FDirection].X;
2952 wy := FObj.Y+WEAPONPOINT[FDirection].Y;
2953 xd := wx+IfThen(FDirection = TDirection.D_LEFT, -30, 30);
2954 yd := wy+firediry();
2956 case FCurrWeap of
2957 WEAPON_KASTET:
2958 begin
2959 DoPunch();
2960 if R_BERSERK in FRulez then
2961 begin
2962 //g_Weapon_punch(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y, 75, FUID);
2963 locobj.X := FObj.X+FObj.Rect.X;
2964 locobj.Y := FObj.Y+FObj.Rect.Y;
2965 locobj.rect.X := 0;
2966 locobj.rect.Y := 0;
2967 locobj.rect.Width := 39;
2968 locobj.rect.Height := 52;
2969 locobj.Vel.X := (xd-wx) div 2;
2970 locobj.Vel.Y := (yd-wy) div 2;
2971 locobj.Accel.X := xd-wx;
2972 locobj.Accel.y := yd-wy;
2974 if g_Weapon_Hit(@locobj, 50, FUID, HIT_SOME) <> 0 then
2975 g_Sound_PlayExAt('SOUND_WEAPON_HITBERSERK', FObj.X, FObj.Y)
2976 else
2977 g_Sound_PlayExAt('SOUND_WEAPON_MISSBERSERK', FObj.X, FObj.Y);
2979 if (gFlash = 1) and (FPain < 50) then FPain := min(FPain + 25, 50);
2980 end
2981 else
2982 begin
2983 g_Weapon_punch(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y, 3, FUID);
2984 end;
2986 DidFire := True;
2987 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
2988 end;
2990 WEAPON_SAW:
2991 begin
2992 if g_Weapon_chainsaw(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y,
2993 IfThen(gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF], 9, 3), FUID) <> 0 then
2994 begin
2995 FSawSoundSelect.Stop();
2996 FSawSound.Stop();
2997 FSawSoundHit.PlayAt(FObj.X, FObj.Y);
2998 end
2999 else if not FSawSoundHit.IsPlaying() then
3000 begin
3001 FSawSoundSelect.Stop();
3002 FSawSound.PlayAt(FObj.X, FObj.Y);
3003 end;
3005 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3006 DidFire := True;
3007 f := True;
3008 end;
3010 WEAPON_PISTOL:
3011 if FAmmo[A_BULLETS] > 0 then
3012 begin
3013 g_Weapon_pistol(wx, wy, xd, yd, FUID);
3014 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3015 Dec(FAmmo[A_BULLETS]);
3016 FFireAngle := FAngle;
3017 f := True;
3018 DidFire := True;
3019 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
3020 GameVelX, GameVelY-2, SHELL_BULLET);
3021 end;
3023 WEAPON_SHOTGUN1:
3024 if FAmmo[A_SHELLS] > 0 then
3025 begin
3026 g_Weapon_shotgun(wx, wy, xd, yd, FUID);
3027 if not gSoundEffectsDF then g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN', wx, wy);
3028 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3029 Dec(FAmmo[A_SHELLS]);
3030 FFireAngle := FAngle;
3031 f := True;
3032 DidFire := True;
3033 FShellTimer := 10;
3034 FShellType := SHELL_SHELL;
3035 end;
3037 WEAPON_SHOTGUN2:
3038 if FAmmo[A_SHELLS] >= 2 then
3039 begin
3040 g_Weapon_dshotgun(wx, wy, xd, yd, FUID);
3041 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3042 Dec(FAmmo[A_SHELLS], 2);
3043 FFireAngle := FAngle;
3044 f := True;
3045 DidFire := True;
3046 FShellTimer := 13;
3047 FShellType := SHELL_DBLSHELL;
3048 end;
3050 WEAPON_CHAINGUN:
3051 if FAmmo[A_BULLETS] > 0 then
3052 begin
3053 g_Weapon_mgun(wx, wy, xd, yd, FUID);
3054 if not gSoundEffectsDF then g_Sound_PlayExAt('SOUND_WEAPON_FIREPISTOL', wx, wy);
3055 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3056 Dec(FAmmo[A_BULLETS]);
3057 FFireAngle := FAngle;
3058 f := True;
3059 DidFire := True;
3060 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
3061 GameVelX, GameVelY-2, SHELL_BULLET);
3062 end;
3064 WEAPON_ROCKETLAUNCHER:
3065 if FAmmo[A_ROCKETS] > 0 then
3066 begin
3067 g_Weapon_rocket(wx, wy, xd, yd, FUID);
3068 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3069 Dec(FAmmo[A_ROCKETS]);
3070 FFireAngle := FAngle;
3071 f := True;
3072 DidFire := True;
3073 end;
3075 WEAPON_PLASMA:
3076 if FAmmo[A_CELLS] > 0 then
3077 begin
3078 g_Weapon_plasma(wx, wy, xd, yd, FUID);
3079 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3080 Dec(FAmmo[A_CELLS]);
3081 FFireAngle := FAngle;
3082 f := True;
3083 DidFire := True;
3084 end;
3086 WEAPON_BFG:
3087 if (FAmmo[A_CELLS] >= 40) and (FBFGFireCounter = -1) then
3088 begin
3089 FBFGFireCounter := 17;
3090 if not FNoReload then
3091 g_Sound_PlayExAt('SOUND_WEAPON_STARTFIREBFG', FObj.X, FObj.Y);
3092 Dec(FAmmo[A_CELLS], 40);
3093 DidFire := True;
3094 end;
3096 WEAPON_SUPERPULEMET:
3097 if FAmmo[A_SHELLS] > 0 then
3098 begin
3099 g_Weapon_shotgun(wx, wy, xd, yd, FUID);
3100 if not gSoundEffectsDF then g_Sound_PlayExAt('SOUND_WEAPON_FIRECGUN', wx, wy);
3101 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3102 Dec(FAmmo[A_SHELLS]);
3103 FFireAngle := FAngle;
3104 f := True;
3105 DidFire := True;
3106 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
3107 GameVelX, GameVelY-2, SHELL_SHELL);
3108 end;
3110 WEAPON_FLAMETHROWER:
3111 if FAmmo[A_FUEL] > 0 then
3112 begin
3113 g_Weapon_flame(wx, wy, xd, yd, FUID);
3114 FlamerOn;
3115 FReloading[FCurrWeap] := WEAPON_RELOAD[FCurrWeap];
3116 Dec(FAmmo[A_FUEL]);
3117 FFireAngle := FAngle;
3118 f := True;
3119 DidFire := True;
3120 end
3121 else
3122 begin
3123 FlamerOff;
3124 if g_Game_IsNet and g_Game_IsServer then MH_SEND_PlayerStats(FUID);
3125 end;
3126 end;
3128 if g_Game_IsNet then
3129 begin
3130 if DidFire then
3131 begin
3132 if FCurrWeap <> WEAPON_BFG then
3133 MH_SEND_PlayerFire(FUID, FCurrWeap, wx, wy, xd, yd, LastShotID)
3134 else
3135 if not FNoReload then
3136 MH_SEND_Sound(FObj.X, FObj.Y, 'SOUND_WEAPON_STARTFIREBFG');
3137 end;
3139 MH_SEND_PlayerStats(FUID);
3140 end;
3142 if not f then Exit;
3144 if (FAngle = 0) or (FAngle = 180) then SetAction(A_ATTACK)
3145 else if (FAngle = ANGLE_LEFTDOWN) or (FAngle = ANGLE_RIGHTDOWN) then SetAction(A_ATTACKDOWN)
3146 else if (FAngle = ANGLE_LEFTUP) or (FAngle = ANGLE_RIGHTUP) then SetAction(A_ATTACKUP);
3147 end;
3149 function TPlayer.GetAmmoByWeapon(Weapon: Byte): Word;
3150 begin
3151 case Weapon of
3152 WEAPON_PISTOL, WEAPON_CHAINGUN: Result := FAmmo[A_BULLETS];
3153 WEAPON_SHOTGUN1, WEAPON_SHOTGUN2, WEAPON_SUPERPULEMET: Result := FAmmo[A_SHELLS];
3154 WEAPON_ROCKETLAUNCHER: Result := FAmmo[A_ROCKETS];
3155 WEAPON_PLASMA, WEAPON_BFG: Result := FAmmo[A_CELLS];
3156 WEAPON_FLAMETHROWER: Result := FAmmo[A_FUEL];
3157 else Result := 0;
3158 end;
3159 end;
3161 function TPlayer.HeadInLiquid(XInc, YInc: Integer): Boolean;
3162 begin
3163 Result := g_Map_CollidePanel(FObj.X+PLAYER_HEADRECT.X+XInc, FObj.Y+PLAYER_HEADRECT.Y+YInc,
3164 PLAYER_HEADRECT.Width, PLAYER_HEADRECT.Height,
3165 PANEL_WATER or PANEL_ACID1 or PANEL_ACID2, True);
3166 end;
3168 procedure TPlayer.FlamerOn;
3169 begin
3170 FFlameSoundOff.Stop();
3171 FFlameSoundOff.SetPosition(0);
3172 if FFlaming then
3173 begin
3174 if (not FFlameSoundOn.IsPlaying()) and (not FFlameSoundWork.IsPlaying()) then
3175 FFlameSoundWork.PlayAt(FObj.X, FObj.Y);
3176 end
3177 else
3178 begin
3179 FFlameSoundOn.PlayAt(FObj.X, FObj.Y);
3180 FFlaming := True;
3181 end;
3182 end;
3184 procedure TPlayer.FlamerOff;
3185 begin
3186 if FFlaming then
3187 begin
3188 FFlameSoundOn.Stop();
3189 FFlameSoundOn.SetPosition(0);
3190 FFlameSoundWork.Stop();
3191 FFlameSoundWork.SetPosition(0);
3192 FFlameSoundOff.PlayAt(FObj.X, FObj.Y);
3193 FFlaming := False;
3194 end;
3195 end;
3197 procedure TPlayer.JetpackOn;
3198 begin
3199 FJetSoundFly.Stop;
3200 FJetSoundOff.Stop;
3201 FJetSoundOn.SetPosition(0);
3202 FJetSoundOn.PlayAt(FObj.X, FObj.Y);
3203 FlySmoke(8);
3204 end;
3206 procedure TPlayer.JetpackOff;
3207 begin
3208 FJetSoundFly.Stop;
3209 FJetSoundOn.Stop;
3210 FJetSoundOff.SetPosition(0);
3211 FJetSoundOff.PlayAt(FObj.X, FObj.Y);
3212 end;
3214 procedure TPlayer.CatchFire(Attacker: Word; Timeout: Integer = PLAYER_BURN_TIME);
3215 begin
3216 if Timeout <= 0 then
3217 exit;
3218 if (FMegaRulez[MR_SUIT] > gTime) or (FMegaRulez[MR_INVUL] > gTime) then
3219 exit; // Íå çàãîðàåìñÿ êîãäà åñòü çàùèòà
3220 if g_Obj_CollidePanel(@FObj, 0, 0, PANEL_WATER or PANEL_ACID1 or PANEL_ACID2) then
3221 exit; // Íå ïîäãîðàåì â âîäå íà âñÿêèé ñëó÷àé
3222 if FFireTime <= 0 then
3223 g_Sound_PlayExAt('SOUND_IGNITE', FObj.X, FObj.Y);
3224 FFireTime := Timeout;
3225 FFireAttacker := Attacker;
3226 if g_Game_IsNet and g_Game_IsServer then
3227 MH_SEND_PlayerStats(FUID);
3228 end;
3230 procedure TPlayer.Jump();
3231 begin
3232 if gFly or FJetpack then
3233 begin
3234 // Ïîëåò (÷èò-êîä èëè äæåòïàê):
3235 if FObj.Vel.Y > -VEL_FLY then
3236 FObj.Vel.Y := FObj.Vel.Y - 3;
3237 if FJetpack then
3238 begin
3239 if FJetFuel > 0 then
3240 Dec(FJetFuel);
3241 if (FJetFuel < 1) and g_Game_IsServer then
3242 begin
3243 FJetpack := False;
3244 JetpackOff;
3245 if g_Game_IsNet then
3246 MH_SEND_PlayerStats(FUID);
3247 end;
3248 end;
3249 Exit;
3250 end;
3252 // Íå âêëþ÷àòü äæåòïàê â ðåæèìå ïðîõîæäåíèÿ ñêâîçü ñòåíû
3253 if FGhost then
3254 FCanJetpack := False;
3256 // Ïðûãàåì èëè âñïëûâàåì:
3257 if (CollideLevel(0, 1) or
3258 g_Map_CollidePanel(FObj.X+PLAYER_RECT.X, FObj.Y+PLAYER_RECT.Y+36, PLAYER_RECT.Width,
3259 PLAYER_RECT.Height-33, PANEL_STEP, False)
3260 ) and (FObj.Accel.Y = 0) then // Íå ïðûãàòü, åñëè åñòü âåðòèêàëüíîå óñêîðåíèå
3261 begin
3262 FObj.Vel.Y := -VEL_JUMP;
3263 FCanJetpack := False;
3264 end
3265 else
3266 begin
3267 if BodyInLiquid(0, 0) then
3268 FObj.Vel.Y := -VEL_SW
3269 else if (FJetFuel > 0) and FCanJetpack and
3270 g_Game_IsServer and (not g_Obj_CollideLiquid(@FObj, 0, 0)) then
3271 begin
3272 FJetpack := True;
3273 JetpackOn;
3274 if g_Game_IsNet then
3275 MH_SEND_PlayerStats(FUID);
3276 end;
3277 end;
3278 end;
3280 procedure TPlayer.Kill(KillType: Byte; SpawnerUID: Word; t: Byte);
3281 var
3282 a, i, k, ab, ar: Byte;
3283 s: String;
3284 mon: TMonster;
3285 plr: TPlayer;
3286 srv, netsrv: Boolean;
3287 DoFrags: Boolean;
3288 OldLR: Byte;
3289 KP: TPlayer;
3290 it: PItem;
3292 procedure PushItem(t: Byte);
3293 var
3294 id: DWORD;
3295 begin
3296 id := g_Items_Create(FObj.X, FObj.Y, t, True, False);
3297 it := g_Items_ByIdx(id);
3298 if KillType = K_EXTRAHARDKILL then // -7..+7; -8..0
3299 begin
3300 g_Obj_Push(@it.Obj, (FObj.Vel.X div 2)-7+Random(15),
3301 (FObj.Vel.Y div 2)-Random(9));
3302 it.positionChanged(); // this updates spatial accelerators
3303 end
3304 else
3305 begin
3306 if KillType = K_HARDKILL then // -5..+5; -5..0
3307 begin
3308 g_Obj_Push(@it.Obj, (FObj.Vel.X div 2)-5+Random(11),
3309 (FObj.Vel.Y div 2)-Random(6));
3310 end
3311 else // -3..+3; -3..0
3312 begin
3313 g_Obj_Push(@it.Obj, (FObj.Vel.X div 2)-3+Random(7),
3314 (FObj.Vel.Y div 2)-Random(4));
3315 end;
3316 it.positionChanged(); // this updates spatial accelerators
3317 end;
3319 if g_Game_IsNet and g_Game_IsServer then
3320 MH_SEND_ItemSpawn(True, id);
3321 end;
3323 begin
3324 DoFrags := (gGameSettings.MaxLives = 0) or (gGameSettings.GameMode = GM_COOP);
3325 Srv := g_Game_IsServer;
3326 Netsrv := g_Game_IsServer and g_Game_IsNet;
3327 if Srv then FDeath := FDeath + 1;
3328 if FAlive then
3329 begin
3330 if FGhost then
3331 FGhost := False;
3332 if not FPhysics then
3333 FPhysics := True;
3334 FAlive := False;
3335 end;
3336 FShellTimer := -1;
3338 if (gGameSettings.MaxLives > 0) and Srv and (gLMSRespawn = LMS_RESPAWN_NONE) then
3339 begin
3340 if FLives > 0 then FLives := FLives - 1;
3341 if FLives = 0 then FNoRespawn := True;
3342 end;
3344 // Íîìåð òèïà ñìåðòè:
3345 a := 1;
3346 case KillType of
3347 K_SIMPLEKILL: a := 1;
3348 K_HARDKILL: a := 2;
3349 K_EXTRAHARDKILL: a := 3;
3350 K_FALLKILL: a := 4;
3351 end;
3353 // Çâóê ñìåðòè:
3354 if not FModel.PlaySound(MODELSOUND_DIE, a, FObj.X, FObj.Y) then
3355 for i := 1 to 3 do
3356 if FModel.PlaySound(MODELSOUND_DIE, i, FObj.X, FObj.Y) then
3357 Break;
3359 // Âðåìÿ ðåñïàóíà:
3360 if Srv then
3361 case KillType of
3362 K_SIMPLEKILL:
3363 FTime[T_RESPAWN] := gTime + TIME_RESPAWN1;
3364 K_HARDKILL:
3365 FTime[T_RESPAWN] := gTime + TIME_RESPAWN2;
3366 K_EXTRAHARDKILL, K_FALLKILL:
3367 FTime[T_RESPAWN] := gTime + TIME_RESPAWN3;
3368 end;
3370 // Ïåðåêëþ÷àåì ñîñòîÿíèå:
3371 case KillType of
3372 K_SIMPLEKILL:
3373 SetAction(A_DIE1);
3374 K_HARDKILL, K_EXTRAHARDKILL:
3375 SetAction(A_DIE2);
3376 end;
3378 // Ðåàêöèÿ ìîíñòðîâ íà ñìåðòü èãðîêà:
3379 if (KillType <> K_FALLKILL) and (Srv) then
3380 g_Monsters_killedp();
3382 if SpawnerUID = FUID then
3383 begin // Ñàìîóáèëñÿ
3384 if Srv and (DoFrags or (gGameSettings.GameMode = GM_TDM)) then
3385 begin
3386 Dec(FFrags);
3387 FLastFrag := 0;
3388 end;
3389 g_Console_Add(Format(_lc[I_PLAYER_KILL_SELF], [FName]), True);
3390 end
3391 else
3392 if g_GetUIDType(SpawnerUID) = UID_PLAYER then
3393 begin // Óáèò äðóãèì èãðîêîì
3394 KP := g_Player_Get(SpawnerUID);
3395 if (KP <> nil) and Srv then
3396 begin
3397 if (DoFrags or (gGameSettings.GameMode = GM_TDM)) then
3398 if SameTeam(FUID, SpawnerUID) then
3399 begin
3400 Dec(KP.FFrags);
3401 KP.FLastFrag := 0;
3402 end else
3403 begin
3404 Inc(KP.FFrags);
3405 KP.FragCombo();
3406 end;
3408 if (gGameSettings.GameMode = GM_TDM) and DoFrags then
3409 Inc(gTeamStat[KP.Team].Goals,
3410 IfThen(SameTeam(FUID, SpawnerUID), -1, 1));
3412 if netsrv then MH_SEND_PlayerStats(SpawnerUID);
3413 end;
3415 plr := g_Player_Get(SpawnerUID);
3416 if plr = nil then
3417 s := '?'
3418 else
3419 s := plr.FName;
3421 case KillType of
3422 K_HARDKILL:
3423 g_Console_Add(Format(_lc[I_PLAYER_KILL_EXTRAHARD_2],
3424 [FName, s]),
3425 gShowKillMsg);
3426 K_EXTRAHARDKILL:
3427 g_Console_Add(Format(_lc[I_PLAYER_KILL_EXTRAHARD_1],
3428 [FName, s]),
3429 gShowKillMsg);
3430 else
3431 g_Console_Add(Format(_lc[I_PLAYER_KILL],
3432 [FName, s]),
3433 gShowKillMsg);
3434 end;
3435 end
3436 else if g_GetUIDType(SpawnerUID) = UID_MONSTER then
3437 begin // Óáèò ìîíñòðîì
3438 mon := g_Monsters_ByUID(SpawnerUID);
3439 if mon = nil then
3440 s := '?'
3441 else
3442 s := g_Mons_GetKilledByTypeId(mon.MonsterType);
3444 case KillType of
3445 K_HARDKILL:
3446 g_Console_Add(Format(_lc[I_PLAYER_KILL_EXTRAHARD_2],
3447 [FName, s]),
3448 gShowKillMsg);
3449 K_EXTRAHARDKILL:
3450 g_Console_Add(Format(_lc[I_PLAYER_KILL_EXTRAHARD_1],
3451 [FName, s]),
3452 gShowKillMsg);
3453 else
3454 g_Console_Add(Format(_lc[I_PLAYER_KILL],
3455 [FName, s]),
3456 gShowKillMsg);
3457 end;
3458 end
3459 else // Îñîáûå òèïû ñìåðòè
3460 case t of
3461 HIT_DISCON: ;
3462 HIT_SELF: g_Console_Add(Format(_lc[I_PLAYER_KILL_SELF], [FName]), True);
3463 HIT_FALL: g_Console_Add(Format(_lc[I_PLAYER_KILL_FALL], [FName]), True);
3464 HIT_WATER: g_Console_Add(Format(_lc[I_PLAYER_KILL_WATER], [FName]), True);
3465 HIT_ACID: g_Console_Add(Format(_lc[I_PLAYER_KILL_ACID], [FName]), True);
3466 HIT_TRAP: g_Console_Add(Format(_lc[I_PLAYER_KILL_TRAP], [FName]), True);
3467 else g_Console_Add(Format(_lc[I_PLAYER_DIED], [FName]), True);
3468 end;
3470 if Srv then
3471 begin
3472 // Âûáðîñ îðóæèÿ:
3473 for a := WP_FIRST to WP_LAST do
3474 if FWeapon[a] then
3475 begin
3476 case a of
3477 WEAPON_SAW: i := ITEM_WEAPON_SAW;
3478 WEAPON_SHOTGUN1: i := ITEM_WEAPON_SHOTGUN1;
3479 WEAPON_SHOTGUN2: i := ITEM_WEAPON_SHOTGUN2;
3480 WEAPON_CHAINGUN: i := ITEM_WEAPON_CHAINGUN;
3481 WEAPON_ROCKETLAUNCHER: i := ITEM_WEAPON_ROCKETLAUNCHER;
3482 WEAPON_PLASMA: i := ITEM_WEAPON_PLASMA;
3483 WEAPON_BFG: i := ITEM_WEAPON_BFG;
3484 WEAPON_SUPERPULEMET: i := ITEM_WEAPON_SUPERPULEMET;
3485 WEAPON_FLAMETHROWER: i := ITEM_WEAPON_FLAMETHROWER;
3486 else i := 0;
3487 end;
3489 if i <> 0 then
3490 PushItem(i);
3491 end;
3493 // Âûáðîñ ðþêçàêà:
3494 if R_ITEM_BACKPACK in FRulez then
3495 PushItem(ITEM_AMMO_BACKPACK);
3497 // Âûáðîñ ðàêåòíîãî ðàíöà:
3498 if FJetFuel > 0 then
3499 PushItem(ITEM_JETPACK);
3501 // Âûáðîñ êëþ÷åé:
3502 if (not (gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF])) or
3503 (not LongBool(gGameSettings.Options and GAME_OPTION_DMKEYS)) then
3504 begin
3505 if R_KEY_RED in FRulez then
3506 PushItem(ITEM_KEY_RED);
3508 if R_KEY_GREEN in FRulez then
3509 PushItem(ITEM_KEY_GREEN);
3511 if R_KEY_BLUE in FRulez then
3512 PushItem(ITEM_KEY_BLUE);
3513 end;
3515 // Âûáðîñ ôëàãà:
3516 DropFlag(KillType = K_FALLKILL);
3517 end;
3519 FCorpse := g_Player_CreateCorpse(Self);
3521 if Srv and (gGameSettings.MaxLives > 0) and FNoRespawn and
3522 (gLMSRespawn = LMS_RESPAWN_NONE) then
3523 begin
3524 a := 0;
3525 k := 0;
3526 ar := 0;
3527 ab := 0;
3528 for i := Low(gPlayers) to High(gPlayers) do
3529 begin
3530 if gPlayers[i] = nil then continue;
3531 if (not gPlayers[i].FNoRespawn) and (not gPlayers[i].FSpectator) then
3532 begin
3533 Inc(a);
3534 if gPlayers[i].FTeam = TEAM_RED then Inc(ar)
3535 else if gPlayers[i].FTeam = TEAM_BLUE then Inc(ab);
3536 k := i;
3537 end;
3538 end;
3540 OldLR := gLMSRespawn;
3541 if (gGameSettings.GameMode = GM_COOP) then
3542 begin
3543 if (a = 0) then
3544 begin
3545 // everyone is dead, restart the map
3546 g_Game_Message(_lc[I_MESSAGE_LMS_LOSE], 144);
3547 if Netsrv then
3548 MH_SEND_GameEvent(NET_EV_LMS_LOSE);
3549 gLMSRespawn := LMS_RESPAWN_FINAL;
3550 gLMSRespawnTime := gTime + 5000;
3551 end
3552 else if (a = 1) then
3553 begin
3554 if (gPlayers[k] <> nil) and not (gPlayers[k] is TBot) then
3555 if (gPlayers[k] = gPlayer1) or
3556 (gPlayers[k] = gPlayer2) then
3557 g_Console_Add('*** ' + _lc[I_MESSAGE_LMS_SURVIVOR] + ' ***', True)
3558 else if Netsrv and (gPlayers[k].FClientID >= 0) then
3559 MH_SEND_GameEvent(NET_EV_LMS_SURVIVOR, 0, 'N', gPlayers[k].FClientID);
3560 end;
3561 end
3562 else if (gGameSettings.GameMode = GM_TDM) then
3563 begin
3564 if (ab = 0) and (ar <> 0) then
3565 begin
3566 // blu team ded
3567 g_Game_Message(Format(_lc[I_MESSAGE_TLMS_WIN], [AnsiUpperCase(_lc[I_GAME_TEAM_RED])]), 144);
3568 if Netsrv then
3569 MH_SEND_GameEvent(NET_EV_TLMS_WIN, TEAM_RED);
3570 Inc(gTeamStat[TEAM_RED].Goals);
3571 gLMSRespawn := LMS_RESPAWN_FINAL;
3572 gLMSRespawnTime := gTime + 5000;
3573 end
3574 else if (ar = 0) and (ab <> 0) then
3575 begin
3576 // red team ded
3577 g_Game_Message(Format(_lc[I_MESSAGE_TLMS_WIN], [AnsiUpperCase(_lc[I_GAME_TEAM_BLUE])]), 144);
3578 if Netsrv then
3579 MH_SEND_GameEvent(NET_EV_TLMS_WIN, TEAM_BLUE);
3580 Inc(gTeamStat[TEAM_BLUE].Goals);
3581 gLMSRespawn := LMS_RESPAWN_FINAL;
3582 gLMSRespawnTime := gTime + 5000;
3583 end
3584 else if (ar = 0) and (ab = 0) then
3585 begin
3586 // everyone ded
3587 g_Game_Message(_lc[I_GAME_WIN_DRAW], 144);
3588 if Netsrv then
3589 MH_SEND_GameEvent(NET_EV_LMS_DRAW, 0, FName);
3590 gLMSRespawn := LMS_RESPAWN_FINAL;
3591 gLMSRespawnTime := gTime + 5000;
3592 end;
3593 end
3594 else if (gGameSettings.GameMode = GM_DM) then
3595 begin
3596 if (a = 1) then
3597 begin
3598 if gPlayers[k] <> nil then
3599 with gPlayers[k] do
3600 begin
3601 // survivor is the winner
3602 g_Game_Message(Format(_lc[I_MESSAGE_LMS_WIN], [AnsiUpperCase(FName)]), 144);
3603 if Netsrv then
3604 MH_SEND_GameEvent(NET_EV_LMS_WIN, 0, FName);
3605 Inc(FFrags);
3606 end;
3607 gLMSRespawn := LMS_RESPAWN_FINAL;
3608 gLMSRespawnTime := gTime + 5000;
3609 end
3610 else if (a = 0) then
3611 begin
3612 // everyone is dead, restart the map
3613 g_Game_Message(_lc[I_GAME_WIN_DRAW], 144);
3614 if Netsrv then
3615 MH_SEND_GameEvent(NET_EV_LMS_DRAW, 0, FName);
3616 gLMSRespawn := LMS_RESPAWN_FINAL;
3617 gLMSRespawnTime := gTime + 5000;
3618 end;
3619 end;
3620 if srv and (OldLR = LMS_RESPAWN_NONE) and (gLMSRespawn > LMS_RESPAWN_NONE) then
3621 begin
3622 if NetMode = NET_SERVER then
3623 MH_SEND_GameEvent(NET_EV_LMS_WARMUP, gLMSRespawnTime - gTime)
3624 else
3625 g_Console_Add(Format(_lc[I_MSG_WARMUP_START], [(gLMSRespawnTime - gTime) div 1000]), True);
3626 end;
3627 end;
3629 if Netsrv then
3630 begin
3631 MH_SEND_PlayerStats(FUID);
3632 MH_SEND_PlayerDeath(FUID, KillType, t, SpawnerUID);
3633 if gGameSettings.GameMode = GM_TDM then MH_SEND_GameStats;
3634 end;
3636 if srv and FNoRespawn then Spectate(True);
3637 FWantsInGame := True;
3638 end;
3640 function TPlayer.BodyInLiquid(XInc, YInc: Integer): Boolean;
3641 begin
3642 Result := g_Map_CollidePanel(FObj.X+PLAYER_RECT.X+XInc, FObj.Y+PLAYER_RECT.Y+YInc, PLAYER_RECT.Width,
3643 PLAYER_RECT.Height-20, PANEL_WATER or PANEL_ACID1 or PANEL_ACID2, False);
3644 end;
3646 function TPlayer.BodyInAcid(XInc, YInc: Integer): Boolean;
3647 begin
3648 Result := g_Map_CollidePanel(FObj.X+PLAYER_RECT.X+XInc, FObj.Y+PLAYER_RECT.Y+YInc, PLAYER_RECT.Width,
3649 PLAYER_RECT.Height-20, PANEL_ACID1 or PANEL_ACID2, False);
3650 end;
3652 procedure TPlayer.MakeBloodSimple(Count: Word);
3653 begin
3654 g_GFX_Blood(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)+8,
3655 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2),
3656 Count div 2, 3, -1, 16, (PLAYER_RECT.Height*2 div 3),
3657 FModel.Blood.R, FModel.Blood.G, FModel.Blood.B, FModel.Blood.Kind);
3658 g_GFX_Blood(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-8,
3659 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2),
3660 Count div 2, -3, -1, 16, (PLAYER_RECT.Height*2) div 3,
3661 FModel.Blood.R, FModel.Blood.G, FModel.Blood.B, FModel.Blood.Kind);
3662 end;
3664 procedure TPlayer.MakeBloodVector(Count: Word; VelX, VelY: Integer);
3665 begin
3666 g_GFX_Blood(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2),
3667 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2),
3668 Count, VelX, VelY, 16, (PLAYER_RECT.Height*2) div 3,
3669 FModel.Blood.R, FModel.Blood.G, FModel.Blood.B, FModel.Blood.Kind);
3670 end;
3672 procedure TPlayer.ProcessWeaponAction(Action: Byte);
3673 begin
3674 if g_Game_IsClient then Exit;
3675 case Action of
3676 WP_PREV: PrevWeapon();
3677 WP_NEXT: NextWeapon();
3678 end;
3679 end;
3681 procedure TPlayer.QueueWeaponSwitch(Weapon: Byte);
3682 begin
3683 if g_Game_IsClient then Exit;
3684 if Weapon > High(FWeapon) then Exit;
3685 FNextWeap := FNextWeap or (1 shl Weapon);
3686 end;
3688 procedure TPlayer.resetWeaponQueue ();
3689 begin
3690 FNextWeap := 0;
3691 FNextWeapDelay := 0;
3692 end;
3694 function TPlayer.hasAmmoForWeapon (weapon: Byte): Boolean;
3695 begin
3696 result := false;
3697 case weapon of
3698 WEAPON_KASTET, WEAPON_SAW: result := true;
3699 WEAPON_SHOTGUN1, WEAPON_SHOTGUN2, WEAPON_SUPERPULEMET: result := (FAmmo[A_SHELLS] > 0);
3700 WEAPON_PISTOL, WEAPON_CHAINGUN: result := (FAmmo[A_BULLETS] > 0);
3701 WEAPON_ROCKETLAUNCHER: result := (FAmmo[A_ROCKETS] > 0);
3702 WEAPON_PLASMA, WEAPON_BFG: result := (FAmmo[A_CELLS] > 0);
3703 WEAPON_FLAMETHROWER: result := (FAmmo[A_FUEL] > 0);
3704 else result := (weapon < length(FWeapon));
3705 end;
3706 end;
3708 // return 255 for "no switch"
3709 function TPlayer.getNextWeaponIndex (): Byte;
3710 var
3711 i: Word;
3712 wantThisWeapon: array[0..64] of Boolean;
3713 wwc: Integer = 0; //HACK!
3714 dir, cwi: Integer;
3715 begin
3716 result := 255; // default result: "no switch"
3717 // had weapon cycling on previous frame? remove that flag
3718 if (FNextWeap and $2000) <> 0 then
3719 begin
3720 FNextWeap := FNextWeap and $1FFF;
3721 FNextWeapDelay := 0;
3722 end;
3723 // cycling has priority
3724 if (FNextWeap and $C000) <> 0 then
3725 begin
3726 if (FNextWeap and $8000) <> 0 then
3727 dir := 1
3728 else
3729 dir := -1;
3730 FNextWeap := FNextWeap or $2000; // we need this
3731 if FNextWeapDelay > 0 then
3732 exit; // cooldown time
3733 cwi := FCurrWeap;
3734 for i := 0 to High(FWeapon) do
3735 begin
3736 cwi := (cwi+length(FWeapon)+dir) mod length(FWeapon);
3737 if FWeapon[cwi] then
3738 begin
3739 //e_WriteLog(Format(' SWITCH: cur=%d; new=%d', [FCurrWeap, cwi]), MSG_WARNING);
3740 result := Byte(cwi);
3741 FNextWeapDelay := WEAPON_DELAY;
3742 exit;
3743 end;
3744 end;
3745 resetWeaponQueue();
3746 exit;
3747 end;
3748 // no cycling
3749 for i := 0 to High(wantThisWeapon) do
3750 wantThisWeapon[i] := false;
3751 for i := 0 to High(FWeapon) do
3752 if (FNextWeap and (1 shl i)) <> 0 then
3753 begin
3754 wantThisWeapon[i] := true;
3755 Inc(wwc);
3756 end;
3757 // exclude currently selected weapon from the set
3758 wantThisWeapon[FCurrWeap] := false;
3759 // slow down alterations a little
3760 if wwc > 1 then
3761 begin
3762 //e_WriteLog(Format(' FNextWeap=%x; delay=%d', [FNextWeap, FNextWeapDelay]), MSG_WARNING);
3763 // more than one weapon requested, assume "alteration" and check alteration delay
3764 if FNextWeapDelay > 0 then
3765 begin
3766 FNextWeap := 0;
3767 exit;
3768 end; // yeah
3769 end;
3770 // do not reset weapon queue, it will be done in `RealizeCurrentWeapon()`
3771 // but clear all counters if no weapon should be switched
3772 if wwc < 1 then
3773 begin
3774 resetWeaponQueue();
3775 exit;
3776 end;
3777 //e_WriteLog(Format('wwc=%d', [wwc]), MSG_WARNING);
3778 // try weapons in descending order
3779 for i := High(FWeapon) downto 0 do
3780 begin
3781 if wantThisWeapon[i] and FWeapon[i] and ((wwc = 1) or hasAmmoForWeapon(i)) then
3782 begin
3783 // i found her!
3784 result := Byte(i);
3785 resetWeaponQueue();
3786 FNextWeapDelay := WEAPON_DELAY * 2; // anyway, 'cause why not
3787 exit;
3788 end;
3789 end;
3790 // no suitable weapon found, so reset the queue, to avoid accidental "queuing" of weapon w/o ammo
3791 resetWeaponQueue();
3792 end;
3794 procedure TPlayer.RealizeCurrentWeapon();
3795 function switchAllowed (): Boolean;
3796 var
3797 i: Byte;
3798 begin
3799 result := false;
3800 if FBFGFireCounter <> -1 then
3801 exit;
3802 if FTime[T_SWITCH] > gTime then
3803 exit;
3804 for i := WP_FIRST to WP_LAST do
3805 if FReloading[i] > 0 then
3806 exit;
3807 result := true;
3808 end;
3810 var
3811 nw: Byte;
3812 begin
3813 //e_WriteLog(Format('***RealizeCurrentWeapon: FNextWeap=%x; FNextWeapDelay=%d', [FNextWeap, FNextWeapDelay]), MSG_WARNING);
3814 //FNextWeap := FNextWeap and $1FFF;
3815 if FNextWeapDelay > 0 then Dec(FNextWeapDelay); // "alteration delay"
3817 if not switchAllowed then
3818 begin
3819 //HACK for weapon cycling
3820 if (FNextWeap and $E000) <> 0 then FNextWeap := 0;
3821 exit;
3822 end;
3824 nw := getNextWeaponIndex();
3825 if nw = 255 then exit; // don't reset anything here
3826 if nw > High(FWeapon) then
3827 begin
3828 // don't forget to reset queue here!
3829 //e_WriteLog(' RealizeCurrentWeapon: WUTAFUUUU', MSG_WARNING);
3830 resetWeaponQueue();
3831 exit;
3832 end;
3834 if FWeapon[nw] then
3835 begin
3836 FCurrWeap := nw;
3837 FTime[T_SWITCH] := gTime+156;
3838 if FCurrWeap = WEAPON_SAW then FSawSoundSelect.PlayAt(FObj.X, FObj.Y);
3839 FModel.SetWeapon(FCurrWeap);
3840 if g_Game_IsNet then MH_SEND_PlayerStats(FUID);
3841 end;
3842 end;
3844 procedure TPlayer.NextWeapon();
3845 begin
3846 if g_Game_IsClient then Exit;
3847 FNextWeap := $8000;
3848 end;
3850 procedure TPlayer.PrevWeapon();
3851 begin
3852 if g_Game_IsClient then Exit;
3853 FNextWeap := $4000;
3854 end;
3856 procedure TPlayer.SetWeapon(W: Byte);
3857 begin
3858 if FCurrWeap <> W then
3859 if W = WEAPON_SAW then
3860 FSawSoundSelect.PlayAt(FObj.X, FObj.Y);
3862 FCurrWeap := W;
3863 FModel.SetWeapon(CurrWeap);
3864 resetWeaponQueue();
3865 end;
3867 function TPlayer.PickItem(ItemType: Byte; arespawn: Boolean; var remove: Boolean): Boolean;
3869 function allowBerserkSwitching (): Boolean;
3870 begin
3871 if (FBFGFireCounter <> -1) then begin result := false; exit; end;
3872 result := true;
3873 if gBerserkAutoswitch then exit;
3874 if not conIsCheatsEnabled then exit;
3875 result := false;
3876 end;
3878 var
3879 a: Boolean;
3880 begin
3881 Result := False;
3882 if g_Game_IsClient then Exit;
3884 // a = true - ìåñòî ñïàâíà ïðåäìåòà:
3885 a := LongBool(gGameSettings.Options and GAME_OPTION_WEAPONSTAY) and arespawn;
3886 remove := not a;
3888 case ItemType of
3889 ITEM_MEDKIT_SMALL:
3890 if (FHealth < PLAYER_HP_SOFT) or (FFireTime > 0) then
3891 begin
3892 if FHealth < PLAYER_HP_SOFT then IncMax(FHealth, 10, PLAYER_HP_SOFT);
3893 Result := True;
3894 remove := True;
3895 FFireTime := 0;
3896 if gFlash = 2 then Inc(FPickup, 5);
3897 end;
3899 ITEM_MEDKIT_LARGE:
3900 if (FHealth < PLAYER_HP_SOFT) or (FFireTime > 0) then
3901 begin
3902 if FHealth < PLAYER_HP_SOFT then IncMax(FHealth, 25, PLAYER_HP_SOFT);
3903 Result := True;
3904 remove := True;
3905 FFireTime := 0;
3906 if gFlash = 2 then Inc(FPickup, 5);
3907 end;
3909 ITEM_ARMOR_GREEN:
3910 if FArmor < PLAYER_AP_SOFT then
3911 begin
3912 FArmor := PLAYER_AP_SOFT;
3913 Result := True;
3914 remove := True;
3915 if gFlash = 2 then Inc(FPickup, 5);
3916 end;
3918 ITEM_ARMOR_BLUE:
3919 if FArmor < PLAYER_AP_LIMIT then
3920 begin
3921 FArmor := PLAYER_AP_LIMIT;
3922 Result := True;
3923 remove := True;
3924 if gFlash = 2 then Inc(FPickup, 5);
3925 end;
3927 ITEM_SPHERE_BLUE:
3928 if (FHealth < PLAYER_HP_LIMIT) or (FFireTime > 0) then
3929 begin
3930 if FHealth < PLAYER_HP_LIMIT then IncMax(FHealth, 100, PLAYER_HP_LIMIT);
3931 Result := True;
3932 remove := True;
3933 FFireTime := 0;
3934 if gFlash = 2 then Inc(FPickup, 5);
3935 end;
3937 ITEM_SPHERE_WHITE:
3938 if (FHealth < PLAYER_HP_LIMIT) or (FArmor < PLAYER_AP_LIMIT) or (FFireTime > 0) then
3939 begin
3940 if FHealth < PLAYER_HP_LIMIT then
3941 FHealth := PLAYER_HP_LIMIT;
3942 if FArmor < PLAYER_AP_LIMIT then
3943 FArmor := PLAYER_AP_LIMIT;
3944 Result := True;
3945 remove := True;
3946 FFireTime := 0;
3947 if gFlash = 2 then Inc(FPickup, 5);
3948 end;
3950 ITEM_WEAPON_SAW:
3951 if (not FWeapon[WEAPON_SAW]) or ((not arespawn) and (gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF])) then
3952 begin
3953 FWeapon[WEAPON_SAW] := True;
3954 Result := True;
3955 if gFlash = 2 then Inc(FPickup, 5);
3956 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
3957 end;
3959 ITEM_WEAPON_SHOTGUN1:
3960 if (FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS]) or not FWeapon[WEAPON_SHOTGUN1] then
3961 begin
3962 // Íóæíî, ÷òîáû íå âçÿòü âñå ïóëè ñðàçó:
3963 if a and FWeapon[WEAPON_SHOTGUN1] then Exit;
3965 IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
3966 FWeapon[WEAPON_SHOTGUN1] := True;
3967 Result := True;
3968 if gFlash = 2 then Inc(FPickup, 5);
3969 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
3970 end;
3972 ITEM_WEAPON_SHOTGUN2:
3973 if (FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS]) or not FWeapon[WEAPON_SHOTGUN2] then
3974 begin
3975 if a and FWeapon[WEAPON_SHOTGUN2] then Exit;
3977 IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
3978 FWeapon[WEAPON_SHOTGUN2] := True;
3979 Result := True;
3980 if gFlash = 2 then Inc(FPickup, 5);
3981 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
3982 end;
3984 ITEM_WEAPON_CHAINGUN:
3985 if (FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS]) or not FWeapon[WEAPON_CHAINGUN] then
3986 begin
3987 if a and FWeapon[WEAPON_CHAINGUN] then Exit;
3989 IncMax(FAmmo[A_BULLETS], 50, FMaxAmmo[A_BULLETS]);
3990 FWeapon[WEAPON_CHAINGUN] := True;
3991 Result := True;
3992 if gFlash = 2 then Inc(FPickup, 5);
3993 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
3994 end;
3996 ITEM_WEAPON_ROCKETLAUNCHER:
3997 if (FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS]) or not FWeapon[WEAPON_ROCKETLAUNCHER] then
3998 begin
3999 if a and FWeapon[WEAPON_ROCKETLAUNCHER] then Exit;
4001 IncMax(FAmmo[A_ROCKETS], 2, FMaxAmmo[A_ROCKETS]);
4002 FWeapon[WEAPON_ROCKETLAUNCHER] := True;
4003 Result := True;
4004 if gFlash = 2 then Inc(FPickup, 5);
4005 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
4006 end;
4008 ITEM_WEAPON_PLASMA:
4009 if (FAmmo[A_CELLS] < FMaxAmmo[A_CELLS]) or not FWeapon[WEAPON_PLASMA] then
4010 begin
4011 if a and FWeapon[WEAPON_PLASMA] then Exit;
4013 IncMax(FAmmo[A_CELLS], 40, FMaxAmmo[A_CELLS]);
4014 FWeapon[WEAPON_PLASMA] := True;
4015 Result := True;
4016 if gFlash = 2 then Inc(FPickup, 5);
4017 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
4018 end;
4020 ITEM_WEAPON_BFG:
4021 if (FAmmo[A_CELLS] < FMaxAmmo[A_CELLS]) or not FWeapon[WEAPON_BFG] then
4022 begin
4023 if a and FWeapon[WEAPON_BFG] then Exit;
4025 IncMax(FAmmo[A_CELLS], 40, FMaxAmmo[A_CELLS]);
4026 FWeapon[WEAPON_BFG] := True;
4027 Result := True;
4028 if gFlash = 2 then Inc(FPickup, 5);
4029 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
4030 end;
4032 ITEM_WEAPON_SUPERPULEMET:
4033 if (FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS]) or not FWeapon[WEAPON_SUPERPULEMET] then
4034 begin
4035 if a and FWeapon[WEAPON_SUPERPULEMET] then Exit;
4037 IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
4038 FWeapon[WEAPON_SUPERPULEMET] := True;
4039 Result := True;
4040 if gFlash = 2 then Inc(FPickup, 5);
4041 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
4042 end;
4044 ITEM_WEAPON_FLAMETHROWER:
4045 if (FAmmo[A_FUEL] < FMaxAmmo[A_FUEL]) or not FWeapon[WEAPON_FLAMETHROWER] then
4046 begin
4047 if a and FWeapon[WEAPON_FLAMETHROWER] then Exit;
4049 IncMax(FAmmo[A_FUEL], 100, FMaxAmmo[A_FUEL]);
4050 FWeapon[WEAPON_FLAMETHROWER] := True;
4051 Result := True;
4052 if gFlash = 2 then Inc(FPickup, 5);
4053 if a and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETWEAPON');
4054 end;
4056 ITEM_AMMO_BULLETS:
4057 if FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS] then
4058 begin
4059 IncMax(FAmmo[A_BULLETS], 10, FMaxAmmo[A_BULLETS]);
4060 Result := True;
4061 remove := True;
4062 if gFlash = 2 then Inc(FPickup, 5);
4063 end;
4065 ITEM_AMMO_BULLETS_BOX:
4066 if FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS] then
4067 begin
4068 IncMax(FAmmo[A_BULLETS], 50, FMaxAmmo[A_BULLETS]);
4069 Result := True;
4070 remove := True;
4071 if gFlash = 2 then Inc(FPickup, 5);
4072 end;
4074 ITEM_AMMO_SHELLS:
4075 if FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS] then
4076 begin
4077 IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
4078 Result := True;
4079 remove := True;
4080 if gFlash = 2 then Inc(FPickup, 5);
4081 end;
4083 ITEM_AMMO_SHELLS_BOX:
4084 if FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS] then
4085 begin
4086 IncMax(FAmmo[A_SHELLS], 25, FMaxAmmo[A_SHELLS]);
4087 Result := True;
4088 remove := True;
4089 if gFlash = 2 then Inc(FPickup, 5);
4090 end;
4092 ITEM_AMMO_ROCKET:
4093 if FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS] then
4094 begin
4095 IncMax(FAmmo[A_ROCKETS], 1, FMaxAmmo[A_ROCKETS]);
4096 Result := True;
4097 remove := True;
4098 if gFlash = 2 then Inc(FPickup, 5);
4099 end;
4101 ITEM_AMMO_ROCKET_BOX:
4102 if FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS] then
4103 begin
4104 IncMax(FAmmo[A_ROCKETS], 5, FMaxAmmo[A_ROCKETS]);
4105 Result := True;
4106 remove := True;
4107 if gFlash = 2 then Inc(FPickup, 5);
4108 end;
4110 ITEM_AMMO_CELL:
4111 if FAmmo[A_CELLS] < FMaxAmmo[A_CELLS] then
4112 begin
4113 IncMax(FAmmo[A_CELLS], 40, FMaxAmmo[A_CELLS]);
4114 Result := True;
4115 remove := True;
4116 if gFlash = 2 then Inc(FPickup, 5);
4117 end;
4119 ITEM_AMMO_CELL_BIG:
4120 if FAmmo[A_CELLS] < FMaxAmmo[A_CELLS] then
4121 begin
4122 IncMax(FAmmo[A_CELLS], 100, FMaxAmmo[A_CELLS]);
4123 Result := True;
4124 remove := True;
4125 if gFlash = 2 then Inc(FPickup, 5);
4126 end;
4128 ITEM_AMMO_FUELCAN:
4129 if FAmmo[A_FUEL] < FMaxAmmo[A_FUEL] then
4130 begin
4131 IncMax(FAmmo[A_FUEL], 100, FMaxAmmo[A_FUEL]);
4132 Result := True;
4133 remove := True;
4134 if gFlash = 2 then Inc(FPickup, 5);
4135 end;
4137 ITEM_AMMO_BACKPACK:
4138 if not(R_ITEM_BACKPACK in FRulez) or
4139 (FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS]) or
4140 (FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS]) or
4141 (FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS]) or
4142 (FAmmo[A_CELLS] < FMaxAmmo[A_CELLS]) or
4143 (FAmmo[A_FUEL] < FMaxAmmo[A_FUEL]) then
4144 begin
4145 FMaxAmmo[A_BULLETS] := AmmoLimits[1, A_BULLETS];
4146 FMaxAmmo[A_SHELLS] := AmmoLimits[1, A_SHELLS];
4147 FMaxAmmo[A_ROCKETS] := AmmoLimits[1, A_ROCKETS];
4148 FMaxAmmo[A_CELLS] := AmmoLimits[1, A_CELLS];
4149 FMaxAmmo[A_FUEL] := AmmoLimits[1, A_FUEL];
4151 if FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS] then
4152 IncMax(FAmmo[A_BULLETS], 10, FMaxAmmo[A_BULLETS]);
4153 if FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS] then
4154 IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
4155 if FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS] then
4156 IncMax(FAmmo[A_ROCKETS], 1, FMaxAmmo[A_ROCKETS]);
4157 if FAmmo[A_CELLS] < FMaxAmmo[A_CELLS] then
4158 IncMax(FAmmo[A_CELLS], 40, FMaxAmmo[A_CELLS]);
4159 if FAmmo[A_FUEL] < FMaxAmmo[A_FUEL] then
4160 IncMax(FAmmo[A_FUEL], 50, FMaxAmmo[A_FUEL]);
4162 FRulez := FRulez + [R_ITEM_BACKPACK];
4163 Result := True;
4164 remove := True;
4165 if gFlash = 2 then Inc(FPickup, 5);
4166 end;
4168 ITEM_KEY_RED:
4169 if not(R_KEY_RED in FRulez) then
4170 begin
4171 Include(FRulez, R_KEY_RED);
4172 Result := True;
4173 remove := (gGameSettings.GameMode <> GM_COOP) and (g_Player_GetCount() < 2);
4174 if gFlash = 2 then Inc(FPickup, 5);
4175 if (not remove) and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETITEM');
4176 end;
4178 ITEM_KEY_GREEN:
4179 if not(R_KEY_GREEN in FRulez) then
4180 begin
4181 Include(FRulez, R_KEY_GREEN);
4182 Result := True;
4183 remove := (gGameSettings.GameMode <> GM_COOP) and (g_Player_GetCount() < 2);
4184 if gFlash = 2 then Inc(FPickup, 5);
4185 if (not remove) and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETITEM');
4186 end;
4188 ITEM_KEY_BLUE:
4189 if not(R_KEY_BLUE in FRulez) then
4190 begin
4191 Include(FRulez, R_KEY_BLUE);
4192 Result := True;
4193 remove := (gGameSettings.GameMode <> GM_COOP) and (g_Player_GetCount() < 2);
4194 if gFlash = 2 then Inc(FPickup, 5);
4195 if (not remove) and g_Game_IsNet then MH_SEND_Sound(GameX, GameY, 'SOUND_ITEM_GETITEM');
4196 end;
4198 ITEM_SUIT:
4199 if FMegaRulez[MR_SUIT] < gTime+PLAYER_SUIT_TIME then
4200 begin
4201 FMegaRulez[MR_SUIT] := gTime+PLAYER_SUIT_TIME;
4202 Result := True;
4203 remove := True;
4204 FFireTime := 0;
4205 if gFlash = 2 then Inc(FPickup, 5);
4206 end;
4208 ITEM_OXYGEN:
4209 if FAir < AIR_MAX then
4210 begin
4211 FAir := AIR_MAX;
4212 Result := True;
4213 remove := True;
4214 if gFlash = 2 then Inc(FPickup, 5);
4215 end;
4217 ITEM_MEDKIT_BLACK:
4218 begin
4219 if not (R_BERSERK in FRulez) then
4220 begin
4221 Include(FRulez, R_BERSERK);
4222 if allowBerserkSwitching then
4223 begin
4224 FCurrWeap := WEAPON_KASTET;
4225 resetWeaponQueue();
4226 FModel.SetWeapon(WEAPON_KASTET);
4227 end;
4228 if gFlash <> 0 then
4229 begin
4230 Inc(FPain, 100);
4231 if gFlash = 2 then Inc(FPickup, 5);
4232 end;
4233 FBerserk := gTime+30000;
4234 Result := True;
4235 remove := True;
4236 FFireTime := 0;
4237 end;
4238 if (FHealth < PLAYER_HP_SOFT) or (FFireTime > 0) then
4239 begin
4240 if FHealth < PLAYER_HP_SOFT then FHealth := PLAYER_HP_SOFT;
4241 FBerserk := gTime+30000;
4242 Result := True;
4243 remove := True;
4244 FFireTime := 0;
4245 end;
4246 end;
4248 ITEM_INVUL:
4249 if FMegaRulez[MR_INVUL] < gTime+PLAYER_INVUL_TIME then
4250 begin
4251 FMegaRulez[MR_INVUL] := gTime+PLAYER_INVUL_TIME;
4252 FSpawnInvul := 0;
4253 Result := True;
4254 remove := True;
4255 if gFlash = 2 then Inc(FPickup, 5);
4256 end;
4258 ITEM_BOTTLE:
4259 if (FHealth < PLAYER_HP_LIMIT) or (FFireTime > 0) then
4260 begin
4261 if FHealth < PLAYER_HP_LIMIT then IncMax(FHealth, 4, PLAYER_HP_LIMIT);
4262 Result := True;
4263 remove := True;
4264 FFireTime := 0;
4265 if gFlash = 2 then Inc(FPickup, 5);
4266 end;
4268 ITEM_HELMET:
4269 if FArmor < PLAYER_AP_LIMIT then
4270 begin
4271 IncMax(FArmor, 5, PLAYER_AP_LIMIT);
4272 Result := True;
4273 remove := True;
4274 if gFlash = 2 then Inc(FPickup, 5);
4275 end;
4277 ITEM_JETPACK:
4278 if FJetFuel < JET_MAX then
4279 begin
4280 FJetFuel := JET_MAX;
4281 Result := True;
4282 remove := True;
4283 if gFlash = 2 then Inc(FPickup, 5);
4284 end;
4286 ITEM_INVIS:
4287 if FMegaRulez[MR_INVIS] < gTime+PLAYER_INVIS_TIME then
4288 begin
4289 FMegaRulez[MR_INVIS] := gTime+PLAYER_INVIS_TIME;
4290 Result := True;
4291 remove := True;
4292 if gFlash = 2 then Inc(FPickup, 5);
4293 end;
4294 end;
4295 end;
4297 procedure TPlayer.Touch();
4298 begin
4299 if not FAlive then
4300 Exit;
4301 //FModel.PlaySound(MODELSOUND_PAIN, 1, FObj.X, FObj.Y);
4302 if FIamBot then
4303 begin
4304 // Áðîñèòü ôëàã òîâàðèùó:
4305 if gGameSettings.GameMode = GM_CTF then
4306 DropFlag();
4307 end;
4308 end;
4310 procedure TPlayer.Push(vx, vy: Integer);
4311 begin
4312 if (not FPhysics) and FGhost then
4313 Exit;
4314 FObj.Accel.X := FObj.Accel.X + vx;
4315 FObj.Accel.Y := FObj.Accel.Y + vy;
4316 if g_Game_IsNet and g_Game_IsServer then
4317 MH_SEND_PlayerPos(True, FUID, NET_EVERYONE);
4318 end;
4320 procedure TPlayer.Reset(Force: Boolean);
4321 begin
4322 if Force then
4323 FAlive := False;
4325 FSpawned := False;
4326 FTime[T_RESPAWN] := 0;
4327 FTime[T_FLAGCAP] := 0;
4328 FGodMode := False;
4329 FNoTarget := False;
4330 FNoReload := False;
4331 FFrags := 0;
4332 FLastFrag := 0;
4333 FComboEvnt := -1;
4334 FKills := 0;
4335 FMonsterKills := 0;
4336 FDeath := 0;
4337 FSecrets := 0;
4338 FSpawnInvul := 0;
4339 FCorpse := -1;
4340 FReady := False;
4341 if FNoRespawn then
4342 begin
4343 FSpectator := False;
4344 FGhost := False;
4345 FPhysics := True;
4346 FSpectatePlayer := -1;
4347 FNoRespawn := False;
4348 end;
4349 FLives := gGameSettings.MaxLives;
4351 SetFlag(FLAG_NONE);
4352 end;
4354 procedure TPlayer.SoftReset();
4355 begin
4356 ReleaseKeys();
4358 FDamageBuffer := 0;
4359 FSlopeOld := 0;
4360 FIncCamOld := 0;
4361 FIncCam := 0;
4362 FBFGFireCounter := -1;
4363 FShellTimer := -1;
4364 FPain := 0;
4365 FLastHit := 0;
4366 FLastFrag := 0;
4367 FComboEvnt := -1;
4369 SetFlag(FLAG_NONE);
4370 SetAction(A_STAND, True);
4371 end;
4373 function TPlayer.GetRespawnPoint(): Byte;
4374 var
4375 c: Byte;
4376 begin
4377 Result := 255;
4378 // Íà áóäóùåå: FSpawn - èãðîê óæå èãðàë è ïåðåðîæäàåòñÿ
4380 // Îäèíî÷íàÿ èãðà/êîîïåðàòèâ
4381 if gGameSettings.GameMode in [GM_COOP, GM_SINGLE] then
4382 begin
4383 if Self = gPlayer1 then
4384 begin
4385 // player 1 should try to spawn on the player 1 point
4386 if g_Map_GetPointCount(RESPAWNPOINT_PLAYER1) > 0 then
4387 Exit(RESPAWNPOINT_PLAYER1)
4388 else if g_Map_GetPointCount(RESPAWNPOINT_PLAYER2) > 0 then
4389 Exit(RESPAWNPOINT_PLAYER2);
4390 end
4391 else if Self = gPlayer2 then
4392 begin
4393 // player 2 should try to spawn on the player 2 point
4394 if g_Map_GetPointCount(RESPAWNPOINT_PLAYER2) > 0 then
4395 Exit(RESPAWNPOINT_PLAYER2)
4396 else if g_Map_GetPointCount(RESPAWNPOINT_PLAYER1) > 0 then
4397 Exit(RESPAWNPOINT_PLAYER1);
4398 end
4399 else
4400 begin
4401 // other players randomly pick either the first or the second point
4402 c := IfThen((Random(2) = 0), RESPAWNPOINT_PLAYER1, RESPAWNPOINT_PLAYER2);
4403 if g_Map_GetPointCount(c) > 0 then
4404 Exit(c);
4405 // try the other one
4406 c := IfThen((c = RESPAWNPOINT_PLAYER1), RESPAWNPOINT_PLAYER2, RESPAWNPOINT_PLAYER1);
4407 if g_Map_GetPointCount(c) > 0 then
4408 Exit(c);
4409 end;
4410 end;
4412 // Ìÿñîïîâàë
4413 if gGameSettings.GameMode = GM_DM then
4414 begin
4415 // try DM points first
4416 if g_Map_GetPointCount(RESPAWNPOINT_DM) > 0 then
4417 Exit(RESPAWNPOINT_DM);
4418 end;
4420 // Êîìàíäíûå
4421 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
4422 begin
4423 // try team points first
4424 c := RESPAWNPOINT_DM;
4425 if FTeam = TEAM_RED then
4426 c := RESPAWNPOINT_RED
4427 else if FTeam = TEAM_BLUE then
4428 c := RESPAWNPOINT_BLUE;
4429 if g_Map_GetPointCount(c) > 0 then
4430 Exit(c);
4431 end;
4433 // still haven't found a spawnpoint, try random shit
4434 Result := g_Map_GetRandomPointType();
4435 end;
4437 procedure TPlayer.Respawn(Silent: Boolean; Force: Boolean = False);
4438 var
4439 RespawnPoint: TRespawnPoint;
4440 a, b, c: Byte;
4441 Anim: TAnimation;
4442 ID: DWORD;
4443 begin
4444 FSlopeOld := 0;
4445 FIncCamOld := 0;
4446 FIncCam := 0;
4447 FBFGFireCounter := -1;
4448 FShellTimer := -1;
4449 FPain := 0;
4450 FLastHit := 0;
4451 FSpawnInvul := 0;
4452 FCorpse := -1;
4454 if not g_Game_IsServer then
4455 Exit;
4456 if FDummy then
4457 Exit;
4458 FWantsInGame := True;
4459 FJustTeleported := True;
4460 if Force then
4461 begin
4462 FTime[T_RESPAWN] := 0;
4463 FAlive := False;
4464 end;
4465 FNetTime := 0;
4466 // if server changes MaxLives we gotta be ready
4467 if gGameSettings.MaxLives = 0 then FNoRespawn := False;
4469 // Åùå íåëüçÿ âîçðîäèòüñÿ:
4470 if FTime[T_RESPAWN] > gTime then
4471 Exit;
4473 // Ïðîñðàë âñå æèçíè:
4474 if FNoRespawn then
4475 begin
4476 if not FSpectator then Spectate(True);
4477 FWantsInGame := True;
4478 Exit;
4479 end;
4481 if (gGameSettings.GameType <> GT_SINGLE) and (gGameSettings.GameMode <> GM_COOP) then
4482 begin // "Ñâîÿ èãðà"
4483 // Áåðñåðê íå ñîõðàíÿåòñÿ ìåæäó óðîâíÿìè:
4484 FRulez := FRulez-[R_BERSERK];
4485 end
4486 else // "Îäèíî÷íàÿ èãðà"/"Êîîï"
4487 begin
4488 // Áåðñåðê è êëþ÷è íå ñîõðàíÿþòñÿ ìåæäó óðîâíÿìè:
4489 FRulez := FRulez-[R_KEY_RED, R_KEY_GREEN, R_KEY_BLUE, R_BERSERK];
4490 end;
4492 // Ïîëó÷àåì òî÷êó ñïàóíà èãðîêà:
4493 c := GetRespawnPoint();
4495 ReleaseKeys();
4496 SetFlag(FLAG_NONE);
4498 // Âîñêðåøåíèå áåç îðóæèÿ:
4499 if not FAlive then
4500 begin
4501 FHealth := Round(PLAYER_HP_SOFT * (FHandicap / 100));
4502 FArmor := 0;
4503 FAlive := True;
4504 FAir := AIR_DEF;
4505 FJetFuel := 0;
4507 for a := WP_FIRST to WP_LAST do
4508 begin
4509 FWeapon[a] := False;
4510 FReloading[a] := 0;
4511 end;
4513 FWeapon[WEAPON_PISTOL] := True;
4514 FWeapon[WEAPON_KASTET] := True;
4515 FCurrWeap := WEAPON_PISTOL;
4516 resetWeaponQueue();
4518 FModel.SetWeapon(FCurrWeap);
4520 for b := A_BULLETS to A_HIGH do
4521 FAmmo[b] := 0;
4523 FAmmo[A_BULLETS] := 50;
4525 FMaxAmmo[A_BULLETS] := AmmoLimits[0, A_BULLETS];
4526 FMaxAmmo[A_SHELLS] := AmmoLimits[0, A_SHELLS];
4527 FMaxAmmo[A_ROCKETS] := AmmoLimits[0, A_SHELLS];
4528 FMaxAmmo[A_CELLS] := AmmoLimits[0, A_CELLS];
4529 FMaxAmmo[A_FUEL] := AmmoLimits[0, A_FUEL];
4531 if (gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF]) and
4532 LongBool(gGameSettings.Options and GAME_OPTION_DMKEYS) then
4533 FRulez := [R_KEY_RED, R_KEY_GREEN, R_KEY_BLUE]
4534 else
4535 FRulez := [];
4536 end;
4538 // Ïîëó÷àåì êîîðäèíàòû òî÷êè âîçðîæäåíèÿ:
4539 if not g_Map_GetPoint(c, RespawnPoint) then
4540 begin
4541 g_FatalError(_lc[I_GAME_ERROR_GET_SPAWN]);
4542 Exit;
4543 end;
4545 // Óñòàíîâêà êîîðäèíàò è ñáðîñ âñåõ ïàðàìåòðîâ:
4546 FObj.X := RespawnPoint.X-PLAYER_RECT.X;
4547 FObj.Y := RespawnPoint.Y-PLAYER_RECT.Y;
4548 FObj.oldX := FObj.X; // don't interpolate after respawn
4549 FObj.oldY := FObj.Y;
4550 FObj.Vel.X := 0;
4551 FObj.Vel.Y := 0;
4552 FObj.Accel.X := 0;
4553 FObj.Accel.Y := 0;
4555 FDirection := RespawnPoint.Direction;
4556 if FDirection = TDirection.D_LEFT then
4557 FAngle := 180
4558 else
4559 FAngle := 0;
4561 SetAction(A_STAND, True);
4562 FModel.Direction := FDirection;
4564 for a := Low(FTime) to High(FTime) do
4565 FTime[a] := 0;
4567 for a := Low(FMegaRulez) to High(FMegaRulez) do
4568 FMegaRulez[a] := 0;
4570 // Respawn invulnerability
4571 if (gGameSettings.GameType <> GT_SINGLE) and (gGameSettings.SpawnInvul > 0) then
4572 begin
4573 FMegaRulez[MR_INVUL] := gTime + gGameSettings.SpawnInvul * 1000;
4574 FSpawnInvul := FMegaRulez[MR_INVUL];
4575 end;
4577 FDamageBuffer := 0;
4578 FJetpack := False;
4579 FCanJetpack := False;
4580 FFlaming := False;
4581 FFireTime := 0;
4582 FFirePainTime := 0;
4583 FFireAttacker := 0;
4585 // Àíèìàöèÿ âîçðîæäåíèÿ:
4586 if (not gLoadGameMode) and (not Silent) then
4587 if g_Frames_Get(ID, 'FRAMES_TELEPORT') then
4588 begin
4589 Anim := TAnimation.Create(ID, False, 3);
4590 g_GFX_OnceAnim(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-32,
4591 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2)-32, Anim);
4592 Anim.Free();
4593 end;
4595 FSpectator := False;
4596 FGhost := False;
4597 FPhysics := True;
4598 FSpectatePlayer := -1;
4599 FSpawned := True;
4601 if (gPlayer1 = nil) and (gSpectLatchPID1 = FUID) then
4602 gPlayer1 := self;
4603 if (gPlayer2 = nil) and (gSpectLatchPID2 = FUID) then
4604 gPlayer2 := self;
4606 if g_Game_IsNet then
4607 begin
4608 MH_SEND_PlayerPos(True, FUID, NET_EVERYONE);
4609 MH_SEND_PlayerStats(FUID, NET_EVERYONE);
4610 if not Silent then
4611 MH_SEND_Effect(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-32,
4612 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2)-32,
4613 0, NET_GFX_TELE);
4614 end;
4615 end;
4617 procedure TPlayer.Spectate(NoMove: Boolean = False);
4618 begin
4619 if FAlive then
4620 Kill(K_EXTRAHARDKILL, FUID, HIT_SOME)
4621 else if (not NoMove) then
4622 begin
4623 GameX := gMapInfo.Width div 2;
4624 GameY := gMapInfo.Height div 2;
4625 end;
4626 FXTo := GameX;
4627 FYTo := GameY;
4629 FAlive := False;
4630 FSpectator := True;
4631 FGhost := True;
4632 FPhysics := False;
4633 FWantsInGame := False;
4634 FSpawned := False;
4635 FCorpse := -1;
4637 if FNoRespawn then
4638 begin
4639 if Self = gPlayer1 then
4640 begin
4641 gSpectLatchPID1 := FUID;
4642 gPlayer1 := nil;
4643 end
4644 else if Self = gPlayer2 then
4645 begin
4646 gSpectLatchPID2 := FUID;
4647 gPlayer2 := nil;
4648 end;
4649 end;
4651 if g_Game_IsNet then
4652 MH_SEND_PlayerStats(FUID);
4653 end;
4655 procedure TPlayer.SwitchNoClip;
4656 begin
4657 if not FAlive then
4658 Exit;
4659 FGhost := not FGhost;
4660 FPhysics := not FGhost;
4661 if FGhost then
4662 begin
4663 FXTo := FObj.X;
4664 FYTo := FObj.Y;
4665 end else
4666 begin
4667 FObj.Accel.X := 0;
4668 FObj.Accel.Y := 0;
4669 end;
4670 end;
4672 procedure TPlayer.Run(Direction: TDirection);
4673 var
4674 a, b: Integer;
4675 begin
4676 if MAX_RUNVEL > 8 then
4677 FlySmoke();
4679 // Áåæèì:
4680 if Direction = TDirection.D_LEFT then
4681 begin
4682 if FObj.Vel.X > -MAX_RUNVEL then
4683 FObj.Vel.X := FObj.Vel.X - (MAX_RUNVEL shr 3);
4684 end
4685 else
4686 if FObj.Vel.X < MAX_RUNVEL then
4687 FObj.Vel.X := FObj.Vel.X + (MAX_RUNVEL shr 3);
4689 // Âîçìîæíî, ïèíàåì êóñêè:
4690 if (FObj.Vel.X <> 0) and (gGibs <> nil) then
4691 begin
4692 b := Abs(FObj.Vel.X);
4693 if b > 1 then b := b * (Random(8 div b) + 1);
4694 for a := 0 to High(gGibs) do
4695 begin
4696 if gGibs[a].alive and
4697 g_Obj_Collide(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y+FObj.Rect.Height-4,
4698 FObj.Rect.Width, 8, @gGibs[a].Obj) and (Random(3) = 0) then
4699 begin
4700 // Ïèíàåì êóñêè
4701 if FObj.Vel.X < 0 then
4702 begin
4703 g_Obj_PushA(@gGibs[a].Obj, b, Random(61)+120) // íàëåâî
4704 end
4705 else
4706 begin
4707 g_Obj_PushA(@gGibs[a].Obj, b, Random(61)); // íàïðàâî
4708 end;
4709 gGibs[a].positionChanged(); // this updates spatial accelerators
4710 end;
4711 end;
4712 end;
4714 SetAction(A_WALK);
4715 end;
4717 procedure TPlayer.SeeDown();
4718 begin
4719 SetAction(A_SEEDOWN);
4721 if FDirection = TDirection.D_LEFT then FAngle := ANGLE_LEFTDOWN else FAngle := ANGLE_RIGHTDOWN;
4723 if FIncCam > -120 then DecMin(FIncCam, 5, -120);
4724 end;
4726 procedure TPlayer.SeeUp();
4727 begin
4728 SetAction(A_SEEUP);
4730 if FDirection = TDirection.D_LEFT then FAngle := ANGLE_LEFTUP else FAngle := ANGLE_RIGHTUP;
4732 if FIncCam < 120 then IncMax(FIncCam, 5, 120);
4733 end;
4735 procedure TPlayer.SetAction(Action: Byte; Force: Boolean = False);
4736 var
4737 Prior: Byte;
4738 begin
4739 case Action of
4740 A_WALK: Prior := 3;
4741 A_DIE1: Prior := 5;
4742 A_DIE2: Prior := 5;
4743 A_ATTACK: Prior := 2;
4744 A_SEEUP: Prior := 1;
4745 A_SEEDOWN: Prior := 1;
4746 A_ATTACKUP: Prior := 2;
4747 A_ATTACKDOWN: Prior := 2;
4748 A_PAIN: Prior := 4;
4749 else Prior := 0;
4750 end;
4752 if (Prior > FActionPrior) or Force then
4753 if not ((Prior = 2) and (FCurrWeap = WEAPON_SAW)) then
4754 begin
4755 FActionPrior := Prior;
4756 FActionAnim := Action;
4757 FActionForce := Force;
4758 FActionChanged := True;
4759 end;
4761 if Action in [A_ATTACK, A_ATTACKUP, A_ATTACKDOWN] then FModel.SetFire(True);
4762 end;
4764 function TPlayer.StayOnStep(XInc, YInc: Integer): Boolean;
4765 begin
4766 Result := not g_Map_CollidePanel(FObj.X+PLAYER_RECT.X, FObj.Y+YInc+PLAYER_RECT.Y+PLAYER_RECT.Height-1,
4767 PLAYER_RECT.Width, 1, PANEL_STEP, False)
4768 and g_Map_CollidePanel(FObj.X+PLAYER_RECT.X, FObj.Y+YInc+PLAYER_RECT.Y+PLAYER_RECT.Height,
4769 PLAYER_RECT.Width, 1, PANEL_STEP, False);
4770 end;
4772 function TPlayer.TeleportTo(X, Y: Integer; silent: Boolean; dir: Byte): Boolean;
4773 var
4774 Anim: TAnimation;
4775 ID: DWORD;
4776 begin
4777 Result := False;
4779 if g_CollideLevel(X, Y, PLAYER_RECT.Width, PLAYER_RECT.Height) then
4780 begin
4781 g_Sound_PlayExAt('SOUND_GAME_NOTELEPORT', FObj.X, FObj.Y);
4782 if g_Game_IsServer and g_Game_IsNet then
4783 MH_SEND_Sound(FObj.X, FObj.Y, 'SOUND_GAME_NOTELEPORT');
4784 Exit;
4785 end;
4787 FJustTeleported := True;
4789 Anim := nil;
4790 if not silent then
4791 begin
4792 if g_Frames_Get(ID, 'FRAMES_TELEPORT') then
4793 begin
4794 Anim := TAnimation.Create(ID, False, 3);
4795 end;
4797 g_Sound_PlayExAt('SOUND_GAME_TELEPORT', FObj.X, FObj.Y);
4798 g_GFX_OnceAnim(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-32,
4799 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2)-32, Anim);
4800 if g_Game_IsServer and g_Game_IsNet then
4801 MH_SEND_Effect(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-32,
4802 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2)-32, 1,
4803 NET_GFX_TELE);
4804 end;
4806 FObj.X := X-PLAYER_RECT.X;
4807 FObj.Y := Y-PLAYER_RECT.Y;
4808 FObj.oldX := FObj.X; // don't interpolate after respawn
4809 FObj.oldY := FObj.Y;
4810 if FAlive and FGhost then
4811 begin
4812 FXTo := FObj.X;
4813 FYTo := FObj.Y;
4814 end;
4816 if not g_Game_IsNet then
4817 begin
4818 if dir = 1 then
4819 begin
4820 SetDirection(TDirection.D_LEFT);
4821 FAngle := 180;
4822 end
4823 else
4824 if dir = 2 then
4825 begin
4826 SetDirection(TDirection.D_RIGHT);
4827 FAngle := 0;
4828 end
4829 else
4830 if dir = 3 then
4831 begin // îáðàòíîå
4832 if FDirection = TDirection.D_RIGHT then
4833 begin
4834 SetDirection(TDirection.D_LEFT);
4835 FAngle := 180;
4836 end
4837 else
4838 begin
4839 SetDirection(TDirection.D_RIGHT);
4840 FAngle := 0;
4841 end;
4842 end;
4843 end;
4845 if not silent and (Anim <> nil) then
4846 begin
4847 g_GFX_OnceAnim(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-32,
4848 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2)-32, Anim);
4849 Anim.Free();
4851 if g_Game_IsServer and g_Game_IsNet then
4852 MH_SEND_Effect(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2)-32,
4853 FObj.Y+PLAYER_RECT.Y+(PLAYER_RECT.Height div 2)-32, 0,
4854 NET_GFX_TELE);
4855 end;
4857 Result := True;
4858 end;
4860 function nonz(a: Single): Single;
4861 begin
4862 if a <> 0 then
4863 Result := a
4864 else
4865 Result := 1;
4866 end;
4868 function TPlayer.refreshCorpse(): Boolean;
4869 var
4870 i: Integer;
4871 begin
4872 Result := False;
4873 FCorpse := -1;
4874 if FAlive or FSpectator then
4875 Exit;
4876 if (gCorpses = nil) or (Length(gCorpses) = 0) then
4877 Exit;
4878 for i := 0 to High(gCorpses) do
4879 if gCorpses[i] <> nil then
4880 if gCorpses[i].FPlayerUID = FUID then
4881 begin
4882 Result := True;
4883 FCorpse := i;
4884 break;
4885 end;
4886 end;
4888 function TPlayer.getCameraObj(): TObj;
4889 begin
4890 if (not FAlive) and (not FSpectator) and
4891 (FCorpse >= 0) and (FCorpse < Length(gCorpses)) and
4892 (gCorpses[FCorpse] <> nil) and (gCorpses[FCorpse].FPlayerUID = FUID) then
4893 begin
4894 gCorpses[FCorpse].FObj.slopeUpLeft := FObj.slopeUpLeft;
4895 Result := gCorpses[FCorpse].FObj;
4896 end
4897 else
4898 begin
4899 Result := FObj;
4900 end;
4901 end;
4903 procedure TPlayer.PreUpdate();
4904 begin
4905 FSlopeOld := FObj.slopeUpLeft;
4906 FIncCamOld := FIncCam;
4907 FObj.oldX := FObj.X;
4908 FObj.oldY := FObj.Y;
4909 end;
4911 procedure TPlayer.Update();
4912 var
4913 b: Byte;
4914 i, ii, wx, wy, xd, yd, k: Integer;
4915 blockmon, headwater, dospawn: Boolean;
4916 NetServer: Boolean;
4917 AnyServer: Boolean;
4918 SetSpect: Boolean;
4919 begin
4920 NetServer := g_Game_IsNet and g_Game_IsServer;
4921 AnyServer := g_Game_IsServer;
4923 if g_Game_IsClient and (NetInterpLevel > 0) then
4924 DoLerp(NetInterpLevel + 1)
4925 else
4926 if FGhost then
4927 DoLerp(4);
4929 if NetServer then
4930 if FClientID >= 0 then
4931 begin
4932 FPing := NetClients[FClientID].Peer^.lastRoundTripTime;
4933 if NetClients[FClientID].Peer^.packetsSent > 0 then
4934 FLoss := Round(100*NetClients[FClientID].Peer^.packetsLost/NetClients[FClientID].Peer^.packetsSent)
4935 else
4936 FLoss := 0;
4937 end else
4938 begin
4939 FPing := 0;
4940 FLoss := 0;
4941 end;
4943 if FAlive and (FPunchAnim <> nil) then
4944 FPunchAnim.Update();
4946 if FAlive and (gFly or FJetpack) then
4947 FlySmoke();
4949 if FDirection = TDirection.D_LEFT then
4950 FAngle := 180
4951 else
4952 FAngle := 0;
4954 if FAlive and (not FGhost) then
4955 begin
4956 if FKeys[KEY_UP].Pressed then
4957 SeeUp();
4958 if FKeys[KEY_DOWN].Pressed then
4959 SeeDown();
4960 end;
4962 if (not (FKeys[KEY_UP].Pressed or FKeys[KEY_DOWN].Pressed)) and
4963 (FIncCam <> 0) then
4964 begin
4965 i := g_basic.Sign(FIncCam);
4966 FIncCam := Abs(FIncCam);
4967 DecMin(FIncCam, 5, 0);
4968 FIncCam := FIncCam*i;
4969 end;
4971 if gTime mod (GAME_TICK*2) <> 0 then
4972 begin
4973 if (FObj.Vel.X = 0) and FAlive then
4974 begin
4975 if FKeys[KEY_LEFT].Pressed then
4976 Run(TDirection.D_LEFT);
4977 if FKeys[KEY_RIGHT].Pressed then
4978 Run(TDirection.D_RIGHT);
4979 end;
4981 if FPhysics then
4982 begin
4983 g_Obj_Move(@FObj, True, True, True);
4984 positionChanged(); // this updates spatial accelerators
4985 end;
4987 Exit;
4988 end;
4990 FActionChanged := False;
4992 if FAlive then
4993 begin
4994 // Let alive player do some actions
4995 if FKeys[KEY_LEFT].Pressed then Run(TDirection.D_LEFT);
4996 if FKeys[KEY_RIGHT].Pressed then Run(TDirection.D_RIGHT);
4997 if FKeys[KEY_FIRE].Pressed and AnyServer then Fire()
4998 else
4999 begin
5000 if AnyServer then
5001 begin
5002 FlamerOff;
5003 if NetServer then MH_SEND_PlayerStats(FUID);
5004 end;
5005 end;
5006 if FKeys[KEY_OPEN].Pressed and AnyServer then Use();
5007 if FKeys[KEY_JUMP].Pressed then Jump()
5008 else
5009 begin
5010 if AnyServer and FJetpack then
5011 begin
5012 FJetpack := False;
5013 JetpackOff;
5014 if NetServer then MH_SEND_PlayerStats(FUID);
5015 end;
5016 FCanJetpack := True;
5017 end;
5018 end
5019 else // Dead
5020 begin
5021 dospawn := False;
5022 if not FGhost then
5023 for k := Low(FKeys) to KEY_CHAT-1 do
5024 begin
5025 if FKeys[k].Pressed then
5026 begin
5027 dospawn := True;
5028 break;
5029 end;
5030 end;
5031 if dospawn then
5032 begin
5033 if gGameSettings.GameType in [GT_CUSTOM, GT_SERVER, GT_CLIENT] then
5034 Respawn(False)
5035 else // Single
5036 if (FTime[T_RESPAWN] <= gTime) and
5037 gGameOn and (not FAlive) then
5038 begin
5039 if (g_Player_GetCount() > 1) then
5040 Respawn(False)
5041 else
5042 begin
5043 gExit := EXIT_RESTART;
5044 Exit;
5045 end;
5046 end;
5047 end;
5048 // Dead spectator actions
5049 if FGhost then
5050 begin
5051 if FKeys[KEY_OPEN].Pressed and AnyServer then Fire();
5052 if FKeys[KEY_FIRE].Pressed and AnyServer then
5053 begin
5054 if FSpectator then
5055 begin
5056 if (FSpectatePlayer >= High(gPlayers)) then
5057 FSpectatePlayer := -1
5058 else
5059 begin
5060 SetSpect := False;
5061 for I := FSpectatePlayer + 1 to High(gPlayers) do
5062 if gPlayers[I] <> nil then
5063 if gPlayers[I].alive then
5064 if gPlayers[I].UID <> FUID then
5065 begin
5066 FSpectatePlayer := I;
5067 SetSpect := True;
5068 break;
5069 end;
5071 if not SetSpect then FSpectatePlayer := -1;
5072 end;
5074 ReleaseKeys;
5075 end;
5076 end;
5077 end;
5078 end;
5079 // No clipping
5080 if FGhost then
5081 begin
5082 if FKeys[KEY_UP].Pressed or FKeys[KEY_JUMP].Pressed then
5083 begin
5084 FYTo := FObj.Y - 32;
5085 FSpectatePlayer := -1;
5086 end;
5087 if FKeys[KEY_DOWN].Pressed then
5088 begin
5089 FYTo := FObj.Y + 32;
5090 FSpectatePlayer := -1;
5091 end;
5092 if FKeys[KEY_LEFT].Pressed then
5093 begin
5094 FXTo := FObj.X - 32;
5095 FSpectatePlayer := -1;
5096 end;
5097 if FKeys[KEY_RIGHT].Pressed then
5098 begin
5099 FXTo := FObj.X + 32;
5100 FSpectatePlayer := -1;
5101 end;
5103 if (FXTo < -64) then
5104 FXTo := -64
5105 else if (FXTo > gMapInfo.Width + 32) then
5106 FXTo := gMapInfo.Width + 32;
5107 if (FYTo < -72) then
5108 FYTo := -72
5109 else if (FYTo > gMapInfo.Height + 32) then
5110 FYTo := gMapInfo.Height + 32;
5111 end;
5113 if FPhysics then
5114 begin
5115 g_Obj_Move(@FObj, True, True, True);
5116 positionChanged(); // this updates spatial accelerators
5117 end
5118 else
5119 begin
5120 FObj.Vel.X := 0;
5121 FObj.Vel.Y := 0;
5122 if FSpectator then
5123 if (FSpectatePlayer <= High(gPlayers)) and (FSpectatePlayer >= 0) then
5124 if gPlayers[FSpectatePlayer] <> nil then
5125 if gPlayers[FSpectatePlayer].alive then
5126 begin
5127 FXTo := gPlayers[FSpectatePlayer].GameX;
5128 FYTo := gPlayers[FSpectatePlayer].GameY;
5129 end;
5130 end;
5132 blockmon := g_Map_CollidePanel(FObj.X+PLAYER_HEADRECT.X, FObj.Y+PLAYER_HEADRECT.Y,
5133 PLAYER_HEADRECT.Width, PLAYER_HEADRECT.Height,
5134 PANEL_BLOCKMON, True);
5135 headwater := HeadInLiquid(0, 0);
5137 // Ñîïðîòèâëåíèå âîçäóõà:
5138 if (not FAlive) or not (FKeys[KEY_LEFT].Pressed or FKeys[KEY_RIGHT].Pressed) then
5139 if FObj.Vel.X <> 0 then
5140 FObj.Vel.X := z_dec(FObj.Vel.X, 1);
5142 if (FLastHit = HIT_TRAP) and (FPain > 90) then FPain := 90;
5143 DecMin(FPain, 5, 0);
5144 DecMin(FPickup, 1, 0);
5146 if FAlive and (FObj.Y > Integer(gMapInfo.Height)+128) and AnyServer then
5147 begin
5148 // Îáíóëèòü äåéñòâèÿ ïðèìî÷åê, ÷òîáû ôîí ïðîïàë
5149 FMegaRulez[MR_SUIT] := 0;
5150 FMegaRulez[MR_INVUL] := 0;
5151 FMegaRulez[MR_INVIS] := 0;
5152 Kill(K_FALLKILL, 0, HIT_FALL);
5153 end;
5155 i := 9;
5157 if FAlive then
5158 begin
5159 if FCurrWeap = WEAPON_SAW then
5160 if not (FSawSound.IsPlaying() or FSawSoundHit.IsPlaying() or
5161 FSawSoundSelect.IsPlaying()) then
5162 FSawSoundIdle.PlayAt(FObj.X, FObj.Y);
5164 if FJetpack then
5165 if (not FJetSoundFly.IsPlaying()) and (not FJetSoundOn.IsPlaying()) and
5166 (not FJetSoundOff.IsPlaying()) then
5167 begin
5168 FJetSoundFly.SetPosition(0);
5169 FJetSoundFly.PlayAt(FObj.X, FObj.Y);
5170 end;
5172 for b := WP_FIRST to WP_LAST do
5173 if FReloading[b] > 0 then
5174 if FNoReload then
5175 FReloading[b] := 0
5176 else
5177 Dec(FReloading[b]);
5179 if FShellTimer > -1 then
5180 if FShellTimer = 0 then
5181 begin
5182 if FShellType = SHELL_SHELL then
5183 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
5184 GameVelX, GameVelY-2, SHELL_SHELL)
5185 else if FShellType = SHELL_DBLSHELL then
5186 begin
5187 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
5188 GameVelX+1, GameVelY-2, SHELL_SHELL);
5189 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
5190 GameVelX-1, GameVelY-2, SHELL_SHELL);
5191 end;
5192 FShellTimer := -1;
5193 end else Dec(FShellTimer);
5195 if (FBFGFireCounter > -1) then
5196 if FBFGFireCounter = 0 then
5197 begin
5198 if AnyServer then
5199 begin
5200 wx := FObj.X+WEAPONPOINT[FDirection].X;
5201 wy := FObj.Y+WEAPONPOINT[FDirection].Y;
5202 xd := wx+IfThen(FDirection = TDirection.D_LEFT, -30, 30);
5203 yd := wy+firediry();
5204 g_Weapon_bfgshot(wx, wy, xd, yd, FUID);
5205 if NetServer then MH_SEND_PlayerFire(FUID, WEAPON_BFG, wx, wy, xd, yd);
5206 if (FAngle = 0) or (FAngle = 180) then SetAction(A_ATTACK)
5207 else if (FAngle = ANGLE_LEFTDOWN) or (FAngle = ANGLE_RIGHTDOWN) then SetAction(A_ATTACKDOWN)
5208 else if (FAngle = ANGLE_LEFTUP) or (FAngle = ANGLE_RIGHTUP) then SetAction(A_ATTACKUP);
5209 end;
5211 FReloading[WEAPON_BFG] := WEAPON_RELOAD[WEAPON_BFG];
5212 FBFGFireCounter := -1;
5213 end else
5214 if FNoReload then
5215 FBFGFireCounter := 0
5216 else
5217 Dec(FBFGFireCounter);
5219 if (FMegaRulez[MR_SUIT] < gTime) and AnyServer then
5220 begin
5221 b := g_GetAcidHit(FObj.X+PLAYER_RECT.X, FObj.Y+PLAYER_RECT.Y, PLAYER_RECT.Width, PLAYER_RECT.Height);
5223 if (b > 0) and (gTime mod (15*GAME_TICK) = 0) then Damage(b, 0, 0, 0, HIT_ACID);
5224 end;
5226 if (headwater or blockmon) then
5227 begin
5228 Dec(FAir);
5230 if FAir < -9 then
5231 begin
5232 if AnyServer then Damage(10, 0, 0, 0, HIT_WATER);
5233 FAir := 0;
5234 end
5235 else if (FAir mod 31 = 0) and not blockmon then
5236 begin
5237 g_GFX_Bubbles(FObj.X+PLAYER_RECT.X+(PLAYER_RECT.Width div 2), FObj.Y+PLAYER_RECT.Y-4, 5+Random(6), 8, 4);
5238 if Random(2) = 0 then
5239 g_Sound_PlayExAt('SOUND_GAME_BUBBLE1', FObj.X, FObj.Y)
5240 else
5241 g_Sound_PlayExAt('SOUND_GAME_BUBBLE2', FObj.X, FObj.Y);
5242 end;
5243 end else if FAir < AIR_DEF then
5244 FAir := AIR_DEF;
5246 if FFireTime > 0 then
5247 begin
5248 if BodyInLiquid(0, 0) then
5249 begin
5250 FFireTime := 0;
5251 FFirePainTime := 0;
5252 end
5253 else if FMegaRulez[MR_SUIT] >= gTime then
5254 begin
5255 if FMegaRulez[MR_SUIT] = gTime then
5256 FFireTime := 1;
5257 FFirePainTime := 0;
5258 end
5259 else
5260 begin
5261 OnFireFlame(1);
5262 if FFirePainTime <= 0 then
5263 begin
5264 if g_Game_IsServer then
5265 Damage(2, FFireAttacker, 0, 0, HIT_FLAME);
5266 FFirePainTime := 12 - FFireTime div 12;
5267 end;
5268 FFirePainTime := FFirePainTime - 1;
5269 FFireTime := FFireTime - 1;
5270 if ((FFireTime mod 33) = 0) and (FMegaRulez[MR_INVUL] < gTime) then
5271 FModel.PlaySound(MODELSOUND_PAIN, 1, FObj.X, FObj.Y);
5272 if (FFireTime = 0) and g_Game_IsNet and g_Game_IsServer then
5273 MH_SEND_PlayerStats(FUID);
5274 end;
5275 end;
5277 if FDamageBuffer > 0 then
5278 begin
5279 if FDamageBuffer >= 9 then
5280 begin
5281 SetAction(A_PAIN);
5283 if FDamageBuffer < 30 then i := 9
5284 else if FDamageBuffer < 100 then i := 18
5285 else i := 27;
5286 end;
5288 ii := Round(FDamageBuffer*FHealth / nonz(FArmor*(3/4)+FHealth));
5289 FArmor := FArmor-(FDamageBuffer-ii);
5290 FHealth := FHealth-ii;
5291 if FArmor < 0 then
5292 begin
5293 FHealth := FHealth+FArmor;
5294 FArmor := 0;
5295 end;
5297 if AnyServer then
5298 if FHealth <= 0 then
5299 if FHealth > -30 then Kill(K_SIMPLEKILL, FLastSpawnerUID, FLastHit)
5300 else if FHealth > -50 then Kill(K_HARDKILL, FLastSpawnerUID, FLastHit)
5301 else Kill(K_EXTRAHARDKILL, FLastSpawnerUID, FLastHit);
5303 if FAlive and ((FLastHit <> HIT_FLAME) or (FFireTime <= 0)) then
5304 begin
5305 if FDamageBuffer <= 20 then FModel.PlaySound(MODELSOUND_PAIN, 1, FObj.X, FObj.Y)
5306 else if FDamageBuffer <= 55 then FModel.PlaySound(MODELSOUND_PAIN, 2, FObj.X, FObj.Y)
5307 else if FDamageBuffer <= 120 then FModel.PlaySound(MODELSOUND_PAIN, 3, FObj.X, FObj.Y)
5308 else FModel.PlaySound(MODELSOUND_PAIN, 4, FObj.X, FObj.Y);
5309 end;
5311 FDamageBuffer := 0;
5312 end;
5314 {CollideItem();}
5315 end; // if FAlive then ...
5317 if (FActionAnim = A_PAIN) and (FModel.Animation <> A_PAIN) then
5318 begin
5319 FModel.ChangeAnimation(FActionAnim, FActionForce);
5320 FModel.GetCurrentAnimation.MinLength := i;
5321 FModel.GetCurrentAnimationMask.MinLength := i;
5322 end else FModel.ChangeAnimation(FActionAnim, FActionForce and (FModel.Animation <> A_STAND));
5324 if (FModel.GetCurrentAnimation.Played or ((not FActionChanged) and (FModel.Animation = A_WALK)))
5325 then SetAction(A_STAND, True);
5327 if not ((FModel.Animation = A_WALK) and (Abs(FObj.Vel.X) < 4) and not FModel.Fire) then FModel.Update;
5329 for b := Low(FKeys) to High(FKeys) do
5330 if FKeys[b].Time = 0 then FKeys[b].Pressed := False else Dec(FKeys[b].Time);
5331 end;
5334 procedure TPlayer.getMapBox (out x, y, w, h: Integer); inline;
5335 begin
5336 x := FObj.X+PLAYER_RECT.X;
5337 y := FObj.Y+PLAYER_RECT.Y;
5338 w := PLAYER_RECT.Width;
5339 h := PLAYER_RECT.Height;
5340 end;
5343 procedure TPlayer.moveBy (dx, dy: Integer); inline;
5344 begin
5345 if (dx <> 0) or (dy <> 0) then
5346 begin
5347 FObj.X += dx;
5348 FObj.Y += dy;
5349 positionChanged();
5350 end;
5351 end;
5354 function TPlayer.Collide(X, Y: Integer; Width, Height: Word): Boolean;
5355 begin
5356 Result := g_Collide(FObj.X+PLAYER_RECT.X,
5357 FObj.Y+PLAYER_RECT.Y,
5358 PLAYER_RECT.Width,
5359 PLAYER_RECT.Height,
5360 X, Y,
5361 Width, Height);
5362 end;
5364 function TPlayer.Collide(Panel: TPanel): Boolean;
5365 begin
5366 Result := g_Collide(FObj.X+PLAYER_RECT.X,
5367 FObj.Y+PLAYER_RECT.Y,
5368 PLAYER_RECT.Width,
5369 PLAYER_RECT.Height,
5370 Panel.X, Panel.Y,
5371 Panel.Width, Panel.Height);
5372 end;
5374 function TPlayer.Collide(X, Y: Integer): Boolean;
5375 begin
5376 X := X-FObj.X-PLAYER_RECT.X;
5377 Y := Y-FObj.Y-PLAYER_RECT.Y;
5378 Result := (x >= 0) and (x <= PLAYER_RECT.Width) and
5379 (y >= 0) and (y <= PLAYER_RECT.Height);
5380 end;
5382 function g_Player_ValidName(Name: string): Boolean;
5383 var
5384 a: Integer;
5385 begin
5386 Result := True;
5388 if gPlayers = nil then Exit;
5390 for a := 0 to High(gPlayers) do
5391 if gPlayers[a] <> nil then
5392 if LowerCase(Name) = LowerCase(gPlayers[a].FName) then
5393 begin
5394 Result := False;
5395 Exit;
5396 end;
5397 end;
5399 procedure TPlayer.SetDirection(Direction: TDirection);
5400 var
5401 d: TDirection;
5402 begin
5403 d := FModel.Direction;
5405 FModel.Direction := Direction;
5406 if d <> Direction then FModel.ChangeAnimation(FModel.Animation, True);
5408 FDirection := Direction;
5409 end;
5411 function TPlayer.GetKeys(): Byte;
5412 begin
5413 Result := 0;
5415 if R_KEY_RED in FRulez then Result := KEY_RED;
5416 if R_KEY_GREEN in FRulez then Result := Result or KEY_GREEN;
5417 if R_KEY_BLUE in FRulez then Result := Result or KEY_BLUE;
5419 if FTeam = TEAM_RED then Result := Result or KEY_REDTEAM;
5420 if FTeam = TEAM_BLUE then Result := Result or KEY_BLUETEAM;
5421 end;
5423 procedure TPlayer.Use();
5424 var
5425 a: Integer;
5426 begin
5427 if FTime[T_USE] > gTime then Exit;
5429 g_Triggers_PressR(FObj.X+PLAYER_RECT.X, FObj.Y+PLAYER_RECT.Y, PLAYER_RECT.Width,
5430 PLAYER_RECT.Height, FUID, ACTIVATE_PLAYERPRESS);
5432 for a := 0 to High(gPlayers) do
5433 if (gPlayers[a] <> nil) and (gPlayers[a] <> Self) and
5434 gPlayers[a].alive and SameTeam(FUID, gPlayers[a].FUID) and
5435 g_Obj_Collide(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y,
5436 FObj.Rect.Width, FObj.Rect.Height, @gPlayers[a].FObj) then
5437 begin
5438 gPlayers[a].Touch();
5439 if g_Game_IsNet and g_Game_IsServer then
5440 MH_SEND_GameEvent(NET_EV_PLAYER_TOUCH, gPlayers[a].FUID);
5441 end;
5443 FTime[T_USE] := gTime+120;
5444 end;
5446 procedure TPlayer.NetFire(Wpn: Byte; X, Y, AX, AY: Integer; WID: Integer = -1);
5447 var
5448 locObj: TObj;
5449 F: Boolean;
5450 WX, WY, XD, YD: Integer;
5451 begin
5452 F := False;
5453 WX := X;
5454 WY := Y;
5455 XD := AX;
5456 YD := AY;
5458 case FCurrWeap of
5459 WEAPON_KASTET:
5460 begin
5461 DoPunch();
5462 if R_BERSERK in FRulez then
5463 begin
5464 //g_Weapon_punch(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y, 75, FUID);
5465 locobj.X := FObj.X+FObj.Rect.X;
5466 locobj.Y := FObj.Y+FObj.Rect.Y;
5467 locobj.rect.X := 0;
5468 locobj.rect.Y := 0;
5469 locobj.rect.Width := 39;
5470 locobj.rect.Height := 52;
5471 locobj.Vel.X := (xd-wx) div 2;
5472 locobj.Vel.Y := (yd-wy) div 2;
5473 locobj.Accel.X := xd-wx;
5474 locobj.Accel.y := yd-wy;
5476 if g_Weapon_Hit(@locobj, 50, FUID, HIT_SOME) <> 0 then
5477 g_Sound_PlayExAt('SOUND_WEAPON_HITBERSERK', FObj.X, FObj.Y)
5478 else
5479 g_Sound_PlayExAt('SOUND_WEAPON_MISSBERSERK', FObj.X, FObj.Y);
5481 if gFlash = 1 then
5482 if FPain < 50 then
5483 FPain := min(FPain + 25, 50);
5484 end else
5485 g_Weapon_punch(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y, 3, FUID);
5486 end;
5488 WEAPON_SAW:
5489 begin
5490 if g_Weapon_chainsaw(FObj.X+FObj.Rect.X, FObj.Y+FObj.Rect.Y,
5491 IfThen(gGameSettings.GameMode in [GM_DM, GM_TDM, GM_CTF], 9, 3), FUID) <> 0 then
5492 begin
5493 FSawSoundSelect.Stop();
5494 FSawSound.Stop();
5495 FSawSoundHit.PlayAt(FObj.X, FObj.Y);
5496 end
5497 else if not FSawSoundHit.IsPlaying() then
5498 begin
5499 FSawSoundSelect.Stop();
5500 FSawSound.PlayAt(FObj.X, FObj.Y);
5501 end;
5502 f := True;
5503 end;
5505 WEAPON_PISTOL:
5506 begin
5507 g_Sound_PlayExAt('SOUND_WEAPON_FIREPISTOL', GameX, Gamey);
5508 FFireAngle := FAngle;
5509 f := True;
5510 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
5511 GameVelX, GameVelY-2, SHELL_BULLET);
5512 end;
5514 WEAPON_SHOTGUN1:
5515 begin
5516 g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN', Gamex, Gamey);
5517 FFireAngle := FAngle;
5518 f := True;
5519 FShellTimer := 10;
5520 FShellType := SHELL_SHELL;
5521 end;
5523 WEAPON_SHOTGUN2:
5524 begin
5525 g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN2', Gamex, Gamey);
5526 FFireAngle := FAngle;
5527 f := True;
5528 FShellTimer := 13;
5529 FShellType := SHELL_DBLSHELL;
5530 end;
5532 WEAPON_CHAINGUN:
5533 begin
5534 g_Sound_PlayExAt('SOUND_WEAPON_FIRECGUN', Gamex, Gamey);
5535 FFireAngle := FAngle;
5536 f := True;
5537 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
5538 GameVelX, GameVelY-2, SHELL_BULLET);
5539 end;
5541 WEAPON_ROCKETLAUNCHER:
5542 begin
5543 g_Weapon_Rocket(wx, wy, xd, yd, FUID, WID);
5544 FFireAngle := FAngle;
5545 f := True;
5546 end;
5548 WEAPON_PLASMA:
5549 begin
5550 g_Weapon_Plasma(wx, wy, xd, yd, FUID, WID);
5551 FFireAngle := FAngle;
5552 f := True;
5553 end;
5555 WEAPON_BFG:
5556 begin
5557 g_Weapon_BFGShot(wx, wy, xd, yd, FUID, WID);
5558 FFireAngle := FAngle;
5559 f := True;
5560 end;
5562 WEAPON_SUPERPULEMET:
5563 begin
5564 g_Sound_PlayExAt('SOUND_WEAPON_FIRESHOTGUN', Gamex, Gamey);
5565 FFireAngle := FAngle;
5566 f := True;
5567 g_Player_CreateShell(GameX+PLAYER_RECT_CX, GameY+PLAYER_RECT_CX,
5568 GameVelX, GameVelY-2, SHELL_SHELL);
5569 end;
5571 WEAPON_FLAMETHROWER:
5572 begin
5573 g_Weapon_flame(wx, wy, xd, yd, FUID, WID);
5574 FlamerOn;
5575 FFireAngle := FAngle;
5576 f := True;
5577 end;
5578 end;
5580 if not f then Exit;
5582 if (FAngle = 0) or (FAngle = 180) then SetAction(A_ATTACK)
5583 else if (FAngle = ANGLE_LEFTDOWN) or (FAngle = ANGLE_RIGHTDOWN) then SetAction(A_ATTACKDOWN)
5584 else if (FAngle = ANGLE_LEFTUP) or (FAngle = ANGLE_RIGHTUP) then SetAction(A_ATTACKUP);
5585 end;
5587 procedure TPlayer.DoLerp(Level: Integer = 2);
5588 begin
5589 if FObj.X <> FXTo then FObj.X := Lerp(FObj.X, FXTo, Level);
5590 if FObj.Y <> FYTo then FObj.Y := Lerp(FObj.Y, FYTo, Level);
5591 end;
5593 procedure TPlayer.SetLerp(XTo, YTo: Integer);
5594 var
5595 AX, AY: Integer;
5596 begin
5597 FXTo := XTo;
5598 FYTo := YTo;
5599 if FJustTeleported or (NetInterpLevel < 1) then
5600 begin
5601 FObj.X := XTo;
5602 FObj.Y := YTo;
5603 if FJustTeleported then
5604 begin
5605 FObj.oldX := FObj.X;
5606 FObj.oldY := FObj.Y;
5607 end;
5608 end
5609 else
5610 begin
5611 AX := Abs(FXTo - FObj.X);
5612 AY := Abs(FYTo - FObj.Y);
5613 if (AX > 32) or (AX <= NetInterpLevel) then
5614 FObj.X := FXTo;
5615 if (AY > 32) or (AY <= NetInterpLevel) then
5616 FObj.Y := FYTo;
5617 end;
5618 end;
5620 function TPlayer.FullInLift(XInc, YInc: Integer): Integer;
5621 begin
5622 if g_Map_CollidePanel(FObj.X+PLAYER_RECT.X+XInc, FObj.Y+PLAYER_RECT.Y+YInc,
5623 PLAYER_RECT.Width, PLAYER_RECT.Height-8,
5624 PANEL_LIFTUP, False) then Result := -1
5625 else
5626 if g_Map_CollidePanel(FObj.X+PLAYER_RECT.X+XInc, FObj.Y+PLAYER_RECT.Y+YInc,
5627 PLAYER_RECT.Width, PLAYER_RECT.Height-8,
5628 PANEL_LIFTDOWN, False) then Result := 1
5629 else Result := 0;
5630 end;
5632 function TPlayer.GetFlag(Flag: Byte): Boolean;
5633 var
5634 s, ts: String;
5635 evtype, a: Byte;
5636 begin
5637 Result := False;
5639 if Flag = FLAG_NONE then
5640 Exit;
5642 if not g_Game_IsServer then Exit;
5644 // Ïðèíåñ ÷óæîé ôëàã íà ñâîþ áàçó:
5645 if (Flag = FTeam) and
5646 (gFlags[Flag].State = FLAG_STATE_NORMAL) and
5647 (FFlag <> FLAG_NONE) then
5648 begin
5649 if FFlag = FLAG_RED then
5650 s := _lc[I_PLAYER_FLAG_RED]
5651 else
5652 s := _lc[I_PLAYER_FLAG_BLUE];
5654 evtype := FLAG_STATE_SCORED;
5656 ts := Format('%.4d', [gFlags[FFlag].CaptureTime]);
5657 Insert('.', ts, Length(ts) + 1 - 3);
5658 g_Console_Add(Format(_lc[I_PLAYER_FLAG_CAPTURE], [FName, s, ts]), True);
5660 g_Map_ResetFlag(FFlag);
5661 g_Game_Message(Format(_lc[I_MESSAGE_FLAG_CAPTURE], [AnsiUpperCase(s)]), 144);
5663 if ((Self = gPlayer1) or (Self = gPlayer2)
5664 or ((gPlayer1 <> nil) and (gPlayer1.Team = FTeam))
5665 or ((gPlayer2 <> nil) and (gPlayer2.Team = FTeam))) then
5666 a := 0
5667 else
5668 a := 1;
5670 if not sound_cap_flag[a].IsPlaying() then
5671 sound_cap_flag[a].Play();
5673 gTeamStat[FTeam].Goals := gTeamStat[FTeam].Goals + 1;
5675 Result := True;
5676 if g_Game_IsNet then
5677 begin
5678 MH_SEND_FlagEvent(evtype, FFlag, FUID, False);
5679 MH_SEND_GameStats;
5680 end;
5682 gFlags[FFlag].CaptureTime := 0;
5683 SetFlag(FLAG_NONE);
5684 Exit;
5685 end;
5687 // Ïîäîáðàë ñâîé ôëàã - âåðíóë åãî íà áàçó:
5688 if (Flag = FTeam) and
5689 (gFlags[Flag].State = FLAG_STATE_DROPPED) then
5690 begin
5691 if Flag = FLAG_RED then
5692 s := _lc[I_PLAYER_FLAG_RED]
5693 else
5694 s := _lc[I_PLAYER_FLAG_BLUE];
5696 evtype := FLAG_STATE_RETURNED;
5697 gFlags[Flag].CaptureTime := 0;
5699 g_Console_Add(Format(_lc[I_PLAYER_FLAG_RETURN], [FName, s]), True);
5701 g_Map_ResetFlag(Flag);
5702 g_Game_Message(Format(_lc[I_MESSAGE_FLAG_RETURN], [AnsiUpperCase(s)]), 144);
5704 if ((Self = gPlayer1) or (Self = gPlayer2)
5705 or ((gPlayer1 <> nil) and (gPlayer1.Team = FTeam))
5706 or ((gPlayer2 <> nil) and (gPlayer2.Team = FTeam))) then
5707 a := 0
5708 else
5709 a := 1;
5711 if not sound_ret_flag[a].IsPlaying() then
5712 sound_ret_flag[a].Play();
5714 Result := True;
5715 if g_Game_IsNet then
5716 begin
5717 MH_SEND_FlagEvent(evtype, Flag, FUID, False);
5718 MH_SEND_GameStats;
5719 end;
5720 Exit;
5721 end;
5723 // Ïîäîáðàë ÷óæîé ôëàã:
5724 if (Flag <> FTeam) and (FTime[T_FLAGCAP] <= gTime) then
5725 begin
5726 SetFlag(Flag);
5728 if Flag = FLAG_RED then
5729 s := _lc[I_PLAYER_FLAG_RED]
5730 else
5731 s := _lc[I_PLAYER_FLAG_BLUE];
5733 evtype := FLAG_STATE_CAPTURED;
5735 g_Console_Add(Format(_lc[I_PLAYER_FLAG_GET], [FName, s]), True);
5737 g_Game_Message(Format(_lc[I_MESSAGE_FLAG_GET], [AnsiUpperCase(s)]), 144);
5739 gFlags[Flag].State := FLAG_STATE_CAPTURED;
5741 if ((Self = gPlayer1) or (Self = gPlayer2)
5742 or ((gPlayer1 <> nil) and (gPlayer1.Team = FTeam))
5743 or ((gPlayer2 <> nil) and (gPlayer2.Team = FTeam))) then
5744 a := 0
5745 else
5746 a := 1;
5748 if not sound_get_flag[a].IsPlaying() then
5749 sound_get_flag[a].Play();
5751 Result := True;
5752 if g_Game_IsNet then
5753 begin
5754 MH_SEND_FlagEvent(evtype, Flag, FUID, False);
5755 MH_SEND_GameStats;
5756 end;
5757 end;
5758 end;
5760 procedure TPlayer.SetFlag(Flag: Byte);
5761 begin
5762 FFlag := Flag;
5763 if FModel <> nil then
5764 FModel.SetFlag(FFlag);
5765 end;
5767 function TPlayer.TryDropFlag(): Boolean;
5768 begin
5769 if LongBool(gGameSettings.Options and GAME_OPTION_ALLOWDROPFLAG) then
5770 Result := DropFlag(False, LongBool(gGameSettings.Options and GAME_OPTION_THROWFLAG))
5771 else
5772 Result := False;
5773 end;
5775 function TPlayer.DropFlag(Silent: Boolean = True; DoThrow: Boolean = False): Boolean;
5776 var
5777 s: String;
5778 a: Byte;
5779 xv, yv: Integer;
5780 begin
5781 Result := False;
5782 if (not g_Game_IsServer) or (FFlag = FLAG_NONE) then
5783 Exit;
5784 FTime[T_FLAGCAP] := gTime + 2000;
5785 with gFlags[FFlag] do
5786 begin
5787 Obj.X := FObj.X;
5788 Obj.Y := FObj.Y;
5789 Direction := FDirection;
5790 State := FLAG_STATE_DROPPED;
5791 Count := FLAG_TIME;
5792 if DoThrow then
5793 begin
5794 xv := FObj.Vel.X + IfThen(Direction = TDirection.D_RIGHT, 10, -10);
5795 yv := FObj.Vel.Y - 2;
5796 end
5797 else
5798 begin
5799 xv := (FObj.Vel.X div 2);
5800 yv := (FObj.Vel.Y div 2) - 2;
5801 end;
5802 g_Obj_Push(@Obj, xv, yv);
5804 positionChanged(); // this updates spatial accelerators
5806 if FFlag = FLAG_RED then
5807 s := _lc[I_PLAYER_FLAG_RED]
5808 else
5809 s := _lc[I_PLAYER_FLAG_BLUE];
5811 g_Console_Add(Format(_lc[I_PLAYER_FLAG_DROP], [FName, s]), True);
5812 g_Game_Message(Format(_lc[I_MESSAGE_FLAG_DROP], [AnsiUpperCase(s)]), 144);
5814 if ((Self = gPlayer1) or (Self = gPlayer2)
5815 or ((gPlayer1 <> nil) and (gPlayer1.Team = FTeam))
5816 or ((gPlayer2 <> nil) and (gPlayer2.Team = FTeam))) then
5817 a := 0
5818 else
5819 a := 1;
5821 if (not Silent) and (not sound_lost_flag[a].IsPlaying()) then
5822 sound_lost_flag[a].Play();
5824 if g_Game_IsNet then
5825 MH_SEND_FlagEvent(FLAG_STATE_DROPPED, Flag, FUID, False);
5826 end;
5827 SetFlag(FLAG_NONE);
5828 Result := True;
5829 end;
5831 procedure TPlayer.GetSecret();
5832 begin
5833 if (self = gPlayer1) or (self = gPlayer2) then
5834 begin
5835 g_Console_Add(Format(_lc[I_PLAYER_SECRET], [FName]), True);
5836 g_Sound_PlayEx('SOUND_GAME_SECRET');
5837 end;
5838 Inc(FSecrets);
5839 end;
5841 procedure TPlayer.PressKey(Key: Byte; Time: Word = 1);
5842 begin
5843 Assert(Key <= High(FKeys));
5845 FKeys[Key].Pressed := True;
5846 FKeys[Key].Time := Time;
5847 end;
5849 function TPlayer.IsKeyPressed(K: Byte): Boolean;
5850 begin
5851 Result := FKeys[K].Pressed;
5852 end;
5854 procedure TPlayer.ReleaseKeys();
5855 var
5856 a: Integer;
5857 begin
5858 for a := Low(FKeys) to High(FKeys) do
5859 begin
5860 FKeys[a].Pressed := False;
5861 FKeys[a].Time := 0;
5862 end;
5863 end;
5865 procedure TPlayer.OnDamage(Angle: SmallInt);
5866 begin
5867 end;
5869 function TPlayer.firediry(): Integer;
5870 begin
5871 if FKeys[KEY_UP].Pressed then Result := -42
5872 else if FKeys[KEY_DOWN].Pressed then Result := 19
5873 else Result := 0;
5874 end;
5876 procedure TPlayer.RememberState();
5877 var
5878 i: Integer;
5879 SavedState: TPlayerSavedState;
5880 begin
5881 SavedState.Health := FHealth;
5882 SavedState.Armor := FArmor;
5883 SavedState.Air := FAir;
5884 SavedState.JetFuel := FJetFuel;
5885 SavedState.CurrWeap := FCurrWeap;
5886 SavedState.NextWeap := FNextWeap;
5887 SavedState.NextWeapDelay := FNextWeapDelay;
5888 for i := Low(FWeapon) to High(FWeapon) do
5889 SavedState.Weapon[i] := FWeapon[i];
5890 for i := Low(FAmmo) to High(FAmmo) do
5891 SavedState.Ammo[i] := FAmmo[i];
5892 for i := Low(FMaxAmmo) to High(FMaxAmmo) do
5893 SavedState.MaxAmmo[i] := FMaxAmmo[i];
5894 SavedState.Rulez := FRulez - [R_KEY_RED, R_KEY_GREEN, R_KEY_BLUE];
5896 FSavedStateNum := -1;
5897 for i := Low(SavedStates) to High(SavedStates) do
5898 if not SavedStates[i].Used then
5899 begin
5900 FSavedStateNum := i;
5901 break;
5902 end;
5903 if FSavedStateNum < 0 then
5904 begin
5905 SetLength(SavedStates, Length(SavedStates) + 1);
5906 FSavedStateNum := High(SavedStates);
5907 end;
5909 SavedState.Used := True;
5910 SavedStates[FSavedStateNum] := SavedState;
5911 end;
5913 procedure TPlayer.RecallState();
5914 var
5915 i: Integer;
5916 SavedState: TPlayerSavedState;
5917 begin
5918 if(FSavedStateNum < 0) or (FSavedStateNum > High(SavedStates)) then
5919 Exit;
5921 SavedState := SavedStates[FSavedStateNum];
5922 SavedStates[FSavedStateNum].Used := False;
5923 FSavedStateNum := -1;
5925 FHealth := SavedState.Health;
5926 FArmor := SavedState.Armor;
5927 FAir := SavedState.Air;
5928 FJetFuel := SavedState.JetFuel;
5929 FCurrWeap := SavedState.CurrWeap;
5930 FNextWeap := SavedState.NextWeap;
5931 FNextWeapDelay := SavedState.NextWeapDelay;
5932 for i := Low(FWeapon) to High(FWeapon) do
5933 FWeapon[i] := SavedState.Weapon[i];
5934 for i := Low(FAmmo) to High(FAmmo) do
5935 FAmmo[i] := SavedState.Ammo[i];
5936 for i := Low(FMaxAmmo) to High(FMaxAmmo) do
5937 FMaxAmmo[i] := SavedState.MaxAmmo[i];
5938 FRulez := SavedState.Rulez;
5940 if gGameSettings.GameType = GT_SERVER then
5941 MH_SEND_PlayerStats(FUID);
5942 end;
5944 procedure TPlayer.SaveState (st: TStream);
5945 var
5946 i: Integer;
5947 b: Byte;
5948 begin
5949 // Ñèãíàòóðà èãðîêà
5950 utils.writeSign(st, 'PLYR');
5951 utils.writeInt(st, Byte(PLR_SAVE_VERSION)); // version
5952 // Áîò èëè ÷åëîâåê
5953 utils.writeBool(st, FIamBot);
5954 // UID èãðîêà
5955 utils.writeInt(st, Word(FUID));
5956 // Èìÿ èãðîêà
5957 utils.writeStr(st, FName);
5958 // Êîìàíäà
5959 utils.writeInt(st, Byte(FTeam));
5960 // Æèâ ëè
5961 utils.writeBool(st, FAlive);
5962 // Èçðàñõîäîâàë ëè âñå æèçíè
5963 utils.writeBool(st, FNoRespawn);
5964 // Íàïðàâëåíèå
5965 if FDirection = TDirection.D_LEFT then b := 1 else b := 2; // D_RIGHT
5966 utils.writeInt(st, Byte(b));
5967 // Çäîðîâüå
5968 utils.writeInt(st, LongInt(FHealth));
5969 // Êîýôôèöèåíò èíâàëèäíîñòè
5970 utils.writeInt(st, LongInt(FHandicap));
5971 // Æèçíè
5972 utils.writeInt(st, Byte(FLives));
5973 // Áðîíÿ
5974 utils.writeInt(st, LongInt(FArmor));
5975 // Çàïàñ âîçäóõà
5976 utils.writeInt(st, LongInt(FAir));
5977 // Çàïàñ ãîðþ÷åãî
5978 utils.writeInt(st, LongInt(FJetFuel));
5979 // Áîëü
5980 utils.writeInt(st, LongInt(FPain));
5981 // Óáèë
5982 utils.writeInt(st, LongInt(FKills));
5983 // Óáèë ìîíñòðîâ
5984 utils.writeInt(st, LongInt(FMonsterKills));
5985 // Ôðàãîâ
5986 utils.writeInt(st, LongInt(FFrags));
5987 // Ôðàãîâ ïîäðÿä
5988 utils.writeInt(st, Byte(FFragCombo));
5989 // Âðåìÿ ïîñëåäíåãî ôðàãà
5990 utils.writeInt(st, LongWord(FLastFrag));
5991 // Ñìåðòåé
5992 utils.writeInt(st, LongInt(FDeath));
5993 // Êàêîé ôëàã íåñåò
5994 utils.writeInt(st, Byte(FFlag));
5995 // Íàøåë ñåêðåòîâ
5996 utils.writeInt(st, LongInt(FSecrets));
5997 // Òåêóùåå îðóæèå
5998 utils.writeInt(st, Byte(FCurrWeap));
5999 // Æåëàåìîå îðóæèå
6000 utils.writeInt(st, Word(FNextWeap));
6001 // ...è ïàóçà
6002 utils.writeInt(st, Byte(FNextWeapDelay));
6003 // Âðåìÿ çàðÿäêè BFG
6004 utils.writeInt(st, SmallInt(FBFGFireCounter));
6005 // Áóôåð óðîíà
6006 utils.writeInt(st, LongInt(FDamageBuffer));
6007 // Ïîñëåäíèé óäàðèâøèé
6008 utils.writeInt(st, Word(FLastSpawnerUID));
6009 // Òèï ïîñëåäíåãî ïîëó÷åííîãî óðîíà
6010 utils.writeInt(st, Byte(FLastHit));
6011 // Îáúåêò èãðîêà
6012 Obj_SaveState(st, @FObj);
6013 // Òåêóùåå êîëè÷åñòâî ïàòðîíîâ
6014 for i := A_BULLETS to A_HIGH do utils.writeInt(st, Word(FAmmo[i]));
6015 // Ìàêñèìàëüíîå êîëè÷åñòâî ïàòðîíîâ
6016 for i := A_BULLETS to A_HIGH do utils.writeInt(st, Word(FMaxAmmo[i]));
6017 // Íàëè÷èå îðóæèÿ
6018 for i := WP_FIRST to WP_LAST do utils.writeBool(st, FWeapon[i]);
6019 // Âðåìÿ ïåðåçàðÿäêè îðóæèÿ
6020 for i := WP_FIRST to WP_LAST do utils.writeInt(st, Word(FReloading[i]));
6021 // Íàëè÷èå ðþêçàêà
6022 utils.writeBool(st, (R_ITEM_BACKPACK in FRulez));
6023 // Íàëè÷èå êðàñíîãî êëþ÷à
6024 utils.writeBool(st, (R_KEY_RED in FRulez));
6025 // Íàëè÷èå çåëåíîãî êëþ÷à
6026 utils.writeBool(st, (R_KEY_GREEN in FRulez));
6027 // Íàëè÷èå ñèíåãî êëþ÷à
6028 utils.writeBool(st, (R_KEY_BLUE in FRulez));
6029 // Íàëè÷èå áåðñåðêà
6030 utils.writeBool(st, (R_BERSERK in FRulez));
6031 // Âðåìÿ äåéñòâèÿ ñïåöèàëüíûõ ïðåäìåòîâ
6032 for i := MR_SUIT to MR_MAX do utils.writeInt(st, LongWord(FMegaRulez[i]));
6033 // Âðåìÿ äî ïîâòîðíîãî ðåñïàóíà, ñìåíû îðóæèÿ, èñîëüçîâàíèÿ, çàõâàòà ôëàãà
6034 for i := T_RESPAWN to T_FLAGCAP do utils.writeInt(st, LongWord(FTime[i]));
6035 // Íàçâàíèå ìîäåëè
6036 utils.writeStr(st, FModel.Name);
6037 // Öâåò ìîäåëè
6038 utils.writeInt(st, Byte(FColor.R));
6039 utils.writeInt(st, Byte(FColor.G));
6040 utils.writeInt(st, Byte(FColor.B));
6041 end;
6044 procedure TPlayer.LoadState (st: TStream);
6045 var
6046 i: Integer;
6047 str: String;
6048 b: Byte;
6049 begin
6050 assert(st <> nil);
6052 // Ñèãíàòóðà èãðîêà
6053 if not utils.checkSign(st, 'PLYR') then raise XStreamError.Create('invalid player signature');
6054 if (utils.readByte(st) <> PLR_SAVE_VERSION) then raise XStreamError.Create('invalid player version');
6055 // Áîò èëè ÷åëîâåê:
6056 FIamBot := utils.readBool(st);
6057 // UID èãðîêà
6058 FUID := utils.readWord(st);
6059 // Èìÿ èãðîêà
6060 str := utils.readStr(st);
6061 if (self <> gPlayer1) and (self <> gPlayer2) then FName := str;
6062 // Êîìàíäà
6063 FTeam := utils.readByte(st);
6064 // Æèâ ëè
6065 FAlive := utils.readBool(st);
6066 // Èçðàñõîäîâàë ëè âñå æèçíè
6067 FNoRespawn := utils.readBool(st);
6068 // Íàïðàâëåíèå
6069 b := utils.readByte(st);
6070 if b = 1 then FDirection := TDirection.D_LEFT else FDirection := TDirection.D_RIGHT; // b = 2
6071 // Çäîðîâüå
6072 FHealth := utils.readLongInt(st);
6073 // Êîýôôèöèåíò èíâàëèäíîñòè
6074 FHandicap := utils.readLongInt(st);
6075 // Æèçíè
6076 FLives := utils.readByte(st);
6077 // Áðîíÿ
6078 FArmor := utils.readLongInt(st);
6079 // Çàïàñ âîçäóõà
6080 FAir := utils.readLongInt(st);
6081 // Çàïàñ ãîðþ÷åãî
6082 FJetFuel := utils.readLongInt(st);
6083 // Áîëü
6084 FPain := utils.readLongInt(st);
6085 // Óáèë
6086 FKills := utils.readLongInt(st);
6087 // Óáèë ìîíñòðîâ
6088 FMonsterKills := utils.readLongInt(st);
6089 // Ôðàãîâ
6090 FFrags := utils.readLongInt(st);
6091 // Ôðàãîâ ïîäðÿä
6092 FFragCombo := utils.readByte(st);
6093 // Âðåìÿ ïîñëåäíåãî ôðàãà
6094 FLastFrag := utils.readLongWord(st);
6095 // Ñìåðòåé
6096 FDeath := utils.readLongInt(st);
6097 // Êàêîé ôëàã íåñåò
6098 FFlag := utils.readByte(st);
6099 // Íàøåë ñåêðåòîâ
6100 FSecrets := utils.readLongInt(st);
6101 // Òåêóùåå îðóæèå
6102 FCurrWeap := utils.readByte(st);
6103 // Æåëàåìîå îðóæèå
6104 FNextWeap := utils.readWord(st);
6105 // ...è ïàóçà
6106 FNextWeapDelay := utils.readByte(st);
6107 // Âðåìÿ çàðÿäêè BFG
6108 FBFGFireCounter := utils.readSmallInt(st);
6109 // Áóôåð óðîíà
6110 FDamageBuffer := utils.readLongInt(st);
6111 // Ïîñëåäíèé óäàðèâøèé
6112 FLastSpawnerUID := utils.readWord(st);
6113 // Òèï ïîñëåäíåãî ïîëó÷åííîãî óðîíà
6114 FLastHit := utils.readByte(st);
6115 // Îáúåêò èãðîêà
6116 Obj_LoadState(@FObj, st);
6117 // Òåêóùåå êîëè÷åñòâî ïàòðîíîâ
6118 for i := A_BULLETS to A_HIGH do FAmmo[i] := utils.readWord(st);
6119 // Ìàêñèìàëüíîå êîëè÷åñòâî ïàòðîíîâ
6120 for i := A_BULLETS to A_HIGH do FMaxAmmo[i] := utils.readWord(st);
6121 // Íàëè÷èå îðóæèÿ
6122 for i := WP_FIRST to WP_LAST do FWeapon[i] := utils.readBool(st);
6123 // Âðåìÿ ïåðåçàðÿäêè îðóæèÿ
6124 for i := WP_FIRST to WP_LAST do FReloading[i] := utils.readWord(st);
6125 // Íàëè÷èå ðþêçàêà
6126 if utils.readBool(st) then Include(FRulez, R_ITEM_BACKPACK);
6127 // Íàëè÷èå êðàñíîãî êëþ÷à
6128 if utils.readBool(st) then Include(FRulez, R_KEY_RED);
6129 // Íàëè÷èå çåëåíîãî êëþ÷à
6130 if utils.readBool(st) then Include(FRulez, R_KEY_GREEN);
6131 // Íàëè÷èå ñèíåãî êëþ÷à
6132 if utils.readBool(st) then Include(FRulez, R_KEY_BLUE);
6133 // Íàëè÷èå áåðñåðêà
6134 if utils.readBool(st) then Include(FRulez, R_BERSERK);
6135 // Âðåìÿ äåéñòâèÿ ñïåöèàëüíûõ ïðåäìåòîâ
6136 for i := MR_SUIT to MR_MAX do FMegaRulez[i] := utils.readLongWord(st);
6137 // Âðåìÿ äî ïîâòîðíîãî ðåñïàóíà, ñìåíû îðóæèÿ, èñîëüçîâàíèÿ, çàõâàòà ôëàãà
6138 for i := T_RESPAWN to T_FLAGCAP do FTime[i] := utils.readLongWord(st);
6139 // Íàçâàíèå ìîäåëè
6140 str := utils.readStr(st);
6141 // Öâåò ìîäåëè
6142 FColor.R := utils.readByte(st);
6143 FColor.G := utils.readByte(st);
6144 FColor.B := utils.readByte(st);
6145 if (self = gPlayer1) then
6146 begin
6147 str := gPlayer1Settings.Model;
6148 FColor := gPlayer1Settings.Color;
6149 end
6150 else if (self = gPlayer2) then
6151 begin
6152 str := gPlayer2Settings.Model;
6153 FColor := gPlayer2Settings.Color;
6154 end;
6155 // Îáíîâëÿåì ìîäåëü èãðîêà
6156 SetModel(str);
6157 if gGameSettings.GameMode in [GM_TDM, GM_CTF] then
6158 FModel.Color := TEAMCOLOR[FTeam]
6159 else
6160 FModel.Color := FColor;
6161 end;
6164 procedure TPlayer.AllRulez(Health: Boolean);
6165 var
6166 a: Integer;
6167 begin
6168 if Health then
6169 begin
6170 FHealth := PLAYER_HP_LIMIT;
6171 FArmor := PLAYER_AP_LIMIT;
6172 Exit;
6173 end;
6175 for a := WP_FIRST to WP_LAST do FWeapon[a] := True;
6176 for a := A_BULLETS to A_HIGH do FAmmo[a] := 30000;
6177 FRulez := FRulez+[R_KEY_RED, R_KEY_GREEN, R_KEY_BLUE];
6178 end;
6180 procedure TPlayer.RestoreHealthArmor();
6181 begin
6182 FHealth := PLAYER_HP_LIMIT;
6183 FArmor := PLAYER_AP_LIMIT;
6184 end;
6186 procedure TPlayer.FragCombo();
6187 var
6188 Param: Integer;
6189 begin
6190 if (gGameSettings.GameMode in [GM_COOP, GM_SINGLE]) or g_Game_IsClient then
6191 Exit;
6192 if gTime - FLastFrag < FRAG_COMBO_TIME then
6193 begin
6194 if FFragCombo < 5 then
6195 Inc(FFragCombo);
6196 Param := FUID or (FFragCombo shl 16);
6197 if (FComboEvnt >= Low(gDelayedEvents)) and
6198 (FComboEvnt <= High(gDelayedEvents)) and
6199 gDelayedEvents[FComboEvnt].Pending and
6200 (gDelayedEvents[FComboEvnt].DEType = DE_KILLCOMBO) and
6201 (gDelayedEvents[FComboEvnt].DENum and $FFFF = FUID) then
6202 begin
6203 gDelayedEvents[FComboEvnt].Time := gTime + 500;
6204 gDelayedEvents[FComboEvnt].DENum := Param;
6205 end
6206 else
6207 FComboEvnt := g_Game_DelayEvent(DE_KILLCOMBO, 500, Param);
6208 end
6209 else
6210 FFragCombo := 1;
6212 FLastFrag := gTime;
6213 end;
6215 procedure TPlayer.GiveItem(ItemType: Byte);
6216 begin
6217 case ItemType of
6218 ITEM_SUIT:
6219 if FMegaRulez[MR_SUIT] < gTime+PLAYER_SUIT_TIME then
6220 begin
6221 FMegaRulez[MR_SUIT] := gTime+PLAYER_SUIT_TIME;
6222 end;
6224 ITEM_OXYGEN:
6225 if FAir < AIR_MAX then
6226 begin
6227 FAir := AIR_MAX;
6228 end;
6230 ITEM_MEDKIT_BLACK:
6231 begin
6232 if not (R_BERSERK in FRulez) then
6233 begin
6234 Include(FRulez, R_BERSERK);
6235 if FBFGFireCounter < 1 then
6236 begin
6237 FCurrWeap := WEAPON_KASTET;
6238 resetWeaponQueue();
6239 FModel.SetWeapon(WEAPON_KASTET);
6240 end;
6241 if gFlash <> 0 then
6242 Inc(FPain, 100);
6243 FBerserk := gTime+30000;
6244 end;
6245 if FHealth < PLAYER_HP_SOFT then
6246 begin
6247 FHealth := PLAYER_HP_SOFT;
6248 FBerserk := gTime+30000;
6249 end;
6250 end;
6252 ITEM_INVUL:
6253 if FMegaRulez[MR_INVUL] < gTime+PLAYER_INVUL_TIME then
6254 begin
6255 FMegaRulez[MR_INVUL] := gTime+PLAYER_INVUL_TIME;
6256 FSpawnInvul := 0;
6257 end;
6259 ITEM_INVIS:
6260 if FMegaRulez[MR_INVIS] < gTime+PLAYER_INVIS_TIME then
6261 begin
6262 FMegaRulez[MR_INVIS] := gTime+PLAYER_INVIS_TIME;
6263 end;
6265 ITEM_JETPACK:
6266 if FJetFuel < JET_MAX then
6267 begin
6268 FJetFuel := JET_MAX;
6269 end;
6271 ITEM_MEDKIT_SMALL: if FHealth < PLAYER_HP_SOFT then IncMax(FHealth, 10, PLAYER_HP_SOFT);
6272 ITEM_MEDKIT_LARGE: if FHealth < PLAYER_HP_SOFT then IncMax(FHealth, 25, PLAYER_HP_SOFT);
6274 ITEM_ARMOR_GREEN: if FArmor < PLAYER_AP_SOFT then FArmor := PLAYER_AP_SOFT;
6275 ITEM_ARMOR_BLUE: if FArmor < PLAYER_AP_LIMIT then FArmor := PLAYER_AP_LIMIT;
6277 ITEM_SPHERE_BLUE: if FHealth < PLAYER_HP_LIMIT then IncMax(FHealth, 100, PLAYER_HP_LIMIT);
6278 ITEM_SPHERE_WHITE:
6279 if (FHealth < PLAYER_HP_LIMIT) or (FArmor < PLAYER_AP_LIMIT) then
6280 begin
6281 if FHealth < PLAYER_HP_LIMIT then FHealth := PLAYER_HP_LIMIT;
6282 if FArmor < PLAYER_AP_LIMIT then FArmor := PLAYER_AP_LIMIT;
6283 end;
6285 ITEM_WEAPON_SAW: FWeapon[WEAPON_SAW] := True;
6286 ITEM_WEAPON_SHOTGUN1: FWeapon[WEAPON_SHOTGUN1] := True;
6287 ITEM_WEAPON_SHOTGUN2: FWeapon[WEAPON_SHOTGUN2] := True;
6288 ITEM_WEAPON_CHAINGUN: FWeapon[WEAPON_CHAINGUN] := True;
6289 ITEM_WEAPON_ROCKETLAUNCHER: FWeapon[WEAPON_ROCKETLAUNCHER] := True;
6290 ITEM_WEAPON_PLASMA: FWeapon[WEAPON_PLASMA] := True;
6291 ITEM_WEAPON_BFG: FWeapon[WEAPON_BFG] := True;
6292 ITEM_WEAPON_SUPERPULEMET: FWeapon[WEAPON_SUPERPULEMET] := True;
6293 ITEM_WEAPON_FLAMETHROWER: FWeapon[WEAPON_FLAMETHROWER] := True;
6295 ITEM_AMMO_BULLETS: if FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS] then IncMax(FAmmo[A_BULLETS], 10, FMaxAmmo[A_BULLETS]);
6296 ITEM_AMMO_BULLETS_BOX: if FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS] then IncMax(FAmmo[A_BULLETS], 50, FMaxAmmo[A_BULLETS]);
6297 ITEM_AMMO_SHELLS: if FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS] then IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
6298 ITEM_AMMO_SHELLS_BOX: if FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS] then IncMax(FAmmo[A_SHELLS], 25, FMaxAmmo[A_SHELLS]);
6299 ITEM_AMMO_ROCKET: if FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS] then IncMax(FAmmo[A_ROCKETS], 1, FMaxAmmo[A_ROCKETS]);
6300 ITEM_AMMO_ROCKET_BOX: if FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS] then IncMax(FAmmo[A_ROCKETS], 5, FMaxAmmo[A_ROCKETS]);
6301 ITEM_AMMO_CELL: if FAmmo[A_CELLS] < FMaxAmmo[A_CELLS] then IncMax(FAmmo[A_CELLS], 40, FMaxAmmo[A_CELLS]);
6302 ITEM_AMMO_CELL_BIG: if FAmmo[A_CELLS] < FMaxAmmo[A_CELLS] then IncMax(FAmmo[A_CELLS], 100, FMaxAmmo[A_CELLS]);
6303 ITEM_AMMO_FUELCAN: if FAmmo[A_FUEL] < FMaxAmmo[A_FUEL] then IncMax(FAmmo[A_FUEL], 100, FMaxAmmo[A_FUEL]);
6305 ITEM_AMMO_BACKPACK:
6306 if (FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS]) or
6307 (FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS]) or
6308 (FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS]) or
6309 (FAmmo[A_CELLS] < FMaxAmmo[A_CELLS]) or
6310 (FMaxAmmo[A_FUEL] < AmmoLimits[1, A_FUEL]) then
6311 begin
6312 FMaxAmmo[A_BULLETS] := AmmoLimits[1, A_BULLETS];
6313 FMaxAmmo[A_SHELLS] := AmmoLimits[1, A_SHELLS];
6314 FMaxAmmo[A_ROCKETS] := AmmoLimits[1, A_ROCKETS];
6315 FMaxAmmo[A_CELLS] := AmmoLimits[1, A_CELLS];
6316 FMaxAmmo[A_FUEL] := AmmoLimits[1, A_FUEL];
6318 if FAmmo[A_BULLETS] < FMaxAmmo[A_BULLETS] then IncMax(FAmmo[A_BULLETS], 10, FMaxAmmo[A_BULLETS]);
6319 if FAmmo[A_SHELLS] < FMaxAmmo[A_SHELLS] then IncMax(FAmmo[A_SHELLS], 4, FMaxAmmo[A_SHELLS]);
6320 if FAmmo[A_ROCKETS] < FMaxAmmo[A_ROCKETS] then IncMax(FAmmo[A_ROCKETS], 1, FMaxAmmo[A_ROCKETS]);
6321 if FAmmo[A_CELLS] < FMaxAmmo[A_CELLS] then IncMax(FAmmo[A_CELLS], 40, FMaxAmmo[A_CELLS]);
6323 FRulez := FRulez + [R_ITEM_BACKPACK];
6324 end;
6326 ITEM_KEY_RED: if not (R_KEY_RED in FRulez) then Include(FRulez, R_KEY_RED);
6327 ITEM_KEY_GREEN: if not (R_KEY_GREEN in FRulez) then Include(FRulez, R_KEY_GREEN);
6328 ITEM_KEY_BLUE: if not (R_KEY_BLUE in FRulez) then Include(FRulez, R_KEY_BLUE);
6330 ITEM_BOTTLE: if FHealth < PLAYER_HP_LIMIT then IncMax(FHealth, 4, PLAYER_HP_LIMIT);
6331 ITEM_HELMET: if FArmor < PLAYER_AP_LIMIT then IncMax(FArmor, 5, PLAYER_AP_LIMIT);
6333 else
6334 Exit;
6335 end;
6336 if g_Game_IsNet and g_Game_IsServer then
6337 MH_SEND_PlayerStats(FUID);
6338 end;
6340 procedure TPlayer.FlySmoke(Times: DWORD = 1);
6341 var
6342 id, i: DWORD;
6343 Anim: TAnimation;
6344 begin
6345 if (Random(5) = 1) and (Times = 1) then
6346 Exit;
6348 if BodyInLiquid(0, 0) then
6349 begin
6350 g_GFX_Bubbles(Obj.X+Obj.Rect.X+(Obj.Rect.Width div 2)+Random(3)-1,
6351 Obj.Y+Obj.Rect.Height+8, 1, 8, 4);
6352 if Random(2) = 0 then
6353 g_Sound_PlayExAt('SOUND_GAME_BUBBLE1', FObj.X, FObj.Y)
6354 else
6355 g_Sound_PlayExAt('SOUND_GAME_BUBBLE2', FObj.X, FObj.Y);
6356 Exit;
6357 end;
6359 if g_Frames_Get(id, 'FRAMES_SMOKE') then
6360 begin
6361 for i := 1 to Times do
6362 begin
6363 Anim := TAnimation.Create(id, False, 3);
6364 Anim.Alpha := 150;
6365 g_GFX_OnceAnim(Obj.X+Obj.Rect.X+Random(Obj.Rect.Width+Times*2)-(Anim.Width div 2),
6366 Obj.Y+Obj.Rect.Height-4+Random(8+Times*2), Anim, ONCEANIM_SMOKE);
6367 Anim.Free();
6368 end;
6369 end;
6370 end;
6372 procedure TPlayer.OnFireFlame(Times: DWORD = 1);
6373 var
6374 id, i: DWORD;
6375 Anim: TAnimation;
6376 begin
6377 if (Random(10) = 1) and (Times = 1) then
6378 Exit;
6380 if g_Frames_Get(id, 'FRAMES_FLAME') then
6381 begin
6382 for i := 1 to Times do
6383 begin
6384 Anim := TAnimation.Create(id, False, 3);
6385 Anim.Alpha := 0;
6386 g_GFX_OnceAnim(Obj.X+Obj.Rect.X+Random(Obj.Rect.Width+Times*2)-(Anim.Width div 2),
6387 Obj.Y+8+Random(8+Times*2), Anim, ONCEANIM_SMOKE);
6388 Anim.Free();
6389 end;
6390 end;
6391 end;
6393 procedure TPlayer.PauseSounds(Enable: Boolean);
6394 begin
6395 FSawSound.Pause(Enable);
6396 FSawSoundIdle.Pause(Enable);
6397 FSawSoundHit.Pause(Enable);
6398 FSawSoundSelect.Pause(Enable);
6399 FFlameSoundOn.Pause(Enable);
6400 FFlameSoundOff.Pause(Enable);
6401 FFlameSoundWork.Pause(Enable);
6402 FJetSoundFly.Pause(Enable);
6403 FJetSoundOn.Pause(Enable);
6404 FJetSoundOff.Pause(Enable);
6405 end;
6407 { T C o r p s e : }
6409 constructor TCorpse.Create(X, Y: Integer; ModelName: String; aMess: Boolean);
6410 begin
6411 g_Obj_Init(@FObj);
6412 FObj.X := X;
6413 FObj.Y := Y;
6414 FObj.Rect := PLAYER_CORPSERECT;
6415 FModelName := ModelName;
6416 FMess := aMess;
6418 if FMess then
6419 begin
6420 FState := CORPSE_STATE_MESS;
6421 g_PlayerModel_GetAnim(ModelName, A_DIE2, FAnimation, FAnimationMask);
6422 end
6423 else
6424 begin
6425 FState := CORPSE_STATE_NORMAL;
6426 g_PlayerModel_GetAnim(ModelName, A_DIE1, FAnimation, FAnimationMask);
6427 end;
6428 end;
6430 destructor TCorpse.Destroy();
6431 begin
6432 FAnimation.Free();
6434 inherited;
6435 end;
6437 function TCorpse.ObjPtr (): PObj; inline; begin result := @FObj; end;
6439 procedure TCorpse.positionChanged (); inline; begin end;
6441 procedure TCorpse.moveBy (dx, dy: Integer); inline;
6442 begin
6443 if (dx <> 0) or (dy <> 0) then
6444 begin
6445 FObj.X += dx;
6446 FObj.Y += dy;
6447 positionChanged();
6448 end;
6449 end;
6452 procedure TCorpse.getMapBox (out x, y, w, h: Integer); inline;
6453 begin
6454 x := FObj.X+PLAYER_CORPSERECT.X;
6455 y := FObj.Y+PLAYER_CORPSERECT.Y;
6456 w := PLAYER_CORPSERECT.Width;
6457 h := PLAYER_CORPSERECT.Height;
6458 end;
6461 procedure TCorpse.Damage(Value: Word; SpawnerUID: Word; vx, vy: Integer);
6462 var
6463 pm: TPlayerModel;
6464 Blood: TModelBlood;
6465 begin
6466 if FState = CORPSE_STATE_REMOVEME then
6467 Exit;
6469 FDamage := FDamage + Value;
6471 if FDamage > 150 then
6472 begin
6473 if FAnimation <> nil then
6474 begin
6475 FAnimation.Free();
6476 FAnimation := nil;
6478 FState := CORPSE_STATE_REMOVEME;
6480 g_Player_CreateGibs(FObj.X+FObj.Rect.X+(FObj.Rect.Width div 2),
6481 FObj.Y+FObj.Rect.Y+(FObj.Rect.Height div 2),
6482 FModelName, FColor);
6483 // Çâóê ìÿñà îò òðóïà:
6484 pm := g_PlayerModel_Get(FModelName);
6485 pm.PlaySound(MODELSOUND_DIE, 5, FObj.X, FObj.Y);
6486 pm.Free;
6488 // Çëîâåùèé ñìåõ:
6489 if (gBodyKillEvent <> -1)
6490 and gDelayedEvents[gBodyKillEvent].Pending then
6491 gDelayedEvents[gBodyKillEvent].Pending := False;
6492 gBodyKillEvent := g_Game_DelayEvent(DE_BODYKILL, 1050, SpawnerUID);
6493 end;
6494 end
6495 else
6496 begin
6497 Blood := g_PlayerModel_GetBlood(FModelName);
6498 FObj.Vel.X := FObj.Vel.X + vx;
6499 FObj.Vel.Y := FObj.Vel.Y + vy;
6500 g_GFX_Blood(FObj.X+PLAYER_CORPSERECT.X+(PLAYER_CORPSERECT.Width div 2),
6501 FObj.Y+PLAYER_CORPSERECT.Y+(PLAYER_CORPSERECT.Height div 2),
6502 Value, vx, vy, 16, (PLAYER_CORPSERECT.Height*2) div 3,
6503 Blood.R, Blood.G, Blood.B, Blood.Kind);
6504 end;
6505 end;
6507 procedure TCorpse.Draw();
6508 var
6509 fX, fY: Integer;
6510 begin
6511 if FState = CORPSE_STATE_REMOVEME then
6512 Exit;
6514 FObj.lerp(gLerpFactor, fX, fY);
6516 if FAnimation <> nil then
6517 FAnimation.Draw(fX, fY, TMirrorType.None);
6519 if FAnimationMask <> nil then
6520 begin
6521 e_Colors := FColor;
6522 FAnimationMask.Draw(fX, fY, TMirrorType.None);
6523 e_Colors.R := 255;
6524 e_Colors.G := 255;
6525 e_Colors.B := 255;
6526 end;
6527 end;
6529 procedure TCorpse.Update();
6530 var
6531 st: Word;
6532 begin
6533 if FState = CORPSE_STATE_REMOVEME then
6534 Exit;
6536 FObj.oldX := FObj.X;
6537 FObj.oldY := FObj.Y;
6539 if gTime mod (GAME_TICK*2) <> 0 then
6540 begin
6541 g_Obj_Move(@FObj, True, True, True);
6542 positionChanged(); // this updates spatial accelerators
6543 Exit;
6544 end;
6546 // Ñîïðîòèâëåíèå âîçäóõà äëÿ òðóïà:
6547 FObj.Vel.X := z_dec(FObj.Vel.X, 1);
6549 st := g_Obj_Move(@FObj, True, True, True);
6550 positionChanged(); // this updates spatial accelerators
6552 if WordBool(st and MOVE_FALLOUT) then
6553 begin
6554 FState := CORPSE_STATE_REMOVEME;
6555 Exit;
6556 end;
6558 if FAnimation <> nil then
6559 FAnimation.Update();
6560 if FAnimationMask <> nil then
6561 FAnimationMask.Update();
6562 end;
6565 procedure TCorpse.SaveState (st: TStream);
6566 var
6567 anim: Boolean;
6568 begin
6569 assert(st <> nil);
6571 // Ñèãíàòóðà òðóïà
6572 utils.writeSign(st, 'CORP');
6573 utils.writeInt(st, Byte(0));
6574 // Ñîñòîÿíèå
6575 utils.writeInt(st, Byte(FState));
6576 // Íàêîïëåííûé óðîí
6577 utils.writeInt(st, Byte(FDamage));
6578 // Öâåò
6579 utils.writeInt(st, Byte(FColor.R));
6580 utils.writeInt(st, Byte(FColor.G));
6581 utils.writeInt(st, Byte(FColor.B));
6582 // Îáúåêò òðóïà
6583 Obj_SaveState(st, @FObj);
6584 utils.writeInt(st, Word(FPlayerUID));
6585 // Åñòü ëè àíèìàöèÿ
6586 anim := (FAnimation <> nil);
6587 utils.writeBool(st, anim);
6588 // Åñëè åñòü - ñîõðàíÿåì
6589 if anim then FAnimation.SaveState(st);
6590 // Åñòü ëè ìàñêà àíèìàöèè
6591 anim := (FAnimationMask <> nil);
6592 utils.writeBool(st, anim);
6593 // Åñëè åñòü - ñîõðàíÿåì
6594 if anim then FAnimationMask.SaveState(st);
6595 end;
6598 procedure TCorpse.LoadState (st: TStream);
6599 var
6600 anim: Boolean;
6601 begin
6602 assert(st <> nil);
6604 // Ñèãíàòóðà òðóïà
6605 if not utils.checkSign(st, 'CORP') then raise XStreamError.Create('invalid corpse signature');
6606 if (utils.readByte(st) <> 0) then raise XStreamError.Create('invalid corpse version');
6607 // Ñîñòîÿíèå
6608 FState := utils.readByte(st);
6609 // Íàêîïëåííûé óðîí
6610 FDamage := utils.readByte(st);
6611 // Öâåò
6612 FColor.R := utils.readByte(st);
6613 FColor.G := utils.readByte(st);
6614 FColor.B := utils.readByte(st);
6615 // Îáúåêò òðóïà
6616 Obj_LoadState(@FObj, st);
6617 FPlayerUID := utils.readWord(st);
6618 // Åñòü ëè àíèìàöèÿ
6619 anim := utils.readBool(st);
6620 // Åñëè åñòü - çàãðóæàåì
6621 if anim then
6622 begin
6623 Assert(FAnimation <> nil, 'TCorpse.LoadState: no FAnimation');
6624 FAnimation.LoadState(st);
6625 end;
6626 // Åñòü ëè ìàñêà àíèìàöèè
6627 anim := utils.readBool(st);
6628 // Åñëè åñòü - çàãðóæàåì
6629 if anim then
6630 begin
6631 Assert(FAnimationMask <> nil, 'TCorpse.LoadState: no FAnimationMask');
6632 FAnimationMask.LoadState(st);
6633 end;
6634 end;
6636 { T B o t : }
6638 constructor TBot.Create();
6639 var
6640 a: Integer;
6641 begin
6642 inherited Create();
6644 FPhysics := True;
6645 FSpectator := False;
6646 FGhost := False;
6648 FIamBot := True;
6650 Inc(gNumBots);
6652 for a := WP_FIRST to WP_LAST do
6653 begin
6654 FDifficult.WeaponPrior[a] := WEAPON_PRIOR1[a];
6655 FDifficult.CloseWeaponPrior[a] := WEAPON_PRIOR2[a];
6656 //FDifficult.SafeWeaponPrior[a] := WEAPON_PRIOR3[a];
6657 end;
6658 end;
6660 destructor TBot.Destroy();
6661 begin
6662 Dec(gNumBots);
6663 inherited Destroy();
6664 end;
6666 procedure TBot.Draw();
6667 begin
6668 inherited Draw();
6670 //if FTargetUID <> 0 then e_DrawLine(1, FObj.X, FObj.Y, g_Player_Get(FTargetUID).FObj.X,
6671 // g_Player_Get(FTargetUID).FObj.Y, 255, 0, 0);
6672 end;
6674 procedure TBot.Respawn(Silent: Boolean; Force: Boolean = False);
6675 begin
6676 inherited Respawn(Silent, Force);
6678 FAIFlags := nil;
6679 FSelectedWeapon := FCurrWeap;
6680 resetWeaponQueue();
6681 FTargetUID := 0;
6682 end;
6684 procedure TBot.UpdateCombat();
6685 type
6686 TTarget = record
6687 UID: Word;
6688 X, Y: Integer;
6689 Rect: TRectWH;
6690 cX, cY: Integer;
6691 Dist: Word;
6692 Line: Boolean;
6693 Visible: Boolean;
6694 IsPlayer: Boolean;
6695 end;
6697 TTargetRecord = array of TTarget;
6699 function Compare(a, b: TTarget): Integer;
6700 begin
6701 if a.Line and not b.Line then // A íà ëèíèè îãíÿ
6702 Result := -1
6703 else
6704 if not a.Line and b.Line then // B íà ëèíèè îãíÿ
6705 Result := 1
6706 else // È A, è B íà ëèíèè èëè íå íà ëèíèè îãíÿ
6707 if (a.Line and b.Line) or ((not a.Line) and (not b.Line)) then
6708 begin
6709 if a.Dist > b.Dist then // B áëèæå
6710 Result := 1
6711 else // A áëèæå èëè ðàâíîóäàëåííî ñ B
6712 Result := -1;
6713 end
6714 else // Ñòðàííî -> A
6715 Result := -1;
6716 end;
6718 var
6719 a, x1, y1, x2, y2: Integer;
6720 targets: TTargetRecord;
6721 ammo: Word;
6722 Target, BestTarget: TTarget;
6723 firew, fireh: Integer;
6724 angle: SmallInt;
6725 mon: TMonster;
6726 pla, tpla: TPlayer;
6727 vsPlayer, vsMonster, ok: Boolean;
6730 function monsUpdate (mon: TMonster): Boolean;
6731 begin
6732 result := false; // don't stop
6733 if mon.alive and (mon.MonsterType <> MONSTER_BARREL) then
6734 begin
6735 if not TargetOnScreen(mon.Obj.X+mon.Obj.Rect.X, mon.Obj.Y+mon.Obj.Rect.Y) then exit;
6737 x2 := mon.Obj.X+mon.Obj.Rect.X+(mon.Obj.Rect.Width div 2);
6738 y2 := mon.Obj.Y+mon.Obj.Rect.Y+(mon.Obj.Rect.Height div 2);
6740 // Åñëè ìîíñòð íà ýêðàíå è íå ïðèêðûò ñòåíîé
6741 if g_TraceVector(x1, y1, x2, y2) then
6742 begin
6743 // Äîáàâëÿåì ê ñïèñêó âîçìîæíûõ öåëåé
6744 SetLength(targets, Length(targets)+1);
6745 with targets[High(targets)] do
6746 begin
6747 UID := mon.UID;
6748 X := mon.Obj.X;
6749 Y := mon.Obj.Y;
6750 cX := x2;
6751 cY := y2;
6752 Rect := mon.Obj.Rect;
6753 Dist := g_PatchLength(x1, y1, x2, y2);
6754 Line := (y1+4 < Target.Y + mon.Obj.Rect.Y + mon.Obj.Rect.Height) and
6755 (y1-4 > Target.Y + mon.Obj.Rect.Y);
6756 Visible := True;
6757 IsPlayer := False;
6758 end;
6759 end;
6760 end;
6761 end;
6763 begin
6764 vsPlayer := LongBool(gGameSettings.Options and GAME_OPTION_BOTVSPLAYER);
6765 vsMonster := LongBool(gGameSettings.Options and GAME_OPTION_BOTVSMONSTER);
6767 // Åñëè òåêóùåå îðóæèå íå òî, ÷òî íóæíî, òî ìåíÿåì:
6768 if FCurrWeap <> FSelectedWeapon then
6769 NextWeapon();
6771 // Åñëè íóæíî ñòðåëÿòü è íóæíîå îðóæèå, òî íàæàòü "Ñòðåëÿòü":
6772 if (GetAIFlag('NEEDFIRE') <> '') and (FCurrWeap = FSelectedWeapon) then
6773 begin
6774 RemoveAIFlag('NEEDFIRE');
6776 case FCurrWeap of
6777 WEAPON_PLASMA, WEAPON_SUPERPULEMET, WEAPON_CHAINGUN: PressKey(KEY_FIRE, 20);
6778 WEAPON_SAW, WEAPON_KASTET, WEAPON_FLAMETHROWER: PressKey(KEY_FIRE, 40);
6779 else PressKey(KEY_FIRE);
6780 end;
6781 end;
6783 // Êîîðäèíàòû ñòâîëà:
6784 x1 := FObj.X + WEAPONPOINT[FDirection].X;
6785 y1 := FObj.Y + WEAPONPOINT[FDirection].Y;
6787 Target.UID := FTargetUID;
6789 ok := False;
6790 if Target.UID <> 0 then
6791 begin // Öåëü åñòü - íàñòðàèâàåì
6792 if (g_GetUIDType(Target.UID) = UID_PLAYER) and
6793 vsPlayer then
6794 begin // Èãðîê
6795 tpla := g_Player_Get(Target.UID);
6796 if tpla <> nil then
6797 with tpla do
6798 begin
6799 if (@FObj) <> nil then
6800 begin
6801 Target.X := FObj.X;
6802 Target.Y := FObj.Y;
6803 end;
6804 end;
6806 Target.cX := Target.X + PLAYER_RECT_CX;
6807 Target.cY := Target.Y + PLAYER_RECT_CY;
6808 Target.Rect := PLAYER_RECT;
6809 Target.Visible := g_TraceVector(x1, y1, Target.cX, Target.cY);
6810 Target.Line := (y1+4 < Target.Y+PLAYER_RECT.Y+PLAYER_RECT.Height) and
6811 (y1-4 > Target.Y+PLAYER_RECT.Y);
6812 Target.IsPlayer := True;
6813 ok := True;
6814 end
6815 else
6816 if (g_GetUIDType(Target.UID) = UID_MONSTER) and
6817 vsMonster then
6818 begin // Ìîíñòð
6819 mon := g_Monsters_ByUID(Target.UID);
6820 if mon <> nil then
6821 begin
6822 Target.X := mon.Obj.X;
6823 Target.Y := mon.Obj.Y;
6825 Target.cX := Target.X + mon.Obj.Rect.X + (mon.Obj.Rect.Width div 2);
6826 Target.cY := Target.Y + mon.Obj.Rect.Y + (mon.Obj.Rect.Height div 2);
6827 Target.Rect := mon.Obj.Rect;
6828 Target.Visible := g_TraceVector(x1, y1, Target.cX, Target.cY);
6829 Target.Line := (y1+4 < Target.Y + mon.Obj.Rect.Y + mon.Obj.Rect.Height) and
6830 (y1-4 > Target.Y + mon.Obj.Rect.Y);
6831 Target.IsPlayer := False;
6832 ok := True;
6833 end;
6834 end;
6835 end;
6837 if not ok then
6838 begin // Öåëè íåò - îáíóëÿåì
6839 Target.X := 0;
6840 Target.Y := 0;
6841 Target.cX := 0;
6842 Target.cY := 0;
6843 Target.Visible := False;
6844 Target.Line := False;
6845 Target.IsPlayer := False;
6846 end;
6848 targets := nil;
6850 // Åñëè öåëü íå âèäèìà èëè íå íà ëèíèè îãíÿ, òî èùåì âñå âîçìîæíûå öåëè:
6851 if (not Target.Line) or (not Target.Visible) then
6852 begin
6853 // Èãðîêè:
6854 if vsPlayer then
6855 for a := 0 to High(gPlayers) do
6856 if (gPlayers[a] <> nil) and (gPlayers[a].alive) and
6857 (gPlayers[a].FUID <> FUID) and
6858 (not SameTeam(FUID, gPlayers[a].FUID)) and
6859 (not gPlayers[a].NoTarget) and
6860 (gPlayers[a].FMegaRulez[MR_INVIS] < gTime) then
6861 begin
6862 if not TargetOnScreen(gPlayers[a].FObj.X + PLAYER_RECT.X,
6863 gPlayers[a].FObj.Y + PLAYER_RECT.Y) then
6864 Continue;
6866 x2 := gPlayers[a].FObj.X + PLAYER_RECT_CX;
6867 y2 := gPlayers[a].FObj.Y + PLAYER_RECT_CY;
6869 // Åñëè èãðîê íà ýêðàíå è íå ïðèêðûò ñòåíîé:
6870 if g_TraceVector(x1, y1, x2, y2) then
6871 begin
6872 // Äîáàâëÿåì ê ñïèñêó âîçìîæíûõ öåëåé:
6873 SetLength(targets, Length(targets)+1);
6874 with targets[High(targets)] do
6875 begin
6876 UID := gPlayers[a].FUID;
6877 X := gPlayers[a].FObj.X;
6878 Y := gPlayers[a].FObj.Y;
6879 cX := x2;
6880 cY := y2;
6881 Rect := PLAYER_RECT;
6882 Dist := g_PatchLength(x1, y1, x2, y2);
6883 Line := (y1+4 < Target.Y+PLAYER_RECT.Y+PLAYER_RECT.Height) and
6884 (y1-4 > Target.Y+PLAYER_RECT.Y);
6885 Visible := True;
6886 IsPlayer := True;
6887 end;
6888 end;
6889 end;
6891 // Ìîíñòðû:
6892 if vsMonster then g_Mons_ForEach(monsUpdate);
6893 end;
6895 // Åñëè åñòü âîçìîæíûå öåëè:
6896 // (Âûáèðàåì ëó÷øóþ, ìåíÿåì îðóæèå è áåæèì ê íåé/îò íåå)
6897 if targets <> nil then
6898 begin
6899 // Âûáèðàåì íàèëó÷øóþ öåëü:
6900 BestTarget := targets[0];
6901 if Length(targets) > 1 then
6902 for a := 1 to High(targets) do
6903 if Compare(BestTarget, targets[a]) = 1 then
6904 BestTarget := targets[a];
6906 // Åñëè ëó÷øàÿ öåëü "âèäíåå" òåêóùåé, òî òåêóùàÿ := ëó÷øàÿ:
6907 if ((not Target.Visible) and BestTarget.Visible and (Target.UID <> BestTarget.UID)) or
6908 ((not Target.Line) and BestTarget.Line and BestTarget.Visible) then
6909 begin
6910 Target := BestTarget;
6912 if (Healthy() = 3) or ((Healthy() = 2)) then
6913 begin // Åñëè çäîðîâû - äîãîíÿåì
6914 if ((RunDirection() = TDirection.D_LEFT) and (Target.X > FObj.X)) then
6915 SetAIFlag('GORIGHT', '1');
6916 if ((RunDirection() = TDirection.D_RIGHT) and (Target.X < FObj.X)) then
6917 SetAIFlag('GOLEFT', '1');
6918 end
6919 else
6920 begin // Åñëè ïîáèòû - óáåãàåì
6921 if ((RunDirection() = TDirection.D_LEFT) and (Target.X < FObj.X)) then
6922 SetAIFlag('GORIGHT', '1');
6923 if ((RunDirection() = TDirection.D_RIGHT) and (Target.X > FObj.X)) then
6924 SetAIFlag('GOLEFT', '1');
6925 end;
6927 // Âûáèðàåì îðóæèå íà îñíîâå ðàññòîÿíèÿ è ïðèîðèòåòîâ:
6928 SelectWeapon(Abs(x1-Target.cX));
6929 end;
6930 end;
6932 // Åñëè åñòü öåëü:
6933 // (Äîãîíÿåì/óáåãàåì, ñòðåëÿåì ïî íàïðàâëåíèþ ê öåëè)
6934 // (Åñëè öåëü äàëåêî, òî õâàòèò ñëåäèòü çà íåé)
6935 if Target.UID <> 0 then
6936 begin
6937 if not TargetOnScreen(Target.X + Target.Rect.X,
6938 Target.Y + Target.Rect.Y) then
6939 begin // Öåëü ñáåæàëà ñ "ýêðàíà"
6940 if (Healthy() = 3) or ((Healthy() = 2)) then
6941 begin // Åñëè çäîðîâû - äîãîíÿåì
6942 if ((RunDirection() = TDirection.D_LEFT) and (Target.X > FObj.X)) then
6943 SetAIFlag('GORIGHT', '1');
6944 if ((RunDirection() = TDirection.D_RIGHT) and (Target.X < FObj.X)) then
6945 SetAIFlag('GOLEFT', '1');
6946 end
6947 else
6948 begin // Åñëè ïîáèòû - çàáûâàåì î öåëè è óáåãàåì
6949 Target.UID := 0;
6950 if ((RunDirection() = TDirection.D_LEFT) and (Target.X < FObj.X)) then
6951 SetAIFlag('GORIGHT', '1');
6952 if ((RunDirection() = TDirection.D_RIGHT) and (Target.X > FObj.X)) then
6953 SetAIFlag('GOLEFT', '1');
6954 end;
6955 end
6956 else
6957 begin // Öåëü ïîêà íà "ýêðàíå"
6958 // Åñëè öåëü íå çàãîðîæåíà ñòåíîé, òî îòìå÷àåì, êîãäà åå âèäåëè:
6959 if g_TraceVector(x1, y1, Target.cX, Target.cY) then
6960 FLastVisible := gTime;
6961 // Åñëè ðàçíèöà âûñîò íå âåëèêà, òî äîãîíÿåì:
6962 if (Abs(FObj.Y-Target.Y) <= 128) then
6963 begin
6964 if ((RunDirection() = TDirection.D_LEFT) and (Target.X > FObj.X)) then
6965 SetAIFlag('GORIGHT', '1');
6966 if ((RunDirection() = TDirection.D_RIGHT) and (Target.X < FObj.X)) then
6967 SetAIFlag('GOLEFT', '1');
6968 end;
6969 end;
6971 // Âûáèðàåì óãîë ââåðõ:
6972 if FDirection = TDirection.D_LEFT then
6973 angle := ANGLE_LEFTUP
6974 else
6975 angle := ANGLE_RIGHTUP;
6977 firew := Trunc(Cos(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
6978 fireh := Trunc(Sin(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
6980 // Åñëè ïðè óãëå ââåðõ ìîæíî ïîïàñòü â ïðèáëèçèòåëüíîå ïîëîæåíèå öåëè:
6981 if g_CollideLine(x1, y1, x1+firew, y1+fireh,
6982 Target.X+Target.Rect.X+GetInterval(FDifficult.DiagPrecision, 128), //96
6983 Target.Y+Target.Rect.Y+GetInterval(FDifficult.DiagPrecision, 128),
6984 Target.Rect.Width, Target.Rect.Height) and
6985 g_TraceVector(x1, y1, Target.cX, Target.cY) then
6986 begin // òî íóæíî ñòðåëÿòü ââåðõ
6987 SetAIFlag('NEEDFIRE', '1');
6988 SetAIFlag('NEEDSEEUP', '1');
6989 end;
6991 // Âûáèðàåì óãîë âíèç:
6992 if FDirection = TDirection.D_LEFT then
6993 angle := ANGLE_LEFTDOWN
6994 else
6995 angle := ANGLE_RIGHTDOWN;
6997 firew := Trunc(Cos(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
6998 fireh := Trunc(Sin(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
7000 // Åñëè ïðè óãëå âíèç ìîæíî ïîïàñòü â ïðèáëèçèòåëüíîå ïîëîæåíèå öåëè:
7001 if g_CollideLine(x1, y1, x1+firew, y1+fireh,
7002 Target.X+Target.Rect.X+GetInterval(FDifficult.DiagPrecision, 128),
7003 Target.Y+Target.Rect.Y+GetInterval(FDifficult.DiagPrecision, 128),
7004 Target.Rect.Width, Target.Rect.Height) and
7005 g_TraceVector(x1, y1, Target.cX, Target.cY) then
7006 begin // òî íóæíî ñòðåëÿòü âíèç
7007 SetAIFlag('NEEDFIRE', '1');
7008 SetAIFlag('NEEDSEEDOWN', '1');
7009 end;
7011 // Åñëè öåëü âèäíî è îíà íà òàêîé æå âûñîòå:
7012 if Target.Visible and
7013 (y1+4 < Target.Y+Target.Rect.Y+Target.Rect.Height) and
7014 (y1-4 > Target.Y+Target.Rect.Y) then
7015 begin
7016 // Åñëè èäåì â ñòîðîíó öåëè, òî íàäî ñòðåëÿòü:
7017 if ((FDirection = TDirection.D_LEFT) and (Target.X < FObj.X)) or
7018 ((FDirection = TDirection.D_RIGHT) and (Target.X > FObj.X)) then
7019 begin // òî íóæíî ñòðåëÿòü âïåðåä
7020 SetAIFlag('NEEDFIRE', '1');
7021 SetAIFlag('NEEDSEEDOWN', '');
7022 SetAIFlag('NEEDSEEUP', '');
7023 end;
7024 // Åñëè öåëü â ïðåäåëàõ "ýêðàíà" è ñëîæíîñòü ïîçâîëÿåò ïðûæêè ñáëèæåíèÿ:
7025 if Abs(FObj.X-Target.X) < Trunc(gPlayerScreenSize.X*0.75) then
7026 if GetRnd(FDifficult.CloseJump) then
7027 begin // òî åñëè ïîâåçåò - ïðûãàåì (îñîáåííî, åñëè áëèçêî)
7028 if Abs(FObj.X-Target.X) < 128 then
7029 a := 4
7030 else
7031 a := 30;
7032 if Random(a) = 0 then
7033 SetAIFlag('NEEDJUMP', '1');
7034 end;
7035 end;
7037 // Åñëè öåëü âñå åùå åñòü:
7038 if Target.UID <> 0 then
7039 if gTime-FLastVisible > 2000 then // Åñëè âèäåëè äàâíî
7040 Target.UID := 0 // òî çàáûòü öåëü
7041 else // Åñëè âèäåëè íåäàâíî
7042 begin // íî öåëü óáèëè
7043 if Target.IsPlayer then
7044 begin // Öåëü - èãðîê
7045 pla := g_Player_Get(Target.UID);
7046 if (pla = nil) or (not pla.alive) or pla.NoTarget or
7047 (pla.FMegaRulez[MR_INVIS] >= gTime) then
7048 Target.UID := 0; // òî çàáûòü öåëü
7049 end
7050 else
7051 begin // Öåëü - ìîíñòð
7052 mon := g_Monsters_ByUID(Target.UID);
7053 if (mon = nil) or (not mon.alive) then
7054 Target.UID := 0; // òî çàáûòü öåëü
7055 end;
7056 end;
7057 end; // if Target.UID <> 0
7059 FTargetUID := Target.UID;
7061 // Åñëè âîçìîæíûõ öåëåé íåò:
7062 // (Àòàêà ÷åãî-íèáóäü ñëåâà èëè ñïðàâà)
7063 if targets = nil then
7064 if GetAIFlag('ATTACKLEFT') <> '' then
7065 begin // Åñëè íóæíî àòàêîâàòü íàëåâî
7066 RemoveAIFlag('ATTACKLEFT');
7068 SetAIFlag('NEEDJUMP', '1');
7070 if RunDirection() = TDirection.D_RIGHT then
7071 begin // Èäåì íå â òó ñòîðîíó
7072 if (Healthy() > 1) and GetRnd(FDifficult.InvisFire) then
7073 begin // Åñëè çäîðîâû, òî, âîçìîæíî, ñòðåëÿåì áåæèì âëåâî è ñòðåëÿåì
7074 SetAIFlag('NEEDFIRE', '1');
7075 SetAIFlag('GOLEFT', '1');
7076 end;
7077 end
7078 else
7079 begin // Èäåì â íóæíóþ ñòîðîíó
7080 if GetRnd(FDifficult.InvisFire) then // Âîçìîæíî, ñòðåëÿåì âñëåïóþ
7081 SetAIFlag('NEEDFIRE', '1');
7082 if Healthy() <= 1 then // Ïîáèòû - óáåãàåì
7083 SetAIFlag('GORIGHT', '1');
7084 end;
7085 end
7086 else
7087 if GetAIFlag('ATTACKRIGHT') <> '' then
7088 begin // Åñëè íóæíî àòàêîâàòü íàïðàâî
7089 RemoveAIFlag('ATTACKRIGHT');
7091 SetAIFlag('NEEDJUMP', '1');
7093 if RunDirection() = TDirection.D_LEFT then
7094 begin // Èäåì íå â òó ñòîðîíó
7095 if (Healthy() > 1) and GetRnd(FDifficult.InvisFire) then
7096 begin // Åñëè çäîðîâû, òî, âîçìîæíî, áåæèì âïðàâî è ñòðåëÿåì
7097 SetAIFlag('NEEDFIRE', '1');
7098 SetAIFlag('GORIGHT', '1');
7099 end;
7100 end
7101 else
7102 begin
7103 if GetRnd(FDifficult.InvisFire) then // Âîçìîæíî, ñòðåëÿåì âñëåïóþ
7104 SetAIFlag('NEEDFIRE', '1');
7105 if Healthy() <= 1 then // Ïîáèòû - óáåãàåì
7106 SetAIFlag('GOLEFT', '1');
7107 end;
7108 end;
7110 //HACK! (does it belongs there?)
7111 RealizeCurrentWeapon();
7113 // Åñëè åñòü âîçìîæíûå öåëè:
7114 // (Ñòðåëÿåì ïî íàïðàâëåíèþ ê öåëÿì)
7115 if (targets <> nil) and (GetAIFlag('NEEDFIRE') <> '') then
7116 for a := 0 to High(targets) do
7117 begin
7118 // Åñëè ìîæåì ñòðåëÿòü ïî äèàãîíàëè:
7119 if GetRnd(FDifficult.DiagFire) then
7120 begin
7121 // Èùåì öåëü ñâåðõó è ñòðåëÿåì, åñëè åñòü:
7122 if FDirection = TDirection.D_LEFT then
7123 angle := ANGLE_LEFTUP
7124 else
7125 angle := ANGLE_RIGHTUP;
7127 firew := Trunc(Cos(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
7128 fireh := Trunc(Sin(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
7130 if g_CollideLine(x1, y1, x1+firew, y1+fireh,
7131 targets[a].X+targets[a].Rect.X+GetInterval(FDifficult.DiagPrecision, 128),
7132 targets[a].Y+targets[a].Rect.Y+GetInterval(FDifficult.DiagPrecision, 128),
7133 targets[a].Rect.Width, targets[a].Rect.Height) and
7134 g_TraceVector(x1, y1, targets[a].cX, targets[a].cY) then
7135 begin
7136 SetAIFlag('NEEDFIRE', '1');
7137 SetAIFlag('NEEDSEEUP', '1');
7138 end;
7140 // Èùåì öåëü ñíèçó è ñòðåëÿåì, åñëè åñòü:
7141 if FDirection = TDirection.D_LEFT then
7142 angle := ANGLE_LEFTDOWN
7143 else
7144 angle := ANGLE_RIGHTDOWN;
7146 firew := Trunc(Cos(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
7147 fireh := Trunc(Sin(DegToRad(-angle))*gPlayerScreenSize.X*0.6);
7149 if g_CollideLine(x1, y1, x1+firew, y1+fireh,
7150 targets[a].X+targets[a].Rect.X+GetInterval(FDifficult.DiagPrecision, 128),
7151 targets[a].Y+targets[a].Rect.Y+GetInterval(FDifficult.DiagPrecision, 128),
7152 targets[a].Rect.Width, targets[a].Rect.Height) and
7153 g_TraceVector(x1, y1, targets[a].cX, targets[a].cY) then
7154 begin
7155 SetAIFlag('NEEDFIRE', '1');
7156 SetAIFlag('NEEDSEEDOWN', '1');
7157 end;
7158 end;
7160 // Åñëè öåëü "ïåðåä íîñîì", òî ñòðåëÿåì:
7161 if targets[a].Line and targets[a].Visible and
7162 (((FDirection = TDirection.D_LEFT) and (targets[a].X < FObj.X)) or
7163 ((FDirection = TDirection.D_RIGHT) and (targets[a].X > FObj.X))) then
7164 begin
7165 SetAIFlag('NEEDFIRE', '1');
7166 Break;
7167 end;
7168 end;
7170 // Åñëè ëåòèò ïóëÿ, òî, âîçìîæíî, ïîäïðûãèâàåì:
7171 if g_Weapon_Danger(FUID, FObj.X+PLAYER_RECT.X, FObj.Y+PLAYER_RECT.Y,
7172 PLAYER_RECT.Width, PLAYER_RECT.Height,
7173 40+GetInterval(FDifficult.Cover, 40)) then
7174 SetAIFlag('NEEDJUMP', '1');
7176 // Åñëè êîí÷èëèñü ïàòîðíû, òî íóæíî ñìåíèòü îðóæèå:
7177 ammo := GetAmmoByWeapon(FCurrWeap);
7178 if ((FCurrWeap = WEAPON_SHOTGUN2) and (ammo < 2)) or
7179 ((FCurrWeap = WEAPON_BFG) and (ammo < 40)) or
7180 (ammo = 0) then
7181 SetAIFlag('SELECTWEAPON', '1');
7183 // Åñëè íóæíî ñìåíèòü îðóæèå, òî âûáèðàåì íóæíîå:
7184 if GetAIFlag('SELECTWEAPON') = '1' then
7185 begin
7186 SelectWeapon(-1);
7187 RemoveAIFlag('SELECTWEAPON');
7188 end;
7189 end;
7191 procedure TBot.Update();
7192 var
7193 EnableAI: Boolean;
7194 begin
7195 if not FAlive then
7196 begin // Respawn
7197 ReleaseKeys();
7198 PressKey(KEY_UP);
7199 end
7200 else
7201 begin
7202 EnableAI := True;
7204 // Ïðîâåðÿåì, îòêëþ÷¸í ëè AI áîòîâ
7205 if (g_debug_BotAIOff = 1) and (Team = TEAM_RED) then
7206 EnableAI := False;
7207 if (g_debug_BotAIOff = 2) and (Team = TEAM_BLUE) then
7208 EnableAI := False;
7209 if g_debug_BotAIOff = 3 then
7210 EnableAI := False;
7212 if EnableAI then
7213 begin
7214 UpdateMove();
7215 UpdateCombat();
7216 end
7217 else
7218 begin
7219 RealizeCurrentWeapon();
7220 end;
7221 end;
7223 inherited Update();
7224 end;
7226 procedure TBot.ReleaseKey(Key: Byte);
7227 begin
7228 with FKeys[Key] do
7229 begin
7230 Pressed := False;
7231 Time := 0;
7232 end;
7233 end;
7235 function TBot.KeyPressed(Key: Word): Boolean;
7236 begin
7237 Result := FKeys[Key].Pressed;
7238 end;
7240 function TBot.GetAIFlag(aName: String20): String20;
7241 var
7242 a: Integer;
7243 begin
7244 Result := '';
7246 aName := LowerCase(aName);
7248 if FAIFlags <> nil then
7249 for a := 0 to High(FAIFlags) do
7250 if LowerCase(FAIFlags[a].Name) = aName then
7251 begin
7252 Result := FAIFlags[a].Value;
7253 Break;
7254 end;
7255 end;
7257 procedure TBot.RemoveAIFlag(aName: String20);
7258 var
7259 a, b: Integer;
7260 begin
7261 if FAIFlags = nil then Exit;
7263 aName := LowerCase(aName);
7265 for a := 0 to High(FAIFlags) do
7266 if LowerCase(FAIFlags[a].Name) = aName then
7267 begin
7268 if a <> High(FAIFlags) then
7269 for b := a to High(FAIFlags)-1 do
7270 FAIFlags[b] := FAIFlags[b+1];
7272 SetLength(FAIFlags, Length(FAIFlags)-1);
7273 Break;
7274 end;
7275 end;
7277 procedure TBot.SetAIFlag(aName, fValue: String20);
7278 var
7279 a: Integer;
7280 ok: Boolean;
7281 begin
7282 a := 0;
7283 ok := False;
7285 aName := LowerCase(aName);
7287 if FAIFlags <> nil then
7288 for a := 0 to High(FAIFlags) do
7289 if LowerCase(FAIFlags[a].Name) = aName then
7290 begin
7291 ok := True;
7292 Break;
7293 end;
7295 if ok then FAIFlags[a].Value := fValue
7296 else
7297 begin
7298 SetLength(FAIFlags, Length(FAIFlags)+1);
7299 with FAIFlags[High(FAIFlags)] do
7300 begin
7301 Name := aName;
7302 Value := fValue;
7303 end;
7304 end;
7305 end;
7307 procedure TBot.UpdateMove;
7309 procedure GoLeft(Time: Word = 1);
7310 begin
7311 ReleaseKey(KEY_LEFT);
7312 ReleaseKey(KEY_RIGHT);
7313 PressKey(KEY_LEFT, Time);
7314 SetDirection(TDirection.D_LEFT);
7315 end;
7317 procedure GoRight(Time: Word = 1);
7318 begin
7319 ReleaseKey(KEY_LEFT);
7320 ReleaseKey(KEY_RIGHT);
7321 PressKey(KEY_RIGHT, Time);
7322 SetDirection(TDirection.D_RIGHT);
7323 end;
7325 function Rnd(a: Word): Boolean;
7326 begin
7327 Result := Random(a) = 0;
7328 end;
7330 procedure Turn(Time: Word = 1200);
7331 begin
7332 if RunDirection() = TDirection.D_LEFT then GoRight(Time) else GoLeft(Time);
7333 end;
7335 procedure Stop();
7336 begin
7337 ReleaseKey(KEY_LEFT);
7338 ReleaseKey(KEY_RIGHT);
7339 end;
7341 function CanRunLeft(): Boolean;
7342 begin
7343 Result := not CollideLevel(-1, 0);
7344 end;
7346 function CanRunRight(): Boolean;
7347 begin
7348 Result := not CollideLevel(1, 0);
7349 end;
7351 function CanRun(): Boolean;
7352 begin
7353 if RunDirection() = TDirection.D_LEFT then Result := CanRunLeft() else Result := CanRunRight();
7354 end;
7356 procedure Jump(Time: Word = 30);
7357 begin
7358 PressKey(KEY_JUMP, Time);
7359 end;
7361 function NearHole(): Boolean;
7362 var
7363 x, sx: Integer;
7364 begin
7365 { TODO 5 : Ëåñòíèöû }
7366 sx := IfThen(RunDirection() = TDirection.D_LEFT, -1, 1);
7367 for x := 1 to PLAYER_RECT.Width do
7368 if (not StayOnStep(x*sx, 0)) and
7369 (not CollideLevel(x*sx, PLAYER_RECT.Height)) and
7370 (not CollideLevel(x*sx, PLAYER_RECT.Height*2)) then
7371 begin
7372 Result := True;
7373 Exit;
7374 end;
7376 Result := False;
7377 end;
7379 function BorderHole(): Boolean;
7380 var
7381 x, sx, xx: Integer;
7382 begin
7383 { TODO 5 : Ëåñòíèöû }
7384 sx := IfThen(RunDirection() = TDirection.D_LEFT, -1, 1);
7385 for x := 1 to PLAYER_RECT.Width do
7386 if (not StayOnStep(x*sx, 0)) and
7387 (not CollideLevel(x*sx, PLAYER_RECT.Height)) and
7388 (not CollideLevel(x*sx, PLAYER_RECT.Height*2)) then
7389 begin
7390 for xx := x to x+32 do
7391 if CollideLevel(xx*sx, PLAYER_RECT.Height) then
7392 begin
7393 Result := True;
7394 Exit;
7395 end;
7396 end;
7398 Result := False;
7399 end;
7401 function NearDeepHole(): Boolean;
7402 var
7403 x, sx, y: Integer;
7404 begin
7405 Result := False;
7407 sx := IfThen(RunDirection() = TDirection.D_LEFT, -1, 1);
7408 y := 3;
7410 for x := 1 to PLAYER_RECT.Width do
7411 if (not StayOnStep(x*sx, 0)) and
7412 (not CollideLevel(x*sx, PLAYER_RECT.Height)) and
7413 (not CollideLevel(x*sx, PLAYER_RECT.Height*2)) then
7414 begin
7415 while FObj.Y+y*PLAYER_RECT.Height < gMapInfo.Height do
7416 begin
7417 if CollideLevel(x*sx, PLAYER_RECT.Height*y) then Exit;
7418 y := y+1;
7419 end;
7421 Result := True;
7422 end else Result := False;
7423 end;
7425 function OverDeepHole(): Boolean;
7426 var
7427 y: Integer;
7428 begin
7429 Result := False;
7431 y := 1;
7432 while FObj.Y+y*PLAYER_RECT.Height < gMapInfo.Height do
7433 begin
7434 if CollideLevel(0, PLAYER_RECT.Height*y) then Exit;
7435 y := y+1;
7436 end;
7438 Result := True;
7439 end;
7441 function OnGround(): Boolean;
7442 begin
7443 Result := StayOnStep(0, 0) or CollideLevel(0, 1);
7444 end;
7446 function OnLadder(): Boolean;
7447 begin
7448 Result := FullInStep(0, 0);
7449 end;
7451 function BelowLadder(): Boolean;
7452 begin
7453 Result := (FullInStep(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -PLAYER_RECT.Height) and
7454 not CollideLevel(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -PLAYER_RECT.Height)) or
7455 (FullInStep(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -BOT_MAXJUMP) and
7456 not CollideLevel(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -BOT_MAXJUMP));
7457 end;
7459 function BelowLiftUp(): Boolean;
7460 begin
7461 Result := ((FullInLift(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -PLAYER_RECT.Height) = -1) and
7462 not CollideLevel(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -PLAYER_RECT.Height)) or
7463 ((FullInLift(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -BOT_MAXJUMP) = -1) and
7464 not CollideLevel(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*(PLAYER_RECT.Width div 2), -BOT_MAXJUMP));
7465 end;
7467 function OnTopLift(): Boolean;
7468 begin
7469 Result := (FullInLift(0, 0) = -1) and (FullInLift(0, -32) = 0);
7470 end;
7472 function CanJumpOver(): Boolean;
7473 var
7474 sx, y: Integer;
7475 begin
7476 sx := IfThen(RunDirection() = TDirection.D_LEFT, -1, 1);
7478 Result := False;
7480 if not CollideLevel(sx, 0) then Exit;
7482 for y := 1 to BOT_MAXJUMP do
7483 if CollideLevel(0, -y) then Exit else
7484 if not CollideLevel(sx, -y) then
7485 begin
7486 Result := True;
7487 Exit;
7488 end;
7489 end;
7491 function CanJumpUp(Dist: ShortInt): Boolean;
7492 var
7493 y, yy: Integer;
7494 c: Boolean;
7495 begin
7496 Result := False;
7498 if CollideLevel(Dist, 0) then Exit;
7500 c := False;
7501 for y := 0 to BOT_MAXJUMP do
7502 if CollideLevel(Dist, -y) then
7503 begin
7504 c := True;
7505 Break;
7506 end;
7508 if not c then Exit;
7510 c := False;
7511 for yy := y+1 to BOT_MAXJUMP do
7512 if not CollideLevel(Dist, -yy) then
7513 begin
7514 c := True;
7515 Break;
7516 end;
7518 if not c then Exit;
7520 c := False;
7521 for y := 0 to BOT_MAXJUMP do
7522 if CollideLevel(0, -y) then
7523 begin
7524 c := True;
7525 Break;
7526 end;
7528 if c then Exit;
7530 if y < yy then Exit;
7532 Result := True;
7533 end;
7535 function IsSafeTrigger(): Boolean;
7536 var
7537 a: Integer;
7538 begin
7539 Result := True;
7540 if gTriggers = nil then
7541 Exit;
7542 for a := 0 to High(gTriggers) do
7543 if Collide(gTriggers[a].X,
7544 gTriggers[a].Y,
7545 gTriggers[a].Width,
7546 gTriggers[a].Height) and
7547 (gTriggers[a].TriggerType in [TRIGGER_EXIT, TRIGGER_CLOSEDOOR,
7548 TRIGGER_CLOSETRAP, TRIGGER_TRAP,
7549 TRIGGER_PRESS, TRIGGER_ON, TRIGGER_OFF,
7550 TRIGGER_ONOFF, TRIGGER_SPAWNMONSTER,
7551 TRIGGER_DAMAGE, TRIGGER_SHOT]) then
7552 Result := False;
7553 end;
7555 begin
7556 // Âîçìîæíî, íàæèìàåì êíîïêó:
7557 if Rnd(16) and IsSafeTrigger() then
7558 PressKey(KEY_OPEN);
7560 // Åñëè ïîä ëèôòîì èëè ñòóïåíüêàìè, òî, âîçìîæíî, ïðûãàåì:
7561 if OnLadder() or ((BelowLadder() or BelowLiftUp()) and Rnd(8)) then
7562 begin
7563 ReleaseKey(KEY_LEFT);
7564 ReleaseKey(KEY_RIGHT);
7565 Jump();
7566 end;
7568 // Èäåì âëåâî, åñëè íàäî áûëî:
7569 if GetAIFlag('GOLEFT') <> '' then
7570 begin
7571 RemoveAIFlag('GOLEFT');
7572 if CanRunLeft() then
7573 GoLeft(360);
7574 end;
7576 // Èäåì âïðàâî, åñëè íàäî áûëî:
7577 if GetAIFlag('GORIGHT') <> '' then
7578 begin
7579 RemoveAIFlag('GORIGHT');
7580 if CanRunRight() then
7581 GoRight(360);
7582 end;
7584 // Åñëè âûëåòåëè çà êàðòó, òî ïðîáóåì âåðíóòüñÿ:
7585 if FObj.X < -32 then
7586 GoRight(360)
7587 else
7588 if FObj.X+32 > gMapInfo.Width then
7589 GoLeft(360);
7591 // Ïðûãàåì, åñëè íàäî áûëî:
7592 if GetAIFlag('NEEDJUMP') <> '' then
7593 begin
7594 Jump(0);
7595 RemoveAIFlag('NEEDJUMP');
7596 end;
7598 // Ñìîòðèì ââåðõ, åñëè íàäî áûëî:
7599 if GetAIFlag('NEEDSEEUP') <> '' then
7600 begin
7601 ReleaseKey(KEY_UP);
7602 ReleaseKey(KEY_DOWN);
7603 PressKey(KEY_UP, 20);
7604 RemoveAIFlag('NEEDSEEUP');
7605 end;
7607 // Ñìîòðèì âíèç, åñëè íàäî áûëî:
7608 if GetAIFlag('NEEDSEEDOWN') <> '' then
7609 begin
7610 ReleaseKey(KEY_UP);
7611 ReleaseKey(KEY_DOWN);
7612 PressKey(KEY_DOWN, 20);
7613 RemoveAIFlag('NEEDSEEDOWN');
7614 end;
7616 // Åñëè íóæíî áûëî â äûðó è ìû íå íà çåìëå, òî ïîêîðíî ëåòèì:
7617 if GetAIFlag('GOINHOLE') <> '' then
7618 if not OnGround() then
7619 begin
7620 ReleaseKey(KEY_LEFT);
7621 ReleaseKey(KEY_RIGHT);
7622 RemoveAIFlag('GOINHOLE');
7623 SetAIFlag('FALLINHOLE', '1');
7624 end;
7626 // Åñëè ïàäàëè è äîñòèãëè çåìëè, òî õâàòèò ïàäàòü:
7627 if GetAIFlag('FALLINHOLE') <> '' then
7628 if OnGround() then
7629 RemoveAIFlag('FALLINHOLE');
7631 // Åñëè ëåòåëè ïðÿìî è ñåé÷àñ íå íà ëåñòíèöå èëè íà âåðøèíå ëèôòà, òî îòõîäèì â ñòîðîíó:
7632 if not (KeyPressed(KEY_LEFT) or KeyPressed(KEY_RIGHT)) then
7633 if GetAIFlag('FALLINHOLE') = '' then
7634 if (not OnLadder()) or (FObj.Vel.Y >= 0) or (OnTopLift()) then
7635 if Rnd(2) then
7636 GoLeft(360)
7637 else
7638 GoRight(360);
7640 // Åñëè íà çåìëå è ìîæíî ïîäïðûãíóòü, òî, âîçìîæíî, ïðûãàåì:
7641 if OnGround() and
7642 CanJumpUp(IfThen(RunDirection() = TDirection.D_LEFT, -1, 1)*32) and
7643 Rnd(8) then
7644 Jump();
7646 // Åñëè íà çåìëå è âîçëå äûðû (ãëóáèíà > 2 ðîñòîâ èãðîêà):
7647 if OnGround() and NearHole() then
7648 if NearDeepHole() then // Åñëè ýòî áåçäíà
7649 case Random(6) of
7650 0..3: Turn(); // Áåæèì îáðàòíî
7651 4: Jump(); // Ïðûãàåì
7652 5: begin // Ïðûãàåì îáðàòíî
7653 Turn();
7654 Jump();
7655 end;
7656 end
7657 else // Ýòî íå áåçäíà è ìû åùå íå ëåòèì òóäà
7658 if GetAIFlag('GOINHOLE') = '' then
7659 case Random(6) of
7660 0: Turn(); // Íå íóæíî òóäà
7661 1: Jump(); // Âäðóã ïîâåçåò - ïðûãàåì
7662 else // Åñëè ÿìà ñ ãðàíèöåé, òî ïðè ñëó÷àå ìîæíî òóäà ïðûãíóòü
7663 if BorderHole() then
7664 SetAIFlag('GOINHOLE', '1');
7665 end;
7667 // Åñëè íà çåìëå, íî íåêóäà èäòè:
7668 if (not CanRun()) and OnGround() then
7669 begin
7670 // Åñëè ìû íà ëåñòíèöå èëè ìîæíî ïåðåïðûãíóòü, òî ïðûãàåì:
7671 if CanJumpOver() or OnLadder() then
7672 Jump()
7673 else // èíà÷å ïîïûòàåìñÿ â äðóãóþ ñòîðîíó
7674 if Random(2) = 0 then
7675 begin
7676 if IsSafeTrigger() then
7677 PressKey(KEY_OPEN);
7678 end else
7679 Turn();
7680 end;
7682 // Îñòàëîñü ìàëî âîçäóõà:
7683 if FAir < 36 * 2 then
7684 Jump(20);
7686 // Âûáèðàåìñÿ èç êèñëîòû, åñëè íåò êîñòþìà, îáîæãëèñü, èëè ìàëî çäîðîâüÿ:
7687 if (FMegaRulez[MR_SUIT] < gTime) and ((FLastHit = HIT_ACID) or (Healthy() <= 1)) then
7688 if BodyInAcid(0, 0) then
7689 Jump();
7690 end;
7692 function TBot.FullInStep(XInc, YInc: Integer): Boolean;
7693 begin
7694 Result := g_Map_CollidePanel(FObj.X+PLAYER_RECT.X+XInc, FObj.Y+PLAYER_RECT.Y+YInc,
7695 PLAYER_RECT.Width, PLAYER_RECT.Height, PANEL_STEP, False);
7696 end;
7698 {function TBot.NeedItem(Item: Byte): Byte;
7699 begin
7700 Result := 4;
7701 end;}
7703 procedure TBot.SelectWeapon(Dist: Integer);
7704 var
7705 a: Integer;
7707 function HaveAmmo(weapon: Byte): Boolean;
7708 begin
7709 case weapon of
7710 WEAPON_PISTOL: Result := FAmmo[A_BULLETS] >= 1;
7711 WEAPON_SHOTGUN1: Result := FAmmo[A_SHELLS] >= 1;
7712 WEAPON_SHOTGUN2: Result := FAmmo[A_SHELLS] >= 2;
7713 WEAPON_CHAINGUN: Result := FAmmo[A_BULLETS] >= 10;
7714 WEAPON_ROCKETLAUNCHER: Result := FAmmo[A_ROCKETS] >= 1;
7715 WEAPON_PLASMA: Result := FAmmo[A_CELLS] >= 10;
7716 WEAPON_BFG: Result := FAmmo[A_CELLS] >= 40;
7717 WEAPON_SUPERPULEMET: Result := FAmmo[A_SHELLS] >= 1;
7718 WEAPON_FLAMETHROWER: Result := FAmmo[A_FUEL] >= 1;
7719 else Result := True;
7720 end;
7721 end;
7723 begin
7724 if Dist = -1 then Dist := BOT_LONGDIST;
7726 if Dist > BOT_LONGDIST then
7727 begin // Äàëüíèé áîé
7728 for a := 0 to 9 do
7729 if FWeapon[FDifficult.WeaponPrior[a]] and HaveAmmo(FDifficult.WeaponPrior[a]) then
7730 begin
7731 FSelectedWeapon := FDifficult.WeaponPrior[a];
7732 Break;
7733 end;
7734 end
7735 else //if Dist > BOT_UNSAFEDIST then
7736 begin // Áëèæíèé áîé
7737 for a := 0 to 9 do
7738 if FWeapon[FDifficult.CloseWeaponPrior[a]] and HaveAmmo(FDifficult.CloseWeaponPrior[a]) then
7739 begin
7740 FSelectedWeapon := FDifficult.CloseWeaponPrior[a];
7741 Break;
7742 end;
7743 end;
7744 { else
7745 begin
7746 for a := 0 to 9 do
7747 if FWeapon[FDifficult.SafeWeaponPrior[a]] and HaveAmmo(FDifficult.SafeWeaponPrior[a]) then
7748 begin
7749 FSelectedWeapon := FDifficult.SafeWeaponPrior[a];
7750 Break;
7751 end;
7752 end;}
7753 end;
7755 function TBot.PickItem(ItemType: Byte; force: Boolean; var remove: Boolean): Boolean;
7756 begin
7757 Result := inherited PickItem(ItemType, force, remove);
7759 if Result then SetAIFlag('SELECTWEAPON', '1');
7760 end;
7762 function TBot.Heal(value: Word; Soft: Boolean): Boolean;
7763 begin
7764 Result := inherited Heal(value, Soft);
7765 end;
7767 function TBot.Healthy(): Byte;
7768 begin
7769 if FMegaRulez[MR_INVUL] >= gTime then Result := 3
7770 else if (FHealth > 80) or ((FHealth > 50) and (FArmor > 20)) then Result := 3
7771 else if (FHealth > 50) then Result := 2
7772 else if (FHealth > 20) then Result := 1
7773 else Result := 0;
7774 end;
7776 function TBot.TargetOnScreen(TX, TY: Integer): Boolean;
7777 begin
7778 Result := (Abs(FObj.X-TX) <= Trunc(gPlayerScreenSize.X*0.6)) and
7779 (Abs(FObj.Y-TY) <= Trunc(gPlayerScreenSize.Y*0.6));
7780 end;
7782 procedure TBot.OnDamage(Angle: SmallInt);
7783 var
7784 pla: TPlayer;
7785 mon: TMonster;
7786 ok: Boolean;
7787 begin
7788 inherited;
7790 if (Angle = 0) or (Angle = 180) then
7791 begin
7792 ok := False;
7793 if (g_GetUIDType(FLastSpawnerUID) = UID_PLAYER) and
7794 LongBool(gGameSettings.Options and GAME_OPTION_BOTVSPLAYER) then
7795 begin // Èãðîê
7796 pla := g_Player_Get(FLastSpawnerUID);
7797 ok := not TargetOnScreen(pla.FObj.X + PLAYER_RECT.X,
7798 pla.FObj.Y + PLAYER_RECT.Y);
7799 end
7800 else
7801 if (g_GetUIDType(FLastSpawnerUID) = UID_MONSTER) and
7802 LongBool(gGameSettings.Options and GAME_OPTION_BOTVSMONSTER) then
7803 begin // Ìîíñòð
7804 mon := g_Monsters_ByUID(FLastSpawnerUID);
7805 ok := not TargetOnScreen(mon.Obj.X + mon.Obj.Rect.X,
7806 mon.Obj.Y + mon.Obj.Rect.Y);
7807 end;
7809 if ok then
7810 if Angle = 0 then
7811 SetAIFlag('ATTACKLEFT', '1')
7812 else
7813 SetAIFlag('ATTACKRIGHT', '1');
7814 end;
7815 end;
7817 function TBot.RunDirection(): TDirection;
7818 begin
7819 if Abs(Vel.X) >= 1 then
7820 begin
7821 if Vel.X > 0 then Result := TDirection.D_RIGHT else Result := TDirection.D_LEFT;
7822 end else
7823 Result := FDirection;
7824 end;
7826 function TBot.GetRnd(a: Byte): Boolean;
7827 begin
7828 if a = 0 then Result := False
7829 else if a = 255 then Result := True
7830 else Result := Random(256) > 255-a;
7831 end;
7833 function TBot.GetInterval(a: Byte; radius: SmallInt): SmallInt;
7834 begin
7835 Result := Round((255-a)/255*radius*(Random(2)-1));
7836 end;
7839 procedure TDifficult.save (st: TStream);
7840 begin
7841 utils.writeInt(st, Byte(DiagFire));
7842 utils.writeInt(st, Byte(InvisFire));
7843 utils.writeInt(st, Byte(DiagPrecision));
7844 utils.writeInt(st, Byte(FlyPrecision));
7845 utils.writeInt(st, Byte(Cover));
7846 utils.writeInt(st, Byte(CloseJump));
7847 st.WriteBuffer(WeaponPrior[Low(WeaponPrior)], sizeof(WeaponPrior));
7848 st.WriteBuffer(CloseWeaponPrior[Low(CloseWeaponPrior)], sizeof(CloseWeaponPrior));
7849 end;
7851 procedure TDifficult.load (st: TStream);
7852 begin
7853 DiagFire := utils.readByte(st);
7854 InvisFire := utils.readByte(st);
7855 DiagPrecision := utils.readByte(st);
7856 FlyPrecision := utils.readByte(st);
7857 Cover := utils.readByte(st);
7858 CloseJump := utils.readByte(st);
7859 st.ReadBuffer(WeaponPrior[Low(WeaponPrior)], sizeof(WeaponPrior));
7860 st.ReadBuffer(CloseWeaponPrior[Low(CloseWeaponPrior)], sizeof(CloseWeaponPrior));
7861 end;
7864 procedure TBot.SaveState (st: TStream);
7865 var
7866 i: Integer;
7867 dw: Integer;
7868 begin
7869 inherited SaveState(st);
7870 utils.writeSign(st, 'BOT0');
7871 // Âûáðàííîå îðóæèå
7872 utils.writeInt(st, Byte(FSelectedWeapon));
7873 // UID öåëè
7874 utils.writeInt(st, Word(FTargetUID));
7875 // Âðåìÿ ïîòåðè öåëè
7876 utils.writeInt(st, LongWord(FLastVisible));
7877 // Êîëè÷åñòâî ôëàãîâ ÈÈ
7878 dw := Length(FAIFlags);
7879 utils.writeInt(st, LongInt(dw));
7880 // Ôëàãè ÈÈ
7881 for i := 0 to dw-1 do
7882 begin
7883 utils.writeStr(st, FAIFlags[i].Name, 20);
7884 utils.writeStr(st, FAIFlags[i].Value, 20);
7885 end;
7886 // Íàñòðîéêè ñëîæíîñòè
7887 FDifficult.save(st);
7888 end;
7891 procedure TBot.LoadState (st: TStream);
7892 var
7893 i: Integer;
7894 dw: Integer;
7895 begin
7896 inherited LoadState(st);
7897 if not utils.checkSign(st, 'BOT0') then raise XStreamError.Create('invalid bot signature');
7898 // Âûáðàííîå îðóæèå
7899 FSelectedWeapon := utils.readByte(st);
7900 // UID öåëè
7901 FTargetUID := utils.readWord(st);
7902 // Âðåìÿ ïîòåðè öåëè
7903 FLastVisible := utils.readLongWord(st);
7904 // Êîëè÷åñòâî ôëàãîâ ÈÈ
7905 dw := utils.readLongInt(st);
7906 if (dw < 0) or (dw > 16384) then raise XStreamError.Create('invalid number of bot AI flags');
7907 SetLength(FAIFlags, dw);
7908 // Ôëàãè ÈÈ
7909 for i := 0 to dw-1 do
7910 begin
7911 FAIFlags[i].Name := utils.readStr(st, 20);
7912 FAIFlags[i].Value := utils.readStr(st, 20);
7913 end;
7914 // Íàñòðîéêè ñëîæíîñòè
7915 FDifficult.load(st);
7916 end;
7919 begin
7920 conRegVar('cheat_berserk_autoswitch', @gBerserkAutoswitch, 'autoswitch to fist when berserk pack taken', '', true, true);
7921 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');
7922 conRegVar('player_indicator_style', @gPlayerIndicatorStyle, 'Visual appearance of indicator', 'Visual appearance of indicator');
7923 end.