author | unc0rr |
Thu, 27 Aug 2009 17:33:01 +0000 | |
changeset 2335 | 0a61a3c2efc4 |
parent 2332 | 351abbbb12f3 |
child 2376 | ece7b87f1334 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
19 |
unit uStore; |
|
20 |
interface |
|
2017 | 21 |
uses sysutils, uConsts, uTeams, SDLh, |
2152 | 22 |
{$IFDEF GLES11} |
1906 | 23 |
gles11, |
24 |
{$ELSE} |
|
25 |
GL, |
|
26 |
{$ENDIF} |
|
27 |
uFloat; |
|
4 | 28 |
{$INCLUDE options.inc} |
29 |
||
30 |
procedure StoreInit; |
|
31 |
procedure StoreLoad; |
|
32 |
procedure StoreRelease; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
33 |
procedure DrawSpriteFromRect(Sprite: TSprite; r: TSDL_Rect; X, Y, Height, Position: LongInt); |
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
34 |
procedure DrawSprite (Sprite: TSprite; X, Y, Frame: LongInt); |
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
35 |
procedure DrawSprite2(Sprite: TSprite; X, Y, FrameX, FrameY: LongInt); |
1939 | 36 |
procedure DrawSpriteClipped(Sprite: TSprite; X, Y, TopY, RightX, BottomY, LeftX: LongInt); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
37 |
procedure DrawSurfSprite(X, Y, Height, Frame: LongInt; Source: PTexture); |
762 | 38 |
procedure DrawTexture(X, Y: LongInt; Texture: PTexture); |
1251 | 39 |
procedure DrawTextureF(Texture: PTexture; Scale: GLfloat; X, Y, Frame, Dir, Frames: LongInt); |
822 | 40 |
procedure DrawRotated(Sprite: TSprite; X, Y, Dir: LongInt; Angle: real); |
853 | 41 |
procedure DrawRotatedF(Sprite: TSprite; X, Y, Frame, Dir: LongInt; Angle: real); |
822 | 42 |
procedure DrawRotatedTex(Tex: PTexture; hw, hh, X, Y, Dir: LongInt; Angle: real); |
762 | 43 |
procedure DrawCentered(X, Top: LongInt; Source: PTexture); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
44 |
procedure DrawFromRect(X, Y: LongInt; r: PSDL_Rect; SourceTexture: PTexture); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1854
diff
changeset
|
45 |
procedure DrawHedgehog(X, Y: LongInt; Dir: LongInt; Pos, Step: LongWord; Angle: real); |
1431 | 46 |
procedure DrawFillRect(r: TSDL_Rect); |
762 | 47 |
function RenderStringTex(s: string; Color: Longword; font: THWFont): PTexture; |
2017 | 48 |
function RenderSpeechBubbleTex(s: string; SpeechType: Longword; font: THWFont): PTexture; |
49 |
procedure flipSurface(Surface: PSDL_Surface; Vertical: Boolean); |
|
50 |
//procedure rotateSurface(Surface: PSDL_Surface); |
|
51 |
procedure copyRotatedSurface(src, dest: PSDL_Surface); // this is necessary since width/height are read only in SDL |
|
52 |
procedure copyToXY(src, dest: PSDL_Surface; destX, destY: Integer); |
|
4 | 53 |
procedure RenderHealth(var Hedgehog: THedgehog); |
54 |
procedure AddProgress; |
|
510 | 55 |
procedure FinishProgress; |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
56 |
function LoadImage(const filename: string; imageFlags: Integer): PSDL_Surface; |
753 | 57 |
procedure SetupOpenGL; |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
58 |
procedure SetScale(f: GLfloat); |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
59 |
|
4 | 60 |
|
1525 | 61 |
var PixelFormat: PSDL_PixelFormat = nil; |
62 |
SDLPrimSurface: PSDL_Surface = nil; |
|
1023 | 63 |
PauseTexture, |
64 |
ConfirmTexture: PTexture; |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
65 |
cScaleFactor: GLfloat = 2.0; |
4 | 66 |
|
67 |
implementation |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
68 |
uses uMisc, uConsole, uLand, uLocale, uWorld; |
4 | 69 |
|
690 | 70 |
var |
761 | 71 |
HHTexture: PTexture; |
2153 | 72 |
MaxTextureSize: Integer; |
4 | 73 |
|
74 |
procedure StoreInit; |
|
75 |
begin |
|
76 |
||
77 |
end; |
|
78 |
||
351 | 79 |
procedure DrawRoundRect(rect: PSDL_Rect; BorderColor, FillColor: Longword; Surface: PSDL_Surface; Clear: boolean); |
47 | 80 |
var r: TSDL_Rect; |
81 |
begin |
|
82 |
r:= rect^; |
|
83 | 83 |
if Clear then SDL_FillRect(Surface, @r, 0); |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
84 |
|
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
85 |
BorderColor:= SDL_MapRGB(Surface^.format, BorderColor shr 16, BorderColor shr 8, BorderColor and $FF); |
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
86 |
FillColor:= SDL_MapRGB(Surface^.format, FillColor shr 16, FillColor shr 8, FillColor and $FF); |
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
87 |
|
351 | 88 |
r.y:= rect^.y + 1; |
89 |
r.h:= rect^.h - 2; |
|
47 | 90 |
SDL_FillRect(Surface, @r, BorderColor); |
351 | 91 |
r.x:= rect^.x + 1; |
92 |
r.w:= rect^.w - 2; |
|
93 |
r.y:= rect^.y; |
|
94 |
r.h:= rect^.h; |
|
47 | 95 |
SDL_FillRect(Surface, @r, BorderColor); |
351 | 96 |
r.x:= rect^.x + 2; |
97 |
r.y:= rect^.y + 1; |
|
98 |
r.w:= rect^.w - 4; |
|
99 |
r.h:= rect^.h - 2; |
|
47 | 100 |
SDL_FillRect(Surface, @r, FillColor); |
351 | 101 |
r.x:= rect^.x + 1; |
102 |
r.y:= rect^.y + 2; |
|
103 |
r.w:= rect^.w - 2; |
|
104 |
r.h:= rect^.h - 4; |
|
47 | 105 |
SDL_FillRect(Surface, @r, FillColor) |
106 |
end; |
|
107 |
||
371 | 108 |
function WriteInRoundRect(Surface: PSDL_Surface; X, Y: LongInt; Color: LongWord; Font: THWFont; s: string): TSDL_Rect; |
351 | 109 |
var w, h: LongInt; |
4 | 110 |
tmpsurf: PSDL_Surface; |
111 |
clr: TSDL_Color; |
|
351 | 112 |
Result: TSDL_Rect; |
4 | 113 |
begin |
355 | 114 |
TTF_SizeUTF8(Fontz[Font].Handle, Str2PChar(s), w, h); |
4 | 115 |
Result.x:= X; |
116 |
Result.y:= Y; |
|
202 | 117 |
Result.w:= w + FontBorder * 2 + 4; |
118 |
Result.h:= h + FontBorder * 2; |
|
351 | 119 |
DrawRoundRect(@Result, cWhiteColor, cColorNearBlack, Surface, true); |
189 | 120 |
clr.r:= Color shr 16; |
121 |
clr.g:= (Color shr 8) and $FF; |
|
122 |
clr.b:= Color and $FF; |
|
355 | 123 |
tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, Str2PChar(s), clr.value); |
202 | 124 |
Result.x:= X + FontBorder + 2; |
125 |
Result.y:= Y + FontBorder; |
|
199 | 126 |
SDLTry(tmpsurf <> nil, true); |
4 | 127 |
SDL_UpperBlit(tmpsurf, nil, Surface, @Result); |
128 |
SDL_FreeSurface(tmpsurf); |
|
129 |
Result.x:= X; |
|
130 |
Result.y:= Y; |
|
202 | 131 |
Result.w:= w + FontBorder * 2 + 4; |
351 | 132 |
Result.h:= h + FontBorder * 2; |
133 |
WriteInRoundRect:= Result |
|
4 | 134 |
end; |
135 |
||
136 |
procedure StoreLoad; |
|
844 | 137 |
var s: string; |
4 | 138 |
|
1185 | 139 |
procedure WriteNames(Font: THWFont); |
140 |
var t: LongInt; |
|
141 |
i: LongInt; |
|
142 |
r, rr: TSDL_Rect; |
|
143 |
drY: LongInt; |
|
144 |
texsurf: PSDL_Surface; |
|
145 |
begin |
|
146 |
r.x:= 0; |
|
147 |
r.y:= 0; |
|
148 |
drY:= - 4; |
|
149 |
for t:= 0 to Pred(TeamsCount) do |
|
150 |
with TeamsArray[t]^ do |
|
151 |
begin |
|
152 |
NameTagTex:= RenderStringTex(TeamName, Clan^.Color, Font); |
|
690 | 153 |
|
1185 | 154 |
r.w:= cTeamHealthWidth + 5; |
155 |
r.h:= NameTagTex^.h; |
|
690 | 156 |
|
1185 | 157 |
texsurf:= SDL_CreateRGBSurface(SDL_SWSURFACE, r.w, r.h, 32, RMask, GMask, BMask, AMask); |
158 |
TryDo(texsurf <> nil, errmsgCreateSurface, true); |
|
159 |
TryDo(SDL_SetColorKey(texsurf, SDL_SRCCOLORKEY, 0) = 0, errmsgTransparentSet, true); |
|
690 | 160 |
|
1185 | 161 |
DrawRoundRect(@r, cWhiteColor, cColorNearBlack, texsurf, true); |
162 |
rr:= r; |
|
163 |
inc(rr.x, 2); dec(rr.w, 4); inc(rr.y, 2); dec(rr.h, 4); |
|
164 |
DrawRoundRect(@rr, Clan^.Color, Clan^.Color, texsurf, false); |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
165 |
HealthTex:= Surface2Tex(texsurf, false); |
1185 | 166 |
SDL_FreeSurface(texsurf); |
690 | 167 |
|
1185 | 168 |
dec(drY, r.h + 2); |
169 |
DrawHealthY:= drY; |
|
170 |
for i:= 0 to 7 do |
|
171 |
with Hedgehogs[i] do |
|
172 |
if Gear <> nil then |
|
1242 | 173 |
begin |
1185 | 174 |
NameTagTex:= RenderStringTex(Name, Clan^.Color, fnt16); |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1251
diff
changeset
|
175 |
if Hat <> 'NoHat' then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1251
diff
changeset
|
176 |
begin |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
177 |
texsurf:= LoadImage(Pathz[ptHats] + '/' + Hat, ifNone); |
1698 | 178 |
if texsurf <> nil then |
179 |
begin |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
180 |
HatTex:= Surface2Tex(texsurf, false); |
1698 | 181 |
SDL_FreeSurface(texsurf) |
182 |
end |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1251
diff
changeset
|
183 |
end |
1242 | 184 |
end; |
1185 | 185 |
end; |
186 |
end; |
|
4 | 187 |
|
1185 | 188 |
procedure MakeCrossHairs; |
189 |
var t: LongInt; |
|
190 |
tmpsurf, texsurf: PSDL_Surface; |
|
191 |
Color, i: Longword; |
|
192 |
begin |
|
193 |
s:= Pathz[ptGraphics] + '/' + cCHFileName; |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
194 |
tmpsurf:= LoadImage(s, ifAlpha or ifCritical); |
4 | 195 |
|
1185 | 196 |
for t:= 0 to Pred(TeamsCount) do |
197 |
with TeamsArray[t]^ do |
|
198 |
begin |
|
199 |
texsurf:= SDL_CreateRGBSurface(SDL_SWSURFACE, tmpsurf^.w, tmpsurf^.h, 32, RMask, GMask, BMask, AMask); |
|
200 |
TryDo(texsurf <> nil, errmsgCreateSurface, true); |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
201 |
|
1185 | 202 |
Color:= Clan^.Color; |
203 |
Color:= SDL_MapRGB(texsurf^.format, Color shr 16, Color shr 8, Color and $FF); |
|
204 |
SDL_FillRect(texsurf, nil, Color); |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
205 |
|
1185 | 206 |
SDL_UpperBlit(tmpsurf, nil, texsurf, nil); |
777 | 207 |
|
1185 | 208 |
TryDo(tmpsurf^.format^.BytesPerPixel = 4, 'Ooops', true); |
777 | 209 |
|
1185 | 210 |
if SDL_MustLock(texsurf) then |
211 |
SDLTry(SDL_LockSurface(texsurf) >= 0, true); |
|
777 | 212 |
|
1185 | 213 |
// make black pixel be alpha-transparent |
214 |
for i:= 0 to texsurf^.w * texsurf^.h - 1 do |
|
215 |
if PLongwordArray(texsurf^.pixels)^[i] = $FF000000 then PLongwordArray(texsurf^.pixels)^[i]:= 0; |
|
777 | 216 |
|
1185 | 217 |
if SDL_MustLock(texsurf) then |
218 |
SDL_UnlockSurface(texsurf); |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
219 |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
220 |
CrosshairTex:= Surface2Tex(texsurf, false); |
1185 | 221 |
SDL_FreeSurface(texsurf) |
222 |
end; |
|
351 | 223 |
|
1185 | 224 |
SDL_FreeSurface(tmpsurf) |
225 |
end; |
|
4 | 226 |
|
1185 | 227 |
procedure InitHealth; |
228 |
var i, t: LongInt; |
|
229 |
begin |
|
230 |
for t:= 0 to Pred(TeamsCount) do |
|
231 |
if TeamsArray[t] <> nil then |
|
232 |
with TeamsArray[t]^ do |
|
233 |
begin |
|
234 |
for i:= 0 to cMaxHHIndex do |
|
235 |
if Hedgehogs[i].Gear <> nil then |
|
236 |
RenderHealth(Hedgehogs[i]); |
|
237 |
end |
|
238 |
end; |
|
4 | 239 |
|
1185 | 240 |
procedure LoadGraves; |
241 |
var t: LongInt; |
|
242 |
texsurf: PSDL_Surface; |
|
243 |
begin |
|
244 |
for t:= 0 to Pred(TeamsCount) do |
|
245 |
if TeamsArray[t] <> nil then |
|
246 |
with TeamsArray[t]^ do |
|
247 |
begin |
|
248 |
if GraveName = '' then GraveName:= 'Simple'; |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
249 |
texsurf:= LoadImage(Pathz[ptGraves] + '/' + GraveName, ifCritical or ifTransparent); |
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
250 |
GraveTex:= Surface2Tex(texsurf, false); |
1185 | 251 |
SDL_FreeSurface(texsurf) |
252 |
end |
|
253 |
end; |
|
4 | 254 |
|
844 | 255 |
var ii: TSprite; |
256 |
fi: THWFont; |
|
257 |
ai: TAmmoType; |
|
258 |
tmpsurf: PSDL_Surface; |
|
259 |
i: LongInt; |
|
4 | 260 |
begin |
2222 | 261 |
|
4 | 262 |
for fi:= Low(THWFont) to High(THWFont) do |
1185 | 263 |
with Fontz[fi] do |
264 |
begin |
|
265 |
s:= Pathz[ptFonts] + '/' + Name; |
|
266 |
WriteToConsole(msgLoading + s + '... '); |
|
267 |
Handle:= TTF_OpenFont(Str2PChar(s), Height); |
|
268 |
SDLTry(Handle <> nil, true); |
|
269 |
TTF_SetFontStyle(Handle, style); |
|
270 |
WriteLnToConsole(msgOK) |
|
271 |
end; |
|
53 | 272 |
|
4 | 273 |
WriteNames(fnt16); |
70 | 274 |
MakeCrossHairs; |
4 | 275 |
LoadGraves; |
276 |
||
277 |
AddProgress; |
|
278 |
for ii:= Low(TSprite) to High(TSprite) do |
|
1185 | 279 |
with SpritesData[ii] do |
2145 | 280 |
// FIXME - add a sprite attribute |
2229
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
281 |
if (not cReducedQuality) or ((ii <> sprSky) and (ii <> sprHorizont) and (ii <> sprFlake)) then |
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
282 |
begin |
1185 | 283 |
if AltPath = ptNone then |
2244
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
284 |
tmpsurf:= LoadImage(Pathz[Path] + '/' + FileName, ifAlpha or ifTransparent or ifCritical or ifLowRes) |
1185 | 285 |
else begin |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
286 |
tmpsurf:= LoadImage(Pathz[Path] + '/' + FileName, ifAlpha or ifTransparent); |
1185 | 287 |
if tmpsurf = nil then |
2244
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
288 |
tmpsurf:= LoadImage(Pathz[AltPath] + '/' + FileName, ifAlpha or ifCritical or ifTransparent); |
1185 | 289 |
end; |
2229
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
290 |
if imageWidth = 0 then imageWidth := tmpsurf^.w; |
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
291 |
if imageHeight = 0 then imageHeight := tmpsurf^.h; |
1185 | 292 |
if Width = 0 then Width:= tmpsurf^.w; |
293 |
if Height = 0 then Height:= tmpsurf^.h; |
|
2292
87af4ad0ec98
New waves rendering procedure based on using texture coodrinates > 1.0
unc0rr
parents:
2290
diff
changeset
|
294 |
if (ii = sprSky) then |
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
295 |
Texture:= Surface2Tex(tmpsurf, true) |
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
296 |
else |
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
297 |
Texture:= Surface2Tex(tmpsurf, false); |
1185 | 298 |
if saveSurf then Surface:= tmpsurf else SDL_FreeSurface(tmpsurf) |
2229
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
299 |
end; |
80 | 300 |
|
4 | 301 |
AddProgress; |
567 | 302 |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
303 |
tmpsurf:= LoadImage(Pathz[ptGraphics] + '/' + cHHFileName, ifAlpha or ifCritical or ifTransparent); |
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
304 |
HHTexture:= Surface2Tex(tmpsurf, false); |
761 | 305 |
SDL_FreeSurface(tmpsurf); |
4 | 306 |
|
307 |
InitHealth; |
|
308 |
||
762 | 309 |
PauseTexture:= RenderStringTex(trmsg[sidPaused], $FFFF00, fntBig); |
1023 | 310 |
ConfirmTexture:= RenderStringTex(trmsg[sidConfirm], $FFFF00, fntBig); |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
208
diff
changeset
|
311 |
|
843 | 312 |
for ai:= Low(TAmmoType) to High(TAmmoType) do |
313 |
with Ammoz[ai] do |
|
314 |
begin |
|
315 |
tmpsurf:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(trAmmo[NameId]), $FFFFFF); |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
316 |
NameTex:= Surface2Tex(tmpsurf, false); |
843 | 317 |
SDL_FreeSurface(tmpsurf) |
318 |
end; |
|
2222 | 319 |
|
844 | 320 |
for i:= Low(CountTexz) to High(CountTexz) do |
321 |
begin |
|
322 |
tmpsurf:= TTF_RenderUTF8_Blended(Fontz[fnt16].Handle, Str2PChar(IntToStr(i) + 'x'), $FFFFFF); |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
323 |
CountTexz[i]:= Surface2Tex(tmpsurf, false); |
844 | 324 |
SDL_FreeSurface(tmpsurf) |
325 |
end; |
|
326 |
||
4 | 327 |
{$IFDEF DUMP} |
328 |
SDL_SaveBMP_RW(LandSurface, SDL_RWFromFile('LandSurface.bmp', 'wb'), 1); |
|
329 |
SDL_SaveBMP_RW(StoreSurface, SDL_RWFromFile('StoreSurface.bmp', 'wb'), 1); |
|
330 |
{$ENDIF} |
|
2222 | 331 |
AddProgress; |
4 | 332 |
end; |
333 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
334 |
procedure DrawFromRect(X, Y: LongInt; r: PSDL_Rect; SourceTexture: PTexture); |
4 | 335 |
var rr: TSDL_Rect; |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
336 |
_l, _r, _t, _b: real; |
1916 | 337 |
VertexBuffer, TextureBuffer: array [0..3] of TVertex2f; |
4 | 338 |
begin |
759 | 339 |
if SourceTexture^.h = 0 then exit; |
4 | 340 |
rr.x:= X; |
341 |
rr.y:= Y; |
|
351 | 342 |
rr.w:= r^.w; |
343 |
rr.h:= r^.h; |
|
755 | 344 |
|
1896 | 345 |
_l:= r^.x / SourceTexture^.w * SourceTexture^.rx; |
346 |
_r:= (r^.x + r^.w) / SourceTexture^.w * SourceTexture^.rx; |
|
347 |
_t:= r^.y / SourceTexture^.h * SourceTexture^.ry; |
|
348 |
_b:= (r^.y + r^.h) / SourceTexture^.h * SourceTexture^.ry; |
|
755 | 349 |
|
350 |
glBindTexture(GL_TEXTURE_2D, SourceTexture^.id); |
|
351 |
||
1916 | 352 |
VertexBuffer[0].X:= X; |
353 |
VertexBuffer[0].Y:= Y; |
|
354 |
VertexBuffer[1].X:= rr.w + X; |
|
355 |
VertexBuffer[1].Y:= Y; |
|
356 |
VertexBuffer[2].X:= rr.w + X; |
|
357 |
VertexBuffer[2].Y:= rr.h + Y; |
|
358 |
VertexBuffer[3].X:= X; |
|
359 |
VertexBuffer[3].Y:= rr.h + Y; |
|
755 | 360 |
|
1916 | 361 |
TextureBuffer[0].X:= _l; |
362 |
TextureBuffer[0].Y:= _t; |
|
363 |
TextureBuffer[1].X:= _r; |
|
364 |
TextureBuffer[1].Y:= _t; |
|
365 |
TextureBuffer[2].X:= _r; |
|
366 |
TextureBuffer[2].Y:= _b; |
|
367 |
TextureBuffer[3].X:= _l; |
|
368 |
TextureBuffer[3].Y:= _b; |
|
755 | 369 |
|
1916 | 370 |
glEnableClientState(GL_VERTEX_ARRAY); |
371 |
glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
|
755 | 372 |
|
1916 | 373 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
374 |
glTexCoordPointer(2, GL_FLOAT, 0, @TextureBuffer[0]); |
|
375 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
|
376 |
||
377 |
glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
|
378 |
glDisableClientState(GL_VERTEX_ARRAY) |
|
762 | 379 |
end; |
380 |
||
381 |
procedure DrawTexture(X, Y: LongInt; Texture: PTexture); |
|
382 |
begin |
|
1904 | 383 |
glPushMatrix; |
384 |
glTranslatef(X, Y, 0); |
|
385 |
||
762 | 386 |
glBindTexture(GL_TEXTURE_2D, Texture^.id); |
387 |
||
1904 | 388 |
glEnableClientState(GL_VERTEX_ARRAY); |
389 |
glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
|
762 | 390 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1908
diff
changeset
|
391 |
glVertexPointer(2, GL_FLOAT, 0, @Texture^.vb); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1908
diff
changeset
|
392 |
glTexCoordPointer(2, GL_FLOAT, 0, @Texture^.tb); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1908
diff
changeset
|
393 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(Texture^.vb)); |
1904 | 394 |
|
395 |
glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
|
396 |
glDisableClientState(GL_VERTEX_ARRAY); |
|
397 |
||
398 |
glPopMatrix |
|
4 | 399 |
end; |
400 |
||
1251 | 401 |
procedure DrawTextureF(Texture: PTexture; Scale: GLfloat; X, Y, Frame, Dir, Frames: LongInt); |
1242 | 402 |
var ft, fb: GLfloat; |
403 |
hw: LongInt; |
|
1916 | 404 |
VertexBuffer, TextureBuffer: array [0..3] of TVertex2f; |
1242 | 405 |
begin |
406 |
glPushMatrix; |
|
407 |
glTranslatef(X, Y, 0); |
|
1251 | 408 |
glScalef(Scale, Scale, 1.0); |
1242 | 409 |
|
410 |
if Dir < 0 then |
|
411 |
hw:= - 16 |
|
412 |
else |
|
413 |
hw:= 16; |
|
414 |
||
1896 | 415 |
ft:= Frame / Frames * Texture^.ry; |
416 |
fb:= (Frame + 1) / Frames * Texture^.ry; |
|
1242 | 417 |
|
418 |
glBindTexture(GL_TEXTURE_2D, Texture^.id); |
|
419 |
||
1916 | 420 |
VertexBuffer[0].X:= -hw; |
421 |
VertexBuffer[0].Y:= -16; |
|
422 |
VertexBuffer[1].X:= hw; |
|
423 |
VertexBuffer[1].Y:= -16; |
|
424 |
VertexBuffer[2].X:= hw; |
|
425 |
VertexBuffer[2].Y:= 16; |
|
426 |
VertexBuffer[3].X:= -hw; |
|
427 |
VertexBuffer[3].Y:= 16; |
|
1242 | 428 |
|
1916 | 429 |
TextureBuffer[0].X:= 0; |
430 |
TextureBuffer[0].Y:= ft; |
|
431 |
TextureBuffer[1].X:= Texture^.rx; |
|
432 |
TextureBuffer[1].Y:= ft; |
|
433 |
TextureBuffer[2].X:= Texture^.rx; |
|
434 |
TextureBuffer[2].Y:= fb; |
|
435 |
TextureBuffer[3].X:= 0; |
|
436 |
TextureBuffer[3].Y:= fb; |
|
1242 | 437 |
|
1916 | 438 |
glEnableClientState(GL_VERTEX_ARRAY); |
439 |
glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
|
1242 | 440 |
|
1916 | 441 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
442 |
glTexCoordPointer(2, GL_FLOAT, 0, @TextureBuffer[0]); |
|
443 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
|
444 |
||
445 |
glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
|
446 |
glDisableClientState(GL_VERTEX_ARRAY); |
|
447 |
||
1242 | 448 |
|
449 |
glPopMatrix |
|
450 |
end; |
|
451 |
||
822 | 452 |
procedure DrawRotated(Sprite: TSprite; X, Y, Dir: LongInt; Angle: real); |
775 | 453 |
begin |
777 | 454 |
DrawRotatedTex(SpritesData[Sprite].Texture, |
822 | 455 |
SpritesData[Sprite].Width, |
456 |
SpritesData[Sprite].Height, |
|
457 |
X, Y, Dir, Angle) |
|
777 | 458 |
end; |
459 |
||
853 | 460 |
procedure DrawRotatedF(Sprite: TSprite; X, Y, Frame, Dir: LongInt; Angle: real); |
806 | 461 |
begin |
462 |
glPushMatrix; |
|
809 | 463 |
glTranslatef(X, Y, 0); |
806 | 464 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
465 |
if Dir < 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
466 |
glRotatef(Angle, 0, 0, -1) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
467 |
else |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
468 |
glRotatef(Angle, 0, 0, 1); |
853 | 469 |
if Dir < 0 then glScalef(-1.0, 1.0, 1.0); |
470 |
||
471 |
DrawSprite(Sprite, -SpritesData[Sprite].Width div 2, -SpritesData[Sprite].Height div 2, Frame); |
|
806 | 472 |
|
473 |
glPopMatrix |
|
474 |
end; |
|
475 |
||
822 | 476 |
procedure DrawRotatedTex(Tex: PTexture; hw, hh, X, Y, Dir: LongInt; Angle: real); |
1916 | 477 |
var VertexBuffer: array [0..3] of TVertex2f; |
777 | 478 |
begin |
775 | 479 |
glPushMatrix; |
480 |
glTranslatef(X, Y, 0); |
|
822 | 481 |
|
482 |
if Dir < 0 then |
|
483 |
begin |
|
484 |
hw:= - hw; |
|
485 |
glRotatef(Angle, 0, 0, -1); |
|
486 |
end else |
|
487 |
glRotatef(Angle, 0, 0, 1); |
|
488 |
||
775 | 489 |
|
777 | 490 |
glBindTexture(GL_TEXTURE_2D, Tex^.id); |
775 | 491 |
|
1916 | 492 |
VertexBuffer[0].X:= -hw; |
493 |
VertexBuffer[0].Y:= -hh; |
|
494 |
VertexBuffer[1].X:= hw; |
|
495 |
VertexBuffer[1].Y:= -hh; |
|
496 |
VertexBuffer[2].X:= hw; |
|
497 |
VertexBuffer[2].Y:= hh; |
|
498 |
VertexBuffer[3].X:= -hw; |
|
499 |
VertexBuffer[3].Y:= hh; |
|
775 | 500 |
|
1916 | 501 |
glEnableClientState(GL_VERTEX_ARRAY); |
502 |
glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
|
775 | 503 |
|
1916 | 504 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
505 |
glTexCoordPointer(2, GL_FLOAT, 0, @Tex^.tb); |
|
506 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
|
775 | 507 |
|
1916 | 508 |
glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
509 |
glDisableClientState(GL_VERTEX_ARRAY); |
|
775 | 510 |
|
511 |
glPopMatrix |
|
512 |
end; |
|
513 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
514 |
procedure DrawSpriteFromRect(Sprite: TSprite; r: TSDL_Rect; X, Y, Height, Position: LongInt); |
4 | 515 |
begin |
516 |
r.y:= r.y + Height * Position; |
|
517 |
r.h:= Height; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
518 |
DrawFromRect(X, Y, @r, SpritesData[Sprite].Texture) |
4 | 519 |
end; |
520 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
521 |
procedure DrawSprite (Sprite: TSprite; X, Y, Frame: LongInt); |
2229
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
522 |
var row, col, numFramesFirstCol: LongInt; |
4 | 523 |
begin |
2229
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
524 |
numFramesFirstCol:= SpritesData[Sprite].imageHeight div SpritesData[Sprite].Height; |
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
525 |
row:= Frame mod numFramesFirstCol; |
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
526 |
col:= Frame div numFramesFirstCol; |
081081a61a16
patch for loading sprites on two columns (helps embedded and lowpower machines). must deal with amGirder.png
koda
parents:
2227
diff
changeset
|
527 |
DrawSprite2 (Sprite, X, Y, col, row); |
4 | 528 |
end; |
529 |
||
1939 | 530 |
procedure DrawSpriteClipped(Sprite: TSprite; X, Y, TopY, RightX, BottomY, LeftX: LongInt); |
531 |
var r: TSDL_Rect; |
|
532 |
begin |
|
533 |
r.x:= 0; |
|
534 |
r.y:= 0; |
|
535 |
r.w:= SpritesData[Sprite].Width; |
|
536 |
r.h:= SpritesData[Sprite].Height; |
|
537 |
||
538 |
if (X < LeftX) then |
|
539 |
r.x:= LeftX - X; |
|
540 |
if (Y < TopY) then |
|
541 |
r.y:= TopY - Y; |
|
542 |
||
543 |
if (Y + SpritesData[Sprite].Height > BottomY) then |
|
544 |
r.h:= BottomY - Y + 1; |
|
545 |
if (X + SpritesData[Sprite].Width > RightX) then |
|
546 |
r.w:= RightX - X + 1; |
|
547 |
||
548 |
dec(r.h, r.y); |
|
549 |
dec(r.w, r.x); |
|
2230
d6963f72d21a
once again, trying to restore windows compatibility from nemo's experiments
koda
parents:
2229
diff
changeset
|
550 |
|
1939 | 551 |
DrawFromRect(X + r.x, Y + r.y, @r, SpritesData[Sprite].Texture) |
552 |
end; |
|
553 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
554 |
procedure DrawSprite2(Sprite: TSprite; X, Y, FrameX, FrameY: LongInt); |
43 | 555 |
var r: TSDL_Rect; |
556 |
begin |
|
557 |
r.x:= FrameX * SpritesData[Sprite].Width; |
|
558 |
r.w:= SpritesData[Sprite].Width; |
|
559 |
r.y:= FrameY * SpritesData[Sprite].Height; |
|
560 |
r.h:= SpritesData[Sprite].Height; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
561 |
DrawFromRect(X, Y, @r, SpritesData[Sprite].Texture) |
43 | 562 |
end; |
563 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
564 |
procedure DrawSurfSprite(X, Y, Height, Frame: LongInt; Source: PTexture); |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
565 |
var r: TSDL_Rect; |
198 | 566 |
begin |
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
567 |
r.x:= 0; |
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
568 |
r.w:= Source^.w; |
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
569 |
r.y:= Frame * Height; |
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
762
diff
changeset
|
570 |
r.h:= Height; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
571 |
DrawFromRect(X, Y, @r, Source) |
198 | 572 |
end; |
573 |
||
762 | 574 |
procedure DrawCentered(X, Top: LongInt; Source: PTexture); |
95 | 575 |
begin |
762 | 576 |
DrawTexture(X - Source^.w div 2, Top, Source) |
4 | 577 |
end; |
578 |
||
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1854
diff
changeset
|
579 |
procedure DrawHedgehog(X, Y: LongInt; Dir: LongInt; Pos, Step: LongWord; Angle: real); |
1916 | 580 |
const VertexBuffer: array [0..3] of TVertex2f = ( |
581 |
(x: -16; y: -16), |
|
582 |
(x: 16; y: -16), |
|
583 |
(x: 16; y: 16), |
|
584 |
(x: -16; y: 16)); |
|
761 | 585 |
var l, r, t, b: real; |
1916 | 586 |
TextureBuffer: array [0..3] of TVertex2f; |
4 | 587 |
begin |
761 | 588 |
|
589 |
t:= Pos * 32 / HHTexture^.h; |
|
590 |
b:= (Pos + 1) * 32 / HHTexture^.h; |
|
591 |
||
592 |
if Dir = -1 then |
|
593 |
begin |
|
594 |
l:= (Step + 1) * 32 / HHTexture^.w; |
|
595 |
r:= Step * 32 / HHTexture^.w |
|
596 |
end else |
|
597 |
begin |
|
598 |
l:= Step * 32 / HHTexture^.w; |
|
599 |
r:= (Step + 1) * 32 / HHTexture^.w |
|
600 |
end; |
|
601 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
602 |
|
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
603 |
glPushMatrix(); |
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
604 |
glTranslatef(X, Y, 0); |
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
605 |
glRotatef(Angle, 0, 0, 1); |
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
606 |
|
761 | 607 |
glBindTexture(GL_TEXTURE_2D, HHTexture^.id); |
608 |
||
1916 | 609 |
TextureBuffer[0].X:= l; |
610 |
TextureBuffer[0].Y:= t; |
|
611 |
TextureBuffer[1].X:= r; |
|
612 |
TextureBuffer[1].Y:= t; |
|
613 |
TextureBuffer[2].X:= r; |
|
614 |
TextureBuffer[2].Y:= b; |
|
615 |
TextureBuffer[3].X:= l; |
|
616 |
TextureBuffer[3].Y:= b; |
|
761 | 617 |
|
1916 | 618 |
glEnableClientState(GL_VERTEX_ARRAY); |
619 |
glEnableClientState(GL_TEXTURE_COORD_ARRAY); |
|
761 | 620 |
|
1916 | 621 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
622 |
glTexCoordPointer(2, GL_FLOAT, 0, @TextureBuffer[0]); |
|
623 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
|
761 | 624 |
|
1916 | 625 |
glDisableClientState(GL_TEXTURE_COORD_ARRAY); |
626 |
glDisableClientState(GL_VERTEX_ARRAY); |
|
761 | 627 |
|
1854 | 628 |
|
629 |
glColor4f(1,1,1,1); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
630 |
|
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
809
diff
changeset
|
631 |
glPopMatrix |
4 | 632 |
end; |
633 |
||
1431 | 634 |
procedure DrawFillRect(r: TSDL_Rect); |
1916 | 635 |
var VertexBuffer: array [0..3] of TVertex2f; |
1431 | 636 |
begin |
637 |
glDisable(GL_TEXTURE_2D); |
|
638 |
||
639 |
glColor4ub(0, 0, 0, 127); |
|
640 |
||
1916 | 641 |
VertexBuffer[0].X:= r.x; |
642 |
VertexBuffer[0].Y:= r.y; |
|
643 |
VertexBuffer[1].X:= r.x + r.w; |
|
644 |
VertexBuffer[1].Y:= r.y; |
|
645 |
VertexBuffer[2].X:= r.x + r.w; |
|
646 |
VertexBuffer[2].Y:= r.y + r.h; |
|
647 |
VertexBuffer[3].X:= r.x; |
|
648 |
VertexBuffer[3].Y:= r.y + r.h; |
|
1431 | 649 |
|
1916 | 650 |
glEnableClientState(GL_VERTEX_ARRAY); |
651 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
652 |
glDrawArrays(GL_TRIANGLE_FAN, 0, Length(VertexBuffer)); |
|
653 |
glDisableClientState(GL_VERTEX_ARRAY); |
|
1431 | 654 |
|
655 |
glColor4f(1, 1, 1, 1); |
|
656 |
glEnable(GL_TEXTURE_2D) |
|
657 |
end; |
|
658 |
||
4 | 659 |
procedure StoreRelease; |
660 |
var ii: TSprite; |
|
661 |
begin |
|
662 |
for ii:= Low(TSprite) to High(TSprite) do |
|
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
768
diff
changeset
|
663 |
begin |
759 | 664 |
FreeTexture(SpritesData[ii].Texture); |
769
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
768
diff
changeset
|
665 |
if SpritesData[ii].Surface <> nil then SDL_FreeSurface(SpritesData[ii].Surface) |
788efc1d649f
- Save 8 MB of memory by freeing LandSurface and not using it anymore after game initialization
unc0rr
parents:
768
diff
changeset
|
666 |
end; |
761 | 667 |
|
1806 | 668 |
FreeTexture(HHTexture) |
4 | 669 |
end; |
670 |
||
762 | 671 |
function RenderStringTex(s: string; Color: Longword; font: THWFont): PTexture; |
432 | 672 |
var w, h: LongInt; |
351 | 673 |
Result: PSDL_Surface; |
95 | 674 |
begin |
1989 | 675 |
if length(s) = 0 then s:= ' '; |
355 | 676 |
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(s), w, h); |
785 | 677 |
|
762 | 678 |
Result:= SDL_CreateRGBSurface(SDL_SWSURFACE, w + FontBorder * 2 + 4, h + FontBorder * 2, |
679 |
32, RMask, GMask, BMask, AMask); |
|
785 | 680 |
|
107 | 681 |
TryDo(Result <> nil, 'RenderString: fail to create surface', true); |
785 | 682 |
|
95 | 683 |
WriteInRoundRect(Result, 0, 0, Color, font, s); |
785 | 684 |
|
762 | 685 |
TryDo(SDL_SetColorKey(Result, SDL_SRCCOLORKEY, 0) = 0, errmsgTransparentSet, true); |
785 | 686 |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
687 |
RenderStringTex:= Surface2Tex(Result, false); |
785 | 688 |
|
762 | 689 |
SDL_FreeSurface(Result) |
95 | 690 |
end; |
691 |
||
2017 | 692 |
function RenderSpeechBubbleTex(s: string; SpeechType: Longword; font: THWFont): PTexture; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
693 |
var textWidth, textHeight, x, y, w, h, i, j, pos, prevpos, line, numLines, edgeWidth, edgeHeight, cornerWidth, cornerHeight: LongInt; |
2017 | 694 |
Result, tmpsurf, rotatedEdge: PSDL_Surface; |
695 |
rect: TSDL_Rect; |
|
696 |
chars: TSysCharSet = [#9,' ','.',';',':','?','!',',']; |
|
697 |
substr: shortstring; |
|
698 |
edge, corner, tail: TSPrite; |
|
699 |
begin |
|
700 |
||
701 |
case SpeechType of |
|
702 |
1: begin; |
|
703 |
edge:= sprSpeechEdge; |
|
704 |
corner:= sprSpeechCorner; |
|
705 |
tail:= sprSpeechTail; |
|
706 |
end; |
|
707 |
2: begin; |
|
708 |
edge:= sprThoughtEdge; |
|
709 |
corner:= sprThoughtCorner; |
|
710 |
tail:= sprThoughtTail; |
|
711 |
end; |
|
712 |
3: begin; |
|
713 |
edge:= sprShoutEdge; |
|
714 |
corner:= sprShoutCorner; |
|
715 |
tail:= sprShoutTail; |
|
716 |
end; |
|
717 |
end; |
|
718 |
edgeHeight:= SpritesData[edge].Height; |
|
719 |
edgeWidth:= SpritesData[edge].Width; |
|
720 |
cornerWidth:= SpritesData[corner].Width; |
|
721 |
cornerHeight:= SpritesData[corner].Height; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
722 |
// This one screws up WrapText |
2022 | 723 |
//s:= 'This is the song that never ends. ''cause it goes on and on my friends. Some people, started singing it not knowing what it was. And they''ll just go on singing it forever just because... This is the song that never ends...'; |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2153
diff
changeset
|
724 |
// This one does not |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
725 |
//s:= 'This is the song that never ends. cause it goes on and on my friends. Some people, started singing it not knowing what it was. And they will go on singing it forever just because... This is the song that never ends... '; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
726 |
|
2022 | 727 |
numLines:= 0; |
2017 | 728 |
|
729 |
if length(s) = 0 then s:= '...'; |
|
730 |
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(s), w, h); |
|
2332
351abbbb12f3
Lower bound on speech text width for proper rendering
nemo
parents:
2292
diff
changeset
|
731 |
if w<8 then w:= 8; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
732 |
j:= 0; |
2017 | 733 |
if (length(s) > 20) then |
734 |
begin |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
735 |
w:= 0; |
2017 | 736 |
i:= round(Sqrt(length(s)) * 2); |
737 |
s:= WrapText(s, #1, chars, i); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
738 |
pos:= 1; prevpos:= 0; line:= 0; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
739 |
// Find the longest line for the purposes of centring the text. Font dependant. |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
740 |
while pos <= length(s) do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
741 |
begin |
2017 | 742 |
if (s[pos] = #1) or (pos = length(s)) then |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
743 |
begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
744 |
inc(numlines); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
745 |
if s[pos] <> #1 then inc(pos); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
746 |
while s[prevpos+1] = ' ' do inc(prevpos); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
747 |
substr:= copy(s, prevpos+1, pos-prevpos-1); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
748 |
i:= 0; j:= 0; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
749 |
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(substr), i, j); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
750 |
if i > w then w:= i; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
751 |
prevpos:= pos; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
752 |
end; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
753 |
inc(pos); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
754 |
end; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
755 |
end |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
756 |
else numLines := 1; |
2017 | 757 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
758 |
textWidth:=((w-(cornerWidth-edgeWidth)*2) div edgeWidth)*edgeWidth+edgeWidth; |
2022 | 759 |
textHeight:=(((numlines * h + 2)-((cornerHeight-edgeWidth)*2)) div edgeWidth)*edgeWidth; |
2019 | 760 |
|
2022 | 761 |
textHeight:=max(textHeight,edgeWidth); |
2017 | 762 |
//textWidth:=max(textWidth,SpritesData[tail].Width); |
763 |
rect.x:= 0; |
|
764 |
rect.y:= 0; |
|
2022 | 765 |
rect.w:= textWidth + (cornerWidth * 2); |
766 |
rect.h:= textHeight + cornerHeight*2 - edgeHeight + SpritesData[tail].Height; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
767 |
//s:= inttostr(w) + ' ' + inttostr(numlines) + ' ' + inttostr(rect.x) + ' '+inttostr(rect.y) + ' ' + inttostr(rect.w) + ' ' + inttostr(rect.h); |
2017 | 768 |
|
769 |
Result:= SDL_CreateRGBSurface(SDL_SWSURFACE, rect.w, rect.h, 32, RMask, GMask, BMask, AMask); |
|
770 |
||
771 |
TryDo(Result <> nil, 'RenderString: fail to create surface', true); |
|
772 |
||
773 |
//////////////////////////////// CORNERS /////////////////////////////// |
|
774 |
copyToXY(SpritesData[corner].Surface, Result, 0, 0); /////////////////// NW |
|
775 |
||
776 |
flipSurface(SpritesData[corner].Surface, true); // store all 4 versions in memory to avoid repeated flips? |
|
777 |
x:= 0; |
|
778 |
y:= textHeight + cornerHeight -1; |
|
779 |
copyToXY(SpritesData[corner].Surface, Result, x, y); /////////////////// SW |
|
780 |
||
781 |
flipSurface(SpritesData[corner].Surface, false); |
|
782 |
x:= rect.w-cornerWidth-1; |
|
783 |
y:= textHeight + cornerHeight -1; |
|
784 |
copyToXY(SpritesData[corner].Surface, Result, x, y); /////////////////// SE |
|
785 |
||
786 |
flipSurface(SpritesData[corner].Surface, true); |
|
787 |
x:= rect.w-cornerWidth-1; |
|
788 |
y:= 0; |
|
789 |
copyToXY(SpritesData[corner].Surface, Result, x, y); /////////////////// NE |
|
790 |
flipSurface(SpritesData[corner].Surface, false); // restore original position |
|
791 |
//////////////////////////////// END CORNERS /////////////////////////////// |
|
792 |
||
793 |
//////////////////////////////// EDGES ////////////////////////////////////// |
|
794 |
x:= cornerWidth; |
|
795 |
y:= 0; |
|
796 |
while x < rect.w-cornerWidth-1 do |
|
797 |
begin |
|
798 |
copyToXY(SpritesData[edge].Surface, Result, x, y); ///////////////// top edge |
|
799 |
inc(x,edgeWidth); |
|
800 |
end; |
|
801 |
flipSurface(SpritesData[edge].Surface, true); |
|
802 |
x:= cornerWidth; |
|
803 |
y:= textHeight + cornerHeight*2 - edgeHeight-1; |
|
804 |
while x < rect.w-cornerWidth-1 do |
|
805 |
begin |
|
806 |
copyToXY(SpritesData[edge].Surface, Result, x, y); ///////////////// bottom edge |
|
807 |
inc(x,edgeWidth); |
|
808 |
end; |
|
809 |
flipSurface(SpritesData[edge].Surface, true); // restore original position |
|
810 |
||
811 |
rotatedEdge:= SDL_CreateRGBSurface(SDL_SWSURFACE, edgeHeight, edgeWidth, 32, RMask, GMask, BMask, AMask); |
|
812 |
x:= rect.w - edgeHeight - 1; |
|
813 |
y:= cornerHeight; |
|
814 |
//// initially was going to rotate in place, but the SDL spec claims width/height are read only |
|
815 |
copyRotatedSurface(SpritesData[edge].Surface,rotatedEdge); |
|
816 |
while y < textHeight + cornerHeight do |
|
817 |
begin |
|
818 |
copyToXY(rotatedEdge, Result, x, y); |
|
819 |
inc(y,edgeWidth); |
|
820 |
end; |
|
821 |
flipSurface(rotatedEdge, false); // restore original position |
|
822 |
x:= 0; |
|
823 |
y:= cornerHeight; |
|
824 |
while y < textHeight + cornerHeight do |
|
825 |
begin |
|
826 |
copyToXY(rotatedEdge, Result, x, y); |
|
827 |
inc(y,edgeWidth); |
|
828 |
end; |
|
829 |
//////////////////////////////// END EDGES ////////////////////////////////////// |
|
830 |
||
831 |
x:= cornerWidth; |
|
832 |
y:= textHeight + cornerHeight * 2 - edgeHeight - 1; |
|
833 |
copyToXY(SpritesData[tail].Surface, Result, x, y); |
|
834 |
||
835 |
rect.x:= edgeHeight; |
|
836 |
rect.y:= edgeHeight; |
|
837 |
rect.w:= rect.w - edgeHeight * 2; |
|
838 |
rect.h:= textHeight + cornerHeight * 2 - edgeHeight * 2; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
839 |
i:= rect.w; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
840 |
j:= rect.h; |
2017 | 841 |
SDL_FillRect(Result, @rect, cWhiteColor); |
842 |
||
843 |
pos:= 1; prevpos:= 0; line:= 0; |
|
844 |
while pos <= length(s) do |
|
845 |
begin |
|
846 |
if (s[pos] = #1) or (pos = length(s)) then |
|
847 |
begin |
|
848 |
if s[pos] <> #1 then inc(pos); |
|
849 |
while s[prevpos+1] = ' 'do inc(prevpos); |
|
850 |
substr:= copy(s, prevpos+1, pos-prevpos-1); |
|
851 |
if Length(substr) <> 0 then |
|
852 |
begin |
|
853 |
tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, Str2PChar(substr), cColorNearBlack); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
854 |
rect.x:= edgeHeight + 1 + ((i - w) div 2); |
2022 | 855 |
// trying to more evenly position the text, vertically |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2022
diff
changeset
|
856 |
rect.y:= edgeHeight + ((j-(numLines*h)) div 2) + line * h; |
2017 | 857 |
SDLTry(tmpsurf <> nil, true); |
858 |
SDL_UpperBlit(tmpsurf, nil, Result, @rect); |
|
859 |
SDL_FreeSurface(tmpsurf); |
|
860 |
inc(line); |
|
861 |
prevpos:= pos; |
|
862 |
end; |
|
863 |
end; |
|
864 |
inc(pos); |
|
865 |
end; |
|
866 |
||
867 |
//TryDo(SDL_SetColorKey(Result, SDL_SRCCOLORKEY, 0) = 0, errmsgTransparentSet, true); |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
868 |
RenderSpeechBubbleTex:= Surface2Tex(Result, false); |
2017 | 869 |
|
870 |
SDL_FreeSurface(rotatedEdge); |
|
871 |
SDL_FreeSurface(Result) |
|
872 |
end; |
|
873 |
||
4 | 874 |
procedure RenderHealth(var Hedgehog: THedgehog); |
95 | 875 |
var s: shortstring; |
4 | 876 |
begin |
351 | 877 |
str(Hedgehog.Gear^.Health, s); |
762 | 878 |
if Hedgehog.HealthTagTex <> nil then FreeTexture(Hedgehog.HealthTagTex); |
879 |
Hedgehog.HealthTagTex:= RenderStringTex(s, Hedgehog.Team^.Clan^.Color, fnt16) |
|
4 | 880 |
end; |
881 |
||
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
882 |
function LoadImage(const filename: string; imageFlags: Integer): PSDL_Surface; |
30 | 883 |
var tmpsurf: PSDL_Surface; |
355 | 884 |
s: shortstring; |
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
885 |
{$IFDEF IPHONEOS} |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
886 |
convertedSurf: PSDL_Surface; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
887 |
const TestFormat: TSDL_PixelFormat = ( |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
888 |
palette: nil; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
889 |
BitsPerPixel : 32; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
890 |
BytesPerPixel: 4; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
891 |
Rloss : 0; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
892 |
Gloss : 0; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
893 |
Bloss : 0; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
894 |
Aloss : 0; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
895 |
Rshift: 0; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
896 |
Gshift: 8; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
897 |
Bshift: 16; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
898 |
Ashift: 24; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
899 |
RMask : $000000FF; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
900 |
GMask : $0000FF00; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
901 |
BMask : $00FF0000; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
902 |
AMask : $FF000000; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
903 |
colorkey: 0; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
904 |
alpha : 255); |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
905 |
{$ENDIF} |
4 | 906 |
begin |
907 |
WriteToConsole(msgLoading + filename + '... '); |
|
355 | 908 |
s:= filename + '.' + cBitsStr + '.png'; |
909 |
tmpsurf:= IMG_Load(Str2PChar(s)); |
|
2254 | 910 |
|
74 | 911 |
if tmpsurf = nil then |
351 | 912 |
begin |
355 | 913 |
s:= filename + '.png'; |
914 |
tmpsurf:= IMG_Load(Str2PChar(s)); |
|
351 | 915 |
end; |
80 | 916 |
|
2244
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
917 |
if ((imageFlags and ifLowRes) <> 0) then |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
918 |
begin |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
919 |
s:= filename + '-lowres.png'; |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
920 |
if (tmpsurf <> nil) then |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
921 |
begin |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
922 |
if ((tmpsurf^.w > MaxTextureSize) or (tmpsurf^.h > MaxTextureSize)) then |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
923 |
begin |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
924 |
WriteLnToConsole('Image too big, trying to load lowres version: ' + s); |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
925 |
tmpsurf:= IMG_Load(Str2PChar(s)) |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
926 |
end; |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
927 |
end |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
928 |
else |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
929 |
begin |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
930 |
WriteLnToConsole('Image not found, trying to load lowres version: ' + s); |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
931 |
tmpsurf:= IMG_Load(Str2PChar(s)) |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
932 |
end; |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
933 |
end; |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
934 |
|
80 | 935 |
if tmpsurf = nil then |
2153 | 936 |
begin |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
937 |
OutError(msgFailed, (imageFlags and ifCritical) <> 0); |
2153 | 938 |
exit(nil) |
939 |
end; |
|
940 |
||
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
941 |
if ((imageFlags and ifIgnoreCaps) = 0) and ((tmpsurf^.w > MaxTextureSize) or (tmpsurf^.h > MaxTextureSize)) then |
2153 | 942 |
begin |
2244
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
943 |
SDL_FreeSurface(tmpsurf); |
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
944 |
OutError(msgFailedSize, (imageFlags and ifCritical) <> 0); |
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
945 |
//dummy surface to replace non-critical textures that failed to load due to their size |
2244
853a1db1cff6
routine for loading lower resolution horizont and sky for nature theme when bigger images are not supported; right now they are not installed, but they could be useful for less powerful machines in general
koda
parents:
2240
diff
changeset
|
946 |
exit(SDL_CreateRGBSurface(SDL_SWSURFACE, 32, 32, 32, RMask, GMask, BMask, AMask)); |
2153 | 947 |
end; |
351 | 948 |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
949 |
if (imageFlags and ifTransparent) <> 0 then TryDo(SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY, 0) = 0, errmsgTransparentSet, true); |
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
950 |
//if (imageFlags and ifAlpha) <> 0 then Result:= SDL_DisplayFormatAlpha(tmpsurf) else Result:= SDL_DisplayFormat(tmpsurf); |
2153 | 951 |
WriteLnToConsole('(' + inttostr(tmpsurf^.w) + ',' + inttostr(tmpsurf^.h) + ') '); |
351 | 952 |
WriteLnToConsole(msgOK); |
2153 | 953 |
|
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
954 |
{$IFDEF IPHONEOS} |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
955 |
//for more information http://www.idevgames.com/forum/showpost.php?p=85864&postcount=7 |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
956 |
convertedSurf:= SDL_ConvertSurface(tmpsurf, @TestFormat, SDL_SWSURFACE); |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
957 |
tmpsurf:= convertedSurf; |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
958 |
{$ENDIF} |
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2244
diff
changeset
|
959 |
|
2153 | 960 |
LoadImage:= tmpsurf //Result |
753 | 961 |
end; |
962 |
||
963 |
procedure SetupOpenGL; |
|
964 |
begin |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
965 |
SetScale(2.0); |
2252 | 966 |
|
756 | 967 |
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); |
2153 | 968 |
glMatrixMode(GL_MODELVIEW); |
969 |
||
970 |
glGetIntegerv(GL_MAX_TEXTURE_SIZE, @MaxTextureSize); |
|
971 |
{$IFDEF DEBUGFILE} |
|
972 |
AddFileLog('GL_MAX_TEXTURE_SIZE: ' + inttostr(MaxTextureSize)); |
|
973 |
{$ENDIF} |
|
2252 | 974 |
|
4 | 975 |
end; |
976 |
||
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
977 |
procedure SetScale(f: GLfloat); |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
978 |
begin |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
979 |
cScaleFactor:= f; |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
980 |
|
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
981 |
glLoadIdentity; |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
982 |
glViewport(0, 0, cScreenWidth, cScreenHeight); |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
983 |
glScalef(f / cScreenWidth, -f / cScreenHeight, 1.0); |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
984 |
//glTranslatef(-cScreenWidth / 2, -cScreenHeight / 2, 0); |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
985 |
glTranslatef(0, -cScreenHeight / 2, 0); |
2258 | 986 |
|
987 |
// glTranslatex(320, 0, 0); |
|
988 |
// glRotatef(90.0, 0.0, 0.0, 1.0); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
989 |
end; |
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
990 |
|
510 | 991 |
//////////////////////////////////////////////////////////////////////////////// |
766 | 992 |
var ProgrTex: PTexture = nil; |
534 | 993 |
Step: integer = 0; |
2222 | 994 |
squaresize : LongInt; |
995 |
numsquares : integer; |
|
2284 | 996 |
|
510 | 997 |
procedure AddProgress; |
998 |
var r: TSDL_Rect; |
|
766 | 999 |
texsurf: PSDL_Surface; |
510 | 1000 |
begin |
1001 |
if Step = 0 then |
|
1002 |
begin |
|
1003 |
WriteToConsole(msgLoading + 'progress sprite: '); |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2161
diff
changeset
|
1004 |
texsurf:= LoadImage(Pathz[ptGraphics] + '/Progress', ifCritical or ifTransparent); |
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2285
diff
changeset
|
1005 |
ProgrTex:= Surface2Tex(texsurf, false); |
2222 | 1006 |
SDL_FreeSurface(texsurf); |
1007 |
squaresize:= ProgrTex^.w shr 1; |
|
1008 |
numsquares:= ProgrTex^.h div squaresize; |
|
510 | 1009 |
end; |
1045 | 1010 |
|
2284 | 1011 |
TryDo(ProgrTex <> nil, 'ProgrTex = nil!', true); |
1012 |
||
766 | 1013 |
glClear(GL_COLOR_BUFFER_BIT); |
775 | 1014 |
glEnable(GL_TEXTURE_2D); |
2222 | 1015 |
if Step < numsquares then r.x:= 0 |
1016 |
else r.x:= squaresize; |
|
1017 |
r.y:= (Step mod numsquares) * squaresize; |
|
1018 |
r.w:= squaresize; |
|
1019 |
r.h:= squaresize; |
|
1020 |
DrawFromRect( -squaresize div 2, (cScreenHeight - squaresize) shr 1, @r, ProgrTex); |
|
775 | 1021 |
glDisable(GL_TEXTURE_2D); |
766 | 1022 |
SDL_GL_SwapBuffers(); |
510 | 1023 |
inc(Step); |
1024 |
end; |
|
1025 |
||
2222 | 1026 |
|
510 | 1027 |
procedure FinishProgress; |
1028 |
begin |
|
1029 |
WriteLnToConsole('Freeing progress surface... '); |
|
2284 | 1030 |
FreeTexture(ProgrTex); |
1031 |
ProgrTex:= nil |
|
510 | 1032 |
end; |
1033 |
||
2017 | 1034 |
procedure flipSurface(Surface: PSDL_Surface; Vertical: Boolean); |
1035 |
var y, x, i, j: LongInt; |
|
1036 |
tmpPixel: Longword; |
|
1037 |
pixels: PLongWordArray; |
|
1038 |
begin |
|
1039 |
TryDo(Surface^.format^.BytesPerPixel = 4, 'flipSurface failed, expecting 32 bit surface', true); |
|
1040 |
pixels:= Surface^.pixels; |
|
1041 |
if Vertical then |
|
1042 |
for y := 0 to (Surface^.h div 2) - 1 do |
|
1043 |
for x := 0 to Surface^.w - 1 do |
|
1044 |
begin |
|
1045 |
i:= y * Surface^.w + x; |
|
1046 |
j:= (Surface^.h - y - 1) * Surface^.w + x; |
|
1047 |
tmpPixel:= pixels^[i]; |
|
1048 |
pixels^[i]:= pixels^[j]; |
|
1049 |
pixels^[j]:= tmpPixel; |
|
1050 |
end |
|
1051 |
else |
|
1052 |
for x := 0 to (Surface^.w div 2) - 1 do |
|
1053 |
for y := 0 to Surface^.h -1 do |
|
1054 |
begin |
|
1055 |
i:= y*Surface^.w + x; |
|
1056 |
j:= y*Surface^.w + (Surface^.w - x - 1); |
|
1057 |
tmpPixel:= pixels^[i]; |
|
1058 |
pixels^[i]:= pixels^[j]; |
|
1059 |
pixels^[j]:= tmpPixel; |
|
1060 |
end; |
|
1061 |
end; |
|
1062 |
||
1063 |
procedure copyToXY(src, dest: PSDL_Surface; destX, destY: Integer); |
|
1064 |
var srcX, srcY, i, j, maxDest: LongInt; |
|
1065 |
srcPixels, destPixels: PLongWordArray; |
|
1066 |
begin |
|
1067 |
maxDest:= (dest^.pitch div 4) * dest^.h; |
|
1068 |
srcPixels:= src^.pixels; |
|
1069 |
destPixels:= dest^.pixels; |
|
1070 |
||
1071 |
for srcX:= 0 to src^.w - 1 do |
|
1072 |
for srcY:= 0 to src^.h - 1 do |
|
1073 |
begin |
|
1074 |
i:= (destY + srcY) * (dest^.pitch div 4) + destX + srcX; |
|
1075 |
j:= srcY * (src^.pitch div 4) + srcX; |
|
1076 |
// basic skip of transparent pixels - cleverness would be to do true alpha |
|
1077 |
if (i < maxDest) and ($FF000000 and srcPixels^[j] <> 0) then destPixels^[i]:= srcPixels^[j]; |
|
1078 |
end; |
|
1079 |
end; |
|
1080 |
||
1081 |
procedure copyRotatedSurface(src, dest: PSDL_Surface); // this is necessary since width/height are read only in SDL, apparently |
|
1082 |
var y, x, i, j: LongInt; |
|
1083 |
srcPixels, destPixels: PLongWordArray; |
|
1084 |
begin |
|
1085 |
TryDo(src^.format^.BytesPerPixel = 4, 'rotateSurface failed, expecting 32 bit surface', true); |
|
1086 |
TryDo(dest^.format^.BytesPerPixel = 4, 'rotateSurface failed, expecting 32 bit surface', true); |
|
1087 |
||
1088 |
srcPixels:= src^.pixels; |
|
1089 |
destPixels:= dest^.pixels; |
|
1090 |
||
1091 |
j:= 0; |
|
1092 |
for x := 0 to src^.w - 1 do |
|
1093 |
for y := 0 to src^.h - 1 do |
|
1094 |
begin |
|
1095 |
i:= (src^.h - 1 - y) * (src^.pitch div 4) + x; |
|
1096 |
destPixels^[j]:= srcPixels^[i]; |
|
1097 |
inc(j) |
|
1098 |
end; |
|
1099 |
end; |
|
1100 |
||
4 | 1101 |
end. |