author | unc0rr |
Thu, 28 Sep 2006 16:34:42 +0000 | |
changeset 176 | 533d03041dcd |
parent 175 | d226d976d836 |
child 183 | 57c2ef19f719 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
47 | 3 |
* Copyright (c) 2004, 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
unit uWorld; |
|
35 |
interface |
|
83 | 36 |
uses SDLh, uGears, uConsts; |
4 | 37 |
{$INCLUDE options.inc} |
38 |
const WorldDx: integer = -512; |
|
39 |
WorldDy: integer = -256; |
|
40 |
||
41 |
procedure InitWorld; |
|
42 |
procedure DrawWorld(Lag: integer; Surface: PSDL_Surface); |
|
108 | 43 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 44 |
|
45 |
{$IFDEF COUNTTICKS} |
|
46 |
var cntTicks: LongWord; |
|
47 |
{$ENDIF} |
|
48 |
var FollowGear: PGear = nil; |
|
6 | 49 |
WindBarWidth: integer = 0; |
161 | 50 |
bShowAmmoMenu: boolean = false; |
162 | 51 |
bSelected: boolean = false; |
176 | 52 |
bShowFinger: boolean = false; |
4 | 53 |
|
54 |
implementation |
|
174 | 55 |
uses uStore, uMisc, uTeams, uIO, uConsole, uKeys, uLocale, uSound; |
4 | 56 |
const RealTicks: Longword = 0; |
57 |
Frames: Longword = 0; |
|
58 |
FPS: Longword = 0; |
|
59 |
CountTicks: Longword = 0; |
|
174 | 60 |
SoundTimerTicks: Longword = 0; |
4 | 61 |
prevPoint: TPoint = (X: 0; Y: 0); |
161 | 62 |
|
4 | 63 |
type TCaptionStr = record |
83 | 64 |
Surf: PSDL_Surface; |
4 | 65 |
EndTime: LongWord; |
66 |
end; |
|
67 |
||
68 |
var cWaterSprCount: integer; |
|
175 | 69 |
Captions: array[TCapGroup] of TCaptionStr; |
162 | 70 |
AMxLeft, AMxCurr, SlotsNum: integer; |
4 | 71 |
|
72 |
procedure InitWorld; |
|
73 |
begin |
|
74 | 74 |
cWaterSprCount:= 1 + cScreenWidth div (SpritesData[sprWater].Width); |
75 |
cScreenEdgesDist:= Min(cScreenWidth div 4, cScreenHeight div 4); |
|
76 |
SDL_WarpMouse(cScreenWidth div 2, cScreenHeight div 2); |
|
77 |
prevPoint.X:= cScreenWidth div 2; |
|
78 |
prevPoint.Y:= cScreenHeight div 2; |
|
79 |
WorldDx:= - 1024 + cScreenWidth div 2; |
|
161 | 80 |
WorldDy:= - 512 + cScreenHeight div 2; |
81 |
AMxLeft:= cScreenWidth - 210; |
|
82 |
AMxCurr:= cScreenWidth |
|
83 |
end; |
|
84 |
||
85 |
procedure ShowAmmoMenu(Surface: PSDL_Surface); |
|
86 |
const MENUSPEED = 15; |
|
87 |
var x, y, i, t: integer; |
|
162 | 88 |
Slot, Pos: integer; |
161 | 89 |
begin |
90 |
if (TurnTimeLeft = 0) or KbdKeyPressed then bShowAmmoMenu:= false; |
|
165 | 91 |
if bShowAmmoMenu then |
92 |
begin |
|
93 |
if AMxCurr = cScreenWidth then prevPoint.X:= 0; |
|
94 |
if AMxCurr > AMxLeft then dec(AMxCurr, MENUSPEED); |
|
95 |
end else |
|
96 |
begin |
|
97 |
if AMxCurr = AMxLeft then |
|
98 |
begin |
|
99 |
CursorPoint.X:= cScreenWidth div 2; |
|
100 |
CursorPoint.Y:= cScreenHeight div 2; |
|
101 |
prevPoint:= CursorPoint; |
|
102 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y) |
|
103 |
end; |
|
104 |
if AMxCurr < cScreenWidth then inc(AMxCurr, MENUSPEED); |
|
105 |
end; |
|
161 | 106 |
|
107 |
if CurrentTeam = nil then exit; |
|
162 | 108 |
Slot:= 0; |
109 |
Pos:= -1; |
|
161 | 110 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
111 |
begin |
|
112 |
if Ammo = nil then exit; |
|
162 | 113 |
SlotsNum:= 0; |
161 | 114 |
x:= AMxCurr; |
115 |
y:= cScreenHeight - 40; |
|
116 |
dec(y); |
|
117 |
DrawSprite(sprAMBorders, x, y, 0, Surface); |
|
118 |
dec(y); |
|
119 |
DrawSprite(sprAMBorders, x, y, 1, Surface); |
|
120 |
dec(y, 33); |
|
121 |
DrawSprite(sprAMSlotName, x, y, 0, Surface); |
|
122 |
for i:= cMaxSlotIndex downto 0 do |
|
123 |
if Ammo[i, 0].Count > 0 then |
|
124 |
begin |
|
162 | 125 |
if (CursorPoint.Y >= y - 33) and (CursorPoint.Y < y) then Slot:= i; |
161 | 126 |
dec(y, 33); |
162 | 127 |
inc(SlotsNum); |
161 | 128 |
DrawSprite(sprAMSlot, x, y, 0, Surface); |
129 |
DrawSprite(sprAMSlotKeys, x + 2, y + 1, i, Surface); |
|
130 |
t:= 0; |
|
131 |
while (t <= cMaxSlotAmmoIndex) and (Ammo[i, t].Count > 0) do |
|
132 |
begin |
|
133 |
DrawSprite(sprAMAmmos, x + t * 33 + 35, y + 1, integer(Ammo[i, t].AmmoType), Surface); |
|
162 | 134 |
if (Slot = i) and (CursorPoint.X >= x + t * 33 + 35) and (CursorPoint.X < x + t * 33 + 68) then |
135 |
begin |
|
136 |
DrawSprite(sprAMSelection, x + t * 33 + 35, y + 1, 0, Surface); |
|
137 |
Pos:= t; |
|
138 |
end; |
|
161 | 139 |
inc(t) |
140 |
end |
|
141 |
end; |
|
142 |
dec(y, 1); |
|
162 | 143 |
DrawSprite(sprAMBorders, x, y, 0, Surface); |
144 |
||
145 |
if (Pos >= 0) then |
|
146 |
if Ammo[Slot, Pos].Count > 0 then |
|
147 |
begin |
|
148 |
DXOutText(AMxCurr + 10, cScreenHeight - 68, fnt16, trAmmo[Ammoz[Ammo[Slot, Pos].AmmoType].NameId], Surface); |
|
149 |
if Ammo[Slot, Pos].Count < 10 then |
|
150 |
DXOutText(AMxCurr + 175, cScreenHeight - 68, fnt16, chr(Ammo[Slot, Pos].Count + 48) + 'x', Surface); |
|
151 |
if bSelected then |
|
152 |
begin |
|
165 | 153 |
bShowAmmoMenu:= false; |
154 |
SetWeapon(Ammo[Slot, Pos].AmmoType); |
|
155 |
bSelected:= false; |
|
156 |
exit |
|
162 | 157 |
end; |
158 |
end; |
|
159 |
end; |
|
160 |
||
161 |
bSelected:= false; |
|
165 | 162 |
if AMxLeft = AMxCurr then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8, Surface) |
4 | 163 |
end; |
164 |
||
162 | 165 |
procedure MoveCamera; forward; |
166 |
||
4 | 167 |
procedure DrawWorld(Lag: integer; Surface: PSDL_Surface); |
168 |
var i, t: integer; |
|
169 |
r: TSDL_Rect; |
|
170 |
team: PTeam; |
|
107 | 171 |
tdx, tdy: Double; |
175 | 172 |
grp: TCapGroup; |
174 | 173 |
s: string[15]; |
80 | 174 |
|
82 | 175 |
procedure DrawRepeated(spr: TSprite; Shift: integer); |
80 | 176 |
var i, w: integer; |
177 |
begin |
|
178 |
w:= SpritesData[spr].Width; |
|
82 | 179 |
i:= Shift mod w; |
80 | 180 |
if i > 0 then dec(i, w); |
181 |
repeat |
|
182 |
DrawSprite(spr, i, WorldDy + 1024 - SpritesData[spr].Height, 0, Surface); |
|
183 |
inc(i, w) |
|
184 |
until i > cScreenWidth |
|
185 |
end; |
|
186 |
||
4 | 187 |
begin |
162 | 188 |
MoveCamera; |
189 |
||
5 | 190 |
// Sky |
4 | 191 |
inc(RealTicks, Lag); |
109 | 192 |
if WorldDy > 0 then |
4 | 193 |
begin |
109 | 194 |
if WorldDy > cScreenHeight then r.h:= cScreenHeight |
195 |
else r.h:= WorldDy; |
|
4 | 196 |
r.x:= 0; |
197 |
r.y:= 0; |
|
198 |
r.w:= cScreenWidth; |
|
199 |
SDL_FillRect(Surface, @r, cSkyColor) |
|
200 |
end; |
|
5 | 201 |
// background |
82 | 202 |
DrawRepeated(sprSky, WorldDx * 3 div 8); |
203 |
DrawRepeated(sprHorizont, WorldDx * 3 div 5); |
|
4 | 204 |
|
5 | 205 |
// Waves |
4 | 206 |
{$WARNINGS OFF} |
56 | 207 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) ) and $FF), cWaterLine + WorldDy - 64, 0, Surface); |
208 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (RealTicks shr 6) + 192) and $FF), cWaterLine + WorldDy - 48, 0, Surface); |
|
4 | 209 |
{$WARNINGS ON} |
210 |
||
211 |
DrawLand(WorldDx, WorldDy, Surface); |
|
5 | 212 |
// Water |
4 | 213 |
r.y:= WorldDy + cWaterLine + 32; |
214 |
if r.y < cScreenHeight then |
|
215 |
begin |
|
23 | 216 |
if r.y < 0 then r.y:= 0; |
4 | 217 |
r.h:= cScreenHeight - r.y; |
218 |
r.x:= 0; |
|
219 |
r.w:= cScreenWidth; |
|
220 |
SDL_FillRect(Surface, @r, cWaterColor) |
|
221 |
end; |
|
222 |
||
223 |
DrawGears(Surface); |
|
224 |
||
95 | 225 |
if CurrentTeam <> nil then |
226 |
begin |
|
227 |
team:= TeamsList; |
|
228 |
while team<>nil do |
|
4 | 229 |
begin |
230 |
for i:= 0 to 7 do |
|
231 |
with team.Hedgehogs[i] do |
|
232 |
if Gear<>nil then |
|
233 |
if Gear.State = 0 then |
|
5 | 234 |
begin |
95 | 235 |
t:= round(Gear.Y) - cHHRadius - 10 + WorldDy; |
236 |
dec(t, HealthTag.h + 2); |
|
237 |
DrawCentered(round(Gear.X) + WorldDx, t, HealthTag, Surface); |
|
238 |
dec(t, NameTag.h + 2); |
|
239 |
DrawCentered(round(Gear.X) + WorldDx, t, NameTag, Surface); |
|
240 |
dec(t, Team.NameTag.h + 2); |
|
241 |
DrawCentered(round(Gear.X) + WorldDx, t, Team.NameTag, Surface) |
|
5 | 242 |
end else // Current hedgehog |
4 | 243 |
begin |
176 | 244 |
if bShowFinger |
245 |
and ((Gear.State and gstHHDriven) <> 0) then DrawSprite(sprFinger, round(Gear.X) - 16 + WorldDx, round(Gear.Y) - 64 + WorldDy, RealTicks div 32 mod 16, Surface); |
|
69 | 246 |
if (Gear.State and (gstMoving or gstDrowning or gstFalling)) = 0 then |
4 | 247 |
if (Gear.State and gstHHThinking) <> 0 then |
53 | 248 |
DrawGear(sQuestion, Round(Gear.X) - 10 + WorldDx, Round(Gear.Y) - cHHRadius - 34 + WorldDy, Surface) |
4 | 249 |
else |
69 | 250 |
if ShowCrosshair and ((Gear.State and gstAttacked) = 0) then |
108 | 251 |
DrawCaption(Round(Gear.X + hwSign(Gear.dX) * Sin(Gear.Angle*pi/cMaxAngle)*60) + WorldDx, |
39 | 252 |
Round(Gear.Y - Cos(Gear.Angle*pi/cMaxAngle)*60) + WorldDy - 4, |
4 | 253 |
Team.CrossHairRect, Surface) |
254 |
end; |
|
255 |
team:= team.Next |
|
256 |
end; |
|
95 | 257 |
end; |
258 |
||
4 | 259 |
|
5 | 260 |
// Waves |
4 | 261 |
{$WARNINGS OFF} |
56 | 262 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) + 64) and $FF), cWaterLine + WorldDy - 32, 0, Surface); |
263 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (RealTicks shr 6) + 128) and $FF), cWaterLine + WorldDy - 16, 0, Surface); |
|
264 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) ) and $FF), cWaterLine + WorldDy , 0, Surface); |
|
4 | 265 |
{$WARNINGS ON} |
266 |
||
79 | 267 |
// Turn time |
4 | 268 |
if TurnTimeLeft <> 0 then |
269 |
begin |
|
270 |
i:= Succ(Pred(TurnTimeLeft) div 1000); |
|
271 |
if i>99 then t:= 112 |
|
272 |
else if i>9 then t:= 96 |
|
273 |
else t:= 80; |
|
274 |
DrawSprite(sprFrame, t, cScreenHeight - 48, 1, Surface); |
|
275 |
while i > 0 do |
|
276 |
begin |
|
277 |
dec(t, 32); |
|
278 |
DrawSprite(sprBigDigit, t, cScreenHeight - 48, i mod 10, Surface); |
|
279 |
i:= i div 10 |
|
280 |
end; |
|
281 |
DrawSprite(sprFrame, t - 4, cScreenHeight - 48, 0, Surface); |
|
282 |
end; |
|
79 | 283 |
|
284 |
// Attack bar |
|
4 | 285 |
if CurrentTeam <> nil then |
286 |
case AttackBar of |
|
287 |
1: begin |
|
288 |
r:= StuffPoz[sPowerBar]; |
|
289 |
{$WARNINGS OFF} |
|
290 |
r.w:= (CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear.Power * 256) div cPowerDivisor; |
|
291 |
{$WARNINGS ON} |
|
292 |
DrawSpriteFromRect(r, cScreenWidth - 272, cScreenHeight - 48, 16, 0, Surface); |
|
293 |
end; |
|
74 | 294 |
2: with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
295 |
begin |
|
108 | 296 |
tdx:= hwSign(Gear.dX) * Sin(Gear.Angle*pi/cMaxAngle); |
74 | 297 |
tdy:= - Cos(Gear.Angle*pi/cMaxAngle); |
298 |
for i:= (Gear.Power * 24) div cPowerDivisor downto 0 do |
|
75 | 299 |
DrawSprite(sprPower, round(Gear.X + WorldDx + tdx * (24 + i * 2)) - 16, |
300 |
round(Gear.Y + WorldDy + tdy * (24 + i * 2)) - 12, |
|
74 | 301 |
i, Surface) |
302 |
end |
|
4 | 303 |
end; |
304 |
||
5 | 305 |
// Target |
4 | 306 |
if TargetPoint.X <> NoPointX then DrawSprite(sprTargetP, TargetPoint.X + WorldDx - 16, TargetPoint.Y + WorldDy - 16, 0, Surface); |
307 |
||
308 |
// Captions |
|
175 | 309 |
i:= 8; |
310 |
for grp:= Low(TCapGroup) to High(TCapGroup) do |
|
311 |
with Captions[grp] do |
|
83 | 312 |
if EndTime > 0 then |
175 | 313 |
begin |
314 |
DrawCentered(cScreenWidth div 2, i + cConsoleYAdd, Surf, Surface); |
|
315 |
inc(i, Surf.h + 2); |
|
316 |
if EndTime <= RealTicks then |
|
317 |
begin |
|
318 |
SDL_FreeSurface(Surf); |
|
319 |
Surf:= nil; |
|
320 |
EndTime:= 0 |
|
321 |
end |
|
322 |
end; |
|
4 | 323 |
|
47 | 324 |
// Teams Healths |
325 |
team:= TeamsList; |
|
326 |
while team <> nil do |
|
327 |
begin |
|
95 | 328 |
r.x:= cScreenWidth div 2 - team.NameTag.w - 3; |
329 |
r.y:= team.DrawHealthY; |
|
330 |
r.w:= team.NameTag.w; |
|
331 |
r.h:= team.NameTag.h; |
|
332 |
SDL_UpperBlit(team.NameTag, nil, Surface, @r); |
|
47 | 333 |
r:= team.HealthRect; |
146 | 334 |
r.w:= 2 + team.TeamHealthBarWidth; |
49 | 335 |
DrawFromStoreRect(cScreenWidth div 2, |
336 |
Team.DrawHealthY, |
|
47 | 337 |
@r, Surface); |
83 | 338 |
inc(r.x, cTeamHealthWidth + 2); |
339 |
r.w:= 3; |
|
146 | 340 |
DrawFromStoreRect(cScreenWidth div 2 + team.TeamHealthBarWidth + 2, |
49 | 341 |
Team.DrawHealthY, |
47 | 342 |
@r, Surface); |
343 |
team:= team.Next |
|
344 |
end; |
|
345 |
||
5 | 346 |
// Lag alert |
4 | 347 |
if isInLag then DrawSprite(sprLag, 32, 32 + cConsoleYAdd, (RealTicks shr 7) mod 7, Surface); |
348 |
||
5 | 349 |
// Wind bar |
350 |
DrawGear(sWindBar, cScreenWidth - 180, cScreenHeight - 30, Surface); |
|
6 | 351 |
if WindBarWidth > 0 then |
5 | 352 |
begin |
353 |
with StuffPoz[sWindR] do |
|
354 |
begin |
|
6 | 355 |
{$WARNINGS OFF} |
5 | 356 |
r.x:= x + 8 - (RealTicks shr 6) mod 8; |
6 | 357 |
{$WARNINGS ON} |
5 | 358 |
r.y:= y; |
6 | 359 |
r.w:= WindBarWidth; |
5 | 360 |
r.h:= 13; |
361 |
end; |
|
362 |
DrawSpriteFromRect(r, cScreenWidth - 103, cScreenHeight - 28, 13, 0, Surface); |
|
363 |
end else |
|
6 | 364 |
if WindBarWidth < 0 then |
5 | 365 |
begin |
366 |
with StuffPoz[sWindL] do |
|
367 |
begin |
|
6 | 368 |
{$WARNINGS OFF} |
369 |
r.x:= x + (WindBarWidth + RealTicks shr 6) mod 8; |
|
370 |
{$WARNINGS ON} |
|
5 | 371 |
r.y:= y; |
6 | 372 |
r.w:= - WindBarWidth; |
5 | 373 |
r.h:= 13; |
374 |
end; |
|
6 | 375 |
DrawSpriteFromRect(r, cScreenWidth - 106 + WindBarWidth, cScreenHeight - 28, 13, 0, Surface); |
5 | 376 |
end; |
377 |
||
161 | 378 |
// AmmoMenu |
379 |
if (AMxCurr < cScreenWidth) or bShowAmmoMenu then ShowAmmoMenu(Surface); |
|
380 |
||
5 | 381 |
// Cursor |
4 | 382 |
if isCursorVisible then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8, Surface); |
383 |
||
384 |
{$IFDEF COUNTTICKS} |
|
385 |
DXOutText(10, 10, fnt16, inttostr(cntTicks), Surface); |
|
386 |
{$ENDIF} |
|
387 |
||
388 |
inc(Frames); |
|
389 |
inc(CountTicks, Lag); |
|
390 |
if CountTicks >= 1000 then |
|
391 |
begin |
|
392 |
FPS:= Frames; |
|
393 |
Frames:= 0; |
|
394 |
CountTicks:= 0; |
|
395 |
end; |
|
174 | 396 |
if cShowFPS then DXOutText(cScreenWidth - 50, 10, fnt16, inttostr(FPS) + ' fps', Surface); |
397 |
||
398 |
inc(SoundTimerTicks, Lag); |
|
399 |
if SoundTimerTicks >= 50 then |
|
400 |
begin |
|
401 |
SoundTimerTicks:= 0; |
|
402 |
if cVolumeDelta <> 0 then |
|
403 |
begin |
|
404 |
str(ChangeVolume(cVolumeDelta), s); |
|
175 | 405 |
AddCaption(Format(trmsg[sidVolume], s), $FFFFFF, capgrpVolume) |
174 | 406 |
end |
407 |
end |
|
4 | 408 |
end; |
409 |
||
108 | 410 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 411 |
begin |
83 | 412 |
if Group in [capgrpGameState, capgrpNetSay] then WriteLnToConsole(s); |
175 | 413 |
if Captions[Group].Surf <> nil then SDL_FreeSurface(Captions[Group].Surf); |
4 | 414 |
|
175 | 415 |
Captions[Group].Surf:= RenderString(s, Color, fntBig); |
416 |
Captions[Group].EndTime:= RealTicks + 1200 |
|
4 | 417 |
end; |
418 |
||
79 | 419 |
procedure MoveCamera; |
4 | 420 |
const PrevSentPointTime: LongWord = 0; |
421 |
begin |
|
422 |
if not (CurrentTeam.ExtDriven and isCursorVisible) then SDL_GetMouseState(@CursorPoint.X, @CursorPoint.Y); |
|
423 |
if (FollowGear <> nil) then |
|
57 | 424 |
if abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y) > 4 then |
4 | 425 |
begin |
426 |
FollowGear:= nil; |
|
427 |
exit |
|
428 |
end |
|
429 |
else begin |
|
108 | 430 |
CursorPoint.x:= (CursorPoint.x * 7 + (round(FollowGear.X + hwSign(FollowGear.dX) * 100) + WorldDx)) div 8; |
71 | 431 |
CursorPoint.y:= (CursorPoint.y * 7 + (round(FollowGear.Y) + WorldDy)) div 8 |
4 | 432 |
end; |
433 |
||
434 |
if ((CursorPoint.X = prevPoint.X)and(CursorPoint.Y = prevpoint.Y)) then exit; |
|
435 |
||
162 | 436 |
if AMxCurr < cScreenWidth then |
437 |
begin |
|
438 |
if CursorPoint.X < AMxCurr + 35 then CursorPoint.X:= AMxCurr + 35; |
|
439 |
if CursorPoint.X > AMxCurr + 200 then CursorPoint.X:= AMxCurr + 200; |
|
440 |
if CursorPoint.Y < cScreenHeight - 75 - SlotsNum * 33 then CursorPoint.Y:= cScreenHeight - 75 - SlotsNum * 33; |
|
441 |
if CursorPoint.Y > cScreenHeight - 76 then CursorPoint.Y:= cScreenHeight - 76; |
|
442 |
prevPoint:= CursorPoint; |
|
443 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
|
444 |
exit |
|
445 |
end; |
|
446 |
||
4 | 447 |
if isCursorVisible then |
448 |
begin |
|
449 |
if (not CurrentTeam.ExtDriven)and(GameTicks >= PrevSentPointTime + cSendCursorPosTime) then |
|
450 |
begin |
|
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
146
diff
changeset
|
451 |
SendIPCXY('P', CursorPoint.X - WorldDx, CursorPoint.Y - WorldDy); |
4 | 452 |
PrevSentPointTime:= GameTicks |
453 |
end; |
|
454 |
end; |
|
455 |
if isCursorVisible or (FollowGear <> nil) then |
|
456 |
begin |
|
457 |
if CursorPoint.X < cScreenEdgesDist then |
|
458 |
begin |
|
459 |
WorldDx:= WorldDx - CursorPoint.X + cScreenEdgesDist; |
|
460 |
CursorPoint.X:= cScreenEdgesDist |
|
461 |
end else |
|
462 |
if CursorPoint.X > cScreenWidth - cScreenEdgesDist then |
|
463 |
begin |
|
464 |
WorldDx:= WorldDx - CursorPoint.X + cScreenWidth - cScreenEdgesDist; |
|
465 |
CursorPoint.X:= cScreenWidth - cScreenEdgesDist |
|
466 |
end; |
|
467 |
if CursorPoint.Y < cScreenEdgesDist then |
|
468 |
begin |
|
469 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenEdgesDist; |
|
470 |
CursorPoint.Y:= cScreenEdgesDist |
|
471 |
end else |
|
472 |
if CursorPoint.Y > cScreenHeight - cScreenEdgesDist then |
|
473 |
begin |
|
474 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenHeight - cScreenEdgesDist; |
|
475 |
CursorPoint.Y:= cScreenHeight - cScreenEdgesDist |
|
476 |
end; |
|
477 |
end else |
|
478 |
begin |
|
70 | 479 |
WorldDx:= WorldDx - CursorPoint.X + prevPoint.X; |
480 |
WorldDy:= WorldDy - CursorPoint.Y + prevPoint.Y; |
|
4 | 481 |
CursorPoint.X:= (cScreenWidth shr 1); |
482 |
CursorPoint.Y:= (cScreenHeight shr 1); |
|
483 |
end; |
|
484 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
|
485 |
prevPoint:= CursorPoint; |
|
75 | 486 |
if WorldDy < cScreenHeight - cWaterLine - cVisibleWater then WorldDy:= cScreenHeight - cWaterLine - cVisibleWater; |
4 | 487 |
if WorldDy > 2048 then WorldDy:= 2048; |
488 |
if WorldDx < -2048 then WorldDx:= -2048; |
|
489 |
if WorldDx > cScreenWidth then WorldDx:= cScreenWidth; |
|
490 |
end; |
|
491 |
||
492 |
initialization |
|
493 |
FillChar(Captions, sizeof(Captions), 0) |
|
494 |
||
495 |
end. |