author | unc0rr |
Wed, 14 Feb 2007 20:05:20 +0000 | |
changeset 442 | 57ed1444606e |
parent 408 | 6c3da4907d00 |
child 446 | 692c75d46a4b |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2004-2007 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 |
||
19 |
unit uWorld; |
|
20 |
interface |
|
351 | 21 |
uses SDLh, uGears, uConsts, uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
371 | 23 |
const WorldDx: LongInt = -512; |
24 |
WorldDy: LongInt = -256; |
|
4 | 25 |
|
26 |
procedure InitWorld; |
|
371 | 27 |
procedure DrawWorld(Lag: LongInt; Surface: PSDL_Surface); |
108 | 28 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 29 |
|
30 |
{$IFDEF COUNTTICKS} |
|
31 |
var cntTicks: LongWord; |
|
32 |
{$ENDIF} |
|
33 |
var FollowGear: PGear = nil; |
|
371 | 34 |
WindBarWidth: LongInt = 0; |
161 | 35 |
bShowAmmoMenu: boolean = false; |
162 | 36 |
bSelected: boolean = false; |
176 | 37 |
bShowFinger: boolean = false; |
191
a03c2d037e24
Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents:
183
diff
changeset
|
38 |
Frames: Longword = 0; |
4 | 39 |
|
40 |
implementation |
|
174 | 41 |
uses uStore, uMisc, uTeams, uIO, uConsole, uKeys, uLocale, uSound; |
351 | 42 |
const hwFloatTicks: Longword = 0; |
4 | 43 |
FPS: Longword = 0; |
44 |
CountTicks: Longword = 0; |
|
174 | 45 |
SoundTimerTicks: Longword = 0; |
4 | 46 |
prevPoint: TPoint = (X: 0; Y: 0); |
161 | 47 |
|
4 | 48 |
type TCaptionStr = record |
83 | 49 |
Surf: PSDL_Surface; |
4 | 50 |
EndTime: LongWord; |
51 |
end; |
|
52 |
||
371 | 53 |
var cWaterSprCount: LongInt; |
175 | 54 |
Captions: array[TCapGroup] of TCaptionStr; |
371 | 55 |
AMxLeft, AMxCurr, SlotsNum: LongInt; |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
56 |
fpsSurface: PSDL_Surface; |
4 | 57 |
|
58 |
procedure InitWorld; |
|
59 |
begin |
|
74 | 60 |
cWaterSprCount:= 1 + cScreenWidth div (SpritesData[sprWater].Width); |
284 | 61 |
cGearScrEdgesDist:= Min(cScreenWidth div 2 - 100, cScreenHeight div 2 - 50); |
74 | 62 |
SDL_WarpMouse(cScreenWidth div 2, cScreenHeight div 2); |
63 |
prevPoint.X:= cScreenWidth div 2; |
|
64 |
prevPoint.Y:= cScreenHeight div 2; |
|
65 |
WorldDx:= - 1024 + cScreenWidth div 2; |
|
161 | 66 |
WorldDy:= - 512 + cScreenHeight div 2; |
67 |
AMxLeft:= cScreenWidth - 210; |
|
68 |
AMxCurr:= cScreenWidth |
|
69 |
end; |
|
70 |
||
71 |
procedure ShowAmmoMenu(Surface: PSDL_Surface); |
|
72 |
const MENUSPEED = 15; |
|
371 | 73 |
var x, y, i, t: LongInt; |
74 |
Slot, Pos: LongInt; |
|
161 | 75 |
begin |
76 |
if (TurnTimeLeft = 0) or KbdKeyPressed then bShowAmmoMenu:= false; |
|
165 | 77 |
if bShowAmmoMenu then |
78 |
begin |
|
79 |
if AMxCurr = cScreenWidth then prevPoint.X:= 0; |
|
80 |
if AMxCurr > AMxLeft then dec(AMxCurr, MENUSPEED); |
|
81 |
end else |
|
82 |
begin |
|
83 |
if AMxCurr = AMxLeft then |
|
84 |
begin |
|
85 |
CursorPoint.X:= cScreenWidth div 2; |
|
86 |
CursorPoint.Y:= cScreenHeight div 2; |
|
87 |
prevPoint:= CursorPoint; |
|
88 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y) |
|
89 |
end; |
|
90 |
if AMxCurr < cScreenWidth then inc(AMxCurr, MENUSPEED); |
|
91 |
end; |
|
161 | 92 |
|
93 |
if CurrentTeam = nil then exit; |
|
162 | 94 |
Slot:= 0; |
95 |
Pos:= -1; |
|
351 | 96 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
161 | 97 |
begin |
98 |
if Ammo = nil then exit; |
|
162 | 99 |
SlotsNum:= 0; |
161 | 100 |
x:= AMxCurr; |
101 |
y:= cScreenHeight - 40; |
|
102 |
dec(y); |
|
103 |
DrawSprite(sprAMBorders, x, y, 0, Surface); |
|
104 |
dec(y); |
|
105 |
DrawSprite(sprAMBorders, x, y, 1, Surface); |
|
106 |
dec(y, 33); |
|
107 |
DrawSprite(sprAMSlotName, x, y, 0, Surface); |
|
108 |
for i:= cMaxSlotIndex downto 0 do |
|
351 | 109 |
if Ammo^[i, 0].Count > 0 then |
161 | 110 |
begin |
162 | 111 |
if (CursorPoint.Y >= y - 33) and (CursorPoint.Y < y) then Slot:= i; |
161 | 112 |
dec(y, 33); |
162 | 113 |
inc(SlotsNum); |
161 | 114 |
DrawSprite(sprAMSlot, x, y, 0, Surface); |
115 |
DrawSprite(sprAMSlotKeys, x + 2, y + 1, i, Surface); |
|
116 |
t:= 0; |
|
351 | 117 |
while (t <= cMaxSlotAmmoIndex) and (Ammo^[i, t].Count > 0) do |
161 | 118 |
begin |
371 | 119 |
DrawSprite(sprAMAmmos, x + t * 33 + 35, y + 1, LongInt(Ammo^[i, t].AmmoType), Surface); |
162 | 120 |
if (Slot = i) and (CursorPoint.X >= x + t * 33 + 35) and (CursorPoint.X < x + t * 33 + 68) then |
121 |
begin |
|
122 |
DrawSprite(sprAMSelection, x + t * 33 + 35, y + 1, 0, Surface); |
|
123 |
Pos:= t; |
|
124 |
end; |
|
161 | 125 |
inc(t) |
126 |
end |
|
127 |
end; |
|
128 |
dec(y, 1); |
|
162 | 129 |
DrawSprite(sprAMBorders, x, y, 0, Surface); |
130 |
||
131 |
if (Pos >= 0) then |
|
351 | 132 |
if Ammo^[Slot, Pos].Count > 0 then |
162 | 133 |
begin |
351 | 134 |
DXOutText(AMxCurr + 10, cScreenHeight - 68, fnt16, trAmmo[Ammoz[Ammo^[Slot, Pos].AmmoType].NameId], Surface); |
135 |
if Ammo^[Slot, Pos].Count < 10 then |
|
136 |
DXOutText(AMxCurr + 175, cScreenHeight - 68, fnt16, chr(Ammo^[Slot, Pos].Count + 48) + 'x', Surface); |
|
162 | 137 |
if bSelected then |
138 |
begin |
|
165 | 139 |
bShowAmmoMenu:= false; |
351 | 140 |
SetWeapon(Ammo^[Slot, Pos].AmmoType); |
165 | 141 |
bSelected:= false; |
142 |
exit |
|
162 | 143 |
end; |
144 |
end; |
|
145 |
end; |
|
146 |
||
147 |
bSelected:= false; |
|
351 | 148 |
if AMxLeft = AMxCurr then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (hwFloatTicks shr 6) mod 8, Surface) |
4 | 149 |
end; |
150 |
||
162 | 151 |
procedure MoveCamera; forward; |
152 |
||
371 | 153 |
procedure DrawWorld(Lag: LongInt; Surface: PSDL_Surface); |
154 |
var i, t: LongInt; |
|
4 | 155 |
r: TSDL_Rect; |
156 |
team: PTeam; |
|
107 | 157 |
tdx, tdy: Double; |
175 | 158 |
grp: TCapGroup; |
174 | 159 |
s: string[15]; |
80 | 160 |
|
371 | 161 |
procedure DrawRepeated(spr: TSprite; Shift: LongInt); |
162 |
var i, w: LongInt; |
|
80 | 163 |
begin |
164 |
w:= SpritesData[spr].Width; |
|
82 | 165 |
i:= Shift mod w; |
80 | 166 |
if i > 0 then dec(i, w); |
167 |
repeat |
|
168 |
DrawSprite(spr, i, WorldDy + 1024 - SpritesData[spr].Height, 0, Surface); |
|
169 |
inc(i, w) |
|
170 |
until i > cScreenWidth |
|
171 |
end; |
|
172 |
||
4 | 173 |
begin |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
174 |
if not isPaused then MoveCamera; |
162 | 175 |
|
5 | 176 |
// Sky |
351 | 177 |
inc(hwFloatTicks, Lag); |
109 | 178 |
if WorldDy > 0 then |
4 | 179 |
begin |
109 | 180 |
if WorldDy > cScreenHeight then r.h:= cScreenHeight |
181 |
else r.h:= WorldDy; |
|
4 | 182 |
r.x:= 0; |
183 |
r.y:= 0; |
|
184 |
r.w:= cScreenWidth; |
|
185 |
SDL_FillRect(Surface, @r, cSkyColor) |
|
186 |
end; |
|
5 | 187 |
// background |
82 | 188 |
DrawRepeated(sprSky, WorldDx * 3 div 8); |
189 |
DrawRepeated(sprHorizont, WorldDx * 3 div 5); |
|
4 | 190 |
|
5 | 191 |
// Waves |
4 | 192 |
{$WARNINGS OFF} |
351 | 193 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (hwFloatTicks shr 6) ) and $FF), cWaterLine + WorldDy - 64, 0, Surface); |
194 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (hwFloatTicks shr 6) + 192) and $FF), cWaterLine + WorldDy - 48, 0, Surface); |
|
4 | 195 |
{$WARNINGS ON} |
196 |
||
197 |
DrawLand(WorldDx, WorldDy, Surface); |
|
5 | 198 |
// Water |
4 | 199 |
r.y:= WorldDy + cWaterLine + 32; |
200 |
if r.y < cScreenHeight then |
|
201 |
begin |
|
23 | 202 |
if r.y < 0 then r.y:= 0; |
4 | 203 |
r.h:= cScreenHeight - r.y; |
204 |
r.x:= 0; |
|
205 |
r.w:= cScreenWidth; |
|
206 |
SDL_FillRect(Surface, @r, cWaterColor) |
|
207 |
end; |
|
208 |
||
209 |
DrawGears(Surface); |
|
210 |
||
5 | 211 |
// Waves |
4 | 212 |
{$WARNINGS OFF} |
351 | 213 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (hwFloatTicks shr 6) + 64) and $FF), cWaterLine + WorldDy - 32, 0, Surface); |
214 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (hwFloatTicks shr 6) + 128) and $FF), cWaterLine + WorldDy - 16, 0, Surface); |
|
215 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (hwFloatTicks shr 6) ) and $FF), cWaterLine + WorldDy , 0, Surface); |
|
4 | 216 |
{$WARNINGS ON} |
217 |
||
79 | 218 |
// Turn time |
4 | 219 |
if TurnTimeLeft <> 0 then |
220 |
begin |
|
221 |
i:= Succ(Pred(TurnTimeLeft) div 1000); |
|
222 |
if i>99 then t:= 112 |
|
223 |
else if i>9 then t:= 96 |
|
224 |
else t:= 80; |
|
225 |
DrawSprite(sprFrame, t, cScreenHeight - 48, 1, Surface); |
|
226 |
while i > 0 do |
|
227 |
begin |
|
228 |
dec(t, 32); |
|
229 |
DrawSprite(sprBigDigit, t, cScreenHeight - 48, i mod 10, Surface); |
|
230 |
i:= i div 10 |
|
231 |
end; |
|
232 |
DrawSprite(sprFrame, t - 4, cScreenHeight - 48, 0, Surface); |
|
233 |
end; |
|
79 | 234 |
|
235 |
// Attack bar |
|
4 | 236 |
if CurrentTeam <> nil then |
237 |
case AttackBar of |
|
238 |
1: begin |
|
239 |
r:= StuffPoz[sPowerBar]; |
|
240 |
{$WARNINGS OFF} |
|
351 | 241 |
r.w:= (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^.Power * 256) div cPowerDivisor; |
4 | 242 |
{$WARNINGS ON} |
243 |
DrawSpriteFromRect(r, cScreenWidth - 272, cScreenHeight - 48, 16, 0, Surface); |
|
244 |
end; |
|
351 | 245 |
2: with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
74 | 246 |
begin |
351 | 247 |
tdx:= hwSign(Gear^.dX) * Sin(Gear^.Angle * Pi / cMaxAngle); |
248 |
tdy:= - Cos(Gear^.Angle * Pi / cMaxAngle); |
|
249 |
for i:= (Gear^.Power * 24) div cPowerDivisor downto 0 do |
|
250 |
DrawSprite(sprPower, Gear^.X.Round + system.round(WorldDx + tdx * (24 + i * 2)) - 16, |
|
251 |
Gear^.Y.Round + system.round(WorldDy + tdy * (24 + i * 2)) - 12, |
|
74 | 252 |
i, Surface) |
253 |
end |
|
4 | 254 |
end; |
255 |
||
5 | 256 |
// Target |
4 | 257 |
if TargetPoint.X <> NoPointX then DrawSprite(sprTargetP, TargetPoint.X + WorldDx - 16, TargetPoint.Y + WorldDy - 16, 0, Surface); |
258 |
||
259 |
// Captions |
|
175 | 260 |
i:= 8; |
261 |
for grp:= Low(TCapGroup) to High(TCapGroup) do |
|
262 |
with Captions[grp] do |
|
295 | 263 |
if Surf <> nil then |
175 | 264 |
begin |
265 |
DrawCentered(cScreenWidth div 2, i + cConsoleYAdd, Surf, Surface); |
|
351 | 266 |
inc(i, Surf^.h + 2); |
267 |
if EndTime <= hwFloatTicks then |
|
175 | 268 |
begin |
269 |
SDL_FreeSurface(Surf); |
|
270 |
Surf:= nil; |
|
271 |
EndTime:= 0 |
|
272 |
end |
|
273 |
end; |
|
4 | 274 |
|
47 | 275 |
// Teams Healths |
276 |
team:= TeamsList; |
|
277 |
while team <> nil do |
|
278 |
begin |
|
351 | 279 |
r.x:= cScreenWidth div 2 - team^.NameTag^.w - 3; |
280 |
r.y:= team^.DrawHealthY; |
|
281 |
r.w:= team^.NameTag^.w; |
|
282 |
r.h:= team^.NameTag^.h; |
|
283 |
SDL_UpperBlit(team^.NameTag, nil, Surface, @r); |
|
284 |
r:= team^.HealthRect; |
|
285 |
r.w:= 2 + team^.TeamHealthBarWidth; |
|
49 | 286 |
DrawFromStoreRect(cScreenWidth div 2, |
351 | 287 |
Team^.DrawHealthY, |
47 | 288 |
@r, Surface); |
83 | 289 |
inc(r.x, cTeamHealthWidth + 2); |
290 |
r.w:= 3; |
|
351 | 291 |
DrawFromStoreRect(cScreenWidth div 2 + team^.TeamHealthBarWidth + 2, |
292 |
Team^.DrawHealthY, |
|
47 | 293 |
@r, Surface); |
351 | 294 |
team:= team^.Next |
47 | 295 |
end; |
296 |
||
5 | 297 |
// Lag alert |
351 | 298 |
if isInLag then DrawSprite(sprLag, 32, 32 + cConsoleYAdd, (hwFloatTicks shr 7) mod 7, Surface); |
4 | 299 |
|
5 | 300 |
// Wind bar |
301 |
DrawGear(sWindBar, cScreenWidth - 180, cScreenHeight - 30, Surface); |
|
6 | 302 |
if WindBarWidth > 0 then |
5 | 303 |
begin |
304 |
with StuffPoz[sWindR] do |
|
305 |
begin |
|
6 | 306 |
{$WARNINGS OFF} |
351 | 307 |
r.x:= x + 8 - (hwFloatTicks shr 6) mod 8; |
6 | 308 |
{$WARNINGS ON} |
5 | 309 |
r.y:= y; |
6 | 310 |
r.w:= WindBarWidth; |
5 | 311 |
r.h:= 13; |
312 |
end; |
|
313 |
DrawSpriteFromRect(r, cScreenWidth - 103, cScreenHeight - 28, 13, 0, Surface); |
|
314 |
end else |
|
6 | 315 |
if WindBarWidth < 0 then |
5 | 316 |
begin |
317 |
with StuffPoz[sWindL] do |
|
318 |
begin |
|
6 | 319 |
{$WARNINGS OFF} |
351 | 320 |
r.x:= x + (WindBarWidth + hwFloatTicks shr 6) mod 8; |
6 | 321 |
{$WARNINGS ON} |
5 | 322 |
r.y:= y; |
6 | 323 |
r.w:= - WindBarWidth; |
5 | 324 |
r.h:= 13; |
325 |
end; |
|
6 | 326 |
DrawSpriteFromRect(r, cScreenWidth - 106 + WindBarWidth, cScreenHeight - 28, 13, 0, Surface); |
5 | 327 |
end; |
328 |
||
161 | 329 |
// AmmoMenu |
330 |
if (AMxCurr < cScreenWidth) or bShowAmmoMenu then ShowAmmoMenu(Surface); |
|
331 |
||
5 | 332 |
// Cursor |
408 | 333 |
if isCursorVisible then |
334 |
begin |
|
335 |
if not bShowAmmoMenu then |
|
336 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
|
337 |
if (Gear^.State and gstHHChooseTarget) <> 0 then |
|
338 |
begin |
|
339 |
i:= Ammo^[CurSlot, CurAmmo].Pos; |
|
340 |
with Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType] do |
|
341 |
if PosCount > 1 then |
|
342 |
DrawSprite(PosSprite, CursorPoint.X - SpritesData[PosSprite].Width div 2, |
|
343 |
CursorPoint.Y - SpritesData[PosSprite].Height div 2, |
|
344 |
i, Surface); |
|
345 |
end; |
|
346 |
DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (hwFloatTicks shr 6) mod 8, Surface) |
|
347 |
end; |
|
4 | 348 |
|
349 |
{$IFDEF COUNTTICKS} |
|
350 |
DXOutText(10, 10, fnt16, inttostr(cntTicks), Surface); |
|
351 |
{$ENDIF} |
|
352 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
353 |
if isPaused then DrawCentered(cScreenWidth div 2, cScreenHeight div 2, PauseSurface, Surface); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
354 |
|
4 | 355 |
inc(Frames); |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
356 |
if cShowFPS then |
4 | 357 |
begin |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
358 |
inc(CountTicks, Lag); |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
359 |
if CountTicks >= 1000 then |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
360 |
begin |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
361 |
FPS:= Frames; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
362 |
Frames:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
363 |
CountTicks:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
364 |
s:= inttostr(FPS) + ' fps'; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
365 |
if fpsSurface <> nil then SDL_FreeSurface(fpsSurface); |
351 | 366 |
fpsSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(s), $FFFFFF); |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
367 |
end; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
368 |
r.x:= cScreenWidth - 50; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
369 |
r.y:= 10; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
370 |
SDL_UpperBlit(fpsSurface, nil, Surface, @r) |
4 | 371 |
end; |
174 | 372 |
|
373 |
inc(SoundTimerTicks, Lag); |
|
374 |
if SoundTimerTicks >= 50 then |
|
375 |
begin |
|
376 |
SoundTimerTicks:= 0; |
|
377 |
if cVolumeDelta <> 0 then |
|
378 |
begin |
|
379 |
str(ChangeVolume(cVolumeDelta), s); |
|
175 | 380 |
AddCaption(Format(trmsg[sidVolume], s), $FFFFFF, capgrpVolume) |
174 | 381 |
end |
382 |
end |
|
4 | 383 |
end; |
384 |
||
108 | 385 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 386 |
begin |
83 | 387 |
if Group in [capgrpGameState, capgrpNetSay] then WriteLnToConsole(s); |
175 | 388 |
if Captions[Group].Surf <> nil then SDL_FreeSurface(Captions[Group].Surf); |
4 | 389 |
|
175 | 390 |
Captions[Group].Surf:= RenderString(s, Color, fntBig); |
351 | 391 |
Captions[Group].EndTime:= hwFloatTicks + 1500 |
4 | 392 |
end; |
393 |
||
79 | 394 |
procedure MoveCamera; |
4 | 395 |
const PrevSentPointTime: LongWord = 0; |
371 | 396 |
var EdgesDist: LongInt; |
4 | 397 |
begin |
351 | 398 |
if not (CurrentTeam^.ExtDriven and isCursorVisible) then SDL_GetMouseState(@CursorPoint.X, @CursorPoint.Y); |
4 | 399 |
if (FollowGear <> nil) then |
57 | 400 |
if abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y) > 4 then |
4 | 401 |
begin |
402 |
FollowGear:= nil; |
|
403 |
exit |
|
404 |
end |
|
405 |
else begin |
|
351 | 406 |
CursorPoint.x:= (CursorPoint.x * 7 + (hwRound(FollowGear^.X + hwSign(FollowGear^.dX) * 100) + WorldDx)) div 8; |
407 |
CursorPoint.y:= (CursorPoint.y * 7 + (hwRound(FollowGear^.Y) + WorldDy)) div 8 |
|
4 | 408 |
end; |
409 |
||
410 |
if ((CursorPoint.X = prevPoint.X)and(CursorPoint.Y = prevpoint.Y)) then exit; |
|
411 |
||
162 | 412 |
if AMxCurr < cScreenWidth then |
413 |
begin |
|
414 |
if CursorPoint.X < AMxCurr + 35 then CursorPoint.X:= AMxCurr + 35; |
|
415 |
if CursorPoint.X > AMxCurr + 200 then CursorPoint.X:= AMxCurr + 200; |
|
416 |
if CursorPoint.Y < cScreenHeight - 75 - SlotsNum * 33 then CursorPoint.Y:= cScreenHeight - 75 - SlotsNum * 33; |
|
417 |
if CursorPoint.Y > cScreenHeight - 76 then CursorPoint.Y:= cScreenHeight - 76; |
|
418 |
prevPoint:= CursorPoint; |
|
308 | 419 |
if cHasFocus then SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
162 | 420 |
exit |
421 |
end; |
|
422 |
||
4 | 423 |
if isCursorVisible then |
424 |
begin |
|
351 | 425 |
if (not CurrentTeam^.ExtDriven)and(GameTicks >= PrevSentPointTime + cSendCursorPosTime) then |
4 | 426 |
begin |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
146
diff
changeset
|
427 |
SendIPCXY('P', CursorPoint.X - WorldDx, CursorPoint.Y - WorldDy); |
4 | 428 |
PrevSentPointTime:= GameTicks |
429 |
end; |
|
430 |
end; |
|
351 | 431 |
|
4 | 432 |
if isCursorVisible or (FollowGear <> nil) then |
433 |
begin |
|
284 | 434 |
if isCursorVisible then EdgesDist:= cCursorEdgesDist |
435 |
else EdgesDist:= cGearScrEdgesDist; |
|
436 |
if CursorPoint.X < EdgesDist then |
|
4 | 437 |
begin |
284 | 438 |
WorldDx:= WorldDx - CursorPoint.X + EdgesDist; |
439 |
CursorPoint.X:= EdgesDist |
|
4 | 440 |
end else |
284 | 441 |
if CursorPoint.X > cScreenWidth - EdgesDist then |
4 | 442 |
begin |
284 | 443 |
WorldDx:= WorldDx - CursorPoint.X + cScreenWidth - EdgesDist; |
444 |
CursorPoint.X:= cScreenWidth - EdgesDist |
|
4 | 445 |
end; |
284 | 446 |
if CursorPoint.Y < EdgesDist then |
4 | 447 |
begin |
284 | 448 |
WorldDy:= WorldDy - CursorPoint.Y + EdgesDist; |
449 |
CursorPoint.Y:= EdgesDist |
|
4 | 450 |
end else |
284 | 451 |
if CursorPoint.Y > cScreenHeight - EdgesDist then |
4 | 452 |
begin |
284 | 453 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenHeight - EdgesDist; |
454 |
CursorPoint.Y:= cScreenHeight - EdgesDist |
|
4 | 455 |
end; |
456 |
end else |
|
308 | 457 |
if cHasFocus then |
458 |
begin |
|
70 | 459 |
WorldDx:= WorldDx - CursorPoint.X + prevPoint.X; |
460 |
WorldDy:= WorldDy - CursorPoint.Y + prevPoint.Y; |
|
4 | 461 |
CursorPoint.X:= (cScreenWidth shr 1); |
462 |
CursorPoint.Y:= (cScreenHeight shr 1); |
|
308 | 463 |
end; |
351 | 464 |
|
308 | 465 |
if cHasFocus then SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
4 | 466 |
prevPoint:= CursorPoint; |
75 | 467 |
if WorldDy < cScreenHeight - cWaterLine - cVisibleWater then WorldDy:= cScreenHeight - cWaterLine - cVisibleWater; |
4 | 468 |
if WorldDy > 2048 then WorldDy:= 2048; |
469 |
if WorldDx < -2048 then WorldDx:= -2048; |
|
470 |
if WorldDx > cScreenWidth then WorldDx:= cScreenWidth; |
|
471 |
end; |
|
472 |
||
473 |
initialization |
|
474 |
FillChar(Captions, sizeof(Captions), 0) |
|
475 |
||
476 |
end. |