author | smxx |
Mon, 01 Mar 2010 19:57:09 +0000 | |
changeset 2907 | b29c1358498d |
parent 2905 | f3c79f7193a9 |
child 2908 | bd1909984a09 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1689 | 3 |
* Copyright (c) 2004-2009 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 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
4 | 21 |
unit uWorld; |
22 |
interface |
|
2704
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
23 |
uses SDLh, uGears, uConsts, uFloat, uRandom; |
2630 | 24 |
|
4 | 25 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
26 |
var FollowGear: PGear; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
27 |
WindBarWidth: LongInt; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
28 |
bShowAmmoMenu: boolean; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
29 |
bSelected: boolean; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
30 |
bShowFinger: boolean; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
31 |
Frames: Longword; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
32 |
WaterColor, DeepWaterColor: TSDL_Color; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
33 |
WorldDx: LongInt; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
34 |
WorldDy: LongInt; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
35 |
{$IFDEF COUNTTICKS} |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
36 |
cntTicks: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
37 |
{$ENDIF} |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
38 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
39 |
procedure init_uWorld; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
40 |
procedure free_uWorld; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
41 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
42 |
procedure InitWorld; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
43 |
procedure DrawWorld(Lag: LongInt); |
2905 | 44 |
procedure AddCaption(s: shortstring; Color: Longword; Group: TCapGroup); |
45 |
procedure ShowMission(caption, subcaption, text: ansistring; icon, time : LongInt); |
|
2786 | 46 |
procedure HideMission; |
4 | 47 |
|
48 |
implementation |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
49 |
uses uStore, uMisc, uTeams, uIO, uConsole, uKeys, uLocale, uSound, uAmmos, uVisualGears, uChat, uLandTexture, uLand, |
2152 | 50 |
{$IFDEF GLES11} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
51 |
gles11; |
1906 | 52 |
{$ELSE} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
53 |
GL; |
1906 | 54 |
{$ENDIF} |
1807 | 55 |
|
4 | 56 |
type TCaptionStr = record |
762 | 57 |
Tex: PTexture; |
4 | 58 |
EndTime: LongWord; |
59 |
end; |
|
60 |
||
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
61 |
var cWaveWidth, cWaveHeight: LongInt; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
62 |
Captions: array[TCapGroup] of TCaptionStr; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
63 |
AMxShift, SlotsNum: LongInt; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
64 |
tmpSurface: PSDL_Surface; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
65 |
fpsTexture: PTexture; |
2850
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
66 |
timeTexture: PTexture; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
67 |
FPS: Longword; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
68 |
CountTicks: Longword; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
69 |
SoundTimerTicks: Longword; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
70 |
prevPoint: TPoint; |
2747 | 71 |
amSel: TAmmoType = amNothing; |
2786 | 72 |
missionTex: PTexture; |
73 |
missionTimer: LongInt; |
|
4 | 74 |
|
75 |
procedure InitWorld; |
|
2704
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
76 |
var i, t: LongInt; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
77 |
cp: PClan; |
2863 | 78 |
g: ansistring; |
79 |
||
2904 | 80 |
// helper functions to create the goal/game mode string |
81 |
function AddGoal(s: ansistring; gf: LongInt; si: TGoalStrId; i: LongInt): ansistring; |
|
2905 | 82 |
var t: ansistring; |
2904 | 83 |
begin |
84 |
if (GameFlags and gf) <> 0 then |
|
85 |
begin |
|
86 |
t:= inttostr(i); |
|
87 |
s:= s + format(trgoal[si], t) + '|' |
|
88 |
end; |
|
89 |
AddGoal:= s; |
|
90 |
end; |
|
91 |
||
2863 | 92 |
function AddGoal(s: ansistring; gf: LongInt; si: TGoalStrId): ansistring; |
93 |
begin |
|
2904 | 94 |
if (GameFlags and gf) <> 0 then |
95 |
s:= s + trgoal[si] + '|'; |
|
2863 | 96 |
AddGoal:= s; |
97 |
end; |
|
4 | 98 |
begin |
2786 | 99 |
missionTimer:= 0; |
100 |
||
2704
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
101 |
if (GameFlags and gfRandomOrder) <> 0 then // shuffle them up a bit |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
102 |
begin |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
103 |
for i:= 0 to ClansCount * 4 do |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
104 |
begin |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
105 |
t:= GetRandom(ClansCount); |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
106 |
if t <> 0 then |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
107 |
begin |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
108 |
cp:= ClansArray[0]; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
109 |
ClansArray[0]:= ClansArray[t]; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
110 |
ClansArray[t]:= cp; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
111 |
ClansArray[t]^.ClanIndex:= t; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
112 |
ClansArray[0]^.ClanIndex:= 0; |
2856
cc70797a0b75
Adjust LocalClan when shuffling, set to -1 in case all local clans are bots.
nemo
parents:
2855
diff
changeset
|
113 |
if (LocalClan = t) then LocalClan:= 0 |
cc70797a0b75
Adjust LocalClan when shuffling, set to -1 in case all local clans are bots.
nemo
parents:
2855
diff
changeset
|
114 |
else if (LocalClan = 0) then LocalClan:= t |
2704
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
115 |
end; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
116 |
end; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
117 |
CurrentTeam:= ClansArray[0]^.Teams[0]; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
118 |
end; |
51cda17b7c3b
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.
nemo
parents:
2699
diff
changeset
|
119 |
|
2863 | 120 |
// if special game flags are set, add them to the game mode notice window and then show it |
121 |
g:= ''; // no text/things to note yet |
|
122 |
g:= AddGoal(g, gfForts, gidForts); // forts? |
|
123 |
g:= AddGoal(g, gfLowGravity, gidLowGravity); // low gravity? |
|
124 |
g:= AddGoal(g, gfInvulnerable, gidInvulnerable); // invulnerability? |
|
125 |
g:= AddGoal(g, gfVampiric, gidVampiric); // vampirism? |
|
126 |
g:= AddGoal(g, gfKarma, gidKarma); // karma? |
|
127 |
g:= AddGoal(g, gfKing, gidKing); // king? |
|
128 |
g:= AddGoal(g, gfPlaceHog, gidPlaceHog); // placement? |
|
129 |
g:= AddGoal(g, gfArtillery, gidArtillery); // artillery? |
|
130 |
g:= AddGoal(g, gfSolidLand, gidSolidLand); // solid land? |
|
2903 | 131 |
g:= AddGoal(g, gfSharedAmmo, gidSharedAmmo); // shared ammo? |
2905 | 132 |
if cMinesTime <> 3000 then // changed mine timer? |
133 |
begin |
|
134 |
if cMinesTime = 0 then |
|
135 |
g:= AddGoal(g, gfMines, gidNoMineTimer) |
|
136 |
else if cMinesTime < 0 then |
|
137 |
g:= AddGoal(g, gfMines, gidRandomMineTimer) |
|
138 |
else |
|
139 |
g:= AddGoal(g, gfMines, gidMineTimer, cMinesTime div 1000); |
|
140 |
end; |
|
2863 | 141 |
// if the string has been set, show it for (default timeframe) seconds |
142 |
if g <> '' then ShowMission(trgoal[gidCaption], trgoal[gidSubCaption], g, 1, 0); |
|
143 |
||
1825 | 144 |
cWaveWidth:= SpritesData[sprWater].Width; |
2268
053eb81e60ee
little experiment to see if this improve appearance of laser/ufo/cake/laser guided missile - of course, can't actually see it until unc0rr restores waves
nemo
parents:
2226
diff
changeset
|
145 |
//cWaveHeight:= SpritesData[sprWater].Height; |
053eb81e60ee
little experiment to see if this improve appearance of laser/ufo/cake/laser guided missile - of course, can't actually see it until unc0rr restores waves
nemo
parents:
2226
diff
changeset
|
146 |
cWaveHeight:= 32; |
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
147 |
|
284 | 148 |
cGearScrEdgesDist:= Min(cScreenWidth div 2 - 100, cScreenHeight div 2 - 50); |
74 | 149 |
SDL_WarpMouse(cScreenWidth div 2, cScreenHeight div 2); |
2197 | 150 |
prevPoint.X:= 0; |
74 | 151 |
prevPoint.Y:= cScreenHeight div 2; |
1760 | 152 |
WorldDx:= - (LAND_WIDTH div 2) + cScreenWidth div 2; |
2139
5a083e71a71d
Properly decrement sniper rifle if timed out. Try to get camera position straight for once.
nemo
parents:
2119
diff
changeset
|
153 |
WorldDy:= - (LAND_HEIGHT - (playHeight div 2)) + (cScreenHeight div 2); |
1120 | 154 |
AMxShift:= 210 |
161 | 155 |
end; |
156 |
||
956 | 157 |
procedure ShowAmmoMenu; |
161 | 158 |
const MENUSPEED = 15; |
2360
d4d545da9dbe
Ok. This time I think I have it. amNothing should work.
nemo
parents:
2359
diff
changeset
|
159 |
var x, y, i, t, l, g: LongInt; |
371 | 160 |
Slot, Pos: LongInt; |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
161 |
Ammo: PHHAmmo; |
161 | 162 |
begin |
2885 | 163 |
if (TurnTimeLeft = 0) or (not CurrentTeam^.ExtDriven and (((CurAmmoGear = nil) or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) = 0)) and hideAmmoMenu)) then bShowAmmoMenu:= false; |
165 | 164 |
if bShowAmmoMenu then |
165 |
begin |
|
2226
e35b62cb7a1c
Try turning off follow gear while ammo menu is open - needs testing w/ rope/parachute/jetpack
nemo
parents:
2224
diff
changeset
|
166 |
FollowGear:= nil; |
1120 | 167 |
if AMxShift = 210 then prevPoint.X:= 0; |
1812 | 168 |
if cReducedQuality then |
169 |
AMxShift:= 0 |
|
170 |
else |
|
171 |
if AMxShift > 0 then dec(AMxShift, MENUSPEED); |
|
165 | 172 |
end else |
173 |
begin |
|
1120 | 174 |
if AMxShift = 0 then |
165 | 175 |
begin |
2579 | 176 |
CursorPoint.X:= cScreenWidth shr 1; |
177 |
CursorPoint.Y:= cScreenHeight shr 1; |
|
165 | 178 |
prevPoint:= CursorPoint; |
2197 | 179 |
SDL_WarpMouse(CursorPoint.X + cScreenWidth div 2, cScreenHeight - CursorPoint.Y) |
165 | 180 |
end; |
1812 | 181 |
if cReducedQuality then |
182 |
AMxShift:= 210 |
|
183 |
else |
|
184 |
if AMxShift < 210 then inc(AMxShift, MENUSPEED); |
|
165 | 185 |
end; |
2857
768dfbe276a5
Fix spectator crash due to missing nil check in new dust gear, init Ammo to nil in World prior to nil check
nemo
parents:
2856
diff
changeset
|
186 |
Ammo:= nil; |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
187 |
if (CurrentTeam <> nil) and (CurrentHedgehog <> nil) and (not CurrentTeam^.ExtDriven) and (CurrentHedgehog^.BotLevel = 0) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
188 |
Ammo:= CurrentHedgehog^.Ammo |
2856
cc70797a0b75
Adjust LocalClan when shuffling, set to -1 in case all local clans are bots.
nemo
parents:
2855
diff
changeset
|
189 |
else if (LocalAmmo <> -1) then |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
190 |
Ammo:= GetAmmoByNum(LocalAmmo); |
162 | 191 |
Slot:= 0; |
192 |
Pos:= -1; |
|
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
193 |
if Ammo = nil then exit; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
194 |
SlotsNum:= 0; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
195 |
x:= (cScreenWidth shr 1) - 210 + AMxShift; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
196 |
y:= cScreenHeight - 40; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
197 |
dec(y); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
198 |
DrawSprite(sprAMBorders, x, y, 0); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
199 |
dec(y); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
200 |
DrawSprite(sprAMBorders, x, y, 1); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
201 |
dec(y, 33); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
202 |
DrawSprite(sprAMSlotName, x, y, 0); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
203 |
for i:= cMaxSlotIndex downto 0 do |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
204 |
if ((i = 0) and (Ammo^[i, 1].Count > 0)) or ((i <> 0) and (Ammo^[i, 0].Count > 0)) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
205 |
begin |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
206 |
if (cScreenHeight - CursorPoint.Y >= y - 33) and (cScreenHeight - CursorPoint.Y < y) then Slot:= i; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
207 |
dec(y, 33); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
208 |
inc(SlotsNum); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
209 |
DrawSprite(sprAMSlot, x, y, 0); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
210 |
DrawSprite(sprAMSlotKeys, x + 2, y + 1, i); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
211 |
t:= 0; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
212 |
g:= 0; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
213 |
while (t <= cMaxSlotAmmoIndex) and (Ammo^[i, t].Count > 0) do |
1529
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
214 |
begin |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
215 |
if (Ammo^[i, t].AmmoType <> amNothing) then |
1529
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
216 |
begin |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
217 |
l:= Ammoz[Ammo^[i, t].AmmoType].SkipTurns - CurrentTeam^.Clan^.TurnNumber; |
1529
3bc916b419cd
Don't hide ammo menu when user clicks on not yet available weapon
unc0rr
parents:
1439
diff
changeset
|
218 |
|
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
219 |
if l >= 0 then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
220 |
begin |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
221 |
DrawSprite(sprAMAmmosBW, x + g * 33 + 35, y + 1, LongInt(Ammo^[i, t].AmmoType)-1); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
222 |
if l < 100 then DrawSprite(sprTurnsLeft, x + g * 33 + 51, y + 17, l); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
223 |
end else |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
224 |
DrawSprite(sprAMAmmos, x + g * 33 + 35, y + 1, LongInt(Ammo^[i, t].AmmoType)-1); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
225 |
if (Slot = i) |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
226 |
and (CursorPoint.X >= x + g * 33 + 35) |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
227 |
and (CursorPoint.X < x + g * 33 + 68) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
228 |
begin |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
229 |
if (l < 0) then DrawSprite(sprAMSelection, x + g * 33 + 35, y + 1, 0); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
230 |
Pos:= t; |
2379 | 231 |
end; |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
232 |
inc(g) |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
233 |
end; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
234 |
inc(t) |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
235 |
end |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
236 |
end; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
237 |
dec(y, 1); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
238 |
DrawSprite(sprAMBorders, x, y, 0); |
961
a9a349b2b3fa
Use turnsleft sprites to indicate turns left to activate ammo
unc0rr
parents:
956
diff
changeset
|
239 |
|
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
240 |
if (Pos >= 0) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
241 |
begin |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
242 |
if (Ammo^[Slot, Pos].Count > 0) and (Ammo^[Slot, Pos].AmmoType <> amNothing) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
243 |
if (amSel <> Ammo^[Slot, Pos].AmmoType) or (WeaponTooltipTex = nil) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
244 |
begin |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
245 |
amSel:= Ammo^[Slot, Pos].AmmoType; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
246 |
RenderWeaponTooltip(amSel) |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
247 |
end; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
248 |
|
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
249 |
DrawTexture(cScreenWidth div 2 - 200 + AMxShift, cScreenHeight - 68, Ammoz[Ammo^[Slot, Pos].AmmoType].NameTex); |
2376 | 250 |
|
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
251 |
if Ammo^[Slot, Pos].Count < AMMO_INFINITE then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
252 |
DrawTexture(cScreenWidth div 2 + AMxShift - 35, cScreenHeight - 68, CountTexz[Ammo^[Slot, Pos].Count]); |
2376 | 253 |
|
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
254 |
if bSelected and (Ammoz[Ammo^[Slot, Pos].AmmoType].SkipTurns - CurrentTeam^.Clan^.TurnNumber < 0) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
255 |
begin |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
256 |
bShowAmmoMenu:= false; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
257 |
SetWeapon(Ammo^[Slot, Pos].AmmoType); |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
258 |
bSelected:= false; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
259 |
FreeWeaponTooltip; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
260 |
exit |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
261 |
end; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
262 |
end |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
263 |
else |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
264 |
FreeWeaponTooltip; |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
265 |
|
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
266 |
if (WeaponTooltipTex <> nil) and (AMxShift = 0) then |
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2851
diff
changeset
|
267 |
ShowWeaponTooltip(x - WeaponTooltipTex^.w - 3, y); |
162 | 268 |
|
269 |
bSelected:= false; |
|
2197 | 270 |
if AMxShift = 0 then DrawSprite(sprArrow, CursorPoint.X, cScreenHeight - CursorPoint.Y, (RealTicks shr 6) mod 8) |
4 | 271 |
end; |
272 |
||
162 | 273 |
procedure MoveCamera; forward; |
274 |
||
2269
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
275 |
procedure DrawWater(Alpha: byte); |
1915 | 276 |
var VertexBuffer: array [0..3] of TVertex2f; |
277 |
r: TSDL_Rect; |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
278 |
lw, lh: GLfloat; |
1915 | 279 |
begin |
2269
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
280 |
WaterColorArray[0].a := Alpha; |
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
281 |
WaterColorArray[1].a := Alpha; |
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
282 |
WaterColorArray[2].a := Alpha; |
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
283 |
WaterColorArray[3].a := Alpha; |
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
284 |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
285 |
lw:= cScreenWidth / cScaleFactor; |
2378 | 286 |
lh:= trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 + 16; |
1915 | 287 |
// Water |
2378 | 288 |
r.y:= WorldDy + cWaterLine; |
289 |
if WorldDy < trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - cWaterLine then |
|
1915 | 290 |
begin |
291 |
if r.y < 0 then r.y:= 0; |
|
292 |
||
293 |
glDisable(GL_TEXTURE_2D); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
294 |
VertexBuffer[0].X:= -lw; |
1915 | 295 |
VertexBuffer[0].Y:= r.y; |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
296 |
VertexBuffer[1].X:= lw; |
1915 | 297 |
VertexBuffer[1].Y:= r.y; |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
298 |
VertexBuffer[2].X:= lw; |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
299 |
VertexBuffer[2].Y:= lh; |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
300 |
VertexBuffer[3].X:= -lw; |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
301 |
VertexBuffer[3].Y:= lh; |
1915 | 302 |
|
303 |
glEnableClientState (GL_COLOR_ARRAY); |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
304 |
glColorPointer(4, GL_UNSIGNED_BYTE, 0, @WaterColorArray[0]); |
1915 | 305 |
|
306 |
glEnableClientState(GL_VERTEX_ARRAY); |
|
307 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
308 |
|
1915 | 309 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
310 |
||
2330 | 311 |
glDisableClientState(GL_VERTEX_ARRAY); |
1915 | 312 |
glDisableClientState(GL_COLOR_ARRAY); |
313 |
||
314 |
glColor4f(1, 1, 1, 1); // disable coloring |
|
315 |
glEnable(GL_TEXTURE_2D) |
|
316 |
end |
|
317 |
end; |
|
318 |
||
2288 | 319 |
procedure DrawWaves(Dir, dX, dY: LongInt); |
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
320 |
var VertexBuffer, TextureBuffer: array [0..3] of TVertex2f; |
2374 | 321 |
lw, waves, shift: GLfloat; |
2288 | 322 |
begin |
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
323 |
lw:= cScreenWidth / cScaleFactor; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
324 |
waves:= lw * 2 / cWaveWidth; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
325 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
326 |
glBindTexture(GL_TEXTURE_2D, SpritesData[sprWater].Texture^.id); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
327 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
328 |
VertexBuffer[0].X:= -lw; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
329 |
VertexBuffer[0].Y:= cWaterLine + WorldDy + dY; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
330 |
VertexBuffer[1].X:= lw; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
331 |
VertexBuffer[1].Y:= VertexBuffer[0].Y; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
332 |
VertexBuffer[2].X:= lw; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
333 |
VertexBuffer[2].Y:= VertexBuffer[0].Y + SpritesData[sprWater].Height; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
334 |
VertexBuffer[3].X:= -lw; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
335 |
VertexBuffer[3].Y:= VertexBuffer[2].Y; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
336 |
|
2374 | 337 |
shift:= - lw / cWaveWidth; |
2495 | 338 |
TextureBuffer[0].X:= shift + (( - WorldDx + LongInt(RealTicks shr 6) * Dir + dX) mod cWaveWidth) / (cWaveWidth - 1); |
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
339 |
TextureBuffer[0].Y:= 0; |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
340 |
TextureBuffer[1].X:= TextureBuffer[0].X + waves; |
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2434
diff
changeset
|
341 |
TextureBuffer[1].Y:= TextureBuffer[0].Y; |
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2434
diff
changeset
|
342 |
TextureBuffer[2].X:= TextureBuffer[1].X; |
2553 | 343 |
TextureBuffer[2].Y:= SpritesData[sprWater].Texture^.ry; |
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
344 |
TextureBuffer[3].X:= TextureBuffer[0].X; |
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2434
diff
changeset
|
345 |
TextureBuffer[3].Y:= TextureBuffer[2].Y; |
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
346 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
347 |
glEnableClientState(GL_VERTEX_ARRAY); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
348 |
glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
349 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
350 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
351 |
glTexCoordPointer(2, GL_FLOAT, 0, @TextureBuffer[0]); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
352 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
353 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
354 |
glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
355 |
glDisableClientState(GL_VERTEX_ARRAY); |
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
356 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
357 |
|
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
358 |
{for i:= -1 to cWaterSprCount do |
2288 | 359 |
DrawSprite(sprWater, |
360 |
i * cWaveWidth + ((WorldDx + (RealTicks shr 6) * Dir + dX) mod cWaveWidth) - (cScreenWidth div 2), |
|
361 |
cWaterLine + WorldDy + dY, |
|
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
362 |
0)} |
2288 | 363 |
end; |
364 |
||
2426 | 365 |
procedure DrawRepeated(spr, sprL, sprR: TSprite; Shift: LongInt); |
366 |
var i, w, sw: LongInt; |
|
367 |
begin |
|
368 |
sw:= round(cScreenWidth / cScaleFactor); |
|
369 |
if (SpritesData[sprL].Texture = nil) or (SpritesData[sprR].Texture = nil) then |
|
370 |
begin |
|
371 |
w:= SpritesData[spr].Width; |
|
372 |
i:= Shift mod w; |
|
373 |
if i > 0 then dec(i, w); |
|
374 |
dec(i, w * (sw div w + 1)); |
|
375 |
repeat |
|
376 |
DrawSprite(spr, i, WorldDy + LAND_HEIGHT - SpritesData[spr].Height, 0); |
|
377 |
inc(i, w) |
|
378 |
until i > sw |
|
379 |
end else |
|
380 |
begin |
|
381 |
w:= SpritesData[spr].Width; |
|
382 |
dec(Shift, w div 2); |
|
383 |
DrawSprite(spr, Shift, WorldDy + LAND_HEIGHT - SpritesData[spr].Height, 0); |
|
384 |
||
385 |
sw:= round(cScreenWidth / cScaleFactor); |
|
386 |
||
387 |
i:= Shift - SpritesData[sprL].Width; |
|
388 |
while i >= -sw - SpritesData[sprL].Width do |
|
389 |
begin |
|
390 |
DrawSprite(sprL, i, WorldDy + LAND_HEIGHT - SpritesData[sprL].Height, 0); |
|
391 |
dec(i, SpritesData[sprL].Width); |
|
392 |
end; |
|
393 |
||
394 |
i:= Shift + w; |
|
395 |
while i <= sw do |
|
396 |
begin |
|
397 |
DrawSprite(sprR, i, WorldDy + LAND_HEIGHT - SpritesData[sprR].Height, 0); |
|
398 |
inc(i, SpritesData[sprR].Width) |
|
399 |
end |
|
400 |
end |
|
401 |
end; |
|
402 |
||
403 |
||
956 | 404 |
procedure DrawWorld(Lag: LongInt); |
371 | 405 |
var i, t: LongInt; |
4 | 406 |
r: TSDL_Rect; |
107 | 407 |
tdx, tdy: Double; |
175 | 408 |
grp: TCapGroup; |
174 | 409 |
s: string[15]; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
410 |
highlight: Boolean; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
411 |
offset, offsetX, offsetY: LongInt; |
2724 | 412 |
scale: GLfloat; |
4 | 413 |
begin |
2372 | 414 |
if ZoomValue < zoom then |
415 |
begin |
|
2379 | 416 |
zoom:= zoom - 0.002 * Lag; |
2374 | 417 |
if ZoomValue > zoom then zoom:= ZoomValue |
2372 | 418 |
end else |
419 |
if ZoomValue > zoom then |
|
420 |
begin |
|
2379 | 421 |
zoom:= zoom + 0.002 * Lag; |
2374 | 422 |
if ZoomValue < zoom then zoom:= ZoomValue |
2372 | 423 |
end; |
2376 | 424 |
|
770 | 425 |
// Sky |
756 | 426 |
glClear(GL_COLOR_BUFFER_BIT); |
427 |
glEnable(GL_BLEND); |
|
775 | 428 |
glEnable(GL_TEXTURE_2D); |
777 | 429 |
//glPushMatrix; |
430 |
//glScalef(1.0, 1.0, 1.0); |
|
756 | 431 |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
432 |
if not isPaused then MoveCamera; |
162 | 433 |
|
1812 | 434 |
if not cReducedQuality then |
435 |
begin |
|
436 |
// background |
|
2426 | 437 |
DrawRepeated(sprSky, sprSkyL, sprSkyR, (WorldDx + LAND_WIDTH div 2) * 3 div 8); |
438 |
DrawRepeated(sprHorizont, sprHorizontL, sprHorizontR, (WorldDx + LAND_WIDTH div 2) * 3 div 5); |
|
4 | 439 |
|
1812 | 440 |
DrawVisualGears(0); |
2288 | 441 |
end; |
803 | 442 |
|
2288 | 443 |
// Waves |
2579 | 444 |
DrawWaves( 1, 0, - (cWaveHeight shl 1)); |
445 |
DrawWaves(-1, 100, - (cWaveHeight + (cWaveHeight shr 1))); |
|
1812 | 446 |
|
4 | 447 |
|
762 | 448 |
DrawLand(WorldDx, WorldDy); |
1911 | 449 |
|
2269
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
450 |
DrawWater(255); |
4 | 451 |
|
1660 | 452 |
// Attack bar |
453 |
if CurrentTeam <> nil then |
|
454 |
case AttackBar of |
|
455 |
(* 1: begin |
|
456 |
r:= StuffPoz[sPowerBar]; |
|
457 |
{$WARNINGS OFF} |
|
458 |
r.w:= (CurrentHedgehog^.Gear^.Power * 256) div cPowerDivisor; |
|
459 |
{$WARNINGS ON} |
|
460 |
DrawSpriteFromRect(r, cScreenWidth - 272, cScreenHeight - 48, 16, 0, Surface); |
|
461 |
end;*) |
|
462 |
2: with CurrentHedgehog^ do |
|
463 |
begin |
|
464 |
tdx:= hwSign(Gear^.dX) * Sin(Gear^.Angle * Pi / cMaxAngle); |
|
465 |
tdy:= - Cos(Gear^.Angle * Pi / cMaxAngle); |
|
466 |
for i:= (Gear^.Power * 24) div cPowerDivisor downto 0 do |
|
467 |
DrawSprite(sprPower, |
|
2609 | 468 |
hwRound(Gear^.X) + round(WorldDx + tdx * (24 + i * 2)) - 16, |
469 |
hwRound(Gear^.Y) + round(WorldDy + tdy * (24 + i * 2)) - 12, |
|
1660 | 470 |
i) |
471 |
end |
|
472 |
end; |
|
473 |
||
2713 | 474 |
DrawVisualGears(1); |
475 |
||
956 | 476 |
DrawGears; |
4 | 477 |
|
2713 | 478 |
DrawVisualGears(2); |
1045 | 479 |
|
2273 | 480 |
DrawWater(cWaterOpacity); |
2269
00f5704f5f39
add extra semi-opaque layer of water to discolour objects in the water.
nemo
parents:
2268
diff
changeset
|
481 |
|
5 | 482 |
// Waves |
2288 | 483 |
DrawWaves( 1, 25, - cWaveHeight); |
2567 | 484 |
DrawWaves(-1, 50, - (cWaveHeight shr 1)); |
2288 | 485 |
DrawWaves( 1, 75, 0); |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
486 |
|
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
487 |
|
2288 | 488 |
{$WARNINGS OFF} |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
489 |
// Target |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
490 |
if TargetPoint.X <> NoPointX then DrawSprite(sprTargetP, TargetPoint.X + WorldDx - 16, TargetPoint.Y + WorldDy - 16, 0); |
4 | 491 |
{$WARNINGS ON} |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
492 |
|
2567 | 493 |
{$IFDEF IPHONEOS} |
2724 | 494 |
scale:= 1.5; |
2567 | 495 |
{$ELSE} |
2724 | 496 |
scale:= 2.0; |
497 |
{$ENDIF} |
|
498 |
SetScale(scale); |
|
499 |
||
500 |
||
501 |
// Turn time |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
502 |
{$IFDEF IPHONEOS} |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
503 |
offset:= 313; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
504 |
{$ELSE} |
2567 | 505 |
offset:= 48; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
506 |
{$ENDIF} |
4 | 507 |
if TurnTimeLeft <> 0 then |
508 |
begin |
|
509 |
i:= Succ(Pred(TurnTimeLeft) div 1000); |
|
510 |
if i>99 then t:= 112 |
|
511 |
else if i>9 then t:= 96 |
|
512 |
else t:= 80; |
|
2567 | 513 |
DrawSprite(sprFrame, -cScreenWidth div 2 + t, cScreenHeight - offset, 1); |
4 | 514 |
while i > 0 do |
515 |
begin |
|
516 |
dec(t, 32); |
|
2567 | 517 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, cScreenHeight - offset, i mod 10); |
4 | 518 |
i:= i div 10 |
519 |
end; |
|
2567 | 520 |
DrawSprite(sprFrame, -cScreenWidth div 2 + t - 4, cScreenHeight - offset, 0); |
4 | 521 |
end; |
79 | 522 |
|
2567 | 523 |
{$IFNDEF IPHONEOS} |
2428 | 524 |
// Timetrial |
525 |
if ((TrainingFlags and tfTimeTrial) <> 0) and (TimeTrialStartTime > 0) then |
|
526 |
begin |
|
527 |
if TimeTrialStopTime = 0 then i:= RealTicks - TimeTrialStartTime else i:= TimeTrialStopTime - TimeTrialStartTime; |
|
528 |
t:= 272; |
|
529 |
// right frame |
|
530 |
DrawSprite(sprFrame, -cScreenWidth div 2 + t, 8, 1); |
|
531 |
dec(t, 32); |
|
532 |
// 1 ms |
|
533 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 10); |
|
534 |
dec(t, 32); |
|
535 |
i:= i div 10; |
|
536 |
// 10 ms |
|
537 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 10); |
|
538 |
dec(t, 32); |
|
539 |
i:= i div 10; |
|
540 |
// 100 ms |
|
541 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 10); |
|
542 |
dec(t, 16); |
|
543 |
// Point |
|
544 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, 11); |
|
545 |
dec(t, 32); |
|
546 |
i:= i div 10; |
|
547 |
// 1 s |
|
548 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 10); |
|
549 |
dec(t, 32); |
|
550 |
i:= i div 10; |
|
551 |
// 10s |
|
552 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 6); |
|
553 |
dec(t, 16); |
|
554 |
// Point |
|
555 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, 10); |
|
556 |
dec(t, 32); |
|
557 |
i:= i div 6; |
|
558 |
// 1 m |
|
559 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 10); |
|
560 |
dec(t, 32); |
|
561 |
i:= i div 10; |
|
562 |
// 10 m |
|
563 |
DrawSprite(sprBigDigit, -cScreenWidth div 2 + t, 8, i mod 10); |
|
564 |
// left frame |
|
565 |
DrawSprite(sprFrame, -cScreenWidth div 2 + t - 4, 8, 0); |
|
566 |
end; |
|
2567 | 567 |
{$ENDIF} |
568 |
||
4 | 569 |
// Captions |
2567 | 570 |
{$IFDEF IPHONEOS} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
571 |
offset:= 40; |
2567 | 572 |
{$ELSE} |
2724 | 573 |
if ((TrainingFlags and tfTimeTrial) <> 0) and (TimeTrialStartTime > 0) then offset:= 48 |
574 |
else offset:= 8; |
|
2567 | 575 |
{$ENDIF} |
2428 | 576 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
577 |
for grp:= Low(TCapGroup) to High(TCapGroup) do |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
578 |
with Captions[grp] do |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
579 |
if Tex <> nil then |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
580 |
begin |
2724 | 581 |
DrawCentered(0, offset, Tex); |
582 |
inc(offset, Tex^.h + 2); |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
583 |
if EndTime <= RealTicks then |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
584 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
585 |
FreeTexture(Tex); |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
586 |
Tex:= nil; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
587 |
EndTime:= 0 |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
588 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
589 |
end; |
4 | 590 |
|
47 | 591 |
// Teams Healths |
2747 | 592 |
|
547 | 593 |
for t:= 0 to Pred(TeamsCount) do |
594 |
with TeamsArray[t]^ do |
|
47 | 595 |
begin |
2839 | 596 |
highlight:= bShowFinger and (CurrentTeam = TeamsArray[t]) and ((RealTicks mod 1000) < 500); |
597 |
||
2747 | 598 |
if highlight then |
599 |
glColor4f(((Clan^.Color shr 16) and $ff) / $ff, ((Clan^.Color shr 8) and $ff) / $ff, (Clan^.Color and $ff) / $ff, 1); |
|
2839 | 600 |
|
601 |
// draw name |
|
602 |
DrawTexture(-NameTagTex^.w - 16, cScreenHeight + DrawHealthY, NameTagTex); |
|
603 |
||
604 |
// draw flag |
|
605 |
DrawTexture(-14, cScreenHeight + DrawHealthY, FlagTex); |
|
606 |
||
607 |
// draw health bar |
|
690 | 608 |
r.x:= 0; |
609 |
r.y:= 0; |
|
547 | 610 |
r.w:= 2 + TeamHealthBarWidth; |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
611 |
r.h:= HealthTex^.h; |
2747 | 612 |
DrawFromRect(14, cScreenHeight + DrawHealthY, @r, HealthTex); |
690 | 613 |
|
2839 | 614 |
// draw health bar's right border |
83 | 615 |
inc(r.x, cTeamHealthWidth + 2); |
616 |
r.w:= 3; |
|
2839 | 617 |
DrawFromRect(TeamHealthBarWidth + 16, cScreenHeight + DrawHealthY, @r, HealthTex); |
618 |
// if highlighted, draw flag and other contents again to keep their colors |
|
619 |
// this approach should be faster than drawing all borders one by one tinted or not |
|
620 |
if highlight then |
|
621 |
begin |
|
622 |
glColor4f(1, 1, 1, 1); |
|
690 | 623 |
|
2839 | 624 |
// draw name |
2747 | 625 |
r.x:= 2; |
626 |
r.y:= 2; |
|
2839 | 627 |
r.w:= NameTagTex^.w - 4; |
628 |
r.h:= NameTagTex^.h - 4; |
|
629 |
DrawFromRect(-NameTagTex^.w - 14, cScreenHeight + DrawHealthY + 2, @r, NameTagTex); |
|
630 |
// draw flag |
|
2747 | 631 |
r.w:= 22; |
632 |
r.h:= 15; |
|
633 |
DrawFromRect(-12, cScreenHeight + DrawHealthY + 2, @r, FlagTex); |
|
2839 | 634 |
// draw health bar |
635 |
r.w:= TeamHealthBarWidth + 1; |
|
636 |
r.h:= HealthTex^.h - 4; |
|
637 |
DrawFromRect(16, cScreenHeight + DrawHealthY + 2, @r, HealthTex); |
|
2747 | 638 |
end; |
47 | 639 |
end; |
640 |
||
5 | 641 |
// Lag alert |
2567 | 642 |
if isInLag then DrawSprite(sprLag, 32 - (cScreenWidth shr 1), 32, (RealTicks shr 7) mod 12); |
4 | 643 |
|
5 | 644 |
// Wind bar |
2567 | 645 |
{$IFDEF IPHONEOS} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
646 |
offsetX:= 305; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
647 |
offsetY:= 315; |
2567 | 648 |
{$ELSE} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
649 |
offsetX:= 30; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
650 |
offsetY:= 180; |
2567 | 651 |
{$ENDIF} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
652 |
DrawSprite(sprWindBar, (cScreenWidth shr 1) - offsetY, cScreenHeight - offsetX, 0); |
6 | 653 |
if WindBarWidth > 0 then |
5 | 654 |
begin |
689 | 655 |
{$WARNINGS OFF} |
656 |
r.x:= 8 - (RealTicks shr 6) mod 8; |
|
657 |
{$WARNINGS ON} |
|
658 |
r.y:= 0; |
|
659 |
r.w:= WindBarWidth; |
|
660 |
r.h:= 13; |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
661 |
DrawSpriteFromRect(sprWindR, r, (cScreenWidth shr 1) - offsetY + 77, cScreenHeight - offsetX + 2, 13, 0); |
5 | 662 |
end else |
6 | 663 |
if WindBarWidth < 0 then |
5 | 664 |
begin |
689 | 665 |
{$WARNINGS OFF} |
666 |
r.x:= (WindBarWidth + RealTicks shr 6) mod 8; |
|
667 |
{$WARNINGS ON} |
|
668 |
r.y:= 0; |
|
669 |
r.w:= - WindBarWidth; |
|
670 |
r.h:= 13; |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
671 |
DrawSpriteFromRect(sprWindL, r, (cScreenWidth shr 1) - offsetY + 74 + WindBarWidth, cScreenHeight - offsetX + 2, 13, 0); |
5 | 672 |
end; |
673 |
||
161 | 674 |
// AmmoMenu |
1120 | 675 |
if (AMxShift < 210) or bShowAmmoMenu then ShowAmmoMenu; |
161 | 676 |
|
2287 | 677 |
// Cursor |
678 |
if isCursorVisible and bShowAmmoMenu then |
|
679 |
DrawSprite(sprArrow, CursorPoint.X, cScreenHeight - CursorPoint.Y, (RealTicks shr 6) mod 8); |
|
942 | 680 |
|
2287 | 681 |
DrawChat; |
4 | 682 |
|
2567 | 683 |
if fastUntilLag then DrawCentered(0, (cScreenHeight shr 1), SyncTexture); |
684 |
if isPaused then DrawCentered(0, (cScreenHeight shr 1), PauseTexture); |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
244
diff
changeset
|
685 |
|
2786 | 686 |
if missionTimer <> 0 then |
687 |
begin |
|
688 |
if missionTimer > 0 then dec(missionTimer, Lag); |
|
689 |
if missionTimer < 0 then missionTimer:= 0; // avoid subtracting below 0 |
|
690 |
if missionTex <> nil then |
|
2905 | 691 |
DrawCentered(0, min((cScreenHeight shr 1) + 100, cScreenHeight - 48 - missionTex^.h), missionTex); |
2786 | 692 |
end; |
693 |
||
2724 | 694 |
// fps |
695 |
{$IFDEF IPHONEOS} |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2786
diff
changeset
|
696 |
offset:= 300; |
2724 | 697 |
{$ELSE} |
698 |
offset:= 10; |
|
699 |
{$ENDIF} |
|
4 | 700 |
inc(Frames); |
2850
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
701 |
|
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
702 |
if cShowFPS or (GameType = gmtDemo) then inc(CountTicks, Lag); |
2851 | 703 |
if (GameType = gmtDemo) and (CountTicks >= 1000) then |
2850
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
704 |
begin |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
705 |
i:=GameTicks div 60000; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
706 |
t:=(GameTicks-(i*60000)) div 1000; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
707 |
s:=''; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
708 |
if i<10 then s:='0'; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
709 |
s:= s+inttostr(i)+':'; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
710 |
if t<10 then s:=s+'0'; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
711 |
s:= s+inttostr(t); |
2851 | 712 |
if timeTexture <> nil then FreeTexture(timeTexture); |
2850
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
713 |
tmpSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(s), cWhiteColorChannels); |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
714 |
tmpSurface:= doSurfaceConversion(tmpSurface); |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
715 |
timeTexture:= Surface2Tex(tmpSurface, false); |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
716 |
SDL_FreeSurface(tmpSurface) |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
717 |
end; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
718 |
|
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
719 |
if timeTexture <> nil then |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
720 |
DrawTexture((cScreenWidth shr 1) - 10 - timeTexture^.w, offset + timeTexture^.h+5, timeTexture); |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
721 |
|
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
722 |
if cShowFPS then |
4 | 723 |
begin |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
724 |
if CountTicks >= 1000 then |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
725 |
begin |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
726 |
FPS:= Frames; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
727 |
Frames:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
728 |
CountTicks:= 0; |
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
729 |
s:= inttostr(FPS) + ' fps'; |
759 | 730 |
if fpsTexture <> nil then FreeTexture(fpsTexture); |
2665
50b4e544c163
complete transition of longword->sdl_color for TTF bindings
koda
parents:
2630
diff
changeset
|
731 |
tmpSurface:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(s), cWhiteColorChannels); |
2670 | 732 |
tmpSurface:= doSurfaceConversion(tmpSurface); |
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2288
diff
changeset
|
733 |
fpsTexture:= Surface2Tex(tmpSurface, false); |
759 | 734 |
SDL_FreeSurface(tmpSurface) |
298
112e61bd2cc2
Render FPS value to its own surface one time a second
unc0rr
parents:
295
diff
changeset
|
735 |
end; |
759 | 736 |
if fpsTexture <> nil then |
2724 | 737 |
DrawTexture((cScreenWidth shr 1) - 50, offset, fpsTexture); |
4 | 738 |
end; |
174 | 739 |
|
2850
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
740 |
if CountTicks >= 1000 then CountTicks:= 0; |
f6f8db825ce7
A little clock for convenience in finding things in demos
nemo
parents:
2839
diff
changeset
|
741 |
|
2724 | 742 |
// lag warning (?) |
174 | 743 |
inc(SoundTimerTicks, Lag); |
744 |
if SoundTimerTicks >= 50 then |
|
745 |
begin |
|
746 |
SoundTimerTicks:= 0; |
|
747 |
if cVolumeDelta <> 0 then |
|
748 |
begin |
|
749 |
str(ChangeVolume(cVolumeDelta), s); |
|
2619 | 750 |
AddCaption(Format(trmsg[sidVolume], s), cWhiteColor, capgrpVolume) |
174 | 751 |
end |
756 | 752 |
end; |
753 |
||
2724 | 754 |
if GameState = gsConfirm then |
755 |
DrawCentered(0, cScreenHeight div 2, ConfirmTexture); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
756 |
|
2162 | 757 |
SetScale(zoom); |
1023 | 758 |
|
2287 | 759 |
// Cursor |
760 |
if isCursorVisible then |
|
761 |
begin |
|
762 |
if not bShowAmmoMenu then |
|
763 |
with CurrentHedgehog^ do |
|
764 |
if (Gear^.State and gstHHChooseTarget) <> 0 then |
|
765 |
begin |
|
766 |
i:= Ammo^[CurSlot, CurAmmo].Pos; |
|
767 |
with Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType] do |
|
768 |
if PosCount > 1 then |
|
769 |
DrawSprite(PosSprite, CursorPoint.X - SpritesData[PosSprite].Width div 2, |
|
770 |
cScreenHeight - CursorPoint.Y - SpritesData[PosSprite].Height div 2, |
|
771 |
i); |
|
772 |
end; |
|
773 |
DrawSprite(sprArrow, CursorPoint.X, cScreenHeight - CursorPoint.Y, (RealTicks shr 6) mod 8) |
|
774 |
end; |
|
775 |
||
776 |
||
775 | 777 |
glDisable(GL_TEXTURE_2D); |
756 | 778 |
glDisable(GL_BLEND) |
4 | 779 |
end; |
780 |
||
2905 | 781 |
procedure AddCaption(s: shortstring; Color: Longword; Group: TCapGroup); |
4 | 782 |
begin |
2142 | 783 |
//if Group in [capgrpGameState] then WriteLnToConsole(s); |
762 | 784 |
if Captions[Group].Tex <> nil then FreeTexture(Captions[Group].Tex); |
4 | 785 |
|
762 | 786 |
Captions[Group].Tex:= RenderStringTex(s, Color, fntBig); |
2142 | 787 |
|
788 |
case Group of |
|
789 |
capgrpGameState: Captions[Group].EndTime:= RealTicks + 2200 |
|
790 |
else |
|
2735 | 791 |
Captions[Group].EndTime:= RealTicks + 1400 + LongWord(Captions[Group].Tex^.w) * 3; |
2142 | 792 |
end; |
4 | 793 |
end; |
794 |
||
79 | 795 |
procedure MoveCamera; |
4 | 796 |
const PrevSentPointTime: LongWord = 0; |
2428 | 797 |
var EdgesDist, wdy: LongInt; |
4 | 798 |
begin |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
799 |
if (not (CurrentTeam^.ExtDriven and isCursorVisible)) and cHasFocus then |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
800 |
begin |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
801 |
SDL_GetMouseState(@CursorPoint.X, @CursorPoint.Y); |
2567 | 802 |
CursorPoint.X:= CursorPoint.X - (cScreenWidth shr 1); |
2197 | 803 |
CursorPoint.Y:= cScreenHeight - CursorPoint.Y; |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2152
diff
changeset
|
804 |
end; |
678 | 805 |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2747
diff
changeset
|
806 |
if (not PlacingHogs) and (FollowGear <> nil) and (not isCursorVisible) and (not fastUntilLag) then |
1689 | 807 |
if abs(CursorPoint.X - prevPoint.X) + abs(CursorPoint.Y - prevpoint.Y) > 4 then |
808 |
begin |
|
809 |
FollowGear:= nil; |
|
2197 | 810 |
prevPoint:= CursorPoint; |
1689 | 811 |
exit |
812 |
end |
|
813 |
else begin |
|
2198 | 814 |
CursorPoint.x:= (prevPoint.x * 7 + hwRound(FollowGear^.X) + hwSign(FollowGear^.dX) * 100 + WorldDx) div 8; |
2197 | 815 |
CursorPoint.y:= (prevPoint.y * 7 + cScreenHeight - (hwRound(FollowGear^.Y) + WorldDy)) div 8; |
1689 | 816 |
end; |
4 | 817 |
|
2375 | 818 |
wdy:= trunc(cScreenHeight / cScaleFactor) + cScreenHeight div 2 - cWaterLine - cVisibleWater; |
819 |
if WorldDy < wdy then WorldDy:= wdy; |
|
820 |
||
2197 | 821 |
if ((CursorPoint.X = prevPoint.X) and (CursorPoint.Y = prevpoint.Y)) then exit; |
4 | 822 |
|
1120 | 823 |
if AMxShift < 210 then |
1689 | 824 |
begin |
2178
d8b3417b2704
Some fixes on camera broken by zoom code (ammo menu should work now)
unc0rr
parents:
2171
diff
changeset
|
825 |
if CursorPoint.X < cScreenWidth div 2 + AMxShift - 175 then CursorPoint.X:= cScreenWidth div 2 + AMxShift - 175; |
d8b3417b2704
Some fixes on camera broken by zoom code (ammo menu should work now)
unc0rr
parents:
2171
diff
changeset
|
826 |
if CursorPoint.X > cScreenWidth div 2 + AMxShift - 10 then CursorPoint.X:= cScreenWidth div 2 + AMxShift - 10; |
2197 | 827 |
if CursorPoint.Y > 75 + SlotsNum * 33 then CursorPoint.Y:= 75 + SlotsNum * 33; |
828 |
if CursorPoint.Y < 76 then CursorPoint.Y:= 76; |
|
1689 | 829 |
prevPoint:= CursorPoint; |
2197 | 830 |
if cHasFocus then SDL_WarpMouse(CursorPoint.X + cScreenWidth div 2, cScreenHeight - CursorPoint.Y); |
1689 | 831 |
exit |
832 |
end; |
|
162 | 833 |
|
4 | 834 |
if isCursorVisible then |
1689 | 835 |
begin |
2197 | 836 |
if (not CurrentTeam^.ExtDriven) and (GameTicks >= PrevSentPointTime + cSendCursorPosTime) then |
1689 | 837 |
begin |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2397
diff
changeset
|
838 |
SendIPCXY('P', CursorPoint.X - WorldDx, cScreenHeight - CursorPoint.Y - WorldDy); |
1689 | 839 |
PrevSentPointTime:= GameTicks |
840 |
end; |
|
841 |
end; |
|
351 | 842 |
|
4 | 843 |
if isCursorVisible or (FollowGear <> nil) then |
844 |
begin |
|
284 | 845 |
if isCursorVisible then EdgesDist:= cCursorEdgesDist |
846 |
else EdgesDist:= cGearScrEdgesDist; |
|
2197 | 847 |
if CursorPoint.X < - cScreenWidth div 2 + EdgesDist then |
4 | 848 |
begin |
2197 | 849 |
WorldDx:= WorldDx - CursorPoint.X - cScreenWidth div 2 + EdgesDist; |
850 |
CursorPoint.X:= - cScreenWidth div 2 + EdgesDist |
|
4 | 851 |
end else |
2197 | 852 |
if CursorPoint.X > cScreenWidth div 2 - EdgesDist then |
4 | 853 |
begin |
2197 | 854 |
WorldDx:= WorldDx - CursorPoint.X + cScreenWidth div 2 - EdgesDist; |
2198 | 855 |
CursorPoint.X:= cScreenWidth div 2 - EdgesDist |
4 | 856 |
end; |
284 | 857 |
if CursorPoint.Y < EdgesDist then |
4 | 858 |
begin |
2197 | 859 |
WorldDy:= WorldDy + CursorPoint.Y - EdgesDist; |
284 | 860 |
CursorPoint.Y:= EdgesDist |
4 | 861 |
end else |
284 | 862 |
if CursorPoint.Y > cScreenHeight - EdgesDist then |
4 | 863 |
begin |
2197 | 864 |
WorldDy:= WorldDy + CursorPoint.Y - cScreenHeight + EdgesDist; |
284 | 865 |
CursorPoint.Y:= cScreenHeight - EdgesDist |
4 | 866 |
end; |
867 |
end else |
|
308 | 868 |
if cHasFocus then |
869 |
begin |
|
70 | 870 |
WorldDx:= WorldDx - CursorPoint.X + prevPoint.X; |
2197 | 871 |
WorldDy:= WorldDy + CursorPoint.Y - prevPoint.Y; |
2162 | 872 |
CursorPoint.X:= 0; |
873 |
CursorPoint.Y:= cScreenHeight div 2; |
|
308 | 874 |
end; |
351 | 875 |
|
4 | 876 |
prevPoint:= CursorPoint; |
2567 | 877 |
if cHasFocus then SDL_WarpMouse(CursorPoint.X + (cScreenWidth shr 1), cScreenHeight - CursorPoint.Y); |
1760 | 878 |
if WorldDy > LAND_HEIGHT + 1024 then WorldDy:= LAND_HEIGHT + 1024; |
2375 | 879 |
if WorldDy < wdy then WorldDy:= wdy; |
2426 | 880 |
if WorldDx < - LAND_WIDTH - 1024 then WorldDx:= - LAND_WIDTH - 1024; |
881 |
if WorldDx > 1024 then WorldDx:= 1024; |
|
4 | 882 |
end; |
883 |
||
2905 | 884 |
procedure ShowMission(caption, subcaption, text: ansistring; icon, time : LongInt); |
2786 | 885 |
var r: TSDL_Rect; |
886 |
begin |
|
887 |
r.w:= 32; |
|
888 |
r.h:= 32; |
|
889 |
||
890 |
if time = 0 then time:= 5000; |
|
891 |
missionTimer:= time; |
|
892 |
if missionTex <> nil then FreeTexture(missionTex); |
|
893 |
||
894 |
if icon > -1 then |
|
895 |
begin |
|
896 |
r.x:= 0; |
|
897 |
r.y:= icon * 32; |
|
898 |
missionTex:= RenderHelpWindow(caption, subcaption, text, '', 0, MissionIcons, @r) |
|
899 |
end |
|
900 |
else |
|
901 |
begin |
|
902 |
r.x:= ((-icon - 1) shr 5) * 32; |
|
903 |
r.y:= ((-icon - 1) mod 32) * 32; |
|
904 |
missionTex:= RenderHelpWindow(caption, subcaption, text, '', 0, SpritesData[sprAMAmmos].Surface, @r) |
|
905 |
end; |
|
906 |
end; |
|
907 |
||
908 |
procedure HideMission; |
|
909 |
begin |
|
910 |
missionTimer:= 0 |
|
911 |
end; |
|
912 |
||
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
913 |
procedure init_uWorld; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
914 |
begin |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
915 |
fpsTexture:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
916 |
FollowGear:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
917 |
WindBarWidth:= 0; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
918 |
bShowAmmoMenu:= false; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
919 |
bSelected:= false; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
920 |
bShowFinger:= false; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
921 |
Frames:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
922 |
WorldDx:= -512; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
923 |
WorldDy:= -256; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
924 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
925 |
FPS:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
926 |
CountTicks:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
927 |
SoundTimerTicks:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
928 |
prevPoint.X:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
929 |
prevPoint.Y:= 0; |
2786 | 930 |
missionTimer:= 0; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
931 |
|
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
932 |
FillChar(Captions, sizeof(Captions), 0) |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2682
diff
changeset
|
933 |
end; |
4 | 934 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
935 |
procedure free_uWorld; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
936 |
begin |
2786 | 937 |
if missionTex <> nil then FreeTexture(missionTex); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
938 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2713
diff
changeset
|
939 |
|
4 | 940 |
end. |