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