author | nemo |
Thu, 17 May 2018 20:04:07 -0400 | |
branch | 0.9.24 |
changeset 13393 | ae5d6448c5be |
parent 13039 | aed4b25ff242 |
child 13495 | f725701ca529 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10105
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 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 |
//////////////////// |
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
29 |
uses uInputHandler, uTeams, uIO, uAI, uGears, uSound, uLocale, uCaptions, |
10128 | 30 |
uTypes, uVariables, uCommands, uConsts, uVisualGearsList, uUtils |
11532 | 31 |
{$IFDEF USE_TOUCH_INTERFACE}, uTouch{$ENDIF}, uDebug; |
4 | 32 |
|
371 | 33 |
procedure DoGameTick(Lag: LongInt); |
11605 | 34 |
const maxCheckedGameDuration = 3*60*60*1000; |
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
35 |
var i,j : LongInt; |
10127 | 36 |
s: ansistring; |
4 | 37 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
38 |
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
|
39 |
exit; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8471
diff
changeset
|
40 |
|
1611 | 41 |
if (not CurrentTeam^.ExtDriven) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
42 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
43 |
NetGetNextCmd; // its for the case of receiving "/say" message |
11532 | 44 |
if not allOK then exit; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
45 |
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
|
46 |
FlushMessages(Lag) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2814
diff
changeset
|
47 |
end; |
8472
da6b569ac930
- Collect synced packets to send within 1 second (cSendEmptyPacketTime) into buffer which is flushed each second.
unc0rr
parents:
8471
diff
changeset
|
48 |
|
7180 | 49 |
if GameType <> gmtRecord then |
50 |
begin |
|
51 |
if Lag > 100 then |
|
52 |
Lag:= 100 |
|
53 |
else if (GameType = gmtSave) or (fastUntilLag and (GameType = gmtNet)) then |
|
54 |
Lag:= 2500; |
|
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
4976
diff
changeset
|
55 |
|
9317
a04c30940d2d
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents:
9309
diff
changeset
|
56 |
if (GameType = gmtDemo) then |
7180 | 57 |
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
|
58 |
begin |
7418 | 59 |
i:= RealTicks-SpeedStart; |
60 |
if i < 2000 then Lag:= Lag*5 |
|
61 |
else if i < 4000 then Lag:= Lag*10 |
|
62 |
else if i < 6000 then Lag:= Lag*20 |
|
63 |
else if i < 8000 then Lag:= Lag*40 |
|
64 |
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
|
65 |
end |
e5ba3dd12531
make stats-only mode work headless. also skip a few things to save time/memory.
nemo
parents:
7837
diff
changeset
|
66 |
else if cOnlyStats then |
11605 | 67 |
begin |
68 |
if GameTicks >= maxCheckedGameDuration then |
|
69 |
begin |
|
70 |
gameState:= gsExit; |
|
71 |
exit; |
|
72 |
end; |
|
73 |
||
74 |
Lag:= maxCheckedGameDuration + 60000; |
|
75 |
end; |
|
7180 | 76 |
end; |
10316 | 77 |
|
78 |
if cTestLua then |
|
79 |
Lag:= High(LongInt); |
|
80 |
||
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
81 |
inc(SoundTimerTicks, Lag); |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
82 |
if SoundTimerTicks >= 50 then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
83 |
begin |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
84 |
SoundTimerTicks:= 0; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
85 |
if cVolumeDelta <> 0 then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
86 |
begin |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
87 |
j:= Volume; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
88 |
i:= ChangeVolume(cVolumeDelta); |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
89 |
if isAudioMuted and (j<>i) then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
90 |
AddCaption(trmsg[sidMute], cWhiteColor, capgrpVolume) |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
91 |
else if not isAudioMuted then |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
92 |
begin |
10127 | 93 |
s:= ansistring(inttostr(i)); |
94 |
AddCaption(FormatA(trmsg[sidVolume], s), cWhiteColor, capgrpVolume) |
|
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
95 |
end |
13039
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
96 |
end |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
97 |
else if cMuteToggle then |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
98 |
begin |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
99 |
MuteAudio; |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
100 |
if isAudioMuted then |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
101 |
AddCaption(trmsg[sidMute], cWhiteColor, capgrpVolume) |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
102 |
else |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
103 |
begin |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
104 |
s:= ansistring(inttostr(GetVolumePercent())); |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
105 |
AddCaption(FormatA(trmsg[sidVolume], s), cWhiteColor, capgrpVolume); |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
106 |
end; |
aed4b25ff242
Fix volume caption not being shown when hitting mute key
Wuzzy <Wuzzy2@mail.ru>
parents:
11605
diff
changeset
|
107 |
cMuteToggle:= false; |
8471
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
108 |
end; |
7681d14b9f01
Trying to prevent audio mute from endlessly spamming. Untested.
nemo
parents:
8204
diff
changeset
|
109 |
end; |
5638
e35ba2a400d8
Try to avoid overlapping voices for major statements (not things like byebye or oof)
nemo
parents:
5357
diff
changeset
|
110 |
PlayNextVoice; |
89 | 111 |
i:= 1; |
11539 | 112 |
while (GameState <> gsExit) and (i <= Lag) and allOK do |
89 | 113 |
begin |
351 | 114 |
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
|
115 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
116 |
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
|
117 |
ProcessBot; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
118 |
ProcessGears; |
9651 | 119 |
{$IFDEF USE_TOUCH_INTERFACE}ProcessTouch;{$ENDIF} |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
120 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
121 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
122 |
begin |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
123 |
NetGetNextCmd; |
11532 | 124 |
if not allOK then exit; |
125 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
126 |
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
|
127 |
case GameType of |
4075 | 128 |
gmtNet: begin |
10861
d84c725fe332
Also update wind indicator on lag when joining midgame
unc0rr
parents:
10316
diff
changeset
|
129 |
// update health bars and the wind indicator |
4075 | 130 |
AddVisualGear(0, 0, vgtTeamHealthSorter); |
10861
d84c725fe332
Also update wind indicator on lag when joining midgame
unc0rr
parents:
10316
diff
changeset
|
131 |
AddVisualGear(0, 0, vgtSmoothWindBar); |
4075 | 132 |
break; |
133 |
end; |
|
7386
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
134 |
gmtDemo, gmtRecord: begin |
11026
b8022f4bea14
Put diagnostic message into log when quitting due to end of input in demo replay mode
unc0rr
parents:
10861
diff
changeset
|
135 |
AddFileLog('End of input, halting now'); |
4 | 136 |
GameState:= gsExit; |
137 |
exit |
|
72 | 138 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
139 |
gmtSave: begin |
72 | 140 |
RestoreTeamsFromSave; |
519 | 141 |
SetBinds(CurrentTeam^.Binds); |
7670
9485b88f6a44
Stop messages without possible desync on load from save
unc0rr
parents:
7447
diff
changeset
|
142 |
StopMessages(gmLeft or gmRight or gmUp or gmDown); |
7061 | 143 |
ResetSound; // restore previous sound state |
5809 | 144 |
PlayMusic; |
3902
3aac7ca07b0e
have Saves restart net when loaded, also resumes music
koda
parents:
3663
diff
changeset
|
145 |
GameType:= gmtLocal; |
4049
fe799b5d601b
fix issue 63 and draw health bars right away for savefiles
koda
parents:
4048
diff
changeset
|
146 |
AddVisualGear(0, 0, vgtTeamHealthSorter); |
5357
ec36f3d53f3c
Tiny optimization: convert smooth wind indicator change gear into visual gear
unc0rr
parents:
5174
diff
changeset
|
147 |
AddVisualGear(0, 0, vgtSmoothWindBar); |
4048 | 148 |
{$IFDEF IPHONEOS}InitIPC;{$ENDIF} |
10015 | 149 |
{$IFNDEF PAS2C} |
8204 | 150 |
with mobileRecord do |
151 |
if SaveLoadingEnded <> nil then |
|
152 |
SaveLoadingEnded(); |
|
8446
c18ba8726f5a
Fix sources so pas2c written in haskell could render them again
unc0rr
parents:
8330
diff
changeset
|
153 |
{$ENDIF} |
72 | 154 |
end; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
155 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
156 |
else ProcessGears |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6341
diff
changeset
|
157 |
end; |
89 | 158 |
inc(i) |
162 | 159 |
end |
4 | 160 |
end; |
161 |
||
162 |
end. |