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;
115 NET_EV_LMS_NOSPAWN
= 21;
122 NET_VE_INPROGRESS
= 6;
129 NET_CHEAT_SUICIDE
= 1;
130 NET_CHEAT_SPECTATE
= 2;
133 NET_MAX_DIFFTIME
= 5000 div 36;
137 procedure MH_ProcessFirstSpawn (C
: pTNetClient
);
139 procedure MH_RECV_Info(C
: pTNetClient
; var M
: TMsg
);
140 procedure MH_RECV_Chat(C
: pTNetClient
; var M
: TMsg
);
141 procedure MH_RECV_FullStateRequest(C
: pTNetClient
; var M
: TMsg
);
142 function MH_RECV_PlayerPos(C
: pTNetClient
; var M
: TMsg
): Word;
143 procedure MH_RECV_PlayerSettings(C
: pTNetClient
; var M
: TMsg
);
144 procedure MH_RECV_CheatRequest(C
: pTNetClient
; var M
: TMsg
);
145 procedure MH_RECV_RCONPassword(C
: pTNetClient
; var M
: TMsg
);
146 procedure MH_RECV_RCONCommand(C
: pTNetClient
; var M
: TMsg
);
147 //procedure MH_RECV_MapRequest(C: pTNetClient; var M: TMsg);
148 //procedure MH_RECV_ResRequest(C: pTNetClient; var M: TMsg);
149 procedure MH_RECV_Vote(C
: pTNetClient
; var M
: TMsg
);
152 procedure MH_SEND_Everything(CreatePlayers
: Boolean {= False}; ID
: Integer {= NET_EVERYONE});
153 procedure MH_SEND_Info(ID
: Byte);
154 procedure MH_SEND_Chat(Txt
: string; Mode
: Byte; ID
: Integer = NET_EVERYONE
);
155 procedure MH_SEND_Effect(X
, Y
: Integer; Ang
: SmallInt; Kind
: Byte; ID
: Integer = NET_EVERYONE
);
156 procedure MH_SEND_Sound(X
, Y
: Integer; Name
: string; Pos
: Boolean = True; ID
: Integer = NET_EVERYONE
);
157 procedure MH_SEND_CreateShot(Proj
: LongInt; ID
: Integer = NET_EVERYONE
);
158 procedure MH_SEND_UpdateShot(Proj
: LongInt; ID
: Integer = NET_EVERYONE
);
159 procedure MH_SEND_DeleteShot(Proj
: LongInt; X
, Y
: LongInt; Loud
: Boolean = True; ID
: Integer = NET_EVERYONE
);
160 procedure MH_SEND_GameStats(ID
: Integer = NET_EVERYONE
);
161 procedure MH_SEND_CoopStats(ID
: Integer = NET_EVERYONE
);
162 procedure MH_SEND_GameEvent(EvType
: Byte; EvNum
: Integer = 0; EvStr
: string = 'N'; ID
: Integer = NET_EVERYONE
);
163 procedure MH_SEND_FlagEvent(EvType
: Byte; Flag
: Byte; PID
: Word; Quiet
: Boolean = False; ID
: Integer = NET_EVERYONE
);
164 procedure MH_SEND_GameSettings(ID
: Integer = NET_EVERYONE
);
166 procedure MH_SEND_PlayerCreate(PID
: Word; ID
: Integer = NET_EVERYONE
);
167 procedure MH_SEND_PlayerPos(Reliable
: Boolean; PID
: Word; ID
: Integer = NET_EVERYONE
);
168 procedure MH_SEND_PlayerStats(PID
: Word; ID
: Integer = NET_EVERYONE
);
169 procedure MH_SEND_PlayerDelete(PID
: Word; ID
: Integer = NET_EVERYONE
);
170 procedure MH_SEND_PlayerDamage(PID
: Word; Kind
: Byte; Attacker
, Value
: Word; VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
171 procedure MH_SEND_PlayerFire(PID
: Word; Weapon
: Byte; X
, Y
, AX
, AY
: Integer; ShotID
: Integer = -1; ID
: Integer = NET_EVERYONE
);
172 procedure MH_SEND_PlayerDeath(PID
: Word; KillType
, DeathType
: Byte; Attacker
: Word; ID
: Integer = NET_EVERYONE
);
173 procedure MH_SEND_PlayerSettings(PID
: Word; Mdl
: string = ''; ID
: Integer = NET_EVERYONE
);
175 procedure MH_SEND_ItemSpawn(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
176 procedure MH_SEND_ItemDestroy(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
178 procedure MH_SEND_PanelTexture(PGUID
: Integer; AnimLoop
: Byte; ID
: Integer = NET_EVERYONE
);
179 procedure MH_SEND_PanelState(PGUID
: Integer; ID
: Integer = NET_EVERYONE
);
181 procedure MH_SEND_MonsterSpawn(UID
: Word; ID
: Integer = NET_EVERYONE
);
182 procedure MH_SEND_MonsterPos(UID
: Word; ID
: Integer = NET_EVERYONE
);
183 procedure MH_SEND_MonsterState(UID
: Word; ForcedAnim
: Byte = 255; ID
: Integer = NET_EVERYONE
);
184 procedure MH_SEND_MonsterShot(UID
: Word; X
, Y
, VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
185 procedure MH_SEND_MonsterDelete(UID
: Word; ID
: Integer = NET_EVERYONE
);
187 procedure MH_SEND_TriggerSound(var T
: TTrigger
; ID
: Integer = NET_EVERYONE
);
188 procedure MH_SEND_TriggerMusic(ID
: Integer = NET_EVERYONE
);
190 procedure MH_SEND_TimeSync(Time
: LongWord; ID
: Integer = NET_EVERYONE
);
191 procedure MH_SEND_VoteEvent(EvType
: Byte;
192 StrArg1
: string = 'a'; StrArg2
: string = 'b';
193 IntArg1
: SmallInt = 0; IntArg2
: SmallInt = 0;
194 ID
: Integer = NET_EVERYONE
);
196 // CLIENT MESSAGES //
199 procedure MC_RECV_Chat(var M
: TMsg
);
200 procedure MC_RECV_Effect(var M
: TMsg
);
201 procedure MC_RECV_Sound(var M
: TMsg
);
202 procedure MC_RECV_GameStats(var M
: TMsg
);
203 procedure MC_RECV_CoopStats(var M
: TMsg
);
204 procedure MC_RECV_GameEvent(var M
: TMsg
);
205 procedure MC_RECV_FlagEvent(var M
: TMsg
);
206 procedure MC_RECV_GameSettings(var M
: TMsg
);
208 function MC_RECV_PlayerCreate(var M
: TMsg
): Word;
209 function MC_RECV_PlayerPos(var M
: TMsg
): Word;
210 function MC_RECV_PlayerStats(var M
: TMsg
): Word;
211 function MC_RECV_PlayerDelete(var M
: TMsg
): Word;
212 function MC_RECV_PlayerDamage(var M
: TMsg
): Word;
213 function MC_RECV_PlayerDeath(var M
: TMsg
): Word;
214 function MC_RECV_PlayerFire(var M
: TMsg
): Word;
215 procedure MC_RECV_PlayerSettings(var M
: TMsg
);
217 procedure MC_RECV_ItemSpawn(var M
: TMsg
);
218 procedure MC_RECV_ItemDestroy(var M
: TMsg
);
220 procedure MC_RECV_PanelTexture(var M
: TMsg
);
221 procedure MC_RECV_PanelState(var M
: TMsg
);
223 procedure MC_RECV_MonsterSpawn(var M
: TMsg
);
224 procedure MC_RECV_MonsterPos(var M
: TMsg
);
225 procedure MC_RECV_MonsterState(var M
: TMsg
);
226 procedure MC_RECV_MonsterShot(var M
: TMsg
);
227 procedure MC_RECV_MonsterDelete(var M
: TMsg
);
229 procedure MC_RECV_CreateShot(var M
: TMsg
);
230 procedure MC_RECV_UpdateShot(var M
: TMsg
);
231 procedure MC_RECV_DeleteShot(var M
: TMsg
);
233 procedure MC_RECV_TriggerSound(var M
: TMsg
);
234 procedure MC_RECV_TriggerMusic(var M
: TMsg
);
236 procedure MC_RECV_TimeSync(var M
: TMsg
);
237 procedure MC_RECV_VoteEvent(var M
: TMsg
);
239 procedure MC_SEND_Info(Password
: string);
240 procedure MC_SEND_Chat(Txt
: string; Mode
: Byte);
241 procedure MC_SEND_PlayerPos();
242 procedure MC_SEND_FullStateRequest();
243 procedure MC_SEND_PlayerSettings();
244 procedure MC_SEND_CheatRequest(Kind
: Byte);
245 procedure MC_SEND_RCONPassword(Password
: string);
246 procedure MC_SEND_RCONCommand(Cmd
: string);
247 procedure MC_SEND_Vote(Start
: Boolean = False; Command
: string = 'a');
249 //procedure MC_SEND_MapRequest();
250 //procedure MC_SEND_ResRequest(const resName: AnsiString);
254 TExternalResourceInfo
= record
269 ExternalResources
: array of TExternalResourceInfo
;
272 function IsValidFileName(const S
: String): Boolean;
273 function IsValidFilePath(const S
: String): Boolean;
279 Math
, ENet
, e_input
, e_log
, g_base
, g_basic
, r_animations
, r_gfx
,
280 g_textures
, g_gfx
, g_sound
, g_console
, g_options
,
281 g_game
, g_player
, g_map
, g_panel
, g_items
, g_weapons
, g_phys
, g_gui
,
282 g_language
, g_monsters
, g_netmaster
, utils
, wadreader
, MAPDEF
;
295 NET_KEY_FORCEDIR
= 4096;
298 //kBytePrev: Word = 0;
299 //kDirPrev: TDirection = D_LEFT;
300 //HostGameTime: Word = 0;
303 function IsValidFileName(const S
: String): Boolean;
305 Forbidden
: set of Char = ['<', '>', '|', '"', ':', '*', '?'];
310 for I
:= 1 to Length(S
) do
311 Result
:= Result
and (not(S
[I
] in Forbidden
));
314 function IsValidFilePath(const S
: String): Boolean;
319 if not IsValidFileName(S
) then exit
;
320 if FileExists(S
) then exit
;
321 I
:= LastDelimiter('\/', S
);
323 if (not DirectoryExists(Copy(S
, 1, I
-1))) then
334 procedure MH_RECV_Chat(C
: pTNetClient
; var M
: TMsg
);
342 Pl
:= g_Player_Get(PID
);
344 Txt
:= M
.ReadString();
345 Mode
:= M
.ReadByte();
346 if (Mode
= NET_CHAT_SYSTEM
) then
347 Mode
:= NET_CHAT_PLAYER
; // prevent sending system messages from clients
348 if (Mode
= NET_CHAT_TEAM
) and (not gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) then
349 Mode
:= NET_CHAT_PLAYER
; // revert to player chat in non-team game
352 MH_SEND_Chat(Txt
, Mode
)
354 MH_SEND_Chat(Pl
.Name
+ ': ' + Txt
, Mode
, IfThen(Mode
= NET_CHAT_TEAM
, Pl
.Team
, NET_EVERYONE
));
357 procedure MH_RECV_Info(C
: pTNetClient
; var M
: TMsg
);
359 Ver
, PName
, Model
, Pw
: string;
365 Ver
:= M
.ReadString();
366 Pw
:= M
.ReadString();
367 PName
:= M
.ReadString();
368 Model
:= M
.ReadString();
374 if Ver
<> GAME_VERSION
then
376 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
377 _lc
[I_NET_DISC_VERSION
]);
378 enet_peer_disconnect(C
^.Peer
, NET_DISC_VERSION
);
382 if g_Net_IsHostBanned(C
^.Peer
^.address
.host
) then
384 if g_Net_IsHostBanned(C
^.Peer
^.address
.host
, True) then
386 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
387 _lc
[I_NET_DISC_BAN
]);
388 enet_peer_disconnect(C
^.Peer
, NET_DISC_BAN
);
392 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
393 _lc
[I_NET_DISC_BAN
]);
394 enet_peer_disconnect(C
^.Peer
, NET_DISC_TEMPBAN
);
399 if NetPassword
<> '' then
400 if AnsiLowerCase(NetPassword
) <> AnsiLowerCase(Pw
) then
402 g_Console_Add(_lc
[I_NET_MSG
] + _lc
[I_NET_MSG_HOST_REJECT
] +
403 _lc
[I_NET_DISC_PASSWORD
]);
404 enet_peer_disconnect(C
^.Peer
, NET_DISC_PASSWORD
);
412 PID
:= g_Player_Create(Model
, Color
, T
, False);
413 with g_Player_Get(PID
) do
420 C
^.WaitForFirstSpawn
:= false;
422 g_Console_Add(Format(_lc
[I_PLAYER_JOIN
], [PName
]), True);
423 e_WriteLog('NET: Client ' + PName
+ ' [' + IntToStr(C
^.ID
) +
424 '] connected. Assigned player #' + IntToStr(PID
) + '.', TMsgType
.Notify
);
428 with g_Player_Get(PID
) do
432 // round in progress, don't spawn
433 e_LogWritefln('*** client #%u (cid #%u) authenticated...', [C
.ID
, C
.Player
]);
434 //e_LogWritefln('spawning player with pid #%u...', [PID]);
435 //Respawn(gGameSettings.GameType = GT_SINGLE);
436 //k8: no, do not spawn a player yet, wait for "request full state" packet
440 // `FWantsInGame` seems to mean "spawn the player on the next occasion".
441 // that is, if we'll set it to `true`, the player can be spawned after
442 // warmup time ran out, for example, regardless of the real player state.
443 // also, this seems to work only for the initial connection. further
444 // map changes could initiate resource downloading, but the player will
445 // be spawned immediately.
446 // the proper solution will require another player state, "ephemeral".
447 // the player should start any map in "ephemeral" state, and turned into
448 // real mobj only when they sent a special "i am ready" packet. this packet
449 // must be sent after receiving the full state, so the player will get a full
450 // map view before going into game.
451 FWantsInGame
:= false;
452 C
^.WaitForFirstSpawn
:= true;
455 //if not C^.WaitForFirstSpawn then
457 for I
:= Low(NetClients
) to High(NetClients
) do
459 if NetClients
[I
].ID
= C
^.ID
then Continue
;
460 MH_SEND_PlayerCreate(PID
, NetClients
[I
].ID
);
461 MH_SEND_PlayerPos(True, PID
, NetClients
[I
].ID
);
462 MH_SEND_PlayerStats(PID
, NetClients
[I
].ID
);
466 if gState
in [STATE_INTERCUSTOM
, STATE_FOLD
] then
467 MH_SEND_GameEvent(NET_EV_MAPEND
, 0, 'N', C
^.ID
);
471 //g_Net_Slist_Update;
477 procedure MH_ProcessFirstSpawn (C
: pTNetClient
);
481 if not C
.WaitForFirstSpawn
then exit
;
482 plr
:= g_Player_Get(C
^.Player
);
483 if not assigned(plr
) then exit
;
484 g_Net_Slist_ServerPlayerComes();
485 e_LogWritefln('*** client #%u (cid #%u) first spawn', [C
.ID
, C
.Player
]);
486 C
.WaitForFirstSpawn
:= false;
487 plr
.FNoRespawn
:= false;
488 plr
.FWantsInGame
:= true; // TODO: look into this later
490 if (gGameSettings
.MaxLives
> 0) and (gLMSRespawn
= LMS_RESPAWN_NONE
) then
493 MH_SEND_GameEvent(NET_EV_LMS_NOSPAWN
, 0, 'N', C
.ID
);
498 if gLMSRespawn
> LMS_RESPAWN_NONE
then
499 MH_SEND_GameEvent(NET_EV_LMS_WARMUP
, gLMSRespawnTime
- gTime
, 'N', C
.ID
);
504 procedure MH_RECV_FullStateRequest(C
: pTNetClient
; var M
: TMsg
);
506 //e_LogWritefln('*** client #%u (cid #%u) full state request', [C.ID, C.Player]);
509 MH_SEND_Everything((C
^.State
= NET_STATE_AUTH
), C
^.ID
)
513 C
^.RequestedFullUpdate
:= True;
519 function MH_RECV_PlayerPos(C
: pTNetClient
; var M
: TMsg
): Word;
529 if not gGameOn
then Exit
;
531 GT
:= M
.ReadLongWord();
533 Pl
:= g_Player_Get(PID
);
537 if (GT
> gTime
+ NET_MAX_DIFFTIME
) or (GT
< Pl
.NetTime
) then Exit
;
542 kByte
:= M
.ReadWord();
544 WeaponSelect
:= M
.ReadWord();
545 //e_WriteLog(Format('R:ws=%d', [WeaponSelect]), MSG_WARNING);
546 if Direction
<> TDirection(Dir
) then
547 JustTeleported
:= False;
549 SetDirection(TDirection(Dir
));
552 if kByte
= NET_KEY_CHAT
then
554 PressKey(KEY_CHAT
, 10000);
558 if LongBool(kByte
and NET_KEY_LEFT
) then PressKey(KEY_LEFT
, 10000);
559 if LongBool(kByte
and NET_KEY_RIGHT
) then PressKey(KEY_RIGHT
, 10000);
560 if LongBool(kByte
and NET_KEY_UP
) then PressKey(KEY_UP
, 10000);
561 if LongBool(kByte
and NET_KEY_DOWN
) then PressKey(KEY_DOWN
, 10000);
562 if LongBool(kByte
and NET_KEY_JUMP
) then PressKey(KEY_JUMP
, 10000);
563 if LongBool(kByte
and NET_KEY_FIRE
) then PressKey(KEY_FIRE
, 10000);
564 if LongBool(kByte
and NET_KEY_OPEN
) then PressKey(KEY_OPEN
, 10000);
565 if LongBool(kByte
and NET_KEY_NW
) then PressKey(KEY_NEXTWEAPON
, 10000);
566 if LongBool(kByte
and NET_KEY_PW
) then PressKey(KEY_PREVWEAPON
, 10000);
570 if (WeaponSelect
and Word(1 shl i
)) <> 0 then
572 //e_WriteLog(Format(' R:wn=%d', [i]), MSG_WARNING);
573 QueueWeaponSwitch(i
);
578 // MH_SEND_PlayerPos(False, PID, C^.ID);
581 procedure MH_RECV_CheatRequest(C
: pTNetClient
; var M
: TMsg
);
586 Pl
:= g_Player_Get(C
^.Player
);
587 if Pl
= nil then Exit
;
589 CheatKind
:= M
.ReadByte();
593 Pl
.Damage(SUICIDE_DAMAGE
, Pl
.UID
, 0, 0, HIT_SELF
);
596 if Pl
.FSpectator
then
598 if (gGameSettings
.MaxLives
= 0) or (gLMSRespawn
> LMS_RESPAWN_NONE
) then
601 MH_SEND_GameEvent(NET_EV_LMS_NOSPAWN
, Pl
.UID
);
608 if gState
<> STATE_INTERCUSTOM
then Exit
;
609 Pl
.FReady
:= not Pl
.FReady
;
612 MH_SEND_GameEvent(NET_EV_INTER_READY
, Pl
.UID
, 'Y');
613 Inc(gInterReadyCount
);
617 MH_SEND_GameEvent(NET_EV_INTER_READY
, Pl
.UID
, 'N');
618 Dec(gInterReadyCount
);
624 procedure MH_RECV_PlayerSettings(C
: pTNetClient
; var M
: TMsg
);
632 TmpName
:= M
.ReadString();
633 TmpModel
:= M
.ReadString();
634 TmpColor
.R
:= M
.ReadByte();
635 TmpColor
.G
:= M
.ReadByte();
636 TmpColor
.B
:= M
.ReadByte();
637 TmpTeam
:= M
.ReadByte();
639 Pl
:= g_Player_Get(C
^.Player
);
640 if Pl
= nil then Exit
;
642 if (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) and (Pl
.Team
<> TmpTeam
) then
645 Pl
.SetColor(TmpColor
);
647 if Pl
.Name
<> TmpName
then
649 g_Console_Add(Format(_lc
[I_PLAYER_NAME
], [Pl
.Name
, TmpName
]), True);
653 if TmpModel
<> Pl
.Model
.GetName() then
654 Pl
.SetModel(TmpModel
);
656 MH_SEND_PlayerSettings(Pl
.UID
, TmpModel
);
661 procedure MH_RECV_RCONPassword(C
: pTNetClient
; var M
: TMsg
);
665 Pwd
:= M
.ReadString();
666 if not NetAllowRCON
then Exit
;
667 if Pwd
= NetRCONPassword
then
670 MH_SEND_GameEvent(NET_EV_RCON
, NET_RCON_PWGOOD
, 'N', C
^.ID
);
673 MH_SEND_GameEvent(NET_EV_RCON
, NET_RCON_PWBAD
, 'N', C
^.ID
);
676 procedure MH_RECV_RCONCommand(C
: pTNetClient
; var M
: TMsg
);
680 Cmd
:= M
.ReadString();
681 if not NetAllowRCON
then Exit
;
682 if not C
^.RCONAuth
then
684 MH_SEND_GameEvent(NET_EV_RCON
, NET_RCON_NOAUTH
, 'N', C
^.ID
);
687 g_Console_Process(Cmd
);
692 procedure MH_RECV_Vote(C
: pTNetClient
; var M
: TMsg
);
695 Name
, Command
: string;
699 Start
:= M
.ReadByte() <> 0;
700 Command
:= M
.ReadString();
702 Pl
:= g_Player_Get(C
^.Player
);
703 if Pl
= nil then Exit
;
708 if not g_Console_CommandBlacklisted(Command
) then
709 g_Game_StartVote(Command
, Name
);
711 else if gVoteInProgress
then
713 if (gPlayer1
<> nil) or (gPlayer2
<> nil) then
714 Need
:= Floor((NetClientCount
+1)/2.0) + 1
716 Need
:= Floor(NetClientCount
/2.0) + 1;
721 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_REVOKED
], [Name
, gVoteCount
, Need
]), True);
722 MH_SEND_VoteEvent(NET_VE_REVOKE
, Name
, 'a', gVoteCount
, Need
);
728 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_VOTE
], [Name
, gVoteCount
, Need
]), True);
729 MH_SEND_VoteEvent(NET_VE_VOTE
, Name
, 'a', gVoteCount
, Need
);
737 procedure MH_SEND_Everything(CreatePlayers
: Boolean {= False}; ID
: Integer {= NET_EVERYONE});
739 function sendItemRespawn (it
: PItem
): Boolean;
741 result
:= false; // don't stop
742 MH_SEND_ItemSpawn(True, it
.myid
, ID
);
745 function sendMonSpawn (mon
: TMonster
): Boolean;
747 result
:= false; // don't stop
748 MH_SEND_MonsterSpawn(mon
.UID
, ID
);
751 function sendPanelState (pan
: TPanel
): Boolean;
753 result
:= false; // don't stop
754 MH_SEND_PanelState(pan
.guid
, ID
); // anyway, to sync mplats
755 if (pan
.CanChangeTexture
) then MH_SEND_PanelTexture(pan
.guid
, pan
.LastAnimLoop
, ID
);
761 if (ID
>= 0) and (ID
< length(NetClients
)) then
763 e_LogWritefln('*** client #%u (cid #%u) will get everything', [ID
, NetClients
[ID
].Player
]);
764 MH_ProcessFirstSpawn(@NetClients
[ID
]);
767 if gPlayers
<> nil then
769 for I
:= Low(gPlayers
) to High(gPlayers
) do
771 if gPlayers
[I
] <> nil then
773 if CreatePlayers
then MH_SEND_PlayerCreate(gPlayers
[I
].UID
, ID
);
774 MH_SEND_PlayerPos(True, gPlayers
[I
].UID
, ID
);
775 MH_SEND_PlayerStats(gPlayers
[I
].UID
, ID
);
777 if (gPlayers
[I
].Flag
<> FLAG_NONE
) and (gGameSettings
.GameMode
= GM_CTF
) then
779 MH_SEND_FlagEvent(FLAG_STATE_CAPTURED
, gPlayers
[I
].Flag
, gPlayers
[I
].UID
, True, ID
);
785 g_Items_ForEachAlive(sendItemRespawn
, true); // backwards
786 g_Mons_ForEach(sendMonSpawn
);
787 g_Map_ForEachPanel(sendPanelState
);
789 if gTriggers
<> nil then
791 for I
:= Low(gTriggers
) to High(gTriggers
) do
793 if gTriggers
[I
].TriggerType
= TRIGGER_SOUND
then
795 MH_SEND_TriggerSound(gTriggers
[I
], ID
);
802 for I
:= Low(Shots
) to High(Shots
) do
804 if Shots
[i
].ShotType
in [6, 7, 8] then
806 MH_SEND_CreateShot(i
, ID
);
811 MH_SEND_TriggerMusic(ID
);
813 MH_SEND_GameStats(ID
);
814 MH_SEND_CoopStats(ID
);
816 if gGameSettings
.GameMode
= GM_CTF
then
818 if gFlags
[FLAG_RED
].State
<> FLAG_STATE_CAPTURED
then MH_SEND_FlagEvent(gFlags
[FLAG_RED
].State
, FLAG_RED
, 0, True, ID
);
819 if gFlags
[FLAG_BLUE
].State
<> FLAG_STATE_CAPTURED
then MH_SEND_FlagEvent(gFlags
[FLAG_BLUE
].State
, FLAG_BLUE
, 0, True, ID
);
822 if CreatePlayers
and (ID
>= 0) then NetClients
[ID
].State
:= NET_STATE_GAME
;
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
;
1115 if JustTeleported
then kByte
:= kByte
or NET_KEY_FORCEDIR
;
1117 NetOut
.Write(kByte
);
1118 if Direction
= TDirection
.D_LEFT
then NetOut
.Write(Byte(0)) else NetOut
.Write(Byte(1));
1119 NetOut
.Write(GameX
);
1120 NetOut
.Write(GameY
);
1121 NetOut
.Write(GameVelX
);
1122 NetOut
.Write(GameVelY
);
1123 NetOut
.Write(GameAccelX
);
1124 NetOut
.Write(GameAccelY
);
1127 g_Net_Host_Send(ID
, Reliable
, NET_CHAN_PLAYERPOS
);
1130 procedure MH_SEND_PlayerStats(PID
: Word; ID
: Integer = NET_EVERYONE
);
1135 P
:= g_Player_Get(PID
);
1136 if P
= nil then Exit
;
1138 NetOut
.Write(Byte(NET_MSG_PLRSTA
));
1143 NetOut
.Write(Byte(alive
));
1144 NetOut
.Write(Byte(GodMode
));
1145 NetOut
.Write(Health
);
1146 NetOut
.Write(Armor
);
1148 NetOut
.Write(JetFuel
);
1149 NetOut
.Write(Lives
);
1152 for I
:= WP_FIRST
to WP_LAST
do
1153 NetOut
.Write(Byte(FWeapon
[I
]));
1155 for I
:= A_BULLETS
to A_HIGH
do
1156 NetOut
.Write(FAmmo
[I
]);
1158 for I
:= A_BULLETS
to A_HIGH
do
1159 NetOut
.Write(FMaxAmmo
[I
]);
1161 for I
:= MR_SUIT
to MR_MAX
do
1162 NetOut
.Write(LongWord(FMegaRulez
[I
]));
1164 NetOut
.Write(Byte(R_ITEM_BACKPACK
in FRulez
));
1165 NetOut
.Write(Byte(R_KEY_RED
in FRulez
));
1166 NetOut
.Write(Byte(R_KEY_GREEN
in FRulez
));
1167 NetOut
.Write(Byte(R_KEY_BLUE
in FRulez
));
1168 NetOut
.Write(Byte(R_BERSERK
in FRulez
));
1170 NetOut
.Write(Frags
);
1171 NetOut
.Write(Death
);
1173 NetOut
.Write(CurrWeap
);
1175 NetOut
.Write(Byte(FSpectator
));
1176 NetOut
.Write(Byte(FGhost
));
1177 NetOut
.Write(Byte(FPhysics
));
1178 NetOut
.Write(Byte(FNoRespawn
));
1179 NetOut
.Write(Byte(FJetpack
));
1180 NetOut
.Write(FFireTime
);
1181 NetOut
.Write(Byte(FFlaming
));
1182 NetOut
.Write(FSpawnInvul
);
1185 g_Net_Host_Send(ID
, True, NET_CHAN_PLAYER
);
1188 procedure MH_SEND_PlayerDamage(PID
: Word; Kind
: Byte; Attacker
, Value
: Word; VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
1190 NetOut
.Write(Byte(NET_MSG_PLRDMG
));
1193 NetOut
.Write(Attacker
);
1194 NetOut
.Write(Value
);
1198 g_Net_Host_Send(ID
, False, NET_CHAN_PLAYER
);
1201 procedure MH_SEND_PlayerDeath(PID
: Word; KillType
, DeathType
: Byte; Attacker
: Word; ID
: Integer = NET_EVERYONE
);
1203 NetOut
.Write(Byte(NET_MSG_PLRDIE
));
1205 NetOut
.Write(KillType
);
1206 NetOut
.Write(DeathType
);
1207 NetOut
.Write(Attacker
);
1209 g_Net_Host_Send(ID
, True, NET_CHAN_PLAYER
);
1212 procedure MH_SEND_PlayerFire(PID
: Word; Weapon
: Byte; X
, Y
, AX
, AY
: Integer; ShotID
: Integer = -1; ID
: Integer = NET_EVERYONE
);
1214 NetOut
.Write(Byte(NET_MSG_PLRFIRE
));
1216 NetOut
.Write(Weapon
);
1221 NetOut
.Write(ShotID
);
1223 g_Net_Host_Send(ID
, True, NET_CHAN_SHOTS
);
1226 procedure MH_SEND_PlayerDelete(PID
: Word; ID
: Integer = NET_EVERYONE
);
1228 NetOut
.Write(Byte(NET_MSG_PLRDEL
));
1231 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1234 procedure MH_SEND_PlayerSettings(PID
: Word; Mdl
: string = ''; ID
: Integer = NET_EVERYONE
);
1238 Pl
:= g_Player_Get(PID
);
1239 if Pl
= nil then Exit
;
1241 NetOut
.Write(Byte(NET_MSG_PLRSET
));
1243 NetOut
.Write(Pl
.Name
);
1245 NetOut
.Write(Pl
.Model
.GetName())
1248 NetOut
.Write(Pl
.FColor
.R
);
1249 NetOut
.Write(Pl
.FColor
.G
);
1250 NetOut
.Write(Pl
.FColor
.B
);
1251 NetOut
.Write(Pl
.Team
);
1253 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1258 procedure MH_SEND_ItemSpawn(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
1263 it
:= g_Items_ByIdx(IID
);
1265 NetOut
.Write(Byte(NET_MSG_ISPAWN
));
1267 NetOut
.Write(Byte(Quiet
));
1269 if it
.dropped
then tt
:= tt
or $80;
1271 NetOut
.Write(Byte(it
.Fall
));
1272 NetOut
.Write(Byte(it
.Respawnable
));
1273 NetOut
.Write(it
.Obj
.X
);
1274 NetOut
.Write(it
.Obj
.Y
);
1275 NetOut
.Write(it
.Obj
.Vel
.X
);
1276 NetOut
.Write(it
.Obj
.Vel
.Y
);
1278 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1281 procedure MH_SEND_ItemDestroy(Quiet
: Boolean; IID
: Word; ID
: Integer = NET_EVERYONE
);
1283 NetOut
.Write(Byte(NET_MSG_IDEL
));
1285 NetOut
.Write(Byte(Quiet
));
1287 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1292 procedure MH_SEND_PanelTexture(PGUID
: Integer; AnimLoop
: Byte; ID
: Integer = NET_EVERYONE
);
1296 TP
:= g_Map_PanelByGUID(PGUID
);
1297 if (TP
= nil) then exit
;
1301 NetOut
.Write(Byte(NET_MSG_PTEX
));
1302 NetOut
.Write(LongWord(PGUID
));
1303 NetOut
.Write(FCurTexture
);
1304 NetOut
.Write(FCurFrame
);
1305 NetOut
.Write(FCurFrameCount
);
1306 NetOut
.Write(AnimLoop
);
1309 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1312 procedure MH_SEND_PanelState(PGUID
: Integer; ID
: Integer = NET_EVERYONE
);
1317 TP
:= g_Map_PanelByGUID(PGUID
);
1318 if (TP
= nil) then exit
;
1320 NetOut
.Write(Byte(NET_MSG_PSTATE
));
1321 NetOut
.Write(LongWord(PGUID
));
1322 NetOut
.Write(Byte(TP
.Enabled
));
1323 NetOut
.Write(TP
.LiftType
);
1326 NetOut
.Write(Word(TP
.Width
));
1327 NetOut
.Write(Word(TP
.Height
));
1329 NetOut
.Write(LongInt(TP
.movingSpeedX
));
1330 NetOut
.Write(LongInt(TP
.movingSpeedY
));
1331 NetOut
.Write(LongInt(TP
.movingStartX
));
1332 NetOut
.Write(LongInt(TP
.movingStartY
));
1333 NetOut
.Write(LongInt(TP
.movingEndX
));
1334 NetOut
.Write(LongInt(TP
.movingEndY
));
1335 NetOut
.Write(LongInt(TP
.sizeSpeedX
));
1336 NetOut
.Write(LongInt(TP
.sizeSpeedY
));
1337 NetOut
.Write(LongInt(TP
.sizeEndX
));
1338 NetOut
.Write(LongInt(TP
.sizeEndY
));
1339 if TP
.movingActive
then mpflags
:= mpflags
or 1;
1340 if TP
.moveOnce
then mpflags
:= mpflags
or 2;
1341 NetOut
.Write(Byte(mpflags
));
1343 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1348 procedure MH_SEND_TriggerSound(var T
: TTrigger
; ID
: Integer = NET_EVERYONE
);
1350 if gTriggers
= nil then Exit
;
1351 if T
.Sound
= nil then Exit
;
1353 NetOut
.Write(Byte(NET_MSG_TSOUND
));
1354 NetOut
.Write(T
.ClientID
);
1355 NetOut
.Write(Byte(T
.Sound
.IsPlaying
));
1356 NetOut
.Write(LongWord(T
.Sound
.GetPosition
));
1357 NetOut
.Write(T
.SoundPlayCount
);
1359 g_Net_Host_Send(ID
, True);
1362 procedure MH_SEND_TriggerMusic(ID
: Integer = NET_EVERYONE
);
1364 NetOut
.Write(Byte(NET_MSG_TMUSIC
));
1365 NetOut
.Write(gMusic
.Name
);
1366 NetOut
.Write(Byte(gMusic
.IsPlaying
));
1367 NetOut
.Write(LongWord(gMusic
.GetPosition
));
1368 NetOut
.Write(Byte(gMusic
.SpecPause
or gMusic
.IsPaused
));
1370 g_Net_Host_Send(ID
, True);
1375 procedure MH_SEND_MonsterSpawn(UID
: Word; ID
: Integer = NET_EVERYONE
);
1379 M
:= g_Monsters_ByUID(UID
);
1385 NetOut
.Write(Byte(NET_MSG_MSPAWN
));
1387 NetOut
.Write(MonsterType
);
1388 NetOut
.Write(MonsterState
);
1389 NetOut
.Write(MonsterAnim
);
1390 NetOut
.Write(MonsterTargetUID
);
1391 NetOut
.Write(MonsterTargetTime
);
1392 NetOut
.Write(MonsterBehaviour
);
1393 NetOut
.Write(MonsterSleep
);
1394 NetOut
.Write(MonsterHealth
);
1395 NetOut
.Write(MonsterAmmo
);
1396 NetOut
.Write(GameX
);
1397 NetOut
.Write(GameY
);
1398 NetOut
.Write(GameVelX
);
1399 NetOut
.Write(GameVelY
);
1400 NetOut
.Write(Byte(GameDirection
));
1403 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1406 procedure MH_SEND_MonsterPos(UID
: Word; ID
: Integer = NET_EVERYONE
);
1410 M
:= g_Monsters_ByUID(UID
);
1411 if M
= nil then Exit
;
1413 NetOut
.Write(Byte(NET_MSG_MPOS
));
1418 NetOut
.Write(GameX
);
1419 NetOut
.Write(GameY
);
1420 NetOut
.Write(GameVelX
);
1421 NetOut
.Write(GameVelY
);
1422 NetOut
.Write(Byte(GameDirection
));
1425 g_Net_Host_Send(ID
, False, NET_CHAN_MONSTERPOS
);
1428 procedure MH_SEND_MonsterState(UID
: Word; ForcedAnim
: Byte = 255; ID
: Integer = NET_EVERYONE
);
1432 M
:= g_Monsters_ByUID(UID
);
1433 if M
= nil then Exit
;
1435 NetOut
.Write(Byte(NET_MSG_MSTATE
));
1440 NetOut
.Write(MonsterState
);
1441 NetOut
.Write(ForcedAnim
);
1442 NetOut
.Write(MonsterTargetUID
);
1443 NetOut
.Write(MonsterTargetTime
);
1444 NetOut
.Write(MonsterSleep
);
1445 NetOut
.Write(MonsterHealth
);
1446 NetOut
.Write(MonsterAmmo
);
1447 NetOut
.Write(MonsterPain
);
1448 NetOut
.Write(Byte(AnimIsReverse
));
1449 NetOut
.Write(FFireTime
);
1452 g_Net_Host_Send(ID
, True, NET_CHAN_MONSTER
);
1455 procedure MH_SEND_MonsterShot(UID
: Word; X
, Y
, VX
, VY
: Integer; ID
: Integer = NET_EVERYONE
);
1457 NetOut
.Write(Byte(NET_MSG_MSHOT
));
1464 g_Net_Host_Send(ID
, True, NET_CHAN_MONSTER
);
1467 procedure MH_SEND_MonsterDelete(UID
: Word; ID
: Integer = NET_EVERYONE
);
1471 M
:= g_Monsters_ByUID(UID
);
1472 if M
= nil then Exit
;
1474 NetOut
.Write(Byte(NET_MSG_MDEL
));
1477 g_Net_Host_Send(ID
, True, NET_CHAN_LARGEDATA
);
1482 procedure MH_SEND_TimeSync(Time
: LongWord; ID
: Integer = NET_EVERYONE
);
1484 NetOut
.Write(Byte(NET_MSG_TIME_SYNC
));
1487 g_Net_Host_Send(ID
, False, NET_CHAN_SERVICE
);
1490 procedure MH_SEND_VoteEvent(EvType
: Byte;
1491 StrArg1
: string = 'a'; StrArg2
: string = 'b';
1492 IntArg1
: SmallInt = 0; IntArg2
: SmallInt = 0;
1493 ID
: Integer = NET_EVERYONE
);
1495 NetOut
.Write(Byte(NET_MSG_VOTE_EVENT
));
1496 NetOut
.Write(EvType
);
1497 NetOut
.Write(IntArg1
);
1498 NetOut
.Write(IntArg2
);
1499 NetOut
.Write(StrArg1
);
1500 NetOut
.Write(StrArg2
);
1502 g_Net_Host_Send(ID
, True, NET_CHAN_IMPORTANT
);
1505 // CLIENT MESSAGES //
1509 procedure MC_RECV_Chat(var M
: TMsg
);
1514 Txt
:= M
.ReadString();
1515 Mode
:= M
.ReadByte();
1517 if Mode
<> NET_CHAT_SYSTEM
then
1519 if NetDeafLevel
= 0 then
1521 if Mode
= NET_CHAT_PLAYER
then
1523 g_Console_Add(Txt
, True);
1524 e_WriteLog('[Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
1525 g_Game_ChatSound(b_Text_Unformat(Txt
));
1527 if (Mode
= NET_CHAT_TEAM
) and (gPlayer1
<> nil) then
1529 if gPlayer1
.Team
= TEAM_RED
then
1530 g_Console_Add(b_Text_Format('\r[Team] ') + Txt
, True);
1531 if gPlayer1
.Team
= TEAM_BLUE
then
1532 g_Console_Add(b_Text_Format('\b[Team] ') + Txt
, True);
1533 e_WriteLog('[Team Chat] ' + b_Text_Unformat(Txt
), TMsgType
.Notify
);
1534 g_Game_ChatSound(b_Text_Unformat(Txt
));
1537 end else if (NetDeafLevel
< 2) then
1538 g_Console_Add(Txt
, True);
1541 procedure MC_RECV_Effect(var M
: TMsg
);
1547 if not gGameOn
then Exit
;
1548 Kind
:= M
.ReadByte();
1549 X
:= M
.ReadLongInt();
1550 Y
:= M
.ReadLongInt();
1551 Ang
:= M
.ReadSmallInt();
1555 g_GFX_Spark(X
, Y
, 2 + Random(2), Ang
, 0, 0);
1559 r_GFX_OnceAnim(R_GFX_TELEPORT_FAST
, X
, Y
);
1561 g_Sound_PlayExAt('SOUND_GAME_TELEPORT', X
, Y
);
1566 r_GFX_OnceAnim(R_GFX_EXPLODE_ROCKET
, X
- 64, Y
- 64);
1568 g_Sound_PlayExAt('SOUND_WEAPON_EXPLODEROCKET', X
, Y
);
1573 r_GFX_OnceAnim(R_GFX_EXPLODE_BFG
, X
- 64, Y
- 64);
1575 g_Sound_PlayExAt('SOUND_WEAPON_EXPLODEBFG', X
, Y
);
1580 r_GFX_OnceAnim(R_GFX_BFG_HIT
, X
- 32, Y
- 32);
1585 r_GFX_OnceAnim(R_GFX_FIRE
, X
, Y
);
1587 g_Sound_PlayExAt('SOUND_FIRE', X
, Y
);
1592 r_GFX_OnceAnim(R_GFX_ITEM_RESPAWN
, X
, Y
);
1594 g_Sound_PlayExAt('SOUND_ITEM_RESPAWNITEM', X
, Y
);
1598 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_BULLET
);
1601 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_SHELL
);
1605 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_SHELL
);
1606 g_Player_CreateShell(X
, Y
, 0, -2, SHELL_SHELL
);
1611 procedure MC_RECV_Sound(var M
: TMsg
);
1617 Name
:= M
.ReadString();
1618 Pos
:= M
.ReadByte() <> 0;
1621 X
:= M
.ReadLongInt();
1622 Y
:= M
.ReadLongInt();
1623 g_Sound_PlayExAt(Name
, X
, Y
);
1626 g_Sound_PlayEx(Name
);
1629 procedure MC_RECV_CreateShot(var M
: TMsg
);
1631 I
, X
, Y
, XV
, YV
: Integer;
1633 Target
, Spawner
: Word;
1636 I
:= M
.ReadLongInt();
1637 ShType
:= M
.ReadByte();
1638 Target
:= M
.ReadWord();
1639 Spawner
:= M
.ReadWord();
1640 Timeout
:= M
.ReadLongWord();
1641 X
:= M
.ReadLongInt();
1642 Y
:= M
.ReadLongInt();
1643 XV
:= M
.ReadLongInt();
1644 YV
:= M
.ReadLongInt();
1646 I
:= g_Weapon_CreateShot(I
, ShType
, Spawner
, Target
, X
, Y
, XV
, YV
);
1647 if (Shots
<> nil) and (I
<= High(Shots
)) then
1649 Shots
[I
].Timeout
:= Timeout
;
1650 //Shots[I].Target := Target; // TODO: find a use for Target later
1654 procedure MC_RECV_UpdateShot(var M
: TMsg
);
1656 I
, TX
, TY
, TXV
, TYV
: Integer;
1658 I
:= M
.ReadLongInt();
1659 TX
:= M
.ReadLongInt();
1660 TY
:= M
.ReadLongInt();
1661 TXV
:= M
.ReadLongInt();
1662 TYV
:= M
.ReadLongInt();
1664 if (Shots
<> nil) and (I
<= High(Shots
)) then
1674 procedure MC_RECV_DeleteShot(var M
: TMsg
);
1679 if not gGameOn
then Exit
;
1680 I
:= M
.ReadLongInt();
1681 L
:= (M
.ReadByte() <> 0);
1682 X
:= M
.ReadLongInt();
1683 Y
:= M
.ReadLongInt();
1685 g_Weapon_DestroyShot(I
, X
, Y
, L
);
1688 procedure MC_RECV_GameStats(var M
: TMsg
);
1690 if gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
] then
1692 gTeamStat
[TEAM_RED
].Goals
:= M
.ReadSmallInt();
1693 gTeamStat
[TEAM_BLUE
].Goals
:= M
.ReadSmallInt();
1696 if gGameSettings
.GameMode
= GM_COOP
then
1698 gCoopMonstersKilled
:= M
.ReadWord();
1699 gCoopSecretsFound
:= M
.ReadWord();
1703 procedure MC_RECV_CoopStats(var M
: TMsg
);
1705 gTotalMonsters
:= M
.ReadLongInt();
1706 gSecretsCount
:= M
.ReadLongInt();
1707 gCoopTotalMonstersKilled
:= M
.ReadWord();
1708 gCoopTotalSecretsFound
:= M
.ReadWord();
1709 gCoopTotalMonsters
:= M
.ReadWord();
1710 gCoopTotalSecrets
:= M
.ReadWord();
1713 procedure MC_RECV_GameEvent(var M
: TMsg
);
1722 i1
, i2
: TStrings_Locale
;
1725 goodCmd
: Boolean = true;
1727 FillChar(EvHash
, Sizeof(EvHash
), 0);
1728 EvType
:= M
.ReadByte();
1729 EvNum
:= M
.ReadLongInt();
1730 EvStr
:= M
.ReadString();
1731 gLastMap
:= M
.ReadByte() <> 0;
1732 if gLastMap
and (gGameSettings
.GameMode
= GM_COOP
) then gStatsOff
:= True;
1733 gStatsPressed
:= True;
1734 EvTime
:= M
.ReadLongWord();
1735 BHash
:= M
.ReadByte() <> 0;
1737 EvHash
:= M
.ReadMD5();
1741 if (g_Res_received_map_start
<> 0) then
1743 if (g_Res_received_map_start
< 0) then exit
;
1746 NET_EV_MAPSTART
: goodCmd
:= true;
1747 NET_EV_MAPEND
: goodCmd
:= true;
1748 NET_EV_PLAYER_KICK
: goodCmd
:= true;
1749 NET_EV_PLAYER_BAN
: goodCmd
:= true;
1750 NET_EV_LMS_WARMUP
: goodCmd
:= true;
1752 if not goodCmd
then exit
;
1758 if (g_Res_received_map_start
<> 0) then
1760 g_Res_received_map_start
:= -1;
1765 g_Game_ClearLoading();
1766 g_Game_StopAllSounds(True);
1768 gSwitchGameMode
:= Byte(EvNum
);
1769 gGameSettings
.GameMode
:= gSwitchGameMode
;
1772 if not g_Game_StartMap(false{asMegawad}, EvStr
, True) then
1774 if not isWadPath(EvStr
) then
1775 g_FatalError(Format(_lc
[I_GAME_ERROR_MAP_LOAD
], [gGameSettings
.WAD
+ ':\' + EvStr
]))
1777 g_FatalError(Format(_lc
[I_GAME_ERROR_MAP_LOAD
], [EvStr
]));
1781 MC_SEND_FullStateRequest
;
1787 gLMSRespawn
:= LMS_RESPAWN_NONE
;
1788 gLMSRespawnTime
:= 0;
1789 if (g_Res_received_map_start
<> 0) then
1791 g_Res_received_map_start
:= -1;
1795 gMissionFailed
:= EvNum
<> 0;
1796 gExit
:= EXIT_ENDLEVELCUSTOM
;
1804 g_Console_Add(_lc
[I_NET_RCON_NOAUTH
], True);
1806 g_Console_Add(_lc
[I_NET_RCON_PWD_VALID
], True);
1808 g_Console_Add(_lc
[I_NET_RCON_PWD_INVALID
], True);
1814 if NetDeafLevel
< 2 then
1816 if EvNum
= TEAM_RED
then
1817 g_Console_Add(Format(_lc
[I_PLAYER_CHTEAM_RED
], [EvStr
]), True);
1818 if EvNum
= TEAM_BLUE
then
1819 g_Console_Add(Format(_lc
[I_PLAYER_CHTEAM_BLUE
], [EvStr
]), True);
1825 g_Console_Add(Format(_lc
[I_PLAYER_KICK
], [EvStr
]), True);
1826 if (g_Res_received_map_start
<> 0) then g_Res_received_map_start
:= -1;
1831 g_Console_Add(Format(_lc
[I_PLAYER_BAN
], [EvStr
]), True);
1832 if (g_Res_received_map_start
<> 0) then g_Res_received_map_start
:= -1;
1839 gLMSRespawn
:= LMS_RESPAWN_WARMUP
;
1840 gLMSRespawnTime
:= gTime
+ EvNum
;
1841 g_Console_Add(Format(_lc
[I_MSG_WARMUP_START
], [EvNum
div 1000]), True);
1843 else if gPlayer1
= nil then
1845 g_Console_Add(_lc
[I_PLAYER_SPECT4
], True);
1849 NET_EV_LMS_SURVIVOR
:
1850 g_Console_Add('*** ' + _lc
[I_MESSAGE_LMS_SURVIVOR
] + ' ***', True);
1853 if NetDeafLevel
< 2 then g_Game_Message(AnsiUpperCase(EvStr
), Word(EvNum
));
1857 pl
:= g_Player_Get(EvNum
and $FFFF);
1862 cnt
:= (EvNum
shr 16) and $FF;
1863 if Pos('w', EvStr
) = 0 then
1866 if Pos('t', EvStr
) = 0 then
1869 if Pos('-', EvStr
) = 0 then
1871 if Pos('e', EvStr
) = 0 then
1872 i1
:= I_PLAYER_SCORE_ADD_OWN
1874 i1
:= I_PLAYER_SCORE_ADD_ENEMY
;
1877 if Pos('e', EvStr
) = 0 then
1878 i1
:= I_PLAYER_SCORE_SUB_OWN
1880 i1
:= I_PLAYER_SCORE_SUB_ENEMY
;
1883 if Pos('r', EvStr
) > 0 then
1884 i2
:= I_PLAYER_SCORE_TO_RED
1886 i2
:= I_PLAYER_SCORE_TO_BLUE
;
1887 g_Console_Add(Format(_lc
[i1
], [pln
, cnt
, _lc
[i2
]]), True);
1891 if Pos('-', EvStr
) = 0 then
1892 i1
:= I_PLAYER_SCORE_ADD_TEAM
1894 i1
:= I_PLAYER_SCORE_SUB_TEAM
;
1896 if Pos('r', EvStr
) > 0 then
1897 i2
:= I_PLAYER_SCORE_RED
1899 i2
:= I_PLAYER_SCORE_BLUE
;
1900 g_Console_Add(Format(_lc
[i1
], [_lc
[i2
], cnt
]), True);
1905 if Pos('e', EvStr
) = 0 then
1906 i1
:= I_PLAYER_SCORE_WIN_OWN
1908 i1
:= I_PLAYER_SCORE_WIN_ENEMY
;
1910 if Pos('r', EvStr
) > 0 then
1911 i2
:= I_PLAYER_SCORE_TO_RED
1913 i2
:= I_PLAYER_SCORE_TO_BLUE
;
1914 g_Console_Add(Format(_lc
[i1
], [pln
, _lc
[i2
]]), True);
1920 if EvNum
= TEAM_RED
then
1921 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_ADD
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 108);
1922 if EvNum
= TEAM_BLUE
then
1923 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_ADD
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 108);
1924 if EvNum
= -TEAM_RED
then
1925 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_SUB
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 108);
1926 if EvNum
= -TEAM_BLUE
then
1927 g_Game_Message(Format(_lc
[I_MESSAGE_SCORE_SUB
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 108);
1932 g_Player_RemoveAllCorpses
;
1933 gLMSRespawn
:= LMS_RESPAWN_NONE
;
1934 g_Game_Message(_lc
[I_MESSAGE_LMS_START
], 144);
1938 g_Game_Message(Format(_lc
[I_MESSAGE_LMS_WIN
], [AnsiUpperCase(EvStr
)]), 144);
1942 if EvNum
= TEAM_RED
then
1943 g_Game_Message(Format(_lc
[I_MESSAGE_TLMS_WIN
], [AnsiUpperCase(_lc
[I_GAME_TEAM_RED
])]), 144);
1944 if EvNum
= TEAM_BLUE
then
1945 g_Game_Message(Format(_lc
[I_MESSAGE_TLMS_WIN
], [AnsiUpperCase(_lc
[I_GAME_TEAM_BLUE
])]), 144);
1949 g_Game_Message(_lc
[I_MESSAGE_LMS_LOSE
], 144);
1952 g_Game_Message(_lc
[I_GAME_WIN_DRAW
], 144);
1955 g_Console_Add(_lc
[I_PLAYER_SPECT4
], True);
1958 g_Game_Announce_KillCombo(EvNum
);
1960 NET_EV_PLAYER_TOUCH
:
1962 pl
:= g_Player_Get(EvNum
);
1969 pl
:= g_Player_Get(EvNum
);
1972 g_Console_Add(Format(_lc
[I_PLAYER_SECRET
], [pl
.Name
]), True);
1973 g_Sound_PlayEx('SOUND_GAME_SECRET');
1979 pl
:= g_Player_Get(EvNum
);
1980 if pl
<> nil then pl
.FReady
:= (EvStr
= 'Y');
1985 procedure MC_RECV_FlagEvent(var M
: TMsg
);
1994 EvType
:= M
.ReadByte();
1997 if Fl
= FLAG_NONE
then Exit
;
1999 Quiet
:= (M
.ReadByte() <> 0);
2000 PID
:= M
.ReadWord();
2002 gFlags
[Fl
].State
:= M
.ReadByte();
2003 gFlags
[Fl
].CaptureTime
:= M
.ReadLongWord();
2004 gFlags
[Fl
].Obj
.X
:= M
.ReadLongInt();
2005 gFlags
[Fl
].Obj
.Y
:= M
.ReadLongInt();
2006 gFlags
[Fl
].Obj
.Vel
.X
:= M
.ReadLongInt();
2007 gFlags
[Fl
].Obj
.Vel
.Y
:= M
.ReadLongInt();
2009 Pl
:= g_Player_Get(PID
);
2011 (EvType
<> FLAG_STATE_NORMAL
) and
2012 (EvType
<> FLAG_STATE_DROPPED
) and
2013 (EvType
<> FLAG_STATE_RETURNED
) then
2019 if Quiet
or (Pl
= nil) then Exit
;
2021 if Fl
= FLAG_RED
then
2022 s
:= _lc
[I_PLAYER_FLAG_RED
]
2024 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2026 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_RETURN
], [AnsiUpperCase(s
)]), 144);
2028 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2029 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2030 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2035 if not sound_ret_flag
[a
].IsPlaying() then
2036 sound_ret_flag
[a
].Play();
2039 FLAG_STATE_CAPTURED
:
2041 if (Pl
<> nil) then Pl
.SetFlag(Fl
);
2045 if Fl
= FLAG_RED
then
2046 s
:= _lc
[I_PLAYER_FLAG_RED
]
2048 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2050 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_GET
], [Pl
.Name
, s
]), True);
2051 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_GET
], [AnsiUpperCase(s
)]), 144);
2053 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2054 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2055 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2060 if not sound_get_flag
[a
].IsPlaying() then
2061 sound_get_flag
[a
].Play();
2066 if (Pl
<> nil) then Pl
.SetFlag(FLAG_NONE
);
2068 if Quiet
or (Pl
= nil) then Exit
;
2070 if Fl
= FLAG_RED
then
2071 s
:= _lc
[I_PLAYER_FLAG_RED
]
2073 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2075 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_DROP
], [Pl
.Name
, s
]), True);
2076 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_DROP
], [AnsiUpperCase(s
)]), 144);
2078 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2079 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2080 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2085 if not sound_lost_flag
[a
].IsPlaying() then
2086 sound_lost_flag
[a
].Play();
2091 g_Map_ResetFlag(FLAG_RED
);
2092 g_Map_ResetFlag(FLAG_BLUE
);
2093 if Quiet
or (Pl
= nil) then Exit
;
2094 Pl
.SetFlag(FLAG_NONE
);
2096 if Fl
= FLAG_RED
then
2097 s
:= _lc
[I_PLAYER_FLAG_RED
]
2099 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2101 ts
:= Format('%.4d', [gFlags
[Fl
].CaptureTime
]);
2102 Insert('.', ts
, Length(ts
) + 1 - 3);
2103 g_Console_Add(Format(_lc
[I_PLAYER_FLAG_CAPTURE
], [Pl
.Name
, s
, ts
]), True);
2104 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_CAPTURE
], [AnsiUpperCase(s
)]), 144);
2106 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2107 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2108 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2113 if not sound_cap_flag
[a
].IsPlaying() then
2114 sound_cap_flag
[a
].Play();
2117 FLAG_STATE_RETURNED
:
2119 g_Map_ResetFlag(Fl
);
2122 if Fl
= FLAG_RED
then
2123 s
:= _lc
[I_PLAYER_FLAG_RED
]
2125 s
:= _lc
[I_PLAYER_FLAG_BLUE
];
2127 g_Game_Message(Format(_lc
[I_MESSAGE_FLAG_RETURN
], [AnsiUpperCase(s
)]), 144);
2129 if ((Pl
= gPlayer1
) or (Pl
= gPlayer2
)
2130 or ((gPlayer1
<> nil) and (gPlayer1
.Team
= Pl
.Team
))
2131 or ((gPlayer2
<> nil) and (gPlayer2
.Team
= Pl
.Team
))) then
2136 if not sound_ret_flag
[a
].IsPlaying() then
2137 sound_ret_flag
[a
].Play();
2142 procedure MC_RECV_GameSettings(var M
: TMsg
);
2144 gGameSettings
.GameMode
:= M
.ReadByte();
2145 gGameSettings
.GoalLimit
:= M
.ReadWord();
2146 gGameSettings
.TimeLimit
:= M
.ReadWord();
2147 gGameSettings
.MaxLives
:= M
.ReadByte();
2148 gGameSettings
.Options
:= M
.ReadLongWord();
2153 function MC_RECV_PlayerCreate(var M
: TMsg
): Word;
2156 PName
, Model
: string;
2161 PID
:= M
.ReadWord();
2162 Pl
:= g_Player_Get(PID
);
2164 PName
:= M
.ReadString();
2165 Model
:= M
.ReadString();
2166 Color
.R
:= M
.ReadByte();
2167 Color
.G
:= M
.ReadByte();
2168 Color
.B
:= M
.ReadByte();
2172 if (PID
<> NetPlrUID1
) and (PID
<> NetPlrUID2
) then
2174 if (Pl
<> nil) then Exit
;
2175 DID
:= g_Player_Create(Model
, Color
, T
, False);
2176 with g_Player_Get(DID
) do
2185 if (PID
= NetPlrUID1
) and (gPlayer1
<> nil) then begin
2186 gPlayer1
.UID
:= PID
;
2187 gPlayer1
.Model
.SetColor(Color
.R
, Color
.G
, Color
.B
);
2188 gPlayer1
.ChangeTeam(T
);
2190 if (PID
= NetPlrUID2
) and (gPlayer2
<> nil) then begin
2191 gPlayer2
.UID
:= PID
;
2192 gPlayer2
.Model
.SetColor(Color
.R
, Color
.G
, Color
.B
);
2193 gPlayer2
.ChangeTeam(T
);
2197 if NetDeafLevel
< 3 then
2198 g_Console_Add(Format(_lc
[I_PLAYER_JOIN
], [PName
]), True);
2199 e_WriteLog('NET: Player ' + PName
+ ' [' + IntToStr(PID
) + '] added.', TMsgType
.Notify
);
2203 function MC_RECV_PlayerPos(var M
: TMsg
): Word;
2210 TmpX
, TmpY
: Integer;
2214 GT
:= M
.ReadLongWord();
2215 if GT
< gTime
- NET_MAX_DIFFTIME
then
2222 PID
:= M
.ReadWord();
2223 Pl
:= g_Player_Get(PID
);
2225 if Pl
= nil then Exit
;
2231 FPing
:= M
.ReadWord();
2232 FLoss
:= M
.ReadByte();
2233 kByte
:= M
.ReadWord();
2234 Dir
:= M
.ReadByte();
2236 TmpX
:= M
.ReadLongInt();
2237 TmpY
:= M
.ReadLongInt();
2241 if LongBool(kByte
and NET_KEY_CHAT
) then
2242 PressKey(KEY_CHAT
, 10000)
2245 if LongBool(kByte
and NET_KEY_LEFT
) then PressKey(KEY_LEFT
, 10000);
2246 if LongBool(kByte
and NET_KEY_RIGHT
) then PressKey(KEY_RIGHT
, 10000);
2247 if LongBool(kByte
and NET_KEY_UP
) then PressKey(KEY_UP
, 10000);
2248 if LongBool(kByte
and NET_KEY_DOWN
) then PressKey(KEY_DOWN
, 10000);
2249 if LongBool(kByte
and NET_KEY_JUMP
) then PressKey(KEY_JUMP
, 10000);
2252 JustTeleported
:= LongBool(kByte
and NET_KEY_FORCEDIR
);
2254 if ((Pl
<> gPlayer1
) and (Pl
<> gPlayer2
)) or JustTeleported
then
2255 SetDirection(TDirection(Dir
));
2257 GameVelX
:= M
.ReadLongInt();
2258 GameVelY
:= M
.ReadLongInt();
2259 GameAccelX
:= M
.ReadLongInt();
2260 GameAccelY
:= M
.ReadLongInt();
2261 SetLerp(TmpX
, TmpY
);
2262 if NetForcePlayerUpdate
then Update();
2266 function MC_RECV_PlayerStats(var M
: TMsg
): Word;
2270 I
, OldFire
: Integer;
2271 OldJet
, Flam
: Boolean;
2274 PID
:= M
.ReadWord();
2275 Pl
:= g_Player_Get(PID
);
2282 alive
:= (M
.ReadByte() <> 0);
2283 GodMode
:= (M
.ReadByte() <> 0);
2284 Health
:= M
.ReadLongInt();
2285 Armor
:= M
.ReadLongInt();
2286 Air
:= M
.ReadLongInt();
2287 JetFuel
:= M
.ReadLongInt();
2288 Lives
:= M
.ReadByte();
2289 NewTeam
:= M
.ReadByte();
2291 for I
:= WP_FIRST
to WP_LAST
do
2292 FWeapon
[I
] := (M
.ReadByte() <> 0);
2294 for I
:= A_BULLETS
to A_HIGH
do
2295 FAmmo
[I
] := M
.ReadWord();
2297 for I
:= A_BULLETS
to A_HIGH
do
2298 FMaxAmmo
[I
] := M
.ReadWord();
2300 for I
:= MR_SUIT
to MR_MAX
do
2301 FMegaRulez
[I
] := M
.ReadLongWord();
2304 if (M
.ReadByte() <> 0) then
2305 FRulez
:= FRulez
+ [R_ITEM_BACKPACK
];
2306 if (M
.ReadByte() <> 0) then
2307 FRulez
:= FRulez
+ [R_KEY_RED
];
2308 if (M
.ReadByte() <> 0) then
2309 FRulez
:= FRulez
+ [R_KEY_GREEN
];
2310 if (M
.ReadByte() <> 0) then
2311 FRulez
:= FRulez
+ [R_KEY_BLUE
];
2312 if (M
.ReadByte() <> 0) then
2313 FRulez
:= FRulez
+ [R_BERSERK
];
2315 Frags
:= M
.ReadLongInt();
2316 Death
:= M
.ReadLongInt();
2318 SetWeapon(M
.ReadByte());
2320 FSpectator
:= M
.ReadByte() <> 0;
2323 if UID
= NetPlrUID1
then
2325 gSpectLatchPID1
:= UID
;
2328 if UID
= NetPlrUID2
then
2330 gSpectLatchPID2
:= UID
;
2336 if (gPlayer1
= nil) and (gSpectLatchPID1
> 0) and (UID
= gSpectLatchPID1
) then
2339 gSpectLatchPID1
:= 0;
2341 if (gPlayer2
= nil) and (gSpectLatchPID2
> 0) and (UID
= gSpectLatchPID2
) then
2344 gSpectLatchPID2
:= 0;
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 if NetDeafLevel
< 3 then
2432 g_Console_Add(Format(_lc
[I_PLAYER_LEAVE
], [Pl
.Name
]), True);
2433 e_WriteLog('NET: Player ' + Pl
.Name
+ ' [' + IntToStr(PID
) + '] removed.', TMsgType
.Notify
);
2435 g_Player_Remove(PID
);
2440 function MC_RECV_PlayerFire(var M
: TMsg
): Word;
2445 X
, Y
, AX
, AY
: Integer;
2449 if not gGameOn
then Exit
;
2450 PID
:= M
.ReadWord();
2451 Pl
:= g_Player_Get(PID
);
2452 if Pl
= nil then Exit
;
2454 Weap
:= M
.ReadByte();
2455 X
:= M
.ReadLongInt();
2456 Y
:= M
.ReadLongInt();
2457 AX
:= M
.ReadLongInt();
2458 AY
:= M
.ReadLongInt();
2459 SHID
:= M
.ReadLongInt();
2462 if alive
then NetFire(Weap
, X
, Y
, AX
, AY
, SHID
);
2465 procedure MC_RECV_PlayerSettings(var M
: TMsg
);
2474 PID
:= M
.ReadWord();
2475 Pl
:= g_Player_Get(PID
);
2476 if Pl
= nil then Exit
;
2478 TmpName
:= M
.ReadString();
2479 TmpModel
:= M
.ReadString();
2480 TmpColor
.R
:= M
.ReadByte();
2481 TmpColor
.G
:= M
.ReadByte();
2482 TmpColor
.B
:= M
.ReadByte();
2483 TmpTeam
:= M
.ReadByte();
2485 if (gGameSettings
.GameMode
in [GM_TDM
, GM_CTF
]) and (Pl
.Team
<> TmpTeam
) then
2487 Pl
.ChangeTeam(TmpTeam
);
2488 if gPlayer1
= Pl
then
2489 gPlayer1Settings
.Team
:= TmpTeam
;
2490 if gPlayer2
= Pl
then
2491 gPlayer2Settings
.Team
:= TmpTeam
;
2493 Pl
.SetColor(TmpColor
);
2495 if Pl
.Name
<> TmpName
then
2497 if NetDeafLevel
< 3 then
2498 g_Console_Add(Format(_lc
[I_PLAYER_NAME
], [Pl
.Name
, TmpName
]), True);
2502 if TmpModel
<> Pl
.Model
.GetName() then
2503 Pl
.SetModel(TmpModel
);
2508 procedure MC_RECV_ItemSpawn(var M
: TMsg
);
2511 X
, Y
, VX
, VY
: Integer;
2513 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 r_GFX_OnceAnim(R_GFX_ITEM_RESPAWN
, X
+(it
.Obj
.Rect
.Width
div 2)-16, Y
+(it
.Obj
.Rect
.Height
div 2)-16);
2541 procedure MC_RECV_ItemDestroy(var M
: TMsg
);
2546 if not gGameOn
then Exit
;
2548 Quiet
:= M
.ReadByte() <> 0;
2550 if not g_Items_ValidId(ID
) then exit
;
2552 if not Quiet
then g_Items_EmitPickupSound(ID
);
2559 procedure MC_RECV_PanelTexture(var M
: TMsg
);
2566 if not gGameOn
then Exit
;
2568 PGUID
:= Integer(M
.ReadLongWord());
2569 Tex
:= M
.ReadLongInt();
2570 Fr
:= M
.ReadLongInt();
2571 Cnt
:= M
.ReadByte();
2572 Loop
:= M
.ReadByte();
2574 TP
:= g_Map_PanelByGUID(PGUID
);
2578 TP
.SetTexture(Tex
, Loop
);
2579 TP
.SetFrame(Fr
, Cnt
);
2583 procedure MC_RECV_PanelState(var M
: TMsg
);
2588 X
, Y
, W
, H
: Integer;
2590 speedX
, speedY
, startX
, startY
, endX
, endY
: Integer;
2591 sizeSpX
, sizeSpY
, sizeEX
, sizeEY
: Integer;
2594 if not gGameOn
then Exit
;
2596 PGUID
:= Integer(M
.ReadLongWord());
2597 E
:= (M
.ReadByte() <> 0);
2598 Lift
:= M
.ReadByte();
2599 X
:= M
.ReadLongInt();
2600 Y
:= M
.ReadLongInt();
2604 speedX
:= M
.ReadLongInt();
2605 speedY
:= M
.ReadLongInt();
2606 startX
:= M
.ReadLongInt();
2607 startY
:= M
.ReadLongInt();
2608 endX
:= M
.ReadLongInt();
2609 endY
:= M
.ReadLongInt();
2610 sizeSpX
:= M
.ReadLongInt();
2611 sizeSpY
:= M
.ReadLongInt();
2612 sizeEX
:= M
.ReadLongInt();
2613 sizeEY
:= M
.ReadLongInt();
2614 mpflags
:= M
.ReadByte(); // bit0: TP.movingActive; bit1: TP.moveOnce
2616 TP
:= g_Map_PanelByGUID(PGUID
);
2617 if (TP
= nil) then exit
;
2619 // update lifts state
2620 if TP
.isGLift
then g_Map_SetLiftGUID(PGUID
, Lift
);
2622 // update enabled/disabled state for all panels
2623 if E
then g_Map_EnableWallGUID(PGUID
) else g_Map_DisableWallGUID(PGUID
);
2625 // update panel position, as it can be moved (mplat)
2630 // update mplat state
2631 TP
.movingSpeedX
:= speedX
;
2632 TP
.movingSpeedY
:= speedY
;
2633 TP
.movingStartX
:= startX
;
2634 TP
.movingStartY
:= startY
;
2635 TP
.movingEndX
:= endX
;
2636 TP
.movingEndY
:= endY
;
2637 TP
.sizeSpeedX
:= sizeSpX
;
2638 TP
.sizeSpeedY
:= sizeSpY
;
2639 TP
.sizeEndX
:= sizeEX
;
2640 TP
.sizeEndY
:= sizeEY
;
2641 TP
.movingActive
:= ((mpflags
and 1) <> 0);
2642 TP
.moveOnce
:= ((mpflags
and 2) <> 0);
2643 // notify panel of it's position/size change, so it can fix other internal structures
2644 TP
.positionChanged();
2649 procedure MC_RECV_TriggerSound(var M
: TMsg
);
2652 SPos
, SID
: LongWord;
2656 if not gGameOn
then Exit
;
2657 if gTriggers
= nil then Exit
;
2659 SID
:= M
.ReadLongWord();
2660 SPlaying
:= M
.ReadByte() <> 0;
2661 SPos
:= M
.ReadLongWord();
2662 SCount
:= M
.ReadLongInt();
2664 for I
:= Low(gTriggers
) to High(gTriggers
) do
2665 if gTriggers
[I
].TriggerType
= TRIGGER_SOUND
then
2666 if gTriggers
[I
].ClientID
= SID
then
2667 with gTriggers
[I
] do
2669 if Sound
<> nil then
2674 Sound
.PlayVolumeAt(X
+(Width
div 2), Y
+(Height
div 2), tgcVolume
/255.0)
2676 Sound
.PlayPanVolume((tgcPan
-127.0)/128.0, tgcVolume
/255.0);
2677 Sound
.SetPosition(SPos
);
2680 if Sound
.IsPlaying
then Sound
.Stop
;
2683 SoundPlayCount
:= SCount
;
2687 procedure MC_RECV_TriggerMusic(var M
: TMsg
);
2694 if not gGameOn
then Exit
;
2696 MName
:= M
.ReadString();
2697 MPlaying
:= M
.ReadByte() <> 0;
2698 MPos
:= M
.ReadLongWord();
2699 MPaused
:= M
.ReadByte() <> 0;
2700 MPos
:= MPos
+1; //k8: stfu, fpc!
2704 gMusic
.SetByName(MName
);
2706 // gMusic.SetPosition(MPos);
2707 gMusic
.SpecPause
:= MPaused
;
2710 if gMusic
.IsPlaying
then gMusic
.Stop
;
2715 procedure MC_RECV_MonsterSpawn(var M
: TMsg
);
2718 MType
, MState
, MDir
, MAnim
, MBehav
: Byte;
2719 X
, Y
, VX
, VY
, MTargTime
, MHealth
, MAmmo
, MSleep
: Integer;
2724 Mon
:= g_Monsters_ByUID(ID
);
2728 MType
:= M
.ReadByte();
2729 MState
:= M
.ReadByte();
2730 MAnim
:= M
.ReadByte();
2731 MTarg
:= M
.ReadWord();
2732 MTargTime
:= M
.ReadLongInt();
2733 MBehav
:= M
.ReadByte();
2734 MSleep
:= M
.ReadLongInt();
2735 MHealth
:= M
.ReadLongInt();
2736 MAmmo
:= M
.ReadLongInt();
2738 X
:= M
.ReadLongInt();
2739 Y
:= M
.ReadLongInt();
2740 VX
:= M
.ReadLongInt();
2741 VY
:= M
.ReadLongInt();
2742 MDir
:= M
.ReadByte();
2744 g_Monsters_Create(MType
, X
, Y
, TDirection(MDir
), False, ID
);
2745 Mon
:= g_Monsters_ByUID(ID
);
2752 MonsterAnim
:= MAnim
;
2753 MonsterTargetUID
:= MTarg
;
2754 MonsterTargetTime
:= MTargTime
;
2755 MonsterBehaviour
:= MBehav
;
2756 MonsterSleep
:= MSleep
;
2757 MonsterAmmo
:= MAmmo
;
2762 setPosition(X
, Y
); // this will call positionChanged();
2768 procedure MC_RECV_MonsterPos(var M
: TMsg
);
2775 Mon
:= g_Monsters_ByUID(ID
);
2781 X
:= M
.ReadLongInt();
2782 Y
:= M
.ReadLongInt();
2783 Mon
.setPosition(X
, Y
); // this will call `positionChanged()`
2784 GameVelX
:= M
.ReadLongInt();
2785 GameVelY
:= M
.ReadLongInt();
2786 GameDirection
:= TDirection(M
.ReadByte());
2790 procedure MC_RECV_MonsterState(var M
: TMsg
);
2792 ID
, OldFire
: Integer;
2793 MState
, MFAnm
: Byte;
2795 AnimRevert
: Boolean;
2798 Mon
:= g_Monsters_ByUID(ID
);
2799 if Mon
= nil then Exit
;
2801 MState
:= M
.ReadByte();
2802 MFAnm
:= M
.ReadByte();
2806 MonsterTargetUID
:= M
.ReadWord();
2807 MonsterTargetTime
:= M
.ReadLongInt();
2808 MonsterSleep
:= M
.ReadLongInt();
2809 MonsterHealth
:= M
.ReadLongInt();
2810 MonsterAmmo
:= M
.ReadLongInt();
2811 MonsterPain
:= M
.ReadLongInt();
2812 AnimRevert
:= M
.ReadByte() <> 0;
2813 OldFire
:= FFireTime
;
2814 FFireTime
:= M
.ReadLongInt();
2815 if (OldFire
<= 0) and (FFireTime
> 0) then
2816 g_Sound_PlayExAt('SOUND_IGNITE', Obj
.X
, Obj
.Y
);
2817 RevertAnim(AnimRevert
);
2819 if MonsterState
<> MState
then
2821 if (MState
= MONSTATE_GO
) and (MonsterState
= MONSTATE_SLEEP
) then WakeUpSound();
2822 if (MState
= MONSTATE_DIE
) then DieSound();
2823 if (MState
= MONSTATE_PAIN
) then MakeBloodSimple(Min(200, MonsterPain
));
2824 if (MState
= MONSTATE_ATTACK
) then kick(nil);
2825 if (MState
= MONSTATE_DEAD
) then SetDeadAnim();
2827 SetState(MState
, MFAnm
);
2832 procedure MC_RECV_MonsterShot(var M
: TMsg
);
2836 X
, Y
, VX
, VY
: Integer;
2840 Mon
:= g_Monsters_ByUID(ID
);
2841 if Mon
= nil then Exit
;
2843 X
:= M
.ReadLongInt();
2844 Y
:= M
.ReadLongInt();
2845 VX
:= M
.ReadLongInt();
2846 VY
:= M
.ReadLongInt();
2848 Mon
.ClientAttack(X
, Y
, VX
, VY
);
2851 procedure MC_RECV_MonsterDelete(var M
: TMsg
);
2857 Mon
:= g_Monsters_ByUID(ID
);
2858 if Mon
= nil then Exit
;
2860 Mon
.MonsterRemoved
:= True;
2863 procedure MC_RECV_TimeSync(var M
: TMsg
);
2867 Time
:= M
.ReadLongWord();
2869 if gState
= STATE_INTERCUSTOM
then
2870 gServInterTime
:= Min(Time
, 255);
2873 procedure MC_RECV_VoteEvent(var M
: TMsg
);
2877 Int1
, Int2
: SmallInt;
2879 EvID
:= M
.ReadByte();
2880 Int1
:= M
.ReadSmallInt();
2881 Int2
:= M
.ReadSmallInt();
2882 Str1
:= M
.ReadString();
2883 Str2
:= M
.ReadString();
2885 if NetDeafLevel
< 2 then
2888 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_STARTED
], [Str1
, Str2
, Int1
]), True);
2890 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_PASSED
], [Str1
]), True);
2892 g_Console_Add(_lc
[I_MESSAGE_VOTE_FAILED
], True);
2894 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_VOTE
], [Str1
, Int1
, Int2
]), True);
2896 g_Console_Add(Format(_lc
[I_MESSAGE_VOTE_INPROGRESS
], [Str1
]), True);
2902 procedure MC_SEND_Info(Password
: string);
2906 NetOut
.Write(Byte(NET_MSG_INFO
));
2907 NetOut
.Write(GAME_VERSION
);
2908 NetOut
.Write(Password
);
2909 NetOut
.Write(gPlayer1Settings
.Name
);
2910 NetOut
.Write(gPlayer1Settings
.Model
);
2911 NetOut
.Write(gPlayer1Settings
.Color
.R
);
2912 NetOut
.Write(gPlayer1Settings
.Color
.G
);
2913 NetOut
.Write(gPlayer1Settings
.Color
.B
);
2914 NetOut
.Write(gPlayer1Settings
.Team
);
2916 g_Net_Client_Send(True, NET_CHAN_SERVICE
);
2919 procedure MC_SEND_Chat(Txt
: string; Mode
: Byte);
2921 NetOut
.Write(Byte(NET_MSG_CHAT
));
2925 g_Net_Client_Send(True, NET_CHAN_CHAT
);
2928 procedure MC_SEND_PlayerPos();
2933 WeaponSelect
: Word = 0;
2936 if not gGameOn
then Exit
;
2937 if gPlayers
= nil then Exit
;
2938 if gPlayer1
= nil then Exit
;
2941 Predict
:= NetPredictSelf
; // and (not NetGotKeys);
2943 if (not gConsoleShow
) and (not gChatShow
) and (g_ActiveWindow
= nil) then
2945 strafeDir
:= P1MoveButton
shr 4;
2946 P1MoveButton
:= P1MoveButton
and $0F;
2948 if gPlayerAction
[0, ACTION_MOVELEFT
] and (not gPlayerAction
[0, ACTION_MOVERIGHT
]) then
2950 else if (not gPlayerAction
[0, ACTION_MOVELEFT
]) and gPlayerAction
[0, ACTION_MOVERIGHT
] then
2952 else if (not gPlayerAction
[0, ACTION_MOVELEFT
]) and (not gPlayerAction
[0, ACTION_MOVERIGHT
]) then
2956 if gPlayerAction
[0, ACTION_STRAFE
] then
2958 // new strafe mechanics
2959 if (strafeDir
= 0) then
2960 strafeDir
:= P1MoveButton
; // start strafing
2961 // now set direction according to strafe (reversed)
2962 if (strafeDir
= 2) then
2963 gPlayer1
.SetDirection(TDirection
.D_LEFT
)
2964 else if (strafeDir
= 1) then
2965 gPlayer1
.SetDirection(TDirection
.D_RIGHT
)
2969 strafeDir
:= 0; // not strafing anymore
2970 if (P1MoveButton
= 2) and gPlayerAction
[0, ACTION_MOVELEFT
] then
2971 gPlayer1
.SetDirection(TDirection
.D_LEFT
)
2972 else if (P1MoveButton
= 1) and gPlayerAction
[0, ACTION_MOVERIGHT
] then
2973 gPlayer1
.SetDirection(TDirection
.D_RIGHT
)
2974 else if P1MoveButton
<> 0 then
2975 gPlayer1
.SetDirection(TDirection(P1MoveButton
-1));
2978 gPlayer1
.ReleaseKeys
;
2979 if P1MoveButton
= 1 then
2981 kByte
:= kByte
or NET_KEY_LEFT
;
2982 if Predict
then gPlayer1
.PressKey(KEY_LEFT
, 10000);
2984 if P1MoveButton
= 2 then
2986 kByte
:= kByte
or NET_KEY_RIGHT
;
2987 if Predict
then gPlayer1
.PressKey(KEY_RIGHT
, 10000);
2989 if gPlayerAction
[0, ACTION_LOOKUP
] then
2991 kByte
:= kByte
or NET_KEY_UP
;
2992 gPlayer1
.PressKey(KEY_UP
, 10000);
2994 if gPlayerAction
[0, ACTION_LOOKDOWN
] then
2996 kByte
:= kByte
or NET_KEY_DOWN
;
2997 gPlayer1
.PressKey(KEY_DOWN
, 10000);
2999 if gPlayerAction
[0, ACTION_JUMP
] then
3001 kByte
:= kByte
or NET_KEY_JUMP
;
3002 // gPlayer1.PressKey(KEY_JUMP, 10000); // TODO: Make a prediction option
3004 if gPlayerAction
[0, ACTION_ATTACK
] then kByte
:= kByte
or NET_KEY_FIRE
;
3005 if gPlayerAction
[0, ACTION_ACTIVATE
] then kByte
:= kByte
or NET_KEY_OPEN
;
3006 if gPlayerAction
[0, ACTION_WEAPNEXT
] then kByte
:= kByte
or NET_KEY_NW
;
3007 if gPlayerAction
[0, ACTION_WEAPPREV
] then kByte
:= kByte
or NET_KEY_PW
;
3009 gPlayerAction
[0, ACTION_WEAPNEXT
] := False; // HACK, remove after readyweaon&pendinweapon implementation
3010 gPlayerAction
[0, ACTION_WEAPPREV
] := False; // HACK, remove after readyweaon&pendinweapon implementation
3012 for i
:= WP_FIRST
to WP_LAST
do
3014 if gSelectWeapon
[0, i
] then
3016 WeaponSelect
:= WeaponSelect
or Word(1 shl i
);
3017 gSelectWeapon
[0, i
] := False
3021 // fix movebutton state
3022 P1MoveButton
:= P1MoveButton
or (strafeDir
shl 4);
3025 kByte
:= NET_KEY_CHAT
;
3027 NetOut
.Write(Byte(NET_MSG_PLRPOS
));
3028 NetOut
.Write(gTime
);
3029 NetOut
.Write(kByte
);
3030 NetOut
.Write(Byte(gPlayer1
.Direction
));
3031 NetOut
.Write(WeaponSelect
);
3032 //e_WriteLog(Format('S:ws=%d', [WeaponSelect]), MSG_WARNING);
3033 g_Net_Client_Send(True, NET_CHAN_PLAYERPOS
);
3035 //kBytePrev := kByte;
3036 //kDirPrev := gPlayer1.Direction;
3039 procedure MC_SEND_Vote(Start
: Boolean = False; Command
: string = 'a');
3041 NetOut
.Write(Byte(NET_MSG_VOTE_EVENT
));
3042 NetOut
.Write(Byte(Start
));
3043 NetOut
.Write(Command
);
3044 g_Net_Client_Send(True, NET_CHAN_IMPORTANT
);
3047 procedure MC_SEND_PlayerSettings();
3049 NetOut
.Write(Byte(NET_MSG_PLRSET
));
3050 NetOut
.Write(gPlayer1Settings
.Name
);
3051 NetOut
.Write(gPlayer1Settings
.Model
);
3052 NetOut
.Write(gPlayer1Settings
.Color
.R
);
3053 NetOut
.Write(gPlayer1Settings
.Color
.G
);
3054 NetOut
.Write(gPlayer1Settings
.Color
.B
);
3055 NetOut
.Write(gPlayer1Settings
.Team
);
3057 g_Net_Client_Send(True, NET_CHAN_IMPORTANT
);
3060 procedure MC_SEND_FullStateRequest();
3062 NetOut
.Write(Byte(NET_MSG_REQFST
));
3064 g_Net_Client_Send(True, NET_CHAN_SERVICE
);
3067 procedure MC_SEND_CheatRequest(Kind
: Byte);
3069 NetOut
.Write(Byte(NET_MSG_CHEAT
));
3072 g_Net_Client_Send(True, NET_CHAN_IMPORTANT
);
3074 procedure MC_SEND_RCONPassword(Password
: string);
3076 NetOut
.Write(Byte(NET_MSG_RCON_AUTH
));
3077 NetOut
.Write(Password
);
3079 g_Net_Client_Send(True, NET_CHAN_SERVICE
);
3081 procedure MC_SEND_RCONCommand(Cmd
: string);
3083 NetOut
.Write(Byte(NET_MSG_RCON_CMD
));
3086 g_Net_Client_Send(True, NET_CHAN_SERVICE
);