author | unc0rr |
Thu, 04 Jan 2007 16:27:45 +0000 | |
changeset 306 | 7b61834edcf6 |
parent 298 | 112e61bd2cc2 |
child 308 | 806c3b55500d |
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 |
* |
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 |
|
83 | 21 |
uses SDLh, uGears, uConsts; |
4 | 22 |
{$INCLUDE options.inc} |
23 |
const WorldDx: integer = -512; |
|
24 |
WorldDy: integer = -256; |
|
25 |
||
26 |
procedure InitWorld; |
|
27 |
procedure DrawWorld(Lag: integer; 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; |
|
6 | 34 |
WindBarWidth: integer = 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; |
4 | 42 |
const RealTicks: Longword = 0; |
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 |
||
53 |
var cWaterSprCount: integer; |
|
175 | 54 |
Captions: array[TCapGroup] of TCaptionStr; |
162 | 55 |
AMxLeft, AMxCurr, SlotsNum: integer; |
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; |
|
73 |
var x, y, i, t: integer; |
|
162 | 74 |
Slot, Pos: integer; |
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; |
|
161 | 96 |
with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
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 |
|
109 |
if Ammo[i, 0].Count > 0 then |
|
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; |
|
117 |
while (t <= cMaxSlotAmmoIndex) and (Ammo[i, t].Count > 0) do |
|
118 |
begin |
|
119 |
DrawSprite(sprAMAmmos, x + t * 33 + 35, y + 1, integer(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 |
|
132 |
if Ammo[Slot, Pos].Count > 0 then |
|
133 |
begin |
|
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); |
|
137 |
if bSelected then |
|
138 |
begin |
|
165 | 139 |
bShowAmmoMenu:= false; |
140 |
SetWeapon(Ammo[Slot, Pos].AmmoType); |
|
141 |
bSelected:= false; |
|
142 |
exit |
|
162 | 143 |
end; |
144 |
end; |
|
145 |
end; |
|
146 |
||
147 |
bSelected:= false; |
|
165 | 148 |
if AMxLeft = AMxCurr then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8, Surface) |
4 | 149 |
end; |
150 |
||
162 | 151 |
procedure MoveCamera; forward; |
152 |
||
4 | 153 |
procedure DrawWorld(Lag: integer; Surface: PSDL_Surface); |
154 |
var i, t: integer; |
|
155 |
r: TSDL_Rect; |
|
156 |
team: PTeam; |
|
107 | 157 |
tdx, tdy: Double; |
175 | 158 |
grp: TCapGroup; |
174 | 159 |
s: string[15]; |
80 | 160 |
|
82 | 161 |
procedure DrawRepeated(spr: TSprite; Shift: integer); |
80 | 162 |
var i, w: integer; |
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 |
4 | 177 |
inc(RealTicks, 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} |
56 | 193 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) ) and $FF), cWaterLine + WorldDy - 64, 0, Surface); |
194 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (RealTicks 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} |
56 | 213 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks shr 6) + 64) and $FF), cWaterLine + WorldDy - 32, 0, Surface); |
214 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx - (RealTicks shr 6) + 128) and $FF), cWaterLine + WorldDy - 16, 0, Surface); |
|
215 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 256 + ((WorldDx + (RealTicks 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} |
|
241 |
r.w:= (CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog].Gear.Power * 256) div cPowerDivisor; |
|
242 |
{$WARNINGS ON} |
|
243 |
DrawSpriteFromRect(r, cScreenWidth - 272, cScreenHeight - 48, 16, 0, Surface); |
|
244 |
end; |
|
74 | 245 |
2: with CurrentTeam.Hedgehogs[CurrentTeam.CurrHedgehog] do |
246 |
begin |
|
108 | 247 |
tdx:= hwSign(Gear.dX) * Sin(Gear.Angle*pi/cMaxAngle); |
74 | 248 |
tdy:= - Cos(Gear.Angle*pi/cMaxAngle); |
249 |
for i:= (Gear.Power * 24) div cPowerDivisor downto 0 do |
|
75 | 250 |
DrawSprite(sprPower, round(Gear.X + WorldDx + tdx * (24 + i * 2)) - 16, |
251 |
round(Gear.Y + 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); |
|
266 |
inc(i, Surf.h + 2); |
|
267 |
if EndTime <= RealTicks then |
|
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 |
|
95 | 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); |
|
47 | 284 |
r:= team.HealthRect; |
146 | 285 |
r.w:= 2 + team.TeamHealthBarWidth; |
49 | 286 |
DrawFromStoreRect(cScreenWidth div 2, |
287 |
Team.DrawHealthY, |
|
47 | 288 |
@r, Surface); |
83 | 289 |
inc(r.x, cTeamHealthWidth + 2); |
290 |
r.w:= 3; |
|
146 | 291 |
DrawFromStoreRect(cScreenWidth div 2 + team.TeamHealthBarWidth + 2, |
49 | 292 |
Team.DrawHealthY, |
47 | 293 |
@r, Surface); |
294 |
team:= team.Next |
|
295 |
end; |
|
296 |
||
5 | 297 |
// Lag alert |
4 | 298 |
if isInLag then DrawSprite(sprLag, 32, 32 + cConsoleYAdd, (RealTicks shr 7) mod 7, Surface); |
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} |
5 | 307 |
r.x:= x + 8 - (RealTicks 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} |
320 |
r.x:= x + (WindBarWidth + RealTicks shr 6) mod 8; |
|
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 |
4 | 333 |
if isCursorVisible then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8, Surface); |
334 |
||
335 |
{$IFDEF COUNTTICKS} |
|
336 |
DXOutText(10, 10, fnt16, inttostr(cntTicks), Surface); |
|
337 |
{$ENDIF} |
|
338 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
339 |
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
|
340 |
|
4 | 341 |
inc(Frames); |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
342 |
if cShowFPS then |
4 | 343 |
begin |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
344 |
inc(CountTicks, Lag); |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
345 |
if CountTicks >= 1000 then |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
346 |
begin |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
347 |
FPS:= Frames; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
348 |
Frames:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
349 |
CountTicks:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
350 |
s:= inttostr(FPS) + ' fps'; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
351 |
if fpsSurface <> nil then SDL_FreeSurface(fpsSurface); |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
352 |
fpsSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, PChar(String(s)), $FFFFFF); |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
353 |
end; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
354 |
r.x:= cScreenWidth - 50; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
355 |
r.y:= 10; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
356 |
SDL_UpperBlit(fpsSurface, nil, Surface, @r) |
4 | 357 |
end; |
174 | 358 |
|
359 |
inc(SoundTimerTicks, Lag); |
|
360 |
if SoundTimerTicks >= 50 then |
|
361 |
begin |
|
362 |
SoundTimerTicks:= 0; |
|
363 |
if cVolumeDelta <> 0 then |
|
364 |
begin |
|
365 |
str(ChangeVolume(cVolumeDelta), s); |
|
175 | 366 |
AddCaption(Format(trmsg[sidVolume], s), $FFFFFF, capgrpVolume) |
174 | 367 |
end |
368 |
end |
|
4 | 369 |
end; |
370 |
||
108 | 371 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 372 |
begin |
83 | 373 |
if Group in [capgrpGameState, capgrpNetSay] then WriteLnToConsole(s); |
175 | 374 |
if Captions[Group].Surf <> nil then SDL_FreeSurface(Captions[Group].Surf); |
4 | 375 |
|
175 | 376 |
Captions[Group].Surf:= RenderString(s, Color, fntBig); |
295 | 377 |
Captions[Group].EndTime:= RealTicks + 1500 |
4 | 378 |
end; |
379 |
||
79 | 380 |
procedure MoveCamera; |
4 | 381 |
const PrevSentPointTime: LongWord = 0; |
284 | 382 |
var EdgesDist: integer; |
4 | 383 |
begin |
384 |
if not (CurrentTeam.ExtDriven and isCursorVisible) then SDL_GetMouseState(@CursorPoint.X, @CursorPoint.Y); |
|
385 |
if (FollowGear <> nil) then |
|
57 | 386 |
if abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y) > 4 then |
4 | 387 |
begin |
388 |
FollowGear:= nil; |
|
389 |
exit |
|
390 |
end |
|
391 |
else begin |
|
108 | 392 |
CursorPoint.x:= (CursorPoint.x * 7 + (round(FollowGear.X + hwSign(FollowGear.dX) * 100) + WorldDx)) div 8; |
71 | 393 |
CursorPoint.y:= (CursorPoint.y * 7 + (round(FollowGear.Y) + WorldDy)) div 8 |
4 | 394 |
end; |
395 |
||
396 |
if ((CursorPoint.X = prevPoint.X)and(CursorPoint.Y = prevpoint.Y)) then exit; |
|
397 |
||
162 | 398 |
if AMxCurr < cScreenWidth then |
399 |
begin |
|
400 |
if CursorPoint.X < AMxCurr + 35 then CursorPoint.X:= AMxCurr + 35; |
|
401 |
if CursorPoint.X > AMxCurr + 200 then CursorPoint.X:= AMxCurr + 200; |
|
402 |
if CursorPoint.Y < cScreenHeight - 75 - SlotsNum * 33 then CursorPoint.Y:= cScreenHeight - 75 - SlotsNum * 33; |
|
403 |
if CursorPoint.Y > cScreenHeight - 76 then CursorPoint.Y:= cScreenHeight - 76; |
|
404 |
prevPoint:= CursorPoint; |
|
405 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
|
406 |
exit |
|
407 |
end; |
|
408 |
||
4 | 409 |
if isCursorVisible then |
410 |
begin |
|
411 |
if (not CurrentTeam.ExtDriven)and(GameTicks >= PrevSentPointTime + cSendCursorPosTime) then |
|
412 |
begin |
|
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
146
diff
changeset
|
413 |
SendIPCXY('P', CursorPoint.X - WorldDx, CursorPoint.Y - WorldDy); |
4 | 414 |
PrevSentPointTime:= GameTicks |
415 |
end; |
|
416 |
end; |
|
284 | 417 |
|
4 | 418 |
if isCursorVisible or (FollowGear <> nil) then |
419 |
begin |
|
284 | 420 |
if isCursorVisible then EdgesDist:= cCursorEdgesDist |
421 |
else EdgesDist:= cGearScrEdgesDist; |
|
422 |
if CursorPoint.X < EdgesDist then |
|
4 | 423 |
begin |
284 | 424 |
WorldDx:= WorldDx - CursorPoint.X + EdgesDist; |
425 |
CursorPoint.X:= EdgesDist |
|
4 | 426 |
end else |
284 | 427 |
if CursorPoint.X > cScreenWidth - EdgesDist then |
4 | 428 |
begin |
284 | 429 |
WorldDx:= WorldDx - CursorPoint.X + cScreenWidth - EdgesDist; |
430 |
CursorPoint.X:= cScreenWidth - EdgesDist |
|
4 | 431 |
end; |
284 | 432 |
if CursorPoint.Y < EdgesDist then |
4 | 433 |
begin |
284 | 434 |
WorldDy:= WorldDy - CursorPoint.Y + EdgesDist; |
435 |
CursorPoint.Y:= EdgesDist |
|
4 | 436 |
end else |
284 | 437 |
if CursorPoint.Y > cScreenHeight - EdgesDist then |
4 | 438 |
begin |
284 | 439 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenHeight - EdgesDist; |
440 |
CursorPoint.Y:= cScreenHeight - EdgesDist |
|
4 | 441 |
end; |
442 |
end else |
|
443 |
begin |
|
70 | 444 |
WorldDx:= WorldDx - CursorPoint.X + prevPoint.X; |
445 |
WorldDy:= WorldDy - CursorPoint.Y + prevPoint.Y; |
|
4 | 446 |
CursorPoint.X:= (cScreenWidth shr 1); |
447 |
CursorPoint.Y:= (cScreenHeight shr 1); |
|
448 |
end; |
|
449 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
|
450 |
prevPoint:= CursorPoint; |
|
75 | 451 |
if WorldDy < cScreenHeight - cWaterLine - cVisibleWater then WorldDy:= cScreenHeight - cWaterLine - cVisibleWater; |
4 | 452 |
if WorldDy > 2048 then WorldDy:= 2048; |
453 |
if WorldDx < -2048 then WorldDx:= -2048; |
|
454 |
if WorldDx > cScreenWidth then WorldDx:= cScreenWidth; |
|
455 |
end; |
|
456 |
||
457 |
initialization |
|
458 |
FillChar(Captions, sizeof(Captions), 0) |
|
459 |
||
460 |
end. |