author | unc0rr |
Fri, 16 Jan 2009 15:43:19 +0000 | |
changeset 1683 | af34da5726aa |
parent 1660 | 0eaa6cf36276 |
child 1689 | 3d0eee01f734 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 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; |
|
956 | 27 |
procedure DrawWorld(Lag: LongInt); |
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; |
|
1256 | 34 |
WindBarWidth: LongInt = 0; |
35 |
bShowAmmoMenu: boolean = false; |
|
36 |
bSelected: boolean = false; |
|
37 |
bShowFinger: boolean = false; |
|
38 |
Frames: Longword = 0; |
|
39 |
WaterColor, DeepWaterColor: TSDL_Color; |
|
4 | 40 |
|
41 |
implementation |
|
803 | 42 |
uses uStore, uMisc, uTeams, uIO, uConsole, uKeys, uLocale, uSound, GL, |
942 | 43 |
uAmmos, uVisualGears, uChat; |
564 | 44 |
const FPS: Longword = 0; |
4 | 45 |
CountTicks: Longword = 0; |
174 | 46 |
SoundTimerTicks: Longword = 0; |
4 | 47 |
prevPoint: TPoint = (X: 0; Y: 0); |
161 | 48 |
|
4 | 49 |
type TCaptionStr = record |
762 | 50 |
Tex: PTexture; |
4 | 51 |
EndTime: LongWord; |
52 |
end; |
|
53 |
||
371 | 54 |
var cWaterSprCount: LongInt; |
1256 | 55 |
Captions: array[TCapGroup] of TCaptionStr; |
56 |
AMxShift, SlotsNum: LongInt; |
|
57 |
tmpSurface: PSDL_Surface; |
|
58 |
fpsTexture: PTexture = nil; |
|
4 | 59 |
|
60 |
procedure InitWorld; |
|
61 |
begin |
|
74 | 62 |
cWaterSprCount:= 1 + cScreenWidth div (SpritesData[sprWater].Width); |
284 | 63 |
cGearScrEdgesDist:= Min(cScreenWidth div 2 - 100, cScreenHeight div 2 - 50); |
74 | 64 |
SDL_WarpMouse(cScreenWidth div 2, cScreenHeight div 2); |
65 |
prevPoint.X:= cScreenWidth div 2; |
|
66 |
prevPoint.Y:= cScreenHeight div 2; |
|
67 |
WorldDx:= - 1024 + cScreenWidth div 2; |
|
161 | 68 |
WorldDy:= - 512 + cScreenHeight div 2; |
1120 | 69 |
AMxShift:= 210 |
161 | 70 |
end; |
71 |
||
956 | 72 |
procedure ShowAmmoMenu; |
161 | 73 |
const MENUSPEED = 15; |
961
a9a349b2b3fa
Use turnsleft sprites to indicate turns left to activate ammo
unc0rr
parents:
956
diff
changeset
|
74 |
var x, y, i, t, l: LongInt; |
371 | 75 |
Slot, Pos: LongInt; |
161 | 76 |
begin |
77 |
if (TurnTimeLeft = 0) or KbdKeyPressed then bShowAmmoMenu:= false; |
|
165 | 78 |
if bShowAmmoMenu then |
79 |
begin |
|
1120 | 80 |
if AMxShift = 210 then prevPoint.X:= 0; |
81 |
if AMxShift > 0 then dec(AMxShift, MENUSPEED); |
|
165 | 82 |
end else |
83 |
begin |
|
1120 | 84 |
if AMxShift = 0 then |
165 | 85 |
begin |
86 |
CursorPoint.X:= cScreenWidth div 2; |
|
87 |
CursorPoint.Y:= cScreenHeight div 2; |
|
88 |
prevPoint:= CursorPoint; |
|
89 |
SDL_WarpMouse(CursorPoint.X, CursorPoint.Y) |
|
90 |
end; |
|
1120 | 91 |
if AMxShift < 210 then inc(AMxShift, MENUSPEED); |
165 | 92 |
end; |
161 | 93 |
|
94 |
if CurrentTeam = nil then exit; |
|
162 | 95 |
Slot:= 0; |
96 |
Pos:= -1; |
|
602 | 97 |
with CurrentHedgehog^ do |
1529
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
98 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
99 |
if Ammo = nil then exit; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
100 |
SlotsNum:= 0; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
101 |
x:= cScreenWidth - 210 + AMxShift; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
102 |
y:= cScreenHeight - 40; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
103 |
dec(y); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
104 |
DrawSprite(sprAMBorders, x, y, 0); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
105 |
dec(y); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
106 |
DrawSprite(sprAMBorders, x, y, 1); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
107 |
dec(y, 33); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
108 |
DrawSprite(sprAMSlotName, x, y, 0); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
109 |
for i:= cMaxSlotIndex downto 0 do |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
110 |
if Ammo^[i, 0].Count > 0 then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
111 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
112 |
if (CursorPoint.Y >= y - 33) and (CursorPoint.Y < y) then Slot:= i; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
113 |
dec(y, 33); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
114 |
inc(SlotsNum); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
115 |
DrawSprite(sprAMSlot, x, y, 0); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
116 |
DrawSprite(sprAMSlotKeys, x + 2, y + 1, i); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
117 |
t:= 0; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
118 |
while (t <= cMaxSlotAmmoIndex) and (Ammo^[i, t].Count > 0) do |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
119 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
120 |
l:= Ammoz[Ammo^[i, t].AmmoType].SkipTurns - CurrentTeam^.Clan^.TurnNumber; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
121 |
|
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
122 |
if l >= 0 then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
123 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
124 |
DrawSprite(sprAMAmmosBW, x + t * 33 + 35, y + 1, LongInt(Ammo^[i, t].AmmoType)); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
125 |
DrawSprite(sprTurnsLeft, x + t * 33 + 51, y + 17, l); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
126 |
end else |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
127 |
DrawSprite(sprAMAmmos, x + t * 33 + 35, y + 1, LongInt(Ammo^[i, t].AmmoType)); |
961
a9a349b2b3fa
Use turnsleft sprites to indicate turns left to activate ammo
unc0rr
parents:
956
diff
changeset
|
128 |
|
1529
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
129 |
if (Slot = i) |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
130 |
and (CursorPoint.X >= x + t * 33 + 35) |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
131 |
and (CursorPoint.X < x + t * 33 + 68) then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
132 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
133 |
if (l < 0) then DrawSprite(sprAMSelection, x + t * 33 + 35, y + 1, 0); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
134 |
Pos:= t; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
135 |
end; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
136 |
inc(t) |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
137 |
end |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
138 |
end; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
139 |
dec(y, 1); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
140 |
DrawSprite(sprAMBorders, x, y, 0); |
961
a9a349b2b3fa
Use turnsleft sprites to indicate turns left to activate ammo
unc0rr
parents:
956
diff
changeset
|
141 |
|
1529
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
142 |
if (Pos >= 0) then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
143 |
if Ammo^[Slot, Pos].Count > 0 then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
144 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
145 |
DrawTexture(cScreenWidth - 200 + AMxShift, cScreenHeight - 68, Ammoz[Ammo^[Slot, Pos].AmmoType].NameTex); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
146 |
|
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
147 |
if Ammo^[Slot, Pos].Count < AMMO_INFINITE then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
148 |
DrawTexture(cScreenWidth + AMxShift - 35, cScreenHeight - 68, CountTexz[Ammo^[Slot, Pos].Count]); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
149 |
|
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
150 |
if bSelected and (Ammoz[Ammo^[Slot, Pos].AmmoType].SkipTurns - CurrentTeam^.Clan^.TurnNumber < 0) then |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
151 |
begin |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
152 |
bShowAmmoMenu:= false; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
153 |
SetWeapon(Ammo^[Slot, Pos].AmmoType); |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
154 |
bSelected:= false; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
155 |
exit |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
156 |
end; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
157 |
end; |
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
158 |
end; |
162 | 159 |
|
160 |
bSelected:= false; |
|
1120 | 161 |
if AMxShift = 0 then DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8) |
4 | 162 |
end; |
163 |
||
162 | 164 |
procedure MoveCamera; forward; |
165 |
||
956 | 166 |
procedure DrawWorld(Lag: LongInt); |
371 | 167 |
var i, t: LongInt; |
4 | 168 |
r: TSDL_Rect; |
107 | 169 |
tdx, tdy: Double; |
175 | 170 |
grp: TCapGroup; |
174 | 171 |
s: string[15]; |
80 | 172 |
|
371 | 173 |
procedure DrawRepeated(spr: TSprite; Shift: LongInt); |
174 |
var i, w: LongInt; |
|
80 | 175 |
begin |
176 |
w:= SpritesData[spr].Width; |
|
82 | 177 |
i:= Shift mod w; |
80 | 178 |
if i > 0 then dec(i, w); |
179 |
repeat |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
180 |
DrawSprite(spr, i, WorldDy + 1024 - SpritesData[spr].Height, 0); |
80 | 181 |
inc(i, w) |
182 |
until i > cScreenWidth |
|
183 |
end; |
|
184 |
||
4 | 185 |
begin |
770 | 186 |
// Sky |
756 | 187 |
glClear(GL_COLOR_BUFFER_BIT); |
188 |
glEnable(GL_BLEND); |
|
775 | 189 |
glEnable(GL_TEXTURE_2D); |
777 | 190 |
//glPushMatrix; |
191 |
//glScalef(1.0, 1.0, 1.0); |
|
756 | 192 |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
193 |
if not isPaused then MoveCamera; |
162 | 194 |
|
5 | 195 |
// background |
755 | 196 |
DrawRepeated(sprSky, WorldDx * 3 div 8); |
197 |
DrawRepeated(sprHorizont, WorldDx * 3 div 5); |
|
4 | 198 |
|
1045 | 199 |
DrawVisualGears(0); |
803 | 200 |
|
5 | 201 |
// Waves |
4 | 202 |
{$WARNINGS OFF} |
1439 | 203 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 125 + ((WorldDx + (RealTicks shr 6) ) mod 125), cWaterLine + WorldDy - 64, 0); |
204 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 125 + ((WorldDx - (RealTicks shr 6) + 100) mod 125), cWaterLine + WorldDy - 48, 0); |
|
4 | 205 |
{$WARNINGS ON} |
206 |
||
762 | 207 |
DrawLand(WorldDx, WorldDy); |
5 | 208 |
// Water |
4 | 209 |
r.y:= WorldDy + cWaterLine + 32; |
210 |
if r.y < cScreenHeight then |
|
211 |
begin |
|
23 | 212 |
if r.y < 0 then r.y:= 0; |
780 | 213 |
|
214 |
glDisable(GL_TEXTURE_2D); |
|
215 |
glBegin(GL_QUADS); |
|
1256 | 216 |
glColor3ub(WaterColor.r, WaterColor.g, WaterColor. b); // water color |
780 | 217 |
glVertex2i(0, r.y); |
218 |
glVertex2i(cScreenWidth, r.y); |
|
1256 | 219 |
glColor3ub(DeepWaterColor.r, DeepWaterColor.g, DeepWaterColor. b); // deep water color |
780 | 220 |
glVertex2i(cScreenWidth, cScreenHeight); |
221 |
glVertex2i(0, cScreenHeight); |
|
222 |
glEnd(); |
|
223 |
glColor4f(1, 1, 1, 1); // disable coloring |
|
224 |
glEnable(GL_TEXTURE_2D) |
|
4 | 225 |
end; |
226 |
||
1660 | 227 |
// Attack bar |
228 |
if CurrentTeam <> nil then |
|
229 |
case AttackBar of |
|
230 |
(* 1: begin |
|
231 |
r:= StuffPoz[sPowerBar]; |
|
232 |
{$WARNINGS OFF} |
|
233 |
r.w:= (CurrentHedgehog^.Gear^.Power * 256) div cPowerDivisor; |
|
234 |
{$WARNINGS ON} |
|
235 |
DrawSpriteFromRect(r, cScreenWidth - 272, cScreenHeight - 48, 16, 0, Surface); |
|
236 |
end;*) |
|
237 |
2: with CurrentHedgehog^ do |
|
238 |
begin |
|
239 |
tdx:= hwSign(Gear^.dX) * Sin(Gear^.Angle * Pi / cMaxAngle); |
|
240 |
tdy:= - Cos(Gear^.Angle * Pi / cMaxAngle); |
|
241 |
for i:= (Gear^.Power * 24) div cPowerDivisor downto 0 do |
|
242 |
DrawSprite(sprPower, |
|
243 |
hwRound(Gear^.X) + system.round(WorldDx + tdx * (24 + i * 2)) - 16, |
|
244 |
hwRound(Gear^.Y) + system.round(WorldDy + tdy * (24 + i * 2)) - 12, |
|
245 |
i) |
|
246 |
end |
|
247 |
end; |
|
248 |
||
956 | 249 |
DrawGears; |
4 | 250 |
|
1045 | 251 |
DrawVisualGears(1); |
252 |
||
5 | 253 |
// Waves |
4 | 254 |
{$WARNINGS OFF} |
1439 | 255 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 125 + ((WorldDx + (RealTicks shr 6) + 25) mod 125), cWaterLine + WorldDy - 32, 0); |
256 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 125 + ((WorldDx - (RealTicks shr 6) + 50) mod 125), cWaterLine + WorldDy - 16, 0); |
|
257 |
for i:= -1 to cWaterSprCount do DrawSprite(sprWater, i * 125 + ((WorldDx + (RealTicks shr 6) + 75) mod 125), cWaterLine + WorldDy , 0); |
|
4 | 258 |
{$WARNINGS ON} |
259 |
||
79 | 260 |
// Turn time |
4 | 261 |
if TurnTimeLeft <> 0 then |
262 |
begin |
|
263 |
i:= Succ(Pred(TurnTimeLeft) div 1000); |
|
264 |
if i>99 then t:= 112 |
|
265 |
else if i>9 then t:= 96 |
|
266 |
else t:= 80; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
267 |
DrawSprite(sprFrame, t, cScreenHeight - 48, 1); |
4 | 268 |
while i > 0 do |
269 |
begin |
|
270 |
dec(t, 32); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
271 |
DrawSprite(sprBigDigit, t, cScreenHeight - 48, i mod 10); |
4 | 272 |
i:= i div 10 |
273 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
274 |
DrawSprite(sprFrame, t - 4, cScreenHeight - 48, 0); |
4 | 275 |
end; |
79 | 276 |
|
5 | 277 |
// Target |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
278 |
if TargetPoint.X <> NoPointX then DrawSprite(sprTargetP, TargetPoint.X + WorldDx - 16, TargetPoint.Y + WorldDy - 16, 0); |
4 | 279 |
|
777 | 280 |
//glPopMatrix; |
281 |
||
4 | 282 |
// Captions |
175 | 283 |
i:= 8; |
284 |
for grp:= Low(TCapGroup) to High(TCapGroup) do |
|
285 |
with Captions[grp] do |
|
762 | 286 |
if Tex <> nil then |
175 | 287 |
begin |
988 | 288 |
DrawCentered(cScreenWidth div 2, i, Tex); |
762 | 289 |
inc(i, Tex^.h + 2); |
564 | 290 |
if EndTime <= RealTicks then |
175 | 291 |
begin |
762 | 292 |
FreeTexture(Tex); |
293 |
Tex:= nil; |
|
175 | 294 |
EndTime:= 0 |
295 |
end |
|
296 |
end; |
|
4 | 297 |
|
47 | 298 |
// Teams Healths |
547 | 299 |
for t:= 0 to Pred(TeamsCount) do |
300 |
with TeamsArray[t]^ do |
|
47 | 301 |
begin |
1120 | 302 |
DrawTexture(cScreenWidth div 2 - NameTagTex^.w - 3, cScreenHeight + DrawHealthY, NameTagTex); |
690 | 303 |
|
304 |
r.x:= 0; |
|
305 |
r.y:= 0; |
|
547 | 306 |
r.w:= 2 + TeamHealthBarWidth; |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
307 |
r.h:= HealthTex^.h; |
690 | 308 |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
309 |
DrawFromRect(cScreenWidth div 2, |
1120 | 310 |
cScreenHeight + DrawHealthY, |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
311 |
@r, HealthTex); |
690 | 312 |
|
83 | 313 |
inc(r.x, cTeamHealthWidth + 2); |
314 |
r.w:= 3; |
|
690 | 315 |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
316 |
DrawFromRect(cScreenWidth div 2 + TeamHealthBarWidth + 2, |
1120 | 317 |
cScreenHeight + DrawHealthY, |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
318 |
@r, HealthTex); |
47 | 319 |
end; |
320 |
||
5 | 321 |
// Lag alert |
988 | 322 |
if isInLag then DrawSprite(sprLag, 32, 32, (RealTicks shr 7) mod 12); |
4 | 323 |
|
5 | 324 |
// Wind bar |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
325 |
DrawSprite(sprWindBar, cScreenWidth - 180, cScreenHeight - 30, 0); |
6 | 326 |
if WindBarWidth > 0 then |
5 | 327 |
begin |
689 | 328 |
{$WARNINGS OFF} |
329 |
r.x:= 8 - (RealTicks shr 6) mod 8; |
|
330 |
{$WARNINGS ON} |
|
331 |
r.y:= 0; |
|
332 |
r.w:= WindBarWidth; |
|
333 |
r.h:= 13; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
334 |
DrawSpriteFromRect(sprWindR, r, cScreenWidth - 103, cScreenHeight - 28, 13, 0); |
5 | 335 |
end else |
6 | 336 |
if WindBarWidth < 0 then |
5 | 337 |
begin |
689 | 338 |
{$WARNINGS OFF} |
339 |
r.x:= (WindBarWidth + RealTicks shr 6) mod 8; |
|
340 |
{$WARNINGS ON} |
|
341 |
r.y:= 0; |
|
342 |
r.w:= - WindBarWidth; |
|
343 |
r.h:= 13; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
344 |
DrawSpriteFromRect(sprWindL, r, cScreenWidth - 106 + WindBarWidth, cScreenHeight - 28, 13, 0); |
5 | 345 |
end; |
346 |
||
161 | 347 |
// AmmoMenu |
1120 | 348 |
if (AMxShift < 210) or bShowAmmoMenu then ShowAmmoMenu; |
161 | 349 |
|
942 | 350 |
DrawChat; |
351 |
||
5 | 352 |
// Cursor |
408 | 353 |
if isCursorVisible then |
354 |
begin |
|
355 |
if not bShowAmmoMenu then |
|
602 | 356 |
with CurrentHedgehog^ do |
408 | 357 |
if (Gear^.State and gstHHChooseTarget) <> 0 then |
358 |
begin |
|
359 |
i:= Ammo^[CurSlot, CurAmmo].Pos; |
|
360 |
with Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType] do |
|
361 |
if PosCount > 1 then |
|
762 | 362 |
DrawSprite(PosSprite, CursorPoint.X - SpritesData[PosSprite].Width div 2, |
363 |
CursorPoint.Y - SpritesData[PosSprite].Height div 2, |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
364 |
i); |
408 | 365 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
366 |
DrawSprite(sprArrow, CursorPoint.X, CursorPoint.Y, (RealTicks shr 6) mod 8) |
408 | 367 |
end; |
4 | 368 |
|
762 | 369 |
if isPaused then DrawCentered(cScreenWidth div 2, cScreenHeight div 2, PauseTexture); |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
370 |
|
4 | 371 |
inc(Frames); |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
372 |
if cShowFPS then |
4 | 373 |
begin |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
374 |
inc(CountTicks, Lag); |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
375 |
if CountTicks >= 1000 then |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
376 |
begin |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
377 |
FPS:= Frames; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
378 |
Frames:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
379 |
CountTicks:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
380 |
s:= inttostr(FPS) + ' fps'; |
759 | 381 |
if fpsTexture <> nil then FreeTexture(fpsTexture); |
382 |
tmpSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(s), $FFFFFF); |
|
383 |
fpsTexture:= Surface2Tex(tmpSurface); |
|
384 |
SDL_FreeSurface(tmpSurface) |
|
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
385 |
end; |
759 | 386 |
if fpsTexture <> nil then |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
803
diff
changeset
|
387 |
DrawTexture(cScreenWidth - 50, 10, fpsTexture); |
4 | 388 |
end; |
174 | 389 |
|
390 |
inc(SoundTimerTicks, Lag); |
|
391 |
if SoundTimerTicks >= 50 then |
|
392 |
begin |
|
393 |
SoundTimerTicks:= 0; |
|
394 |
if cVolumeDelta <> 0 then |
|
395 |
begin |
|
396 |
str(ChangeVolume(cVolumeDelta), s); |
|
175 | 397 |
AddCaption(Format(trmsg[sidVolume], s), $FFFFFF, capgrpVolume) |
174 | 398 |
end |
756 | 399 |
end; |
400 |
||
1023 | 401 |
if GameState = gsConfirm then DrawCentered(cScreenWidth div 2, cScreenHeight div 2, ConfirmTexture); |
402 |
||
775 | 403 |
glDisable(GL_TEXTURE_2D); |
756 | 404 |
glDisable(GL_BLEND) |
4 | 405 |
end; |
406 |
||
108 | 407 |
procedure AddCaption(s: string; Color: Longword; Group: TCapGroup); |
4 | 408 |
begin |
83 | 409 |
if Group in [capgrpGameState, capgrpNetSay] then WriteLnToConsole(s); |
762 | 410 |
if Captions[Group].Tex <> nil then FreeTexture(Captions[Group].Tex); |
4 | 411 |
|
762 | 412 |
Captions[Group].Tex:= RenderStringTex(s, Color, fntBig); |
564 | 413 |
Captions[Group].EndTime:= RealTicks + 1500 |
4 | 414 |
end; |
415 |
||
79 | 416 |
procedure MoveCamera; |
4 | 417 |
const PrevSentPointTime: LongWord = 0; |
371 | 418 |
var EdgesDist: LongInt; |
4 | 419 |
begin |
678 | 420 |
if (not (CurrentTeam^.ExtDriven and isCursorVisible)) |
421 |
and cHasFocus then SDL_GetMouseState(@CursorPoint.X, @CursorPoint.Y); |
|
422 |
||
1595
33529f567d2d
Don't set focus on gears when curor is visible (should fix cursor jumping)
unc0rr
parents:
1529
diff
changeset
|
423 |
if (FollowGear <> nil) and (not isCursorVisible) 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 |
|
678 | 430 |
CursorPoint.x:= (prevPoint.x * 7 + (hwRound(FollowGear^.X) + hwSign(FollowGear^.dX) * 100) + WorldDx) div 8; |
431 |
CursorPoint.y:= (prevPoint.y * 7 + (hwRound(FollowGear^.Y) + WorldDy)) div 8 |
|
4 | 432 |
end; |
433 |
||
434 |
if ((CursorPoint.X = prevPoint.X)and(CursorPoint.Y = prevpoint.Y)) then exit; |
|
435 |
||
1120 | 436 |
if AMxShift < 210 then |
162 | 437 |
begin |
1120 | 438 |
if CursorPoint.X < cScreenWidth + AMxShift - 175 then CursorPoint.X:= cScreenWidth + AMxShift - 175; |
439 |
if CursorPoint.X > cScreenWidth + AMxShift - 10 then CursorPoint.X:= cScreenWidth + AMxShift - 10; |
|
162 | 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; |
|
308 | 443 |
if cHasFocus then SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
162 | 444 |
exit |
445 |
end; |
|
446 |
||
4 | 447 |
if isCursorVisible then |
448 |
begin |
|
351 | 449 |
if (not CurrentTeam^.ExtDriven)and(GameTicks >= PrevSentPointTime + cSendCursorPosTime) then |
4 | 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; |
|
351 | 455 |
|
4 | 456 |
if isCursorVisible or (FollowGear <> nil) then |
457 |
begin |
|
284 | 458 |
if isCursorVisible then EdgesDist:= cCursorEdgesDist |
459 |
else EdgesDist:= cGearScrEdgesDist; |
|
460 |
if CursorPoint.X < EdgesDist then |
|
4 | 461 |
begin |
284 | 462 |
WorldDx:= WorldDx - CursorPoint.X + EdgesDist; |
463 |
CursorPoint.X:= EdgesDist |
|
4 | 464 |
end else |
284 | 465 |
if CursorPoint.X > cScreenWidth - EdgesDist then |
4 | 466 |
begin |
284 | 467 |
WorldDx:= WorldDx - CursorPoint.X + cScreenWidth - EdgesDist; |
468 |
CursorPoint.X:= cScreenWidth - EdgesDist |
|
4 | 469 |
end; |
284 | 470 |
if CursorPoint.Y < EdgesDist then |
4 | 471 |
begin |
284 | 472 |
WorldDy:= WorldDy - CursorPoint.Y + EdgesDist; |
473 |
CursorPoint.Y:= EdgesDist |
|
4 | 474 |
end else |
284 | 475 |
if CursorPoint.Y > cScreenHeight - EdgesDist then |
4 | 476 |
begin |
284 | 477 |
WorldDy:= WorldDy - CursorPoint.Y + cScreenHeight - EdgesDist; |
478 |
CursorPoint.Y:= cScreenHeight - EdgesDist |
|
4 | 479 |
end; |
480 |
end else |
|
308 | 481 |
if cHasFocus then |
482 |
begin |
|
70 | 483 |
WorldDx:= WorldDx - CursorPoint.X + prevPoint.X; |
484 |
WorldDy:= WorldDy - CursorPoint.Y + prevPoint.Y; |
|
4 | 485 |
CursorPoint.X:= (cScreenWidth shr 1); |
486 |
CursorPoint.Y:= (cScreenHeight shr 1); |
|
308 | 487 |
end; |
351 | 488 |
|
308 | 489 |
if cHasFocus then SDL_WarpMouse(CursorPoint.X, CursorPoint.Y); |
4 | 490 |
prevPoint:= CursorPoint; |
75 | 491 |
if WorldDy < cScreenHeight - cWaterLine - cVisibleWater then WorldDy:= cScreenHeight - cWaterLine - cVisibleWater; |
4 | 492 |
if WorldDy > 2048 then WorldDy:= 2048; |
493 |
if WorldDx < -2048 then WorldDx:= -2048; |
|
494 |
if WorldDx > cScreenWidth then WorldDx:= cScreenWidth; |
|
495 |
end; |
|
496 |
||
497 |
initialization |
|
498 |
FillChar(Captions, sizeof(Captions), 0) |
|
499 |
||
500 |
end. |