author | koda |
Thu, 28 Feb 2013 22:24:32 +0100 | |
changeset 8605 | 2865389fec96 |
parent 8472 | da6b569ac930 |
child 8833 | c13ebed437cb |
child 9080 | 9b42757d7e71 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
4 | 21 |
unit uGame; |
22 |
interface |
|
23 |
||
371 | 24 |
procedure DoGameTick(Lag: LongInt); |
4 | 25 |
|
26 |
//////////////////// |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
27 |
implementation |
4 | 28 |
//////////////////// |
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
29 |
uses uInputHandler, uTeams, uIO, uAI, uGears, uSound, uLocale, uCaptions, |
7670
9485b88f6a44
Stop messages without possible desync on load from save
unc0rr
parents:
7447
diff
changeset
|
30 |
uVisualGears, uTypes, uVariables, uCommands, uConsts |
7837 | 31 |
{$IFDEF USE_TOUCH_INTERFACE}, uTouch{$ENDIF}; |
4 | 32 |
|
371 | 33 |
procedure DoGameTick(Lag: LongInt); |
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
34 |
var i,j : LongInt; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
35 |
s: shortstring; |
4 | 36 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
37 |
if isPaused then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
38 |
exit; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8471
diff
changeset
|
39 |
|
1611 | 40 |
if (not CurrentTeam^.ExtDriven) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
41 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
42 |
NetGetNextCmd; // its for the case of receiving "/say" message |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
43 |
isInLag:= false; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8471
diff
changeset
|
44 |
FlushMessages(Lag) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
45 |
end; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8471
diff
changeset
|
46 |
|
7180 | 47 |
if GameType <> gmtRecord then |
48 |
begin |
|
49 |
if Lag > 100 then |
|
50 |
Lag:= 100 |
|
51 |
else if (GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet)) then |
|
52 |
Lag:= 2500; |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
53 |
|
7180 | 54 |
if (GameType = gmtDemo) then |
55 |
if isSpeed then |
|
8027
e5ba3dd12531
make stats-only mode work headless. also skip a few things to save time/memory.
nemo
parents:
7837
diff
changeset
|
56 |
begin |
7418 | 57 |
i:= RealTicks-SpeedStart; |
58 |
if i < 2000 then Lag:= Lag*5 |
|
59 |
else if i < 4000 then Lag:= Lag*10 |
|
60 |
else if i < 6000 then Lag:= Lag*20 |
|
61 |
else if i < 8000 then Lag:= Lag*40 |
|
62 |
else Lag:= Lag*80; |
|
8027
e5ba3dd12531
make stats-only mode work headless. also skip a few things to save time/memory.
nemo
parents:
7837
diff
changeset
|
63 |
end |
e5ba3dd12531
make stats-only mode work headless. also skip a few things to save time/memory.
nemo
parents:
7837
diff
changeset
|
64 |
else if cOnlyStats then |
e5ba3dd12531
make stats-only mode work headless. also skip a few things to save time/memory.
nemo
parents:
7837
diff
changeset
|
65 |
Lag:= High(LongInt) |
7180 | 66 |
end; |
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
67 |
inc(SoundTimerTicks, Lag); |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
68 |
if SoundTimerTicks >= 50 then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
69 |
begin |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
70 |
SoundTimerTicks:= 0; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
71 |
if cVolumeDelta <> 0 then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
72 |
begin |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
73 |
j:= Volume; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
74 |
i:= ChangeVolume(cVolumeDelta); |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
75 |
if isAudioMuted and (j<>i) then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
76 |
AddCaption(trmsg[sidMute], cWhiteColor, capgrpVolume) |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
77 |
else if not isAudioMuted then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
78 |
begin |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
79 |
str(i, s); |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
80 |
AddCaption(Format(trmsg[sidVolume], s), cWhiteColor, capgrpVolume) |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
81 |
end |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
82 |
end; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
83 |
end; |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5357
diff
changeset
|
84 |
PlayNextVoice; |
89 | 85 |
i:= 1; |
86 |
while (GameState <> gsExit) and (i <= Lag) do |
|
87 |
begin |
|
351 | 88 |
if not CurrentTeam^.ExtDriven then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
89 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
90 |
if CurrentHedgehog^.BotLevel <> 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
91 |
ProcessBot; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
92 |
ProcessGears; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
93 |
{$IFDEF SDL13}ProcessTouch;{$ENDIF} |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
94 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
95 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
96 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
97 |
NetGetNextCmd; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
98 |
if isInLag then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
99 |
case GameType of |
4075 | 100 |
gmtNet: begin |
101 |
// just update the health bars |
|
102 |
AddVisualGear(0, 0, vgtTeamHealthSorter); |
|
103 |
break; |
|
104 |
end; |
|
7386
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
105 |
gmtDemo, gmtRecord: begin |
4 | 106 |
GameState:= gsExit; |
107 |
exit |
|
72 | 108 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
109 |
gmtSave: begin |
72 | 110 |
RestoreTeamsFromSave; |
519 | 111 |
SetBinds(CurrentTeam^.Binds); |
7670
9485b88f6a44
Stop messages without possible desync on load from save
unc0rr
parents:
7447
diff
changeset
|
112 |
StopMessages(gmLeft or gmRight or gmUp or gmDown); |
7061 | 113 |
ResetSound; // restore previous sound state |
5809 | 114 |
PlayMusic; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3663
diff
changeset
|
115 |
GameType:= gmtLocal; |
4049
fe799b5d601b
fix issue 63 and draw health bars right away for savefiles
koda
parents:
4048
diff
changeset
|
116 |
AddVisualGear(0, 0, vgtTeamHealthSorter); |
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5174
diff
changeset
|
117 |
AddVisualGear(0, 0, vgtSmoothWindBar); |
4048 | 118 |
{$IFDEF IPHONEOS}InitIPC;{$ENDIF} |
8204 | 119 |
with mobileRecord do |
120 |
if SaveLoadingEnded <> nil then |
|
121 |
SaveLoadingEnded(); |
|
72 | 122 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
123 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
124 |
else ProcessGears |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
125 |
end; |
89 | 126 |
inc(i) |
162 | 127 |
end |
4 | 128 |
end; |
129 |
||
130 |
end. |