1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE ../shared/a_modes.inc}
20 uses e_msg
, g_net
, g_triggers
, Classes
, SysUtils
, md5
;
64 NET_MSG_RCON_AUTH
= 191;
65 NET_MSG_RCON_CMD
= 192;
66 NET_MSG_TIME_SYNC
= 194;
67 NET_MSG_VOTE_EVENT
= 195;
70 NET_MSG_MAP_REQUEST = 201;
71 NET_MSG_MAP_RESPONSE = 202;
72 NET_MSG_RES_REQUEST = 203;
73 NET_MSG_RES_RESPONSE = 204;
97 NET_EV_CHANGE_TEAM
= 3;
98 NET_EV_PLAYER_KICK
= 4;
99 NET_EV_PLAYER_BAN
= 5;
100 NET_EV_LMS_WARMUP
= 6;
101 NET_EV_LMS_SURVIVOR
= 7;
105 NET_EV_SCORE_MSG
= 11;
106 NET_EV_LMS_START
= 12;
108 NET_EV_TLMS_WIN
= 14;
109 NET_EV_LMS_LOSE
= 15;
110 NET_EV_LMS_DRAW
= 16;
111 NET_EV_KILLCOMBO
= 17;
112 NET_EV_PLAYER_TOUCH
= 18;
114 NET_EV_INTER_READY
= 20;
121 NET_VE_INPROGRESS
= 6;
128 NET_CHEAT_SUICIDE
= 1;
129 NET_CHEAT_SPECTATE
= 2;
132 NET_MAX_DIFFTIME
= 5000 div 36;
136 procedure MH_ProcessFirstSpawn (C
: pTNetClient
);
138 procedure MH_RECV_Info(C
: pTNetClient
; var M
: TMsg
);
139 procedure MH_RECV_Chat(C
: pTNetClient
; var M
: TMsg
);
140 procedure MH_RECV_FullStateRequest(C
: pTNetClient
; var M
: TMsg
);
141 function MH_RECV_PlayerPos(C
: pTNetClient
; var M
: TMsg
): Word;
142 procedure MH_RECV_PlayerSettings(C
: pTNetClient
; var M
: TMsg
);
143 procedure MH_RECV_CheatRequest(C
: pTNetClient
; var M
: TMsg
);
144 procedure MH_RECV_RCONPassword(C
: pTNetClient
; var M
: TMsg
);
145 procedure MH_RECV_RCONCommand(C
: pTNetClient
; var M
: TMsg
);
146 //procedure MH_RECV_MapRequest(C: pTNetClient; var M: TMsg);
147 //procedure MH_RECV_ResRequest(C: pTNetClient; var M: TMsg);
148 procedure MH_RECV_Vote(C
: pTNetClient
; var M
: TMsg
);
151 procedure MH_SEND_Everything(CreatePlayers
: Boolean {= False}; ID
: Integer {= NET_EVERYONE});
152 procedure MH_SEND_Info(ID
: Byte);
153 procedure MH_SEND_Chat(Txt
: string; Mode
: Byte; ID
: Integer = NET_EVERYONE
);
154 procedure MH_SEND_Effect(X
, Y
: Integer; Ang
: SmallInt; Kind
: Byte; ID
: Integer = NET_EVERYONE
);
155 procedure MH_SEND_Sound(X
, Y
: Integer; Name
: string; Pos
: Boolean = True; ID
: Integer = NET_EVERYONE
);
156 procedure MH_SEND_CreateShot(Proj
: LongInt; ID
: Integer = NET_EVERYONE
);
157 procedure MH_SEND_UpdateShot(Proj
: LongInt; ID
: Integer = NET_EVERYONE
);
158 procedure MH_SEND_DeleteShot(Proj
: LongInt; X
, Y
: LongInt; Loud
: Boolean = True; ID
: Integer = NET_EVERYONE
);
159 procedure MH_SEND_GameStats(ID
: Integer = NET_EVERYONE
);
160 procedure MH_SEND_CoopStats(ID
: Integer = NET_EVERYONE
);
161 procedure MH_SEND_GameEvent(EvType
: Byte; EvNum
: Integer = 0; EvStr
: string = 'N'; ID
: Integer = NET_EVERYONE
);
162 procedure MH_SEND_FlagEvent(EvType
: Byte; Flag
: Byte; PID
: Word; Quiet
: Boolean = False; ID
: Integer = NET_EVERYONE
);
163 procedure MH_SEND_GameSettings(ID
: Integer = NET_EVERYONE
);
165 procedure MH_SEND_PlayerCreate(PID
: Word; ID
: Integer = NET_EVERYONE
);
166 procedure MH_SEND_PlayerPos(Reliable
: Boolean; PID
: Word; ID
: Integer = NET_EVERYONE
);
167 procedure MH_SEND_PlayerStats(PID
: Word; ID
: Integer = NET_EVERYONE
);
168 procedure MH_SEND_PlayerDelete(PID
: Word; ID
: Integer = NET_EVERYONE
);
169 procedure MH_SEND_PlayerDamage(PID
: Word; Kind
: Byte; Attacker
, Value
: Word; VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
170 procedure MH_SEND_PlayerFire(PID
: Word; Weapon
: Byte; X
, Y
, AX
, AY
: Integer; ShotID
: Integer = -1; ID
: Integer = NET_EVERYONE
);
171 procedure MH_SEND_PlayerDeath(PID
: Word; KillType
, DeathType
: Byte; Attacker
: Word; ID
: Integer = NET_EVERYONE
);
172 procedure MH_SEND_PlayerSettings(PID
: Word; Mdl
: string = ''; ID
: Integer = NET_EVERYONE
);
174 procedure MH_SEND_ItemSpawn(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
175 procedure MH_SEND_ItemDestroy(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
177 procedure MH_SEND_PanelTexture(PGUID
: Integer; AnimLoop
: Byte; ID
: Integer = NET_EVERYONE
);
178 procedure MH_SEND_PanelState(PGUID
: Integer; ID
: Integer = NET_EVERYONE
);
180 procedure MH_SEND_MonsterSpawn(UID
: Word; ID
: Integer = NET_EVERYONE
);
181 procedure MH_SEND_MonsterPos(UID
: Word; ID
: Integer = NET_EVERYONE
);
182 procedure MH_SEND_MonsterState(UID
: Word; ForcedAnim
: Byte = 255; ID
: Integer = NET_EVERYONE
);
183 procedure MH_SEND_MonsterShot(UID
: Word; X
, Y
, VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
184 procedure MH_SEND_MonsterDelete(UID
: Word; ID
: Integer = NET_EVERYONE
);
186 procedure MH_SEND_TriggerSound(var T
: TTrigger
; ID
: Integer = NET_EVERYONE
);
187 procedure MH_SEND_TriggerMusic(ID
: Integer = NET_EVERYONE
);
189 procedure MH_SEND_TimeSync(Time
: LongWord; ID
: Integer = NET_EVERYONE
);
190 procedure MH_SEND_VoteEvent(EvType
: Byte;
191 StrArg1
: string = 'a'; StrArg2
: string = 'b';
192 IntArg1
: SmallInt = 0; IntArg2
: SmallInt = 0;
193 ID
: Integer = NET_EVERYONE
);
195 // CLIENT MESSAGES //
198 procedure MC_RECV_Chat(var M
: TMsg
);
199 procedure MC_RECV_Effect(var M
: TMsg
);
200 procedure MC_RECV_Sound(var M
: TMsg
);
201 procedure MC_RECV_GameStats(var M
: TMsg
);
202 procedure MC_RECV_CoopStats(var M
: TMsg
);
203 procedure MC_RECV_GameEvent(var M
: TMsg
);
204 procedure MC_RECV_FlagEvent(var M
: TMsg
);
205 procedure MC_RECV_GameSettings(var M
: TMsg
);
207 function MC_RECV_PlayerCreate(var M
: TMsg
): Word;
208 function MC_RECV_PlayerPos(var M
: TMsg
): Word;
209 function MC_RECV_PlayerStats(var M
: TMsg
): Word;
210 function MC_RECV_PlayerDelete(var M
: TMsg
): Word;
211 function MC_RECV_PlayerDamage(var M
: TMsg
): Word;
212 function MC_RECV_PlayerDeath(var M
: TMsg
): Word;
213 function MC_RECV_PlayerFire(var M
: TMsg
): Word;
214 procedure MC_RECV_PlayerSettings(var M
: TMsg
);
216 procedure MC_RECV_ItemSpawn(var M
: TMsg
);
217 procedure MC_RECV_ItemDestroy(var M
: TMsg
);
219 procedure MC_RECV_PanelTexture(var M
: TMsg
);
220 procedure MC_RECV_PanelState(var M
: TMsg
);
222 procedure MC_RECV_MonsterSpawn(var M
: TMsg
);
223 procedure MC_RECV_MonsterPos(var M
: TMsg
);
224 procedure MC_RECV_MonsterState(var M
: TMsg
);
225 procedure MC_RECV_MonsterShot(var M
: TMsg
);
226 procedure MC_RECV_MonsterDelete(var M
: TMsg
);
228 procedure MC_RECV_CreateShot(var M
: TMsg
);
229 procedure MC_RECV_UpdateShot(var M
: TMsg
);
230 procedure MC_RECV_DeleteShot(var M
: TMsg
);
232 procedure MC_RECV_TriggerSound(var M
: TMsg
);
233 procedure MC_RECV_TriggerMusic(var M
: TMsg
);
235 procedure MC_RECV_TimeSync(var M
: TMsg
);
236 procedure MC_RECV_VoteEvent(var M
: TMsg
);
238 procedure MC_SEND_Info(Password
: string);
239 procedure MC_SEND_Chat(Txt
: string; Mode
: Byte);
240 procedure MC_SEND_PlayerPos();
241 procedure MC_SEND_FullStateRequest();
242 procedure MC_SEND_PlayerSettings();
243 procedure MC_SEND_CheatRequest(Kind
: Byte);
244 procedure MC_SEND_RCONPassword(Password
: string);
245 procedure MC_SEND_RCONCommand(Cmd
: string);
246 procedure MC_SEND_Vote(Start
: Boolean = False; Command
: string = 'a');
248 //procedure MC_SEND_MapRequest();
249 //procedure MC_SEND_ResRequest(const resName: AnsiString);
253 TExternalResourceInfo
= record
268 ExternalResources
: array of TExternalResourceInfo
;
271 function IsValidFileName(const S
: String): Boolean;
272 function IsValidFilePath(const S
: String): Boolean;
278 Math
, ENet
, e_input
, e_graphics
, e_log
,
279 g_textures
, g_gfx
, g_sound
, g_console
, g_basic
, g_options
, g_main
,
280 g_game
, g_player
, g_map
, g_panel
, g_items
, g_weapons
, g_phys
, g_gui
,
281 g_language
, g_monsters
, g_netmaster
, utils
, wadreader
, MAPDEF
;
294 NET_KEY_FORCEDIR
= 4096;
297 //kBytePrev: Word = 0;
298 //kDirPrev: TDirection = D_LEFT;
299 //HostGameTime: Word = 0;
302 function IsValidFileName(const S
: String): Boolean;
304 Forbidden
: set of Char = ['<', '>', '|', '"', ':', '*', '?'];
309 for I
:= 1 to Length(S
) do
310 Result
:= Result
and (not(S
[I
] in Forbidden
));
313 function IsValidFilePath(const S
: String): Boolean;
318 if not IsValidFileName(S
) then exit
;
319 if FileExists(S
) then exit
;
320 I
:= LastDelimiter('\/', S
);
322 if (not DirectoryExists(Copy(S
, 1, I
-1))) then
333 procedure MH_RECV_Chat(C
: pTNetClient
; var M
: TMsg
);
341 Pl
:= g_Player_Get(PID
);
343 Txt
:= M
.ReadString();
344 Mode
:= M
.ReadByte();
345 if (Mode
= NET_CHAT_SYSTEM
) then
346 Mode
:= NET_CHAT_PLAYER
; // prevent sending system messages from clients
347 if (Mode
= NET_CHAT_TEAM
) and (not gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
348 Mode
:= NET_CHAT_PLAYER
; // revert to player chat in non-team game
351 MH_SEND_Chat(Txt
, Mode
)
353 MH_SEND_Chat(Pl
.Name
+ ': ' + Txt
, Mode
, IfThen(Mode
= NET_CHAT_TEAM
, Pl
.Team
, NET_EVERYONE
));
356 procedure MH_RECV_Info(C
: pTNetClient
; var M
: TMsg
);
358 Ver
, PName
, Model
, Pw
: string;
364 Ver
:= M
.ReadString();
365 Pw
:= M
.ReadString();
366 PName
:= M
.ReadString();
367 Model
:= M
.ReadString();
373 if Ver
<> GAME_VERSION
then
375 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
376 _lc
[I_NET_DISC_VERSION
]);
377 enet_peer_disconnect(C
^.Peer
, NET_DISC_VERSION
);
381 if g_Net_IsHostBanned(C
^.Peer
^.address
.host
) then
383 if g_Net_IsHostBanned(C
^.Peer
^.address
.host
, True) then
385 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
386 _lc
[I_NET_DISC_BAN
]);
387 enet_peer_disconnect(C
^.Peer
, NET_DISC_BAN
);
391 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
392 _lc
[I_NET_DISC_BAN
]);
393 enet_peer_disconnect(C
^.Peer
, NET_DISC_TEMPBAN
);
398 if NetPassword
<> '' then
399 if AnsiLowerCase(NetPassword
) <> AnsiLowerCase(Pw
) then
401 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
402 _lc
[I_NET_DISC_PASSWORD
]);
403 enet_peer_disconnect(C
^.Peer
, NET_DISC_PASSWORD
);
411 PID
:= g_Player_Create(Model
, Color
, T
, False);
412 with g_Player_Get(PID
) do
419 C
^.WaitForFirstSpawn
:= false;
421 g_Console_Add(Format(_lc
[I_PLAYER_JOIN
], [PName
]), True);
422 e_WriteLog('NET: Client ' + PName
+ ' [' + IntToStr(C
^.ID
) +
423 '] connected. Assigned player #' + IntToStr(PID
) + '.', TMsgType
.Notify
);
427 with g_Player_Get(PID
) do
431 // round in progress, don't spawn
432 if (gGameSettings
.MaxLives
> 0) and (gLMSRespawn
= LMS_RESPAWN_NONE
) then
437 FWantsInGame
:= True; // TODO: look into this later
438 C
^.WaitForFirstSpawn
:= true;
442 e_LogWritefln('*** client #%u (cid #%u) authenticated...', [C
.ID
, C
.Player
]);
443 //e_LogWritefln('spawning player with pid #%u...', [PID]);
444 //Respawn(gGameSettings.GameType = GT_SINGLE);
445 //k8: no, do not spawn a player yet, wait for "request full state" packet
449 // `FWantsInGame` seems to mean "spawn the player on the next occasion".
450 // that is, if we'll set it to `true`, the player can be spawned after
451 // warmup time ran out, for example, regardless of the real player state.
452 // also, this seems to work only for the initial connection. further
453 // map changes could initiate resource downloading, but the player will
454 // be spawned immediately.
455 // the proper solution will require another player state, "ephemeral".
456 // the player should start any map in "ephemeral" state, and turned into
457 // real mobj only when they sent a special "i am ready" packet. this packet
458 // must be sent after receiving the full state, so the player will get a full
459 // map view before going into game.
460 FWantsInGame
:= false;
461 C
^.WaitForFirstSpawn
:= true;
465 //if not C^.WaitForFirstSpawn then
467 for I
:= Low(NetClients
) to High(NetClients
) do
469 if NetClients
[I
].ID
= C
^.ID
then Continue
;
470 MH_SEND_PlayerCreate(PID
, NetClients
[I
].ID
);
471 MH_SEND_PlayerPos(True, PID
, NetClients
[I
].ID
);
472 MH_SEND_PlayerStats(PID
, NetClients
[I
].ID
);
476 if gState
in [STATE_INTERCUSTOM
, STATE_FOLD
] then
477 MH_SEND_GameEvent(NET_EV_MAPEND
, 0, 'N', C
^.ID
);
481 //g_Net_Slist_Update;
487 procedure MH_ProcessFirstSpawn (C
: pTNetClient
);
491 if not C
.WaitForFirstSpawn
then exit
;
492 plr
:= g_Player_Get(C
^.Player
);
493 if not assigned(plr
) then exit
;
494 g_Net_Slist_ServerPlayerComes();
495 e_LogWritefln('*** client #%u (cid #%u) first spawn', [C
.ID
, C
.Player
]);
496 C
.WaitForFirstSpawn
:= false;
497 plr
.FNoRespawn
:= false;
498 plr
.FWantsInGame
:= true; // TODO: look into this later
503 procedure MH_RECV_FullStateRequest(C
: pTNetClient
; var M
: TMsg
);
505 //e_LogWritefln('*** client #%u (cid #%u) full state request', [C.ID, C.Player]);
508 MH_SEND_Everything((C
^.State
= NET_STATE_AUTH
), C
^.ID
)
512 C
^.RequestedFullUpdate
:= True;
518 function MH_RECV_PlayerPos(C
: pTNetClient
; var M
: TMsg
): Word;
528 if not gGameOn
then Exit
;
530 GT
:= M
.ReadLongWord();
532 Pl
:= g_Player_Get(PID
);
536 if (GT
> gTime
+ NET_MAX_DIFFTIME
) or (GT
< Pl
.NetTime
) then Exit
;
541 kByte
:= M
.ReadWord();
543 WeaponSelect
:= M
.ReadWord();
544 //e_WriteLog(Format('R:ws=%d', [WeaponSelect]), MSG_WARNING);
545 if Direction
<> TDirection(Dir
) then
546 JustTeleported
:= False;
548 SetDirection(TDirection(Dir
));
551 if kByte
= NET_KEY_CHAT
then
553 PressKey(KEY_CHAT
, 10000);
557 if LongBool(kByte
and NET_KEY_LEFT
) then PressKey(KEY_LEFT
, 10000);
558 if LongBool(kByte
and NET_KEY_RIGHT
) then PressKey(KEY_RIGHT
, 10000);
559 if LongBool(kByte
and NET_KEY_UP
) then PressKey(KEY_UP
, 10000);
560 if LongBool(kByte
and NET_KEY_DOWN
) then PressKey(KEY_DOWN
, 10000);
561 if LongBool(kByte
and NET_KEY_JUMP
) then PressKey(KEY_JUMP
, 10000);
562 if LongBool(kByte
and NET_KEY_FIRE
) then PressKey(KEY_FIRE
, 10000);
563 if LongBool(kByte
and NET_KEY_OPEN
) then PressKey(KEY_OPEN
, 10000);
564 if LongBool(kByte
and NET_KEY_NW
) then PressKey(KEY_NEXTWEAPON
, 10000);
565 if LongBool(kByte
and NET_KEY_PW
) then PressKey(KEY_PREVWEAPON
, 10000);
569 if (WeaponSelect
and Word(1 shl i
)) <> 0 then
571 //e_WriteLog(Format(' R:wn=%d', [i]), MSG_WARNING);
572 QueueWeaponSwitch(i
);
577 // MH_SEND_PlayerPos(False, PID, C^.ID);
580 procedure MH_RECV_CheatRequest(C
: pTNetClient
; var M
: TMsg
);
585 Pl
:= g_Player_Get(C
^.Player
);
586 if Pl
= nil then Exit
;
588 CheatKind
:= M
.ReadByte();
592 Pl
.Damage(SUICIDE_DAMAGE
, Pl
.UID
, 0, 0, HIT_SELF
);
595 if Pl
.FSpectator
then
602 if gState
<> STATE_INTERCUSTOM
then Exit
;
603 Pl
.FReady
:= not Pl
.FReady
;
606 MH_SEND_GameEvent(NET_EV_INTER_READY
, Pl
.UID
, 'Y');
607 Inc(gInterReadyCount
);
611 MH_SEND_GameEvent(NET_EV_INTER_READY
, Pl
.UID
, 'N');
612 Dec(gInterReadyCount
);
618 procedure MH_RECV_PlayerSettings(C
: pTNetClient
; var M
: TMsg
);
626 TmpName
:= M
.ReadString();
627 TmpModel
:= M
.ReadString();
628 TmpColor
.R
:= M
.ReadByte();
629 TmpColor
.G
:= M
.ReadByte();
630 TmpColor
.B
:= M
.ReadByte();
631 TmpTeam
:= M
.ReadByte();
633 Pl
:= g_Player_Get(C
^.Player
);
634 if Pl
= nil then Exit
;
636 if (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) and (Pl
.Team
<> TmpTeam
) then
639 Pl
.SetColor(TmpColor
);
641 if Pl
.Name
<> TmpName
then
643 g_Console_Add(Format(_lc
[I_PLAYER_NAME
], [Pl
.Name
, TmpName
]), True);
647 if TmpModel
<> Pl
.Model
.Name
then
648 Pl
.SetModel(TmpModel
);
650 MH_SEND_PlayerSettings(Pl
.UID
, TmpModel
);
655 procedure MH_RECV_RCONPassword(C
: pTNetClient
; var M
: TMsg
);
659 Pwd
:= M
.ReadString();
660 if not NetAllowRCON
then Exit
;
661 if Pwd
= NetRCONPassword
then
664 MH_SEND_GameEvent(NET_EV_RCON
, NET_RCON_PWGOOD
, 'N', C
^.ID
);
667 MH_SEND_GameEvent(NET_EV_RCON
, NET_RCON_PWBAD
, 'N', C
^.ID
);
670 procedure MH_RECV_RCONCommand(C
: pTNetClient
; var M
: TMsg
);
674 Cmd
:= M
.ReadString();
675 if not NetAllowRCON
then Exit
;
676 if not C
^.RCONAuth
then
678 MH_SEND_GameEvent(NET_EV_RCON
, NET_RCON_NOAUTH
, 'N', C
^.ID
);
681 g_Console_Process(Cmd
);
686 procedure MH_RECV_Vote(C
: pTNetClient
; var M
: TMsg
);
689 Name
, Command
: string;
693 Start
:= M
.ReadByte() <> 0;
694 Command
:= M
.ReadString();
696 Pl
:= g_Player_Get(C
^.Player
);
697 if Pl
= nil then Exit
;
702 if not g_Console_CommandBlacklisted(Command
) then
703 g_Game_StartVote(Command
, Name
);
705 else if gVoteInProgress
then
707 if (gPlayer1
<> nil) or (gPlayer2
<> nil) then
708 Need
:= Floor((NetClientCount
+1)/2.0) + 1
710 Need
:= Floor(NetClientCount
/2.0) + 1;
715 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_REVOKED
], [Name
, gVoteCount
, Need
]), True);
716 MH_SEND_VoteEvent(NET_VE_REVOKE
, Name
, 'a', gVoteCount
, Need
);
722 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_VOTE
], [Name
, gVoteCount
, Need
]), True);
723 MH_SEND_VoteEvent(NET_VE_VOTE
, Name
, 'a', gVoteCount
, Need
);
731 procedure MH_SEND_Everything(CreatePlayers
: Boolean {= False}; ID
: Integer {= NET_EVERYONE});
733 function sendItemRespawn (it
: PItem
): Boolean;
735 result
:= false; // don't stop
736 MH_SEND_ItemSpawn(True, it
.myid
, ID
);
739 function sendMonSpawn (mon
: TMonster
): Boolean;
741 result
:= false; // don't stop
742 MH_SEND_MonsterSpawn(mon
.UID
, ID
);
745 function sendPanelState (pan
: TPanel
): Boolean;
747 result
:= false; // don't stop
748 MH_SEND_PanelState(pan
.guid
, ID
); // anyway, to sync mplats
749 if (pan
.CanChangeTexture
) then MH_SEND_PanelTexture(pan
.guid
, pan
.LastAnimLoop
, ID
);
755 if (ID
>= 0) and (ID
< length(NetClients
)) then
757 e_LogWritefln('*** client #%u (cid #%u) will get everything', [ID
, NetClients
[ID
].Player
]);
758 MH_ProcessFirstSpawn(@NetClients
[ID
]);
761 if gPlayers
<> nil then
763 for I
:= Low(gPlayers
) to High(gPlayers
) do
765 if gPlayers
[I
] <> nil then
767 if CreatePlayers
then MH_SEND_PlayerCreate(gPlayers
[I
].UID
, ID
);
768 MH_SEND_PlayerPos(True, gPlayers
[I
].UID
, ID
);
769 MH_SEND_PlayerStats(gPlayers
[I
].UID
, ID
);
771 if (gPlayers
[I
].Flag
<> FLAG_NONE
) and (gGameSettings
.GameMode
= GM_CTF
) then
773 MH_SEND_FlagEvent(FLAG_STATE_CAPTURED
, gPlayers
[I
].Flag
, gPlayers
[I
].UID
, True, ID
);
779 g_Items_ForEachAlive(sendItemRespawn
, true); // backwards
780 g_Mons_ForEach(sendMonSpawn
);
781 g_Map_ForEachPanel(sendPanelState
);
783 if gTriggers
<> nil then
785 for I
:= Low(gTriggers
) to High(gTriggers
) do
787 if gTriggers
[I
].TriggerType
= TRIGGER_SOUND
then
789 MH_SEND_TriggerSound(gTriggers
[I
], ID
);
796 for I
:= Low(Shots
) to High(Shots
) do
798 if Shots
[i
].ShotType
in [6, 7, 8] then
800 MH_SEND_CreateShot(i
, ID
);
805 MH_SEND_TriggerMusic(ID
);
807 MH_SEND_GameStats(ID
);
808 MH_SEND_CoopStats(ID
);
810 if gGameSettings
.GameMode
= GM_CTF
then
812 if gFlags
[FLAG_RED
].State
<> FLAG_STATE_CAPTURED
then MH_SEND_FlagEvent(gFlags
[FLAG_RED
].State
, FLAG_RED
, 0, True, ID
);
813 if gFlags
[FLAG_BLUE
].State
<> FLAG_STATE_CAPTURED
then MH_SEND_FlagEvent(gFlags
[FLAG_BLUE
].State
, FLAG_BLUE
, 0, True, ID
);
816 if CreatePlayers
and (ID
>= 0) then NetClients
[ID
].State
:= NET_STATE_GAME
;
818 if gLMSRespawn
> LMS_RESPAWN_NONE
then
820 e_LogWritefln('*** client #%u (cid #%u) WARMUP', [ID
, NetClients
[ID
].Player
]);
821 MH_SEND_GameEvent(NET_EV_LMS_WARMUP
, (gLMSRespawnTime
- gTime
) div 1000, 'N', ID
);
827 procedure MH_SEND_Info(ID
: Byte);
831 NetOut
.Write(Byte(NET_MSG_INFO
));
833 NetOut
.Write(NetClients
[ID
].Player
);
834 NetOut
.Write(ExtractFileName(gGameSettings
.WAD
));
835 NetOut
.Write(g_ExtractFileName(gMapInfo
.Map
));
836 NetOut
.Write(gWADHash
);
837 NetOut
.Write(gGameSettings
.GameMode
);
838 NetOut
.Write(gGameSettings
.GoalLimit
);
839 NetOut
.Write(gGameSettings
.TimeLimit
);
840 NetOut
.Write(gGameSettings
.MaxLives
);
841 NetOut
.Write(gGameSettings
.Options
);
844 g_Net_Host_Send(ID
, True, NET_CHAN_SERVICE
);
847 procedure MH_SEND_Chat(Txt
: string; Mode
: Byte; ID
: Integer = NET_EVERYONE
);
853 if (Mode
= NET_CHAT_TEAM
) and (not gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
854 Mode
:= NET_CHAT_PLAYER
;
857 if (Mode
= NET_CHAT_TEAM
) then
859 for i
:= Low(gPlayers
) to High(gPlayers
) do
860 if (gPlayers
[i
] <> nil) and (gPlayers
[i
].FClientID
>= 0) and
861 (gPlayers
[i
].Team
= ID
) then
863 NetOut
.Write(Byte(NET_MSG_CHAT
));
866 g_Net_Host_Send(gPlayers
[i
].FClientID
, True, NET_CHAN_CHAT
);
873 NetOut
.Write(Byte(NET_MSG_CHAT
));
876 g_Net_Host_Send(ID
, True, NET_CHAN_CHAT
);
879 if Mode
= NET_CHAT_SYSTEM
then
882 if ID
= NET_EVERYONE
then
884 if Mode
= NET_CHAT_PLAYER
then
886 g_Console_Add(Txt
, True);
887 e_WriteLog('[Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
888 g_Game_ChatSound(b_Text_Unformat(Txt
));
891 if Mode
= NET_CHAT_TEAM
then
892 if gPlayer1
<> nil then
894 if (gPlayer1
.Team
= TEAM_RED
) and (Team
= TEAM_RED
) then
896 g_Console_Add(#18'[Team] '#2 + Txt
, True);
897 e_WriteLog('[Team Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
898 g_Game_ChatSound(b_Text_Unformat(Txt
));
900 else if (gPlayer1
.Team
= TEAM_BLUE
) and (Team
= TEAM_BLUE
) then
902 g_Console_Add(#20'[Team] '#2 + Txt
, True);
903 e_WriteLog('[Team Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
904 g_Game_ChatSound(b_Text_Unformat(Txt
));
910 Name
:= g_Net_ClientName_ByID(ID
);
911 g_Console_Add('-> ' + Name
+ ': ' + Txt
, True);
912 e_WriteLog('[Tell ' + Name
+ '] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
913 g_Game_ChatSound(b_Text_Unformat(Txt
), False);
917 procedure MH_SEND_Effect(X
, Y
: Integer; Ang
: SmallInt; Kind
: Byte; ID
: Integer = NET_EVERYONE
);
919 NetOut
.Write(Byte(NET_MSG_GFX
));
925 g_Net_Host_Send(ID
, False, NET_CHAN_GAME
);
928 procedure MH_SEND_Sound(X
, Y
: Integer; Name
: string; Pos
: Boolean = True; ID
: Integer = NET_EVERYONE
);
930 NetOut
.Write(Byte(NET_MSG_SND
));
934 NetOut
.Write(Byte(1));
939 NetOut
.Write(Byte(0));
941 g_Net_Host_Send(ID
, False, NET_CHAN_GAME
);
944 procedure MH_SEND_CreateShot(Proj
: LongInt; ID
: Integer = NET_EVERYONE
);
946 if (Shots
= nil) or (Proj
< 0) or (Proj
> High(Shots
)) then Exit
;
948 NetOut
.Write(Byte(NET_MSG_SHADD
));
950 NetOut
.Write(Shots
[Proj
].ShotType
);
951 NetOut
.Write(Shots
[Proj
].Target
);
952 NetOut
.Write(Shots
[Proj
].SpawnerUID
);
953 NetOut
.Write(Shots
[Proj
].Timeout
);
954 NetOut
.Write(Shots
[Proj
].Obj
.X
);
955 NetOut
.Write(Shots
[Proj
].Obj
.Y
);
956 NetOut
.Write(Shots
[Proj
].Obj
.Vel
.X
);
957 NetOut
.Write(Shots
[Proj
].Obj
.Vel
.Y
);
959 g_Net_Host_Send(ID
, True, NET_CHAN_SHOTS
);
962 procedure MH_SEND_UpdateShot(Proj
: LongInt; ID
: Integer = NET_EVERYONE
);
964 if (Shots
= nil) or (Proj
< 0) or (Proj
> High(Shots
)) then Exit
;
966 NetOut
.Write(Byte(NET_MSG_SHPOS
));
968 NetOut
.Write(Shots
[Proj
].Obj
.X
);
969 NetOut
.Write(Shots
[Proj
].Obj
.Y
);
970 NetOut
.Write(Shots
[Proj
].Obj
.Vel
.X
);
971 NetOut
.Write(Shots
[Proj
].Obj
.Vel
.Y
);
973 g_Net_Host_Send(ID
, False, NET_CHAN_SHOTS
);
976 procedure MH_Send_DeleteShot(Proj
: LongInt; X
, Y
: LongInt; Loud
: Boolean = True; ID
: Integer = NET_EVERYONE
);
978 NetOut
.Write(Byte(NET_MSG_SHDEL
));
980 NetOut
.Write(Byte(Loud
));
984 g_Net_Host_Send(ID
, True, NET_CHAN_SHOTS
);
987 procedure MH_SEND_GameStats(ID
: Integer = NET_EVERYONE
);
989 NetOut
.Write(Byte(NET_MSG_SCORE
));
990 if gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
] then
992 NetOut
.Write(gTeamStat
[TEAM_RED
].Goals
);
993 NetOut
.Write(gTeamStat
[TEAM_BLUE
].Goals
);
996 if gGameSettings
.GameMode
= GM_COOP
then
998 NetOut
.Write(gCoopMonstersKilled
);
999 NetOut
.Write(gCoopSecretsFound
);
1002 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1005 procedure MH_SEND_CoopStats(ID
: Integer = NET_EVERYONE
);
1007 NetOut
.Write(Byte(NET_MSG_COOP
));
1008 NetOut
.Write(gTotalMonsters
);
1009 NetOut
.Write(gSecretsCount
);
1010 NetOut
.Write(gCoopTotalMonstersKilled
);
1011 NetOut
.Write(gCoopTotalSecretsFound
);
1012 NetOut
.Write(gCoopTotalMonsters
);
1013 NetOut
.Write(gCoopTotalSecrets
);
1016 procedure MH_SEND_GameEvent(EvType
: Byte; EvNum
: Integer = 0; EvStr
: string = 'N'; ID
: Integer = NET_EVERYONE
);
1018 NetOut
.Write(Byte(NET_MSG_GEVENT
));
1019 NetOut
.Write(EvType
);
1020 NetOut
.Write(EvNum
);
1021 NetOut
.Write(EvStr
);
1022 NetOut
.Write(Byte(gLastMap
));
1023 NetOut
.Write(gTime
);
1024 if (EvType
= NET_EV_MAPSTART
) and isWadPath(EvStr
) then
1026 NetOut
.Write(Byte(1));
1027 NetOut
.Write(gWADHash
);
1029 NetOut
.Write(Byte(0));
1031 g_Net_Host_Send(ID
, True, NET_CHAN_SERVICE
);
1034 procedure MH_SEND_FlagEvent(EvType
: Byte; Flag
: Byte; PID
: Word; Quiet
: Boolean = False; ID
: Integer = NET_EVERYONE
);
1036 NetOut
.Write(Byte(NET_MSG_FLAG
));
1037 NetOut
.Write(EvType
);
1039 NetOut
.Write(Byte(Quiet
));
1041 NetOut
.Write(gFlags
[Flag
].State
);
1042 NetOut
.Write(gFlags
[Flag
].CaptureTime
);
1043 NetOut
.Write(gFlags
[Flag
].Obj
.X
);
1044 NetOut
.Write(gFlags
[Flag
].Obj
.Y
);
1045 NetOut
.Write(gFlags
[Flag
].Obj
.Vel
.X
);
1046 NetOut
.Write(gFlags
[Flag
].Obj
.Vel
.Y
);
1048 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1051 procedure MH_SEND_GameSettings(ID
: Integer = NET_EVERYONE
);
1053 NetOut
.Write(Byte(NET_MSG_GSET
));
1054 NetOut
.Write(gGameSettings
.GameMode
);
1055 NetOut
.Write(gGameSettings
.GoalLimit
);
1056 NetOut
.Write(gGameSettings
.TimeLimit
);
1057 NetOut
.Write(gGameSettings
.MaxLives
);
1058 NetOut
.Write(gGameSettings
.Options
);
1060 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1065 procedure MH_SEND_PlayerCreate(PID
: Word; ID
: Integer = NET_EVERYONE
);
1069 P
:= g_Player_Get(PID
);
1070 if P
= nil then Exit
;
1072 NetOut
.Write(Byte(NET_MSG_PLR
));
1074 NetOut
.Write(P
.Name
);
1076 NetOut
.Write(P
.FActualModelName
);
1077 NetOut
.Write(P
.FColor
.R
);
1078 NetOut
.Write(P
.FColor
.G
);
1079 NetOut
.Write(P
.FColor
.B
);
1080 NetOut
.Write(P
.Team
);
1082 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
)
1085 procedure MH_SEND_PlayerPos(Reliable
: Boolean; PID
: Word; ID
: Integer = NET_EVERYONE
);
1090 Pl
:= g_Player_Get(PID
);
1091 if Pl
= nil then Exit
;
1092 if Pl
.FDummy
then Exit
;
1094 NetOut
.Write(Byte(NET_MSG_PLRPOS
));
1095 NetOut
.Write(gTime
);
1102 NetOut
.Write(FPing
);
1103 NetOut
.Write(FLoss
);
1104 if IsKeyPressed(KEY_CHAT
) then
1105 kByte
:= NET_KEY_CHAT
1108 if IsKeyPressed(KEY_LEFT
) then kByte
:= kByte
or NET_KEY_LEFT
;
1109 if IsKeyPressed(KEY_RIGHT
) then kByte
:= kByte
or NET_KEY_RIGHT
;
1110 if IsKeyPressed(KEY_UP
) then kByte
:= kByte
or NET_KEY_UP
;
1111 if IsKeyPressed(KEY_DOWN
) then kByte
:= kByte
or NET_KEY_DOWN
;
1112 if IsKeyPressed(KEY_JUMP
) then kByte
:= kByte
or NET_KEY_JUMP
;
1113 if JustTeleported
then kByte
:= kByte
or NET_KEY_FORCEDIR
;
1116 NetOut
.Write(kByte
);
1117 if Direction
= TDirection
.D_LEFT
then NetOut
.Write(Byte(0)) else NetOut
.Write(Byte(1));
1118 NetOut
.Write(GameX
);
1119 NetOut
.Write(GameY
);
1120 NetOut
.Write(GameVelX
);
1121 NetOut
.Write(GameVelY
);
1122 NetOut
.Write(GameAccelX
);
1123 NetOut
.Write(GameAccelY
);
1126 g_Net_Host_Send(ID
, Reliable
, NET_CHAN_PLAYERPOS
);
1129 procedure MH_SEND_PlayerStats(PID
: Word; ID
: Integer = NET_EVERYONE
);
1134 P
:= g_Player_Get(PID
);
1135 if P
= nil then Exit
;
1137 NetOut
.Write(Byte(NET_MSG_PLRSTA
));
1142 NetOut
.Write(Byte(alive
));
1143 NetOut
.Write(Byte(GodMode
));
1144 NetOut
.Write(Health
);
1145 NetOut
.Write(Armor
);
1147 NetOut
.Write(JetFuel
);
1148 NetOut
.Write(Lives
);
1151 for I
:= WP_FIRST
to WP_LAST
do
1152 NetOut
.Write(Byte(FWeapon
[I
]));
1154 for I
:= A_BULLETS
to A_HIGH
do
1155 NetOut
.Write(FAmmo
[I
]);
1157 for I
:= A_BULLETS
to A_HIGH
do
1158 NetOut
.Write(FMaxAmmo
[I
]);
1160 for I
:= MR_SUIT
to MR_MAX
do
1161 NetOut
.Write(LongWord(FMegaRulez
[I
]));
1163 NetOut
.Write(Byte(R_ITEM_BACKPACK
in FRulez
));
1164 NetOut
.Write(Byte(R_KEY_RED
in FRulez
));
1165 NetOut
.Write(Byte(R_KEY_GREEN
in FRulez
));
1166 NetOut
.Write(Byte(R_KEY_BLUE
in FRulez
));
1167 NetOut
.Write(Byte(R_BERSERK
in FRulez
));
1169 NetOut
.Write(Frags
);
1170 NetOut
.Write(Death
);
1172 NetOut
.Write(CurrWeap
);
1174 NetOut
.Write(Byte(FSpectator
));
1175 NetOut
.Write(Byte(FGhost
));
1176 NetOut
.Write(Byte(FPhysics
));
1177 NetOut
.Write(Byte(FNoRespawn
));
1178 NetOut
.Write(Byte(FJetpack
));
1179 NetOut
.Write(FFireTime
);
1180 NetOut
.Write(Byte(FFlaming
));
1181 NetOut
.Write(FSpawnInvul
);
1184 g_Net_Host_Send(ID
, True, NET_CHAN_PLAYER
);
1187 procedure MH_SEND_PlayerDamage(PID
: Word; Kind
: Byte; Attacker
, Value
: Word; VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
1189 NetOut
.Write(Byte(NET_MSG_PLRDMG
));
1192 NetOut
.Write(Attacker
);
1193 NetOut
.Write(Value
);
1197 g_Net_Host_Send(ID
, False, NET_CHAN_PLAYER
);
1200 procedure MH_SEND_PlayerDeath(PID
: Word; KillType
, DeathType
: Byte; Attacker
: Word; ID
: Integer = NET_EVERYONE
);
1202 NetOut
.Write(Byte(NET_MSG_PLRDIE
));
1204 NetOut
.Write(KillType
);
1205 NetOut
.Write(DeathType
);
1206 NetOut
.Write(Attacker
);
1208 g_Net_Host_Send(ID
, True, NET_CHAN_PLAYER
);
1211 procedure MH_SEND_PlayerFire(PID
: Word; Weapon
: Byte; X
, Y
, AX
, AY
: Integer; ShotID
: Integer = -1; ID
: Integer = NET_EVERYONE
);
1213 NetOut
.Write(Byte(NET_MSG_PLRFIRE
));
1215 NetOut
.Write(Weapon
);
1220 NetOut
.Write(ShotID
);
1222 g_Net_Host_Send(ID
, True, NET_CHAN_SHOTS
);
1225 procedure MH_SEND_PlayerDelete(PID
: Word; ID
: Integer = NET_EVERYONE
);
1227 NetOut
.Write(Byte(NET_MSG_PLRDEL
));
1230 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1233 procedure MH_SEND_PlayerSettings(PID
: Word; Mdl
: string = ''; ID
: Integer = NET_EVERYONE
);
1237 Pl
:= g_Player_Get(PID
);
1238 if Pl
= nil then Exit
;
1240 NetOut
.Write(Byte(NET_MSG_PLRSET
));
1242 NetOut
.Write(Pl
.Name
);
1244 NetOut
.Write(Pl
.Model
.Name
)
1247 NetOut
.Write(Pl
.FColor
.R
);
1248 NetOut
.Write(Pl
.FColor
.G
);
1249 NetOut
.Write(Pl
.FColor
.B
);
1250 NetOut
.Write(Pl
.Team
);
1252 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1257 procedure MH_SEND_ItemSpawn(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
1262 it
:= g_Items_ByIdx(IID
);
1264 NetOut
.Write(Byte(NET_MSG_ISPAWN
));
1266 NetOut
.Write(Byte(Quiet
));
1268 if it
.dropped
then tt
:= tt
or $80;
1270 NetOut
.Write(Byte(it
.Fall
));
1271 NetOut
.Write(Byte(it
.Respawnable
));
1272 NetOut
.Write(it
.Obj
.X
);
1273 NetOut
.Write(it
.Obj
.Y
);
1274 NetOut
.Write(it
.Obj
.Vel
.X
);
1275 NetOut
.Write(it
.Obj
.Vel
.Y
);
1277 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1280 procedure MH_SEND_ItemDestroy(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
1282 NetOut
.Write(Byte(NET_MSG_IDEL
));
1284 NetOut
.Write(Byte(Quiet
));
1286 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1291 procedure MH_SEND_PanelTexture(PGUID
: Integer; AnimLoop
: Byte; ID
: Integer = NET_EVERYONE
);
1295 TP
:= g_Map_PanelByGUID(PGUID
);
1296 if (TP
= nil) then exit
;
1300 NetOut
.Write(Byte(NET_MSG_PTEX
));
1301 NetOut
.Write(LongWord(PGUID
));
1302 NetOut
.Write(FCurTexture
);
1303 NetOut
.Write(FCurFrame
);
1304 NetOut
.Write(FCurFrameCount
);
1305 NetOut
.Write(AnimLoop
);
1308 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1311 procedure MH_SEND_PanelState(PGUID
: Integer; ID
: Integer = NET_EVERYONE
);
1316 TP
:= g_Map_PanelByGUID(PGUID
);
1317 if (TP
= nil) then exit
;
1319 NetOut
.Write(Byte(NET_MSG_PSTATE
));
1320 NetOut
.Write(LongWord(PGUID
));
1321 NetOut
.Write(Byte(TP
.Enabled
));
1322 NetOut
.Write(TP
.LiftType
);
1325 NetOut
.Write(Word(TP
.Width
));
1326 NetOut
.Write(Word(TP
.Height
));
1328 NetOut
.Write(LongInt(TP
.movingSpeedX
));
1329 NetOut
.Write(LongInt(TP
.movingSpeedY
));
1330 NetOut
.Write(LongInt(TP
.movingStartX
));
1331 NetOut
.Write(LongInt(TP
.movingStartY
));
1332 NetOut
.Write(LongInt(TP
.movingEndX
));
1333 NetOut
.Write(LongInt(TP
.movingEndY
));
1334 NetOut
.Write(LongInt(TP
.sizeSpeedX
));
1335 NetOut
.Write(LongInt(TP
.sizeSpeedY
));
1336 NetOut
.Write(LongInt(TP
.sizeEndX
));
1337 NetOut
.Write(LongInt(TP
.sizeEndY
));
1338 if TP
.movingActive
then mpflags
:= mpflags
or 1;
1339 if TP
.moveOnce
then mpflags
:= mpflags
or 2;
1340 NetOut
.Write(Byte(mpflags
));
1342 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1347 procedure MH_SEND_TriggerSound(var T
: TTrigger
; ID
: Integer = NET_EVERYONE
);
1349 if gTriggers
= nil then Exit
;
1350 if T
.Sound
= nil then Exit
;
1352 NetOut
.Write(Byte(NET_MSG_TSOUND
));
1353 NetOut
.Write(T
.ClientID
);
1354 NetOut
.Write(Byte(T
.Sound
.IsPlaying
));
1355 NetOut
.Write(LongWord(T
.Sound
.GetPosition
));
1356 NetOut
.Write(T
.SoundPlayCount
);
1358 g_Net_Host_Send(ID
, True);
1361 procedure MH_SEND_TriggerMusic(ID
: Integer = NET_EVERYONE
);
1363 NetOut
.Write(Byte(NET_MSG_TMUSIC
));
1364 NetOut
.Write(gMusic
.Name
);
1365 NetOut
.Write(Byte(gMusic
.IsPlaying
));
1366 NetOut
.Write(LongWord(gMusic
.GetPosition
));
1367 NetOut
.Write(Byte(gMusic
.SpecPause
or gMusic
.IsPaused
));
1369 g_Net_Host_Send(ID
, True);
1374 procedure MH_SEND_MonsterSpawn(UID
: Word; ID
: Integer = NET_EVERYONE
);
1378 M
:= g_Monsters_ByUID(UID
);
1384 NetOut
.Write(Byte(NET_MSG_MSPAWN
));
1386 NetOut
.Write(MonsterType
);
1387 NetOut
.Write(MonsterState
);
1388 NetOut
.Write(MonsterAnim
);
1389 NetOut
.Write(MonsterTargetUID
);
1390 NetOut
.Write(MonsterTargetTime
);
1391 NetOut
.Write(MonsterBehaviour
);
1392 NetOut
.Write(MonsterSleep
);
1393 NetOut
.Write(MonsterHealth
);
1394 NetOut
.Write(MonsterAmmo
);
1395 NetOut
.Write(GameX
);
1396 NetOut
.Write(GameY
);
1397 NetOut
.Write(GameVelX
);
1398 NetOut
.Write(GameVelY
);
1399 NetOut
.Write(Byte(GameDirection
));
1402 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1405 procedure MH_SEND_MonsterPos(UID
: Word; ID
: Integer = NET_EVERYONE
);
1409 M
:= g_Monsters_ByUID(UID
);
1410 if M
= nil then Exit
;
1412 NetOut
.Write(Byte(NET_MSG_MPOS
));
1417 NetOut
.Write(GameX
);
1418 NetOut
.Write(GameY
);
1419 NetOut
.Write(GameVelX
);
1420 NetOut
.Write(GameVelY
);
1421 NetOut
.Write(Byte(GameDirection
));
1424 g_Net_Host_Send(ID
, False, NET_CHAN_MONSTERPOS
);
1427 procedure MH_SEND_MonsterState(UID
: Word; ForcedAnim
: Byte = 255; ID
: Integer = NET_EVERYONE
);
1431 M
:= g_Monsters_ByUID(UID
);
1432 if M
= nil then Exit
;
1434 NetOut
.Write(Byte(NET_MSG_MSTATE
));
1439 NetOut
.Write(MonsterState
);
1440 NetOut
.Write(ForcedAnim
);
1441 NetOut
.Write(MonsterTargetUID
);
1442 NetOut
.Write(MonsterTargetTime
);
1443 NetOut
.Write(MonsterSleep
);
1444 NetOut
.Write(MonsterHealth
);
1445 NetOut
.Write(MonsterAmmo
);
1446 NetOut
.Write(MonsterPain
);
1447 NetOut
.Write(Byte(AnimIsReverse
));
1448 NetOut
.Write(FFireTime
);
1451 g_Net_Host_Send(ID
, True, NET_CHAN_MONSTER
);
1454 procedure MH_SEND_MonsterShot(UID
: Word; X
, Y
, VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
1456 NetOut
.Write(Byte(NET_MSG_MSHOT
));
1463 g_Net_Host_Send(ID
, True, NET_CHAN_MONSTER
);
1466 procedure MH_SEND_MonsterDelete(UID
: Word; ID
: Integer = NET_EVERYONE
);
1470 M
:= g_Monsters_ByUID(UID
);
1471 if M
= nil then Exit
;
1473 NetOut
.Write(Byte(NET_MSG_MDEL
));
1476 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1481 procedure MH_SEND_TimeSync(Time
: LongWord; ID
: Integer = NET_EVERYONE
);
1483 NetOut
.Write(Byte(NET_MSG_TIME_SYNC
));
1486 g_Net_Host_Send(ID
, False, NET_CHAN_SERVICE
);
1489 procedure MH_SEND_VoteEvent(EvType
: Byte;
1490 StrArg1
: string = 'a'; StrArg2
: string = 'b';
1491 IntArg1
: SmallInt = 0; IntArg2
: SmallInt = 0;
1492 ID
: Integer = NET_EVERYONE
);
1494 NetOut
.Write(Byte(NET_MSG_VOTE_EVENT
));
1495 NetOut
.Write(EvType
);
1496 NetOut
.Write(IntArg1
);
1497 NetOut
.Write(IntArg2
);
1498 NetOut
.Write(StrArg1
);
1499 NetOut
.Write(StrArg2
);
1501 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1504 // CLIENT MESSAGES //
1508 procedure MC_RECV_Chat(var M
: TMsg
);
1513 Txt
:= M
.ReadString();
1514 Mode
:= M
.ReadByte();
1516 if Mode
<> NET_CHAT_SYSTEM
then
1518 if Mode
= NET_CHAT_PLAYER
then
1520 g_Console_Add(Txt
, True);
1521 e_WriteLog('[Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
1522 g_Game_ChatSound(b_Text_Unformat(Txt
));
1524 if (Mode
= NET_CHAT_TEAM
) and (gPlayer1
<> nil) then
1526 if gPlayer1
.Team
= TEAM_RED
then
1527 g_Console_Add(b_Text_Format('\r[Team] ') + Txt
, True);
1528 if gPlayer1
.Team
= TEAM_BLUE
then
1529 g_Console_Add(b_Text_Format('\b[Team] ') + Txt
, True);
1530 e_WriteLog('[Team Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
1531 g_Game_ChatSound(b_Text_Unformat(Txt
));
1534 g_Console_Add(Txt
, True);
1537 procedure MC_RECV_Effect(var M
: TMsg
);
1545 if not gGameOn
then Exit
;
1546 Kind
:= M
.ReadByte();
1547 X
:= M
.ReadLongInt();
1548 Y
:= M
.ReadLongInt();
1549 Ang
:= M
.ReadSmallInt();
1553 g_GFX_Spark(X
, Y
, 2 + Random(2), Ang
, 0, 0);
1557 if g_Frames_Get(ID
, 'FRAMES_TELEPORT') then
1559 Anim
:= TAnimation
.Create(ID
, False, 3);
1560 g_GFX_OnceAnim(X
, Y
, Anim
);
1564 g_Sound_PlayExAt('SOUND_GAME_TELEPORT', X
, Y
);
1569 if g_Frames_Get(ID
, 'FRAMES_EXPLODE_ROCKET') then
1571 Anim
:= TAnimation
.Create(ID
, False, 6);
1572 Anim
.Blending
:= False;
1573 g_GFX_OnceAnim(X
-64, Y
-64, Anim
);
1577 g_Sound_PlayExAt('SOUND_WEAPON_EXPLODEROCKET', X
, Y
);
1582 if g_Frames_Get(ID
, 'FRAMES_EXPLODE_BFG') then
1584 Anim
:= TAnimation
.Create(ID
, False, 6);
1585 Anim
.Blending
:= False;
1586 g_GFX_OnceAnim(X
-64, Y
-64, Anim
);
1590 g_Sound_PlayExAt('SOUND_WEAPON_EXPLODEBFG', X
, Y
);
1595 if g_Frames_Get(ID
, 'FRAMES_BFGHIT') then
1597 Anim
:= TAnimation
.Create(ID
, False, 4);
1598 g_GFX_OnceAnim(X
-32, Y
-32, Anim
);
1605 if g_Frames_Get(ID
, 'FRAMES_FIRE') then
1607 Anim
:= TAnimation
.Create(ID
, False, 4);
1608 g_GFX_OnceAnim(X
, Y
, Anim
);
1612 g_Sound_PlayExAt('SOUND_FIRE', X
, Y
);
1617 if g_Frames_Get(ID
, 'FRAMES_ITEM_RESPAWN') then
1619 Anim
:= TAnimation
.Create(ID
, False, 4);
1620 g_GFX_OnceAnim(X
, Y
, Anim
);
1624 g_Sound_PlayExAt('SOUND_ITEM_RESPAWNITEM', X
, Y
);
1628 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_BULLET
);
1631 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_SHELL
);
1635 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_SHELL
);
1636 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_SHELL
);
1641 procedure MC_RECV_Sound(var M
: TMsg
);
1647 Name
:= M
.ReadString();
1648 Pos
:= M
.ReadByte() <> 0;
1651 X
:= M
.ReadLongInt();
1652 Y
:= M
.ReadLongInt();
1653 g_Sound_PlayExAt(Name
, X
, Y
);
1656 g_Sound_PlayEx(Name
);
1659 procedure MC_RECV_CreateShot(var M
: TMsg
);
1661 I
, X
, Y
, XV
, YV
: Integer;
1663 Target
, Spawner
: Word;
1666 I
:= M
.ReadLongInt();
1667 ShType
:= M
.ReadByte();
1668 Target
:= M
.ReadWord();
1669 Spawner
:= M
.ReadWord();
1670 Timeout
:= M
.ReadLongWord();
1671 X
:= M
.ReadLongInt();
1672 Y
:= M
.ReadLongInt();
1673 XV
:= M
.ReadLongInt();
1674 YV
:= M
.ReadLongInt();
1676 I
:= g_Weapon_CreateShot(I
, ShType
, Spawner
, Target
, X
, Y
, XV
, YV
);
1677 if (Shots
<> nil) and (I
<= High(Shots
)) then
1679 Shots
[I
].Timeout
:= Timeout
;
1680 //Shots[I].Target := Target; // TODO: find a use for Target later
1684 procedure MC_RECV_UpdateShot(var M
: TMsg
);
1686 I
, TX
, TY
, TXV
, TYV
: Integer;
1688 I
:= M
.ReadLongInt();
1689 TX
:= M
.ReadLongInt();
1690 TY
:= M
.ReadLongInt();
1691 TXV
:= M
.ReadLongInt();
1692 TYV
:= M
.ReadLongInt();
1694 if (Shots
<> nil) and (I
<= High(Shots
)) then
1704 procedure MC_RECV_DeleteShot(var M
: TMsg
);
1709 if not gGameOn
then Exit
;
1710 I
:= M
.ReadLongInt();
1711 L
:= (M
.ReadByte() <> 0);
1712 X
:= M
.ReadLongInt();
1713 Y
:= M
.ReadLongInt();
1715 g_Weapon_DestroyShot(I
, X
, Y
, L
);
1718 procedure MC_RECV_GameStats(var M
: TMsg
);
1720 if gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
] then
1722 gTeamStat
[TEAM_RED
].Goals
:= M
.ReadSmallInt();
1723 gTeamStat
[TEAM_BLUE
].Goals
:= M
.ReadSmallInt();
1726 if gGameSettings
.GameMode
= GM_COOP
then
1728 gCoopMonstersKilled
:= M
.ReadWord();
1729 gCoopSecretsFound
:= M
.ReadWord();
1733 procedure MC_RECV_CoopStats(var M
: TMsg
);
1735 gTotalMonsters
:= M
.ReadLongInt();
1736 gSecretsCount
:= M
.ReadLongInt();
1737 gCoopTotalMonstersKilled
:= M
.ReadWord();
1738 gCoopTotalSecretsFound
:= M
.ReadWord();
1739 gCoopTotalMonsters
:= M
.ReadWord();
1740 gCoopTotalSecrets
:= M
.ReadWord();
1743 procedure MC_RECV_GameEvent(var M
: TMsg
);
1752 i1
, i2
: TStrings_Locale
;
1755 goodCmd
: Boolean = true;
1757 FillChar(EvHash
, Sizeof(EvHash
), 0);
1758 EvType
:= M
.ReadByte();
1759 EvNum
:= M
.ReadLongInt();
1760 EvStr
:= M
.ReadString();
1761 gLastMap
:= M
.ReadByte() <> 0;
1762 if gLastMap
and (gGameSettings
.GameMode
= GM_COOP
) then gStatsOff
:= True;
1763 gStatsPressed
:= True;
1764 EvTime
:= M
.ReadLongWord();
1765 BHash
:= M
.ReadByte() <> 0;
1767 EvHash
:= M
.ReadMD5();
1771 if (g_Res_received_map_start
<> 0) then
1773 if (g_Res_received_map_start
< 0) then exit
;
1776 NET_EV_MAPSTART
: goodCmd
:= true;
1777 NET_EV_MAPEND
: goodCmd
:= true;
1778 NET_EV_PLAYER_KICK
: goodCmd
:= true;
1779 NET_EV_PLAYER_BAN
: goodCmd
:= true;
1781 if not goodCmd
then exit
;
1787 if (g_Res_received_map_start
<> 0) then
1789 g_Res_received_map_start
:= -1;
1794 g_Game_ClearLoading();
1795 g_Game_StopAllSounds(True);
1797 gSwitchGameMode
:= Byte(EvNum
);
1798 gGameSettings
.GameMode
:= gSwitchGameMode
;
1801 if not g_Game_StartMap(false{asMegawad}, EvStr
, True) then
1803 if not isWadPath(EvStr
) then
1804 g_FatalError(Format(_lc
[I_GAME_ERROR_MAP_LOAD
], [gGameSettings
.WAD
+ ':\' + EvStr
]))
1806 g_FatalError(Format(_lc
[I_GAME_ERROR_MAP_LOAD
], [EvStr
]));
1810 MC_SEND_FullStateRequest
;
1816 if (g_Res_received_map_start
<> 0) then
1818 g_Res_received_map_start
:= -1;
1822 gMissionFailed
:= EvNum
<> 0;
1823 gExit
:= EXIT_ENDLEVELCUSTOM
;
1831 g_Console_Add(_lc
[I_NET_RCON_NOAUTH
], True);
1833 g_Console_Add(_lc
[I_NET_RCON_PWD_VALID
], True);
1835 g_Console_Add(_lc
[I_NET_RCON_PWD_INVALID
], True);
1841 if EvNum
= TEAM_RED
then
1842 g_Console_Add(Format(_lc
[I_PLAYER_CHTEAM_RED
], [EvStr
]), True);
1843 if EvNum
= TEAM_BLUE
then
1844 g_Console_Add(Format(_lc
[I_PLAYER_CHTEAM_BLUE
], [EvStr
]), True);
1849 g_Console_Add(Format(_lc
[I_PLAYER_KICK
], [EvStr
]), True);
1850 if (g_Res_received_map_start
<> 0) then g_Res_received_map_start
:= -1;
1855 g_Console_Add(Format(_lc
[I_PLAYER_BAN
], [EvStr
]), True);
1856 if (g_Res_received_map_start
<> 0) then g_Res_received_map_start
:= -1;
1860 g_Console_Add(Format(_lc
[I_MSG_WARMUP_START
], [EvNum
]), True);
1862 NET_EV_LMS_SURVIVOR
:
1863 g_Console_Add('*** ' + _lc
[I_MESSAGE_LMS_SURVIVOR
] + ' ***', True);
1866 g_Game_Message(AnsiUpperCase(EvStr
), Word(EvNum
));
1870 pl
:= g_Player_Get(EvNum
and $FFFF);
1875 cnt
:= (EvNum
shr 16) and $FF;
1876 if Pos('w', EvStr
) = 0 then
1879 if Pos('t', EvStr
) = 0 then
1882 if Pos('-', EvStr
) = 0 then
1884 if Pos('e', EvStr
) = 0 then
1885 i1
:= I_PLAYER_SCORE_ADD_OWN
1887 i1
:= I_PLAYER_SCORE_ADD_ENEMY
;
1890 if Pos('e', EvStr
) = 0 then
1891 i1
:= I_PLAYER_SCORE_SUB_OWN
1893 i1
:= I_PLAYER_SCORE_SUB_ENEMY
;
1896 if Pos('r', EvStr
) > 0 then
1897 i2
:= I_PLAYER_SCORE_TO_RED
1899 i2
:= I_PLAYER_SCORE_TO_BLUE
;
1900 g_Console_Add(Format(_lc
[i1
], [pln
, cnt
, _lc
[i2
]]), True);
1904 if Pos('-', EvStr
) = 0 then
1905 i1
:= I_PLAYER_SCORE_ADD_TEAM
1907 i1
:= I_PLAYER_SCORE_SUB_TEAM
;
1909 if Pos('r', EvStr
) > 0 then
1910 i2
:= I_PLAYER_SCORE_RED
1912 i2
:= I_PLAYER_SCORE_BLUE
;
1913 g_Console_Add(Format(_lc
[i1
], [_lc
[i2
], cnt
]), True);
1918 if Pos('e', EvStr
) = 0 then
1919 i1
:= I_PLAYER_SCORE_WIN_OWN
1921 i1
:= I_PLAYER_SCORE_WIN_ENEMY
;
1923 if Pos('r', EvStr
) > 0 then
1924 i2
:= I_PLAYER_SCORE_TO_RED
1926 i2
:= I_PLAYER_SCORE_TO_BLUE
;
1927 g_Console_Add(Format(_lc
[i1
], [pln
, _lc
[i2
]]), True);
1933 if EvNum
= TEAM_RED
then
1934 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_ADD
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 108);
1935 if EvNum
= TEAM_BLUE
then
1936 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_ADD
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 108);
1937 if EvNum
= -TEAM_RED
then
1938 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_SUB
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 108);
1939 if EvNum
= -TEAM_BLUE
then
1940 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_SUB
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 108);
1945 g_Player_RemoveAllCorpses
;
1946 g_Game_Message(_lc
[I_MESSAGE_LMS_START
], 144);
1950 g_Game_Message(Format(_lc
[I_MESSAGE_LMS_WIN
], [AnsiUpperCase(EvStr
)]), 144);
1954 if EvNum
= TEAM_RED
then
1955 g_Game_Message(Format(_lc
[I_MESSAGE_TLMS_WIN
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 144);
1956 if EvNum
= TEAM_BLUE
then
1957 g_Game_Message(Format(_lc
[I_MESSAGE_TLMS_WIN
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 144);
1961 g_Game_Message(_lc
[I_MESSAGE_LMS_LOSE
], 144);
1964 g_Game_Message(_lc
[I_GAME_WIN_DRAW
], 144);
1967 g_Game_Announce_KillCombo(EvNum
);
1969 NET_EV_PLAYER_TOUCH
:
1971 pl
:= g_Player_Get(EvNum
);
1978 pl
:= g_Player_Get(EvNum
);
1981 g_Console_Add(Format(_lc
[I_PLAYER_SECRET
], [pl
.Name
]), True);
1982 g_Sound_PlayEx('SOUND_GAME_SECRET');
1988 pl
:= g_Player_Get(EvNum
);
1989 if pl
<> nil then pl
.FReady
:= (EvStr
= 'Y');
1994 procedure MC_RECV_FlagEvent(var M
: TMsg
);
2003 EvType
:= M
.ReadByte();
2006 if Fl
= FLAG_NONE
then Exit
;
2008 Quiet
:= (M
.ReadByte() <> 0);
2009 PID
:= M
.ReadWord();
2011 gFlags
[Fl
].State
:= M
.ReadByte();
2012 gFlags
[Fl
].CaptureTime
:= M
.ReadLongWord();
2013 gFlags
[Fl
].Obj
.X
:= M
.ReadLongInt();
2014 gFlags
[Fl
].Obj
.Y
:= M
.ReadLongInt();
2015 gFlags
[Fl
].Obj
.Vel
.X
:= M
.ReadLongInt();
2016 gFlags
[Fl
].Obj
.Vel
.Y
:= M
.ReadLongInt();
2018 Pl
:= g_Player_Get(PID
);
2020 (EvType
<> FLAG_STATE_NORMAL
) and
2021 (EvType
<> FLAG_STATE_DROPPED
) and
2022 (EvType
<> FLAG_STATE_RETURNED
) then
2028 if Quiet
or (Pl
= nil) then Exit
;
2030 if Fl
= FLAG_RED
then
2031 s
:= _lc
[I_PLAYER_FLAG_RED
]
2033 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2035 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_RETURN
], [AnsiUpperCase(s
)]), 144);
2037 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2038 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2039 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2044 if not sound_ret_flag
[a
].IsPlaying() then
2045 sound_ret_flag
[a
].Play();
2048 FLAG_STATE_CAPTURED
:
2050 if (Pl
<> nil) then Pl
.SetFlag(Fl
);
2054 if Fl
= FLAG_RED
then
2055 s
:= _lc
[I_PLAYER_FLAG_RED
]
2057 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2059 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_GET
], [Pl
.Name
, s
]), True);
2060 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_GET
], [AnsiUpperCase(s
)]), 144);
2062 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2063 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2064 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2069 if not sound_get_flag
[a
].IsPlaying() then
2070 sound_get_flag
[a
].Play();
2075 if (Pl
<> nil) then Pl
.SetFlag(FLAG_NONE
);
2077 if Quiet
or (Pl
= nil) then Exit
;
2079 if Fl
= FLAG_RED
then
2080 s
:= _lc
[I_PLAYER_FLAG_RED
]
2082 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2084 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_DROP
], [Pl
.Name
, s
]), True);
2085 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_DROP
], [AnsiUpperCase(s
)]), 144);
2087 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2088 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2089 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2094 if not sound_lost_flag
[a
].IsPlaying() then
2095 sound_lost_flag
[a
].Play();
2100 g_Map_ResetFlag(FLAG_RED
);
2101 g_Map_ResetFlag(FLAG_BLUE
);
2102 if Quiet
or (Pl
= nil) then Exit
;
2103 Pl
.SetFlag(FLAG_NONE
);
2105 if Fl
= FLAG_RED
then
2106 s
:= _lc
[I_PLAYER_FLAG_RED
]
2108 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2110 ts
:= Format('%.4d', [gFlags
[Fl
].CaptureTime
]);
2111 Insert('.', ts
, Length(ts
) + 1 - 3);
2112 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_CAPTURE
], [Pl
.Name
, s
, ts
]), True);
2113 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_CAPTURE
], [AnsiUpperCase(s
)]), 144);
2115 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2116 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2117 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2122 if not sound_cap_flag
[a
].IsPlaying() then
2123 sound_cap_flag
[a
].Play();
2126 FLAG_STATE_RETURNED
:
2128 g_Map_ResetFlag(Fl
);
2131 if Fl
= FLAG_RED
then
2132 s
:= _lc
[I_PLAYER_FLAG_RED
]
2134 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2136 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_RETURN
], [AnsiUpperCase(s
)]), 144);
2138 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2139 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2140 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2145 if not sound_ret_flag
[a
].IsPlaying() then
2146 sound_ret_flag
[a
].Play();
2151 procedure MC_RECV_GameSettings(var M
: TMsg
);
2153 gGameSettings
.GameMode
:= M
.ReadByte();
2154 gGameSettings
.GoalLimit
:= M
.ReadWord();
2155 gGameSettings
.TimeLimit
:= M
.ReadWord();
2156 gGameSettings
.MaxLives
:= M
.ReadByte();
2157 gGameSettings
.Options
:= M
.ReadLongWord();
2162 function MC_RECV_PlayerCreate(var M
: TMsg
): Word;
2165 PName
, Model
: string;
2170 PID
:= M
.ReadWord();
2171 Pl
:= g_Player_Get(PID
);
2173 PName
:= M
.ReadString();
2174 Model
:= M
.ReadString();
2175 Color
.R
:= M
.ReadByte();
2176 Color
.G
:= M
.ReadByte();
2177 Color
.B
:= M
.ReadByte();
2181 if (PID
<> NetPlrUID1
) and (PID
<> NetPlrUID2
) then
2183 if (Pl
<> nil) then Exit
;
2184 DID
:= g_Player_Create(Model
, Color
, T
, False);
2185 with g_Player_Get(DID
) do
2194 if (PID
= NetPlrUID1
) and (gPlayer1
<> nil) then begin
2195 gPlayer1
.UID
:= PID
;
2196 gPlayer1
.Model
.SetColor(Color
.R
, Color
.G
, Color
.B
);
2197 gPlayer1
.ChangeTeam(T
);
2199 if (PID
= NetPlrUID2
) and (gPlayer2
<> nil) then begin
2200 gPlayer2
.UID
:= PID
;
2201 gPlayer2
.Model
.SetColor(Color
.R
, Color
.G
, Color
.B
);
2202 gPlayer2
.ChangeTeam(T
);
2206 g_Console_Add(Format(_lc
[I_PLAYER_JOIN
], [PName
]), True);
2207 e_WriteLog('NET: Player ' + PName
+ ' [' + IntToStr(PID
) + '] added.', TMsgType
.Notify
);
2211 function MC_RECV_PlayerPos(var M
: TMsg
): Word;
2218 TmpX
, TmpY
: Integer;
2222 GT
:= M
.ReadLongWord();
2223 if GT
< gTime
- NET_MAX_DIFFTIME
then
2230 PID
:= M
.ReadWord();
2231 Pl
:= g_Player_Get(PID
);
2233 if Pl
= nil then Exit
;
2239 FPing
:= M
.ReadWord();
2240 FLoss
:= M
.ReadByte();
2241 kByte
:= M
.ReadWord();
2242 Dir
:= M
.ReadByte();
2244 TmpX
:= M
.ReadLongInt();
2245 TmpY
:= M
.ReadLongInt();
2249 if (kByte
= NET_KEY_CHAT
) then
2250 PressKey(KEY_CHAT
, 10000)
2253 if LongBool(kByte
and NET_KEY_LEFT
) then PressKey(KEY_LEFT
, 10000);
2254 if LongBool(kByte
and NET_KEY_RIGHT
) then PressKey(KEY_RIGHT
, 10000);
2255 if LongBool(kByte
and NET_KEY_UP
) then PressKey(KEY_UP
, 10000);
2256 if LongBool(kByte
and NET_KEY_DOWN
) then PressKey(KEY_DOWN
, 10000);
2257 if LongBool(kByte
and NET_KEY_JUMP
) then PressKey(KEY_JUMP
, 10000);
2260 if ((Pl
<> gPlayer1
) and (Pl
<> gPlayer2
)) or LongBool(kByte
and NET_KEY_FORCEDIR
) then
2261 SetDirection(TDirection(Dir
));
2263 GameVelX
:= M
.ReadLongInt();
2264 GameVelY
:= M
.ReadLongInt();
2265 GameAccelX
:= M
.ReadLongInt();
2266 GameAccelY
:= M
.ReadLongInt();
2267 SetLerp(TmpX
, TmpY
);
2268 if NetForcePlayerUpdate
then Update();
2272 function MC_RECV_PlayerStats(var M
: TMsg
): Word;
2276 I
, OldFire
: Integer;
2277 OldJet
, Flam
: Boolean;
2280 PID
:= M
.ReadWord();
2281 Pl
:= g_Player_Get(PID
);
2288 alive
:= (M
.ReadByte() <> 0);
2289 GodMode
:= (M
.ReadByte() <> 0);
2290 Health
:= M
.ReadLongInt();
2291 Armor
:= M
.ReadLongInt();
2292 Air
:= M
.ReadLongInt();
2293 JetFuel
:= M
.ReadLongInt();
2294 Lives
:= M
.ReadByte();
2295 NewTeam
:= M
.ReadByte();
2297 for I
:= WP_FIRST
to WP_LAST
do
2298 FWeapon
[I
] := (M
.ReadByte() <> 0);
2300 for I
:= A_BULLETS
to A_HIGH
do
2301 FAmmo
[I
] := M
.ReadWord();
2303 for I
:= A_BULLETS
to A_HIGH
do
2304 FMaxAmmo
[I
] := M
.ReadWord();
2306 for I
:= MR_SUIT
to MR_MAX
do
2307 FMegaRulez
[I
] := M
.ReadLongWord();
2310 if (M
.ReadByte() <> 0) then
2311 FRulez
:= FRulez
+ [R_ITEM_BACKPACK
];
2312 if (M
.ReadByte() <> 0) then
2313 FRulez
:= FRulez
+ [R_KEY_RED
];
2314 if (M
.ReadByte() <> 0) then
2315 FRulez
:= FRulez
+ [R_KEY_GREEN
];
2316 if (M
.ReadByte() <> 0) then
2317 FRulez
:= FRulez
+ [R_KEY_BLUE
];
2318 if (M
.ReadByte() <> 0) then
2319 FRulez
:= FRulez
+ [R_BERSERK
];
2321 Frags
:= M
.ReadLongInt();
2322 Death
:= M
.ReadLongInt();
2324 SetWeapon(M
.ReadByte());
2326 FSpectator
:= M
.ReadByte() <> 0;
2329 if Pl
= gPlayer1
then
2334 if Pl
= gPlayer2
then
2342 if (gPlayer1
= nil) and (gLMSPID1
> 0) then
2343 gPlayer1
:= g_Player_Get(gLMSPID1
);
2344 if (gPlayer2
= nil) and (gLMSPID2
> 0) then
2345 gPlayer2
:= g_Player_Get(gLMSPID2
);
2347 FGhost
:= M
.ReadByte() <> 0;
2348 FPhysics
:= M
.ReadByte() <> 0;
2349 FNoRespawn
:= M
.ReadByte() <> 0;
2351 FJetpack
:= M
.ReadByte() <> 0;
2352 OldFire
:= FFireTime
;
2353 FFireTime
:= M
.ReadLongInt();
2354 if (OldFire
<= 0) and (FFireTime
> 0) then
2355 g_Sound_PlayExAt('SOUND_IGNITE', Obj
.X
, Obj
.Y
);
2356 Flam
:= M
.ReadByte() <> 0;
2357 FSpawnInvul
:= M
.ReadLongInt();
2358 if OldJet
and not FJetpack
then
2360 else if not OldJet
and FJetpack
then
2362 if FFlaming
and not Flam
then
2364 if Team
<> NewTeam
then
2365 Pl
.ChangeTeam(NewTeam
);
2371 function MC_RECV_PlayerDamage(var M
: TMsg
): Word;
2376 Attacker
, Value
: Word;
2380 if not gGameOn
then Exit
;
2381 PID
:= M
.ReadWord();
2382 Pl
:= g_Player_Get(PID
);
2383 if Pl
= nil then Exit
;
2385 Kind
:= M
.ReadByte();
2386 Attacker
:= M
.ReadWord();
2387 Value
:= M
.ReadWord();
2392 Damage(Value
, Attacker
, VX
, VY
, Kind
);
2397 function MC_RECV_PlayerDeath(var M
: TMsg
): Word;
2401 KillType
, DeathType
: Byte;
2405 if not gGameOn
then Exit
;
2406 PID
:= M
.ReadWord();
2407 Pl
:= g_Player_Get(PID
);
2408 if Pl
= nil then Exit
;
2410 KillType
:= M
.ReadByte();
2411 DeathType
:= M
.ReadByte();
2412 Attacker
:= M
.ReadWord();
2416 Kill(KillType
, Attacker
, DeathType
);
2421 function MC_RECV_PlayerDelete(var M
: TMsg
): Word;
2426 PID
:= M
.ReadWord();
2427 Pl
:= g_Player_Get(PID
);
2429 if Pl
= nil then Exit
;
2431 g_Console_Add(Format(_lc
[I_PLAYER_LEAVE
], [Pl
.Name
]), True);
2432 e_WriteLog('NET: Player ' + Pl
.Name
+ ' [' + IntToStr(PID
) + '] removed.', TMsgType
.Notify
);
2434 g_Player_Remove(PID
);
2439 function MC_RECV_PlayerFire(var M
: TMsg
): Word;
2444 X
, Y
, AX
, AY
: Integer;
2448 if not gGameOn
then Exit
;
2449 PID
:= M
.ReadWord();
2450 Pl
:= g_Player_Get(PID
);
2451 if Pl
= nil then Exit
;
2453 Weap
:= M
.ReadByte();
2454 X
:= M
.ReadLongInt();
2455 Y
:= M
.ReadLongInt();
2456 AX
:= M
.ReadLongInt();
2457 AY
:= M
.ReadLongInt();
2458 SHID
:= M
.ReadLongInt();
2461 if alive
then NetFire(Weap
, X
, Y
, AX
, AY
, SHID
);
2464 procedure MC_RECV_PlayerSettings(var M
: TMsg
);
2473 PID
:= M
.ReadWord();
2474 Pl
:= g_Player_Get(PID
);
2475 if Pl
= nil then Exit
;
2477 TmpName
:= M
.ReadString();
2478 TmpModel
:= M
.ReadString();
2479 TmpColor
.R
:= M
.ReadByte();
2480 TmpColor
.G
:= M
.ReadByte();
2481 TmpColor
.B
:= M
.ReadByte();
2482 TmpTeam
:= M
.ReadByte();
2484 if (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) and (Pl
.Team
<> TmpTeam
) then
2486 Pl
.ChangeTeam(TmpTeam
);
2487 if gPlayer1
= Pl
then
2488 gPlayer1Settings
.Team
:= TmpTeam
;
2489 if gPlayer2
= Pl
then
2490 gPlayer2Settings
.Team
:= TmpTeam
;
2492 Pl
.SetColor(TmpColor
);
2494 if Pl
.Name
<> TmpName
then
2496 g_Console_Add(Format(_lc
[I_PLAYER_NAME
], [Pl
.Name
, TmpName
]), True);
2500 if TmpModel
<> Pl
.Model
.Name
then
2501 Pl
.SetModel(TmpModel
);
2506 procedure MC_RECV_ItemSpawn(var M
: TMsg
);
2510 X
, Y
, VX
, VY
: Integer;
2512 Quiet
, Fall
{, Resp}: Boolean;
2516 if not gGameOn
then Exit
;
2518 Quiet
:= M
.ReadByte() <> 0;
2520 Fall
:= M
.ReadByte() <> 0;
2521 {Resp :=} M
.ReadByte();
2522 X
:= M
.ReadLongInt();
2523 Y
:= M
.ReadLongInt();
2524 VX
:= M
.ReadLongInt();
2525 VY
:= M
.ReadLongInt();
2527 g_Items_Create(X
, Y
, T
and $7F, Fall
, False, False, ID
);
2528 if ((T
and $80) <> 0) then g_Items_SetDrop(ID
);
2530 it
:= g_Items_ByIdx(ID
);
2536 g_Sound_PlayExAt('SOUND_ITEM_RESPAWNITEM', X
, Y
);
2537 if g_Frames_Get(AID
, 'FRAMES_ITEM_RESPAWN') then
2539 Anim
:= TAnimation
.Create(AID
, False, 4);
2540 g_GFX_OnceAnim(X
+(it
.Obj
.Rect
.Width
div 2)-16, Y
+(it
.Obj
.Rect
.Height
div 2)-16, Anim
);
2546 procedure MC_RECV_ItemDestroy(var M
: TMsg
);
2551 if not gGameOn
then Exit
;
2553 Quiet
:= M
.ReadByte() <> 0;
2555 if not g_Items_ValidId(ID
) then exit
;
2557 if not Quiet
then g_Items_EmitPickupSound(ID
);
2564 procedure MC_RECV_PanelTexture(var M
: TMsg
);
2571 if not gGameOn
then Exit
;
2573 PGUID
:= Integer(M
.ReadLongWord());
2574 Tex
:= M
.ReadLongInt();
2575 Fr
:= M
.ReadLongInt();
2576 Cnt
:= M
.ReadByte();
2577 Loop
:= M
.ReadByte();
2579 TP
:= g_Map_PanelByGUID(PGUID
);
2583 TP
.SetTexture(Tex
, Loop
);
2584 TP
.SetFrame(Fr
, Cnt
);
2588 procedure MC_RECV_PanelState(var M
: TMsg
);
2593 X
, Y
, W
, H
: Integer;
2595 speedX
, speedY
, startX
, startY
, endX
, endY
: Integer;
2596 sizeSpX
, sizeSpY
, sizeEX
, sizeEY
: Integer;
2599 if not gGameOn
then Exit
;
2601 PGUID
:= Integer(M
.ReadLongWord());
2602 E
:= (M
.ReadByte() <> 0);
2603 Lift
:= M
.ReadByte();
2604 X
:= M
.ReadLongInt();
2605 Y
:= M
.ReadLongInt();
2609 speedX
:= M
.ReadLongInt();
2610 speedY
:= M
.ReadLongInt();
2611 startX
:= M
.ReadLongInt();
2612 startY
:= M
.ReadLongInt();
2613 endX
:= M
.ReadLongInt();
2614 endY
:= M
.ReadLongInt();
2615 sizeSpX
:= M
.ReadLongInt();
2616 sizeSpY
:= M
.ReadLongInt();
2617 sizeEX
:= M
.ReadLongInt();
2618 sizeEY
:= M
.ReadLongInt();
2619 mpflags
:= M
.ReadByte(); // bit0: TP.movingActive; bit1: TP.moveOnce
2621 TP
:= g_Map_PanelByGUID(PGUID
);
2622 if (TP
= nil) then exit
;
2624 // update lifts state
2625 if TP
.isGLift
then g_Map_SetLiftGUID(PGUID
, Lift
);
2627 // update enabled/disabled state for all panels
2628 if E
then g_Map_EnableWallGUID(PGUID
) else g_Map_DisableWallGUID(PGUID
);
2630 // update panel position, as it can be moved (mplat)
2635 // update mplat state
2636 TP
.movingSpeedX
:= speedX
;
2637 TP
.movingSpeedY
:= speedY
;
2638 TP
.movingStartX
:= startX
;
2639 TP
.movingStartY
:= startY
;
2640 TP
.movingEndX
:= endX
;
2641 TP
.movingEndY
:= endY
;
2642 TP
.sizeSpeedX
:= sizeSpX
;
2643 TP
.sizeSpeedY
:= sizeSpY
;
2644 TP
.sizeEndX
:= sizeEX
;
2645 TP
.sizeEndY
:= sizeEY
;
2646 TP
.movingActive
:= ((mpflags
and 1) <> 0);
2647 TP
.moveOnce
:= ((mpflags
and 2) <> 0);
2648 // notify panel of it's position/size change, so it can fix other internal structures
2649 TP
.positionChanged();
2654 procedure MC_RECV_TriggerSound(var M
: TMsg
);
2657 SPos
, SID
: LongWord;
2661 if not gGameOn
then Exit
;
2662 if gTriggers
= nil then Exit
;
2664 SID
:= M
.ReadLongWord();
2665 SPlaying
:= M
.ReadByte() <> 0;
2666 SPos
:= M
.ReadLongWord();
2667 SCount
:= M
.ReadLongInt();
2669 for I
:= Low(gTriggers
) to High(gTriggers
) do
2670 if gTriggers
[I
].TriggerType
= TRIGGER_SOUND
then
2671 if gTriggers
[I
].ClientID
= SID
then
2672 with gTriggers
[I
] do
2674 if Sound
<> nil then
2679 Sound
.PlayVolumeAt(X
+(Width
div 2), Y
+(Height
div 2), tgcVolume
/255.0)
2681 Sound
.PlayPanVolume((tgcPan
-127.0)/128.0, tgcVolume
/255.0);
2682 Sound
.SetPosition(SPos
);
2685 if Sound
.IsPlaying
then Sound
.Stop
;
2688 SoundPlayCount
:= SCount
;
2692 procedure MC_RECV_TriggerMusic(var M
: TMsg
);
2699 if not gGameOn
then Exit
;
2701 MName
:= M
.ReadString();
2702 MPlaying
:= M
.ReadByte() <> 0;
2703 MPos
:= M
.ReadLongWord();
2704 MPaused
:= M
.ReadByte() <> 0;
2705 MPos
:= MPos
+1; //k8: stfu, fpc!
2709 gMusic
.SetByName(MName
);
2711 // gMusic.SetPosition(MPos);
2712 gMusic
.SpecPause
:= MPaused
;
2715 if gMusic
.IsPlaying
then gMusic
.Stop
;
2720 procedure MC_RECV_MonsterSpawn(var M
: TMsg
);
2723 MType
, MState
, MDir
, MAnim
, MBehav
: Byte;
2724 X
, Y
, VX
, VY
, MTargTime
, MHealth
, MAmmo
, MSleep
: Integer;
2729 Mon
:= g_Monsters_ByUID(ID
);
2733 MType
:= M
.ReadByte();
2734 MState
:= M
.ReadByte();
2735 MAnim
:= M
.ReadByte();
2736 MTarg
:= M
.ReadWord();
2737 MTargTime
:= M
.ReadLongInt();
2738 MBehav
:= M
.ReadByte();
2739 MSleep
:= M
.ReadLongInt();
2740 MHealth
:= M
.ReadLongInt();
2741 MAmmo
:= M
.ReadLongInt();
2743 X
:= M
.ReadLongInt();
2744 Y
:= M
.ReadLongInt();
2745 VX
:= M
.ReadLongInt();
2746 VY
:= M
.ReadLongInt();
2747 MDir
:= M
.ReadByte();
2749 g_Monsters_Create(MType
, X
, Y
, TDirection(MDir
), False, ID
);
2750 Mon
:= g_Monsters_ByUID(ID
);
2757 MonsterAnim
:= MAnim
;
2758 MonsterTargetUID
:= MTarg
;
2759 MonsterTargetTime
:= MTargTime
;
2760 MonsterBehaviour
:= MBehav
;
2761 MonsterSleep
:= MSleep
;
2762 MonsterAmmo
:= MAmmo
;
2767 setPosition(X
, Y
); // this will call positionChanged();
2773 procedure MC_RECV_MonsterPos(var M
: TMsg
);
2780 Mon
:= g_Monsters_ByUID(ID
);
2786 X
:= M
.ReadLongInt();
2787 Y
:= M
.ReadLongInt();
2788 Mon
.setPosition(X
, Y
); // this will call `positionChanged()`
2789 GameVelX
:= M
.ReadLongInt();
2790 GameVelY
:= M
.ReadLongInt();
2791 GameDirection
:= TDirection(M
.ReadByte());
2795 procedure MC_RECV_MonsterState(var M
: TMsg
);
2797 ID
, OldFire
: Integer;
2798 MState
, MFAnm
: Byte;
2800 AnimRevert
: Boolean;
2803 Mon
:= g_Monsters_ByUID(ID
);
2804 if Mon
= nil then Exit
;
2806 MState
:= M
.ReadByte();
2807 MFAnm
:= M
.ReadByte();
2811 MonsterTargetUID
:= M
.ReadWord();
2812 MonsterTargetTime
:= M
.ReadLongInt();
2813 MonsterSleep
:= M
.ReadLongInt();
2814 MonsterHealth
:= M
.ReadLongInt();
2815 MonsterAmmo
:= M
.ReadLongInt();
2816 MonsterPain
:= M
.ReadLongInt();
2817 AnimRevert
:= M
.ReadByte() <> 0;
2818 OldFire
:= FFireTime
;
2819 FFireTime
:= M
.ReadLongInt();
2820 if (OldFire
<= 0) and (FFireTime
> 0) then
2821 g_Sound_PlayExAt('SOUND_IGNITE', Obj
.X
, Obj
.Y
);
2822 RevertAnim(AnimRevert
);
2824 if MonsterState
<> MState
then
2826 if (MState
= MONSTATE_GO
) and (MonsterState
= MONSTATE_SLEEP
) then WakeUpSound();
2827 if (MState
= MONSTATE_DIE
) then DieSound();
2828 if (MState
= MONSTATE_PAIN
) then MakeBloodSimple(Min(200, MonsterPain
));
2829 if (MState
= MONSTATE_ATTACK
) then kick(nil);
2830 if (MState
= MONSTATE_DEAD
) then SetDeadAnim();
2832 SetState(MState
, MFAnm
);
2837 procedure MC_RECV_MonsterShot(var M
: TMsg
);
2841 X
, Y
, VX
, VY
: Integer;
2845 Mon
:= g_Monsters_ByUID(ID
);
2846 if Mon
= nil then Exit
;
2848 X
:= M
.ReadLongInt();
2849 Y
:= M
.ReadLongInt();
2850 VX
:= M
.ReadLongInt();
2851 VY
:= M
.ReadLongInt();
2853 Mon
.ClientAttack(X
, Y
, VX
, VY
);
2856 procedure MC_RECV_MonsterDelete(var M
: TMsg
);
2862 Mon
:= g_Monsters_ByUID(ID
);
2863 if Mon
= nil then Exit
;
2865 Mon
.MonsterRemoved
:= True;
2868 procedure MC_RECV_TimeSync(var M
: TMsg
);
2872 Time
:= M
.ReadLongWord();
2874 if gState
= STATE_INTERCUSTOM
then
2875 gServInterTime
:= Min(Time
, 255);
2878 procedure MC_RECV_VoteEvent(var M
: TMsg
);
2882 Int1
, Int2
: SmallInt;
2884 EvID
:= M
.ReadByte();
2885 Int1
:= M
.ReadSmallInt();
2886 Int2
:= M
.ReadSmallInt();
2887 Str1
:= M
.ReadString();
2888 Str2
:= M
.ReadString();
2892 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_STARTED
], [Str1
, Str2
, Int1
]), True);
2894 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_PASSED
], [Str1
]), True);
2896 g_Console_Add(_lc
[I_MESSAGE_VOTE_FAILED
], True);
2898 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_VOTE
], [Str1
, Int1
, Int2
]), True);
2900 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_INPROGRESS
], [Str1
]), True);
2906 procedure MC_SEND_Info(Password
: string);
2910 NetOut
.Write(Byte(NET_MSG_INFO
));
2911 NetOut
.Write(GAME_VERSION
);
2912 NetOut
.Write(Password
);
2913 NetOut
.Write(gPlayer1Settings
.Name
);
2914 NetOut
.Write(gPlayer1Settings
.Model
);
2915 NetOut
.Write(gPlayer1Settings
.Color
.R
);
2916 NetOut
.Write(gPlayer1Settings
.Color
.G
);
2917 NetOut
.Write(gPlayer1Settings
.Color
.B
);
2918 NetOut
.Write(gPlayer1Settings
.Team
);
2920 g_Net_Client_Send(True, NET_CHAN_SERVICE
);
2923 procedure MC_SEND_Chat(Txt
: string; Mode
: Byte);
2925 NetOut
.Write(Byte(NET_MSG_CHAT
));
2929 g_Net_Client_Send(True, NET_CHAN_CHAT
);
2932 procedure MC_SEND_PlayerPos();
2937 WeaponSelect
: Word = 0;
2940 if not gGameOn
then Exit
;
2941 if gPlayers
= nil then Exit
;
2942 if gPlayer1
= nil then Exit
;
2945 Predict
:= NetPredictSelf
; // and (not NetGotKeys);
2947 if (not gConsoleShow
) and (not gChatShow
) and (g_ActiveWindow
= nil) then
2949 strafeDir
:= P1MoveButton
shr 4;
2950 P1MoveButton
:= P1MoveButton
and $0F;
2952 if gPlayerAction
[0, ACTION_MOVELEFT
] and (not gPlayerAction
[0, ACTION_MOVERIGHT
]) then
2954 else if (not gPlayerAction
[0, ACTION_MOVELEFT
]) and gPlayerAction
[0, ACTION_MOVERIGHT
] then
2956 else if (not gPlayerAction
[0, ACTION_MOVELEFT
]) and (not gPlayerAction
[0, ACTION_MOVERIGHT
]) then
2960 if gPlayerAction
[0, ACTION_STRAFE
] then
2962 // new strafe mechanics
2963 if (strafeDir
= 0) then
2964 strafeDir
:= P1MoveButton
; // start strafing
2965 // now set direction according to strafe (reversed)
2966 if (strafeDir
= 2) then
2967 gPlayer1
.SetDirection(TDirection
.D_LEFT
)
2968 else if (strafeDir
= 1) then
2969 gPlayer1
.SetDirection(TDirection
.D_RIGHT
)
2973 strafeDir
:= 0; // not strafing anymore
2974 if (P1MoveButton
= 2) and gPlayerAction
[0, ACTION_MOVELEFT
] then
2975 gPlayer1
.SetDirection(TDirection
.D_LEFT
)
2976 else if (P1MoveButton
= 1) and gPlayerAction
[0, ACTION_MOVERIGHT
] then
2977 gPlayer1
.SetDirection(TDirection
.D_RIGHT
)
2978 else if P1MoveButton
<> 0 then
2979 gPlayer1
.SetDirection(TDirection(P1MoveButton
-1));
2982 gPlayer1
.ReleaseKeys
;
2983 if P1MoveButton
= 1 then
2985 kByte
:= kByte
or NET_KEY_LEFT
;
2986 if Predict
then gPlayer1
.PressKey(KEY_LEFT
, 10000);
2988 if P1MoveButton
= 2 then
2990 kByte
:= kByte
or NET_KEY_RIGHT
;
2991 if Predict
then gPlayer1
.PressKey(KEY_RIGHT
, 10000);
2993 if gPlayerAction
[0, ACTION_LOOKUP
] then
2995 kByte
:= kByte
or NET_KEY_UP
;
2996 gPlayer1
.PressKey(KEY_UP
, 10000);
2998 if gPlayerAction
[0, ACTION_LOOKDOWN
] then
3000 kByte
:= kByte
or NET_KEY_DOWN
;
3001 gPlayer1
.PressKey(KEY_DOWN
, 10000);
3003 if gPlayerAction
[0, ACTION_JUMP
] then
3005 kByte
:= kByte
or NET_KEY_JUMP
;
3006 // gPlayer1.PressKey(KEY_JUMP, 10000); // TODO: Make a prediction option
3008 if gPlayerAction
[0, ACTION_ATTACK
] then kByte
:= kByte
or NET_KEY_FIRE
;
3009 if gPlayerAction
[0, ACTION_ACTIVATE
] then kByte
:= kByte
or NET_KEY_OPEN
;
3010 if gPlayerAction
[0, ACTION_WEAPNEXT
] then kByte
:= kByte
or NET_KEY_NW
;
3011 if gPlayerAction
[0, ACTION_WEAPPREV
] then kByte
:= kByte
or NET_KEY_PW
;
3013 gPlayerAction
[0, ACTION_WEAPNEXT
] := False; // HACK, remove after readyweaon&pendinweapon implementation
3014 gPlayerAction
[0, ACTION_WEAPPREV
] := False; // HACK, remove after readyweaon&pendinweapon implementation
3016 for i
:= WP_FIRST
to WP_LAST
do
3018 if gSelectWeapon
[0, i
] then
3020 WeaponSelect
:= WeaponSelect
or Word(1 shl i
);
3021 gSelectWeapon
[0, i
] := False
3025 // fix movebutton state
3026 P1MoveButton
:= P1MoveButton
or (strafeDir
shl 4);
3029 kByte
:= NET_KEY_CHAT
;
3031 NetOut
.Write(Byte(NET_MSG_PLRPOS
));
3032 NetOut
.Write(gTime
);
3033 NetOut
.Write(kByte
);
3034 NetOut
.Write(Byte(gPlayer1
.Direction
));
3035 NetOut
.Write(WeaponSelect
);
3036 //e_WriteLog(Format('S:ws=%d', [WeaponSelect]), MSG_WARNING);
3037 g_Net_Client_Send(True, NET_CHAN_PLAYERPOS
);
3039 //kBytePrev := kByte;
3040 //kDirPrev := gPlayer1.Direction;
3043 procedure MC_SEND_Vote(Start
: Boolean = False; Command
: string = 'a');
3045 NetOut
.Write(Byte(NET_MSG_VOTE_EVENT
));
3046 NetOut
.Write(Byte(Start
));
3047 NetOut
.Write(Command
);
3048 g_Net_Client_Send(True, NET_CHAN_IMPORTANT
);
3051 procedure MC_SEND_PlayerSettings();
3053 NetOut
.Write(Byte(NET_MSG_PLRSET
));
3054 NetOut
.Write(gPlayer1Settings
.Name
);
3055 NetOut
.Write(gPlayer1Settings
.Model
);
3056 NetOut
.Write(gPlayer1Settings
.Color
.R
);
3057 NetOut
.Write(gPlayer1Settings
.Color
.G
);
3058 NetOut
.Write(gPlayer1Settings
.Color
.B
);
3059 NetOut
.Write(gPlayer1Settings
.Team
);
3061 g_Net_Client_Send(True, NET_CHAN_IMPORTANT
);
3064 procedure MC_SEND_FullStateRequest();
3066 NetOut
.Write(Byte(NET_MSG_REQFST
));
3068 g_Net_Client_Send(True, NET_CHAN_SERVICE
);
3071 procedure MC_SEND_CheatRequest(Kind
: Byte);
3073 NetOut
.Write(Byte(NET_MSG_CHEAT
));
3076 g_Net_Client_Send(True, NET_CHAN_IMPORTANT
);
3078 procedure MC_SEND_RCONPassword(Password
: string);
3080 NetOut
.Write(Byte(NET_MSG_RCON_AUTH
));
3081 NetOut
.Write(Password
);
3083 g_Net_Client_Send(True, NET_CHAN_SERVICE
);
3085 procedure MC_SEND_RCONCommand(Cmd
: string);
3087 NetOut
.Write(Byte(NET_MSG_RCON_CMD
));
3090 g_Net_Client_Send(True, NET_CHAN_SERVICE
);