author | unc0rr |
Sun, 24 Sep 2006 21:32:18 +0000 | |
changeset 165 | 9b9144948668 |
parent 162 | 4822f6face35 |
child 174 | 0b2c5b22f644 |
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; |
4 | 52 |
|
53 |
implementation |
|
162 | 54 |
uses uStore, uMisc, uTeams, uIO, uConsole, uKeys, uLocale; |
4 | 55 |
const RealTicks: Longword = 0; |
56 |
Frames: Longword = 0; |
|
57 |
FPS: Longword = 0; |
|
58 |
CountTicks: Longword = 0; |
|
59 |
prevPoint: TPoint = (X: 0; Y: 0); |
|
161 | 60 |
|
4 | 61 |
type TCaptionStr = record |
83 | 62 |
Surf: PSDL_Surface; |
63 |
StorePos: Longword; |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
64 |
Group: TCapGroup; |
4 | 65 |
EndTime: LongWord; |
66 |
end; |
|
67 |
||
68 |
var cWaterSprCount: integer; |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
95
diff
changeset
|
69 |
Captions: array[0..Pred(cMaxCaptions)] 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; |
80 | 172 |
|
82 | 173 |
procedure DrawRepeated(spr: TSprite; Shift: integer); |
80 | 174 |
var i, w: integer; |
175 |
begin |
|
176 |
w:= SpritesData[spr].Width; |
|
82 | 177 |
i:= Shift mod w; |
80 | 178 |
if i > 0 then dec(i, w); |
179 |
repeat |
|
180 |
DrawSprite(spr, i, WorldDy + 1024 - SpritesData[spr].Height, 0, Surface); |
|
181 |
inc(i, w) |
|
182 |
until i > cScreenWidth |
|
183 |
end; |
|
184 |
||
4 | 185 |
begin |
162 | 186 |
MoveCamera; |
187 |
||
5 | 188 |
// Sky |
4 | 189 |
inc(RealTicks, Lag); |
109 | 190 |
if WorldDy > 0 then |
4 | 191 |
begin |
109 | 192 |
if WorldDy > cScreenHeight then r.h:= cScreenHeight |
193 |
else r.h:= WorldDy; |
|
4 | 194 |
r.x:= 0; |
195 |
r.y:= 0; |
|
196 |
r.w:= cScreenWidth; |
|
197 |
SDL_FillRect(Surface, @r, cSkyColor) |
|
198 |
end; |
|
5 | 199 |
// background |
82 | 200 |
DrawRepeated(sprSky, WorldDx * 3 div 8); |
201 |
DrawRepeated(sprHorizont, WorldDx * 3 div 5); |
|
4 | 202 |
|
5 | 203 |
// Waves |
4 | 204 |
{$WARNINGS OFF} |
56 | 205 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) ) and $FF), cWaterLine + WorldDy - 64, 0, Surface); |
206 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (RealTicks shr 6) + 192) and $FF), cWaterLine + WorldDy - 48, 0, Surface); |
|
4 | 207 |
{$WARNINGS ON} |
208 |
||
209 |
DrawLand(WorldDx, WorldDy, Surface); |
|
5 | 210 |
// Water |
4 | 211 |
r.y:= WorldDy + cWaterLine + 32; |
212 |
if r.y < cScreenHeight then |
|
213 |
begin |
|
23 | 214 |
if r.y < 0 then r.y:= 0; |
4 | 215 |
r.h:= cScreenHeight - r.y; |
216 |
r.x:= 0; |
|
217 |
r.w:= cScreenWidth; |
|
218 |
SDL_FillRect(Surface, @r, cWaterColor) |
|
219 |
end; |
|
220 |
||
221 |
DrawGears(Surface); |
|
222 |
||
95 | 223 |
if CurrentTeam <> nil then |
224 |
begin |
|
225 |
team:= TeamsList; |
|
226 |
while team<>nil do |
|
4 | 227 |
begin |
228 |
for i:= 0 to 7 do |
|
229 |
with team.Hedgehogs[i] do |
|
230 |
if Gear<>nil then |
|
231 |
if Gear.State = 0 then |
|
5 | 232 |
begin |
95 | 233 |
t:= round(Gear.Y) - cHHRadius - 10 + WorldDy; |
234 |
dec(t, HealthTag.h + 2); |
|
235 |
DrawCentered(round(Gear.X) + WorldDx, t, HealthTag, Surface); |
|
236 |
dec(t, NameTag.h + 2); |
|
237 |
DrawCentered(round(Gear.X) + WorldDx, t, NameTag, Surface); |
|
238 |
dec(t, Team.NameTag.h + 2); |
|
239 |
DrawCentered(round(Gear.X) + WorldDx, t, Team.NameTag, Surface) |
|
5 | 240 |
end else // Current hedgehog |
4 | 241 |
begin |
69 | 242 |
if (Gear.State and (gstMoving or gstDrowning or gstFalling)) = 0 then |
4 | 243 |
if (Gear.State and gstHHThinking) <> 0 then |
53 | 244 |
DrawGear(sQuestion, Round(Gear.X) - 10 + WorldDx, Round(Gear.Y) - cHHRadius - 34 + WorldDy, Surface) |
4 | 245 |
else |
69 | 246 |
if ShowCrosshair and ((Gear.State and gstAttacked) = 0) then |
108 | 247 |
DrawCaption(Round(Gear.X + hwSign(Gear.dX) * Sin(Gear.Angle*pi/cMaxAngle)*60) + WorldDx, |
39 | 248 |
Round(Gear.Y - Cos(Gear.Angle*pi/cMaxAngle)*60) + WorldDy - 4, |
4 | 249 |
Team.CrossHairRect, Surface) |
250 |
end; |
|
251 |
team:= team.Next |
|
252 |
end; |
|
95 | 253 |
end; |
254 |
||
4 | 255 |
|
5 | 256 |
// Waves |
4 | 257 |
{$WARNINGS OFF} |
56 | 258 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) + 64) and $FF), cWaterLine + WorldDy - 32, 0, Surface); |
259 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (RealTicks shr 6) + 128) and $FF), cWaterLine + WorldDy - 16, 0, Surface); |
|
260 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) ) and $FF), cWaterLine + WorldDy , 0, Surface); |
|
4 | 261 |
{$WARNINGS ON} |
262 |
||
79 | 263 |
// Turn time |
4 | 264 |
if TurnTimeLeft <> 0 then |
265 |
begin |
|
266 |
i:= Succ(Pred(TurnTimeLeft) div 1000); |
|
267 |
if i>99 then t:= 112 |
|
268 |
else if i>9 then t:= 96 |
|
269 |
else t:= 80; |
|
270 |
DrawSprite(sprFrame, t, cScreenHeight - 48, 1, Surface); |
|
271 |
while i > 0 do |
|
272 |
begin |
|
273 |
dec(t, 32); |
|
274 |
DrawSprite(sprBigDigit, t, cScreenHeight - 48, i mod 10, Surface); |
|
275 |
i:= i div 10 |
|
276 |
end; |
|
277 |
DrawSprite(sprFrame, t - 4, cScreenHeight - 48, 0, Surface); |
|
278 |
end; |
|
79 | 279 |
|
280 |
// Attack bar |
|
4 | 281 |
if CurrentTeam <> nil then |
282 |
case AttackBar of |
|
283 |
1: begin |
|
284 |
r:= StuffPoz[sPowerBar]; |
|
285 |
{$WARNINGS OFF} |
|
286 |
r.w:= (CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear.Power * 256) div cPowerDivisor; |
|
287 |
{$WARNINGS ON} |
|
288 |
DrawSpriteFromRect(r, cScreenWidth - 272, cScreenHeight - 48, 16, 0, Surface); |
|
289 |
end; |
|
74 | 290 |
2: with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
291 |
begin |
|
108 | 292 |
tdx:= hwSign(Gear.dX) * Sin(Gear.Angle*pi/cMaxAngle); |
74 | 293 |
tdy:= - Cos(Gear.Angle*pi/cMaxAngle); |
294 |
for i:= (Gear.Power * 24) div cPowerDivisor downto 0 do |
|
75 | 295 |
DrawSprite(sprPower, round(Gear.X + WorldDx + tdx * (24 + i * 2)) - 16, |
296 |
round(Gear.Y + WorldDy + tdy * (24 + i * 2)) - 12, |
|
74 | 297 |
i, Surface) |
298 |
end |
|
4 | 299 |
end; |
300 |
||
5 | 301 |
// Target |
4 | 302 |
if TargetPoint.X <> NoPointX then DrawSprite(sprTargetP, TargetPoint.X + WorldDx - 16, TargetPoint.Y + WorldDy - 16, 0, Surface); |
303 |
||
304 |
// Captions |
|
305 |
i:= 0; |
|
306 |
while (i < cMaxCaptions) do |
|
307 |
begin |
|
308 |
with Captions[i] do |
|
83 | 309 |
if EndTime > 0 then |
95 | 310 |
DrawCentered(cScreenWidth div 2, 8 + i * (Surf.h + 2) + cConsoleYAdd, Surf, Surface); |
4 | 311 |
inc(i) |
312 |
end; |
|
313 |
while (Captions[0].EndTime > 0) and (Captions[0].EndTime <= RealTicks) do |
|
314 |
begin |
|
83 | 315 |
SDL_FreeSurface(Captions[0].Surf); |
95 | 316 |
Captions[0].Surf:= nil; |
4 | 317 |
for i:= 1 to Pred(cMaxCaptions) do |
318 |
Captions[Pred(i)]:= Captions[i]; |
|
319 |
Captions[Pred(cMaxCaptions)].EndTime:= 0 |
|
320 |
end; |
|
321 |
||
47 | 322 |
// Teams Healths |
323 |
team:= TeamsList; |
|
324 |
while team <> nil do |
|
325 |
begin |
|
95 | 326 |
r.x:= cScreenWidth div 2 - team.NameTag.w - 3; |
327 |
r.y:= team.DrawHealthY; |
|
328 |
r.w:= team.NameTag.w; |
|
329 |
r.h:= team.NameTag.h; |
|
330 |
SDL_UpperBlit(team.NameTag, nil, Surface, @r); |
|
47 | 331 |
r:= team.HealthRect; |
146 | 332 |
r.w:= 2 + team.TeamHealthBarWidth; |
49 | 333 |
DrawFromStoreRect(cScreenWidth div 2, |
334 |
Team.DrawHealthY, |
|
47 | 335 |
@r, Surface); |
83 | 336 |
inc(r.x, cTeamHealthWidth + 2); |
337 |
r.w:= 3; |
|
146 | 338 |
DrawFromStoreRect(cScreenWidth div 2 + team.TeamHealthBarWidth + 2, |
49 | 339 |
Team.DrawHealthY, |
47 | 340 |
@r, Surface); |
341 |
team:= team.Next |
|
342 |
end; |
|
343 |
||
5 | 344 |
// Lag alert |
4 | 345 |
if isInLag then DrawSprite(sprLag, 32, 32 + cConsoleYAdd, (RealTicks shr 7) mod 7, Surface); |
346 |
||
5 | 347 |
// Wind bar |
348 |
DrawGear(sWindBar, cScreenWidth - 180, cScreenHeight - 30, Surface); |
|
6 | 349 |
if WindBarWidth > 0 then |
5 | 350 |
begin |
351 |
with StuffPoz[sWindR] do |
|
352 |
begin |
|
6 | 353 |
{$WARNINGS OFF} |
5 | 354 |
r.x:= x + 8 - (RealTicks shr 6) mod 8; |
6 | 355 |
{$WARNINGS ON} |
5 | 356 |
r.y:= y; |
6 | 357 |
r.w:= WindBarWidth; |
5 | 358 |
r.h:= 13; |
359 |
end; |
|
360 |
DrawSpriteFromRect(r, cScreenWidth - 103, cScreenHeight - 28, 13, 0, Surface); |
|
361 |
end else |
|
6 | 362 |
if WindBarWidth < 0 then |
5 | 363 |
begin |
364 |
with StuffPoz[sWindL] do |
|
365 |
begin |
|
6 | 366 |
{$WARNINGS OFF} |
367 |
r.x:= x + (WindBarWidth + RealTicks shr 6) mod 8; |
|
368 |
{$WARNINGS ON} |
|
5 | 369 |
r.y:= y; |
6 | 370 |
r.w:= - WindBarWidth; |
5 | 371 |
r.h:= 13; |
372 |
end; |
|
6 | 373 |
DrawSpriteFromRect(r, cScreenWidth - 106 + WindBarWidth, cScreenHeight - 28, 13, 0, Surface); |
5 | 374 |
end; |
375 |
||
161 | 376 |
// AmmoMenu |
377 |
if (AMxCurr < cScreenWidth) or bShowAmmoMenu then ShowAmmoMenu(Surface); |
|
378 |
||
5 | 379 |
// Cursor |
4 | 380 |
if isCursorVisible then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8, Surface); |
381 |
||
382 |
{$IFDEF COUNTTICKS} |
|
383 |
DXOutText(10, 10, fnt16, inttostr(cntTicks), Surface); |
|
384 |
{$ENDIF} |
|
385 |
||
386 |
inc(Frames); |
|
387 |
inc(CountTicks, Lag); |
|
388 |
if CountTicks >= 1000 then |
|
389 |
begin |
|
390 |
FPS:= Frames; |
|
391 |
Frames:= 0; |
|
392 |
CountTicks:= 0; |
|
393 |
end; |
|
394 |
if cShowFPS then DXOutText(cScreenWidth - 50, 10, fnt16, inttostr(FPS) + ' fps', Surface) |
|
395 |
end; |
|
396 |
||
108 | 397 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 398 |
var i, t, m, k: LongWord; |
399 |
begin |
|
83 | 400 |
if Group in [capgrpGameState, capgrpNetSay] then WriteLnToConsole(s); |
4 | 401 |
i:= 0; |
83 | 402 |
while (i < cMaxCaptions) and (Captions[i].Group <> Group) do inc(i); |
4 | 403 |
if i < cMaxCaptions then |
404 |
begin |
|
95 | 405 |
SDL_FreeSurface(Captions[i].Surf); |
4 | 406 |
while (i < Pred(cMaxCaptions)) do |
407 |
begin |
|
408 |
Captions[i]:= Captions[Succ(i)]; |
|
409 |
inc(i) |
|
410 |
end; |
|
411 |
Captions[Pred(cMaxCaptions)].EndTime:= 0 |
|
412 |
end; |
|
413 |
||
414 |
if Captions[Pred(cMaxCaptions)].EndTime > 0 then |
|
415 |
begin |
|
95 | 416 |
SDL_FreeSurface(Captions[0].Surf); |
4 | 417 |
m:= Pred(cMaxCaptions); |
418 |
for i:= 1 to m do |
|
419 |
Captions[Pred(i)]:= Captions[i]; |
|
420 |
Captions[m].EndTime:= 0 |
|
421 |
end else |
|
422 |
begin |
|
423 |
m:= 0; |
|
424 |
while (m < cMaxCaptions)and(Captions[m].EndTime > 0) do inc(m) |
|
425 |
end; |
|
426 |
||
427 |
k:= 0; |
|
428 |
for i:= 0 to Pred(cMaxCaptions) do |
|
429 |
for t:= 0 to Pred(cMaxCaptions) do |
|
83 | 430 |
if (Captions[t].EndTime > 0) and (Captions[t].StorePos = k) then inc(k); |
4 | 431 |
|
95 | 432 |
Captions[m].Surf:= RenderString(s, Color, fntBig); |
4 | 433 |
Captions[m].StorePos:= k; |
434 |
Captions[m].Group:= Group; |
|
435 |
Captions[m].EndTime:= RealTicks + 1200 |
|
436 |
end; |
|
437 |
||
79 | 438 |
procedure MoveCamera; |
4 | 439 |
const PrevSentPointTime: LongWord = 0; |
440 |
begin |
|
441 |
if not (CurrentTeam.ExtDriven and isCursorVisible) then SDL_GetMouseState(@CursorPoint.X, @CursorPoint.Y); |
|
442 |
if (FollowGear <> nil) then |
|
57 | 443 |
if abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y) > 4 then |
4 | 444 |
begin |
445 |
FollowGear:= nil; |
|
446 |
exit |
|
447 |
end |
|
448 |
else begin |
|
108 | 449 |
CursorPoint.x:= (CursorPoint.x * 7 + (round(FollowGear.X + hwSign(FollowGear.dX) * 100) + WorldDx)) div 8; |
71 | 450 |
CursorPoint.y:= (CursorPoint.y * 7 + (round(FollowGear.Y) + WorldDy)) div 8 |
4 | 451 |
end; |
452 |
||
453 |
if ((CursorPoint.X = prevPoint.X)and(CursorPoint.Y = prevpoint.Y)) then exit; |
|
454 |
||
162 | 455 |
if AMxCurr < cScreenWidth then |
456 |
begin |
|
457 |
if CursorPoint.X < AMxCurr + 35 then CursorPoint.X:= AMxCurr + 35; |
|
458 |
if CursorPoint.X > AMxCurr + 200 then CursorPoint.X:= AMxCurr + 200; |
|
459 |
if CursorPoint.Y < cScreenHeight - 75 - SlotsNum * 33 then CursorPoint.Y:= cScreenHeight - 75 - SlotsNum * 33; |
|
460 |
if CursorPoint.Y > cScreenHeight - 76 then CursorPoint.Y:= cScreenHeight - 76; |
|
461 |
prevPoint:= CursorPoint; |
|
462 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
|
463 |
exit |
|
464 |
end; |
|
465 |
||
4 | 466 |
if isCursorVisible then |
467 |
begin |
|
468 |
if (not CurrentTeam.ExtDriven)and(GameTicks >= PrevSentPointTime + cSendCursorPosTime) then |
|
469 |
begin |
|
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
146
diff
changeset
|
470 |
SendIPCXY('P', CursorPoint.X - WorldDx, CursorPoint.Y - WorldDy); |
4 | 471 |
PrevSentPointTime:= GameTicks |
472 |
end; |
|
473 |
end; |
|
474 |
if isCursorVisible or (FollowGear <> nil) then |
|
475 |
begin |
|
476 |
if CursorPoint.X < cScreenEdgesDist then |
|
477 |
begin |
|
478 |
WorldDx:= WorldDx - CursorPoint.X + cScreenEdgesDist; |
|
479 |
CursorPoint.X:= cScreenEdgesDist |
|
480 |
end else |
|
481 |
if CursorPoint.X > cScreenWidth - cScreenEdgesDist then |
|
482 |
begin |
|
483 |
WorldDx:= WorldDx - CursorPoint.X + cScreenWidth - cScreenEdgesDist; |
|
484 |
CursorPoint.X:= cScreenWidth - cScreenEdgesDist |
|
485 |
end; |
|
486 |
if CursorPoint.Y < cScreenEdgesDist then |
|
487 |
begin |
|
488 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenEdgesDist; |
|
489 |
CursorPoint.Y:= cScreenEdgesDist |
|
490 |
end else |
|
491 |
if CursorPoint.Y > cScreenHeight - cScreenEdgesDist then |
|
492 |
begin |
|
493 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenHeight - cScreenEdgesDist; |
|
494 |
CursorPoint.Y:= cScreenHeight - cScreenEdgesDist |
|
495 |
end; |
|
496 |
end else |
|
497 |
begin |
|
70 | 498 |
WorldDx:= WorldDx - CursorPoint.X + prevPoint.X; |
499 |
WorldDy:= WorldDy - CursorPoint.Y + prevPoint.Y; |
|
4 | 500 |
CursorPoint.X:= (cScreenWidth shr 1); |
501 |
CursorPoint.Y:= (cScreenHeight shr 1); |
|
502 |
end; |
|
503 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
|
504 |
prevPoint:= CursorPoint; |
|
75 | 505 |
if WorldDy < cScreenHeight - cWaterLine - cVisibleWater then WorldDy:= cScreenHeight - cWaterLine - cVisibleWater; |
4 | 506 |
if WorldDy > 2048 then WorldDy:= 2048; |
507 |
if WorldDx < -2048 then WorldDx:= -2048; |
|
508 |
if WorldDx > cScreenWidth then WorldDx:= cScreenWidth; |
|
509 |
end; |
|
510 |
||
511 |
initialization |
|
512 |
FillChar(Captions, sizeof(Captions), 0) |
|
513 |
||
514 |
end. |