1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
unit UDisplay;
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I switches.inc}
uses
ucommon,
SDL,
UMenu,
gl,
glu,
SysUtils;
type
TDisplay = class
private
//fade-to-black-hack
BlackScreen: Boolean;
doFade : Boolean;
canFade : Boolean;
myFade : integer;
lastTime : Cardinal;
pTexData : Pointer;
pTex : array[1..2] of glUInt;
FPSCounter : Cardinal;
LastFPS : Cardinal;
NextFPSSwap : Cardinal;
OSD_LastError : String;
procedure DrawDebugInformation;
public
NextScreen : PMenu;
CurrentScreen : PMenu;
//popup hack
NextScreenWithCheck: Pmenu;
CheckOK : Boolean;
Fade : Real;
constructor Create;
destructor Destroy; override;
procedure SaveScreenShot;
function Draw: Boolean;
end;
var
Display: TDisplay;
implementation
uses
UImage,
TextGL,
ULog,
UMain,
UTexture,
UIni,
UGraphic,
UTime,
UCommandLine;
constructor TDisplay.Create;
var
i: integer;
begin
inherited Create;
//popup hack
CheckOK := False;
NextScreen := NIL;
NextScreenWithCheck := NIL;
BlackScreen := False;
// fade mod
myfade:=0;
if Ini.ScreenFade=1 then
doFade:=True
else
doFade:=False;
canFade:=True;
// generate texture for fading between screens
GetMem(pTexData, 512*512*4);
if pTexData <> NIL then
for i:= 1 to 2 do
begin
glGenTextures(1, @pTex[i] );
if glGetError <> GL_NO_ERROR then
canFade := False;
glBindTexture(GL_TEXTURE_2D, pTex[i]);
if glGetError <> GL_NO_ERROR then
canFade := False;
glTexImage2D(GL_TEXTURE_2D, 0, 4, 512, 512, 0, GL_RGBA, GL_UNSIGNED_BYTE, pTexData);
if glGetError <> GL_NO_ERROR then
canFade := False;
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
if glGetError <> GL_NO_ERROR then
canFade := False;
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
if glGetError <> GL_NO_ERROR then
canFade := False;
end
else
begin
canFade:=False;
end;
FreeMem(pTexData);
//Set LastError for OSD to No Error
OSD_LastError := 'No Errors';
end;
destructor TDisplay.Destroy;
begin
if canFade then
glDeleteTextures(1,@pTex);
inherited Destroy;
end;
function TDisplay.Draw: Boolean;
var
S: integer;
Col: Real;
myFade2: Real;
currentTime: Cardinal;
glError: glEnum;
glErrorStr: String;
begin
Result := True;
Col := 1;
{if (ParamStr(1) = '-black') or (ParamStr(1) = '-fsblack') then
Col := 0; }
glClearColor(Col, Col, Col , 0);
glClear(GL_COLOR_BUFFER_BIT or GL_DEPTH_BUFFER_BIT);
for S := 1 to Screens do begin
ScreenAct := S;
// if Screens = 1 then ScreenX := 0;
// if (Screens = 2) and (S = 1) then ScreenX := -1;
// if (Screens = 2) and (S = 2) then ScreenX := 1;
ScreenX := 0;
if S = 2 then TimeSkip := 0 else;
glViewPort((S-1) * ScreenW div Screens, 0, ScreenW div Screens, ScreenH);
//popup hack
// check was successful... move on
if CheckOK then
begin
if assigned (NextScreenWithCheck)then
begin
NextScreen:=NextScreenWithCheck;
NextScreenWithCheck := NIL;
CheckOk:=False;
end
else
begin
BlackScreen:=True; // end of game - fade to black before exit
end;
end;
// CurrentScreen.SetAnimationProgress(1);
if (not assigned (NextScreen)) and (not BlackScreen) then
begin
CurrentScreen.Draw;
//popup mod
if (ScreenPopupError <> NIL) and ScreenPopupError.Visible then
ScreenPopupError.Draw
else if (ScreenPopupCheck <> NIL) and ScreenPopupCheck.Visible then
ScreenPopupCheck.Draw;
// fade mod
myfade:=0;
if (Ini.ScreenFade=1) and canFade then
doFade:=True
else if Ini.ScreenFade=0 then
doFade:=False;
end
else
begin
// check if we had an initialization error (canfade=false, dofade=true)
if doFade and not canFade then
begin
doFade:=False; //disable fading
// ScreenPopupError.ShowPopup('Error initializing\nfade texture\n\nfading\ndisabled'); //show error message
end;
if doFade and canFade then
begin
// fade mod
//Create Fading texture if we're just starting
if myfade = 0 then
begin
glViewPort(0, 0, 512, 512);
CurrentScreen.Draw;
glBindTexture(GL_TEXTURE_2D, pTex[S]);
glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 0, 0, 512, 512, 0);
glError:=glGetError;
if (glError <> GL_NO_ERROR) then
begin
canFade := False;
glErrorStr := gluErrorString(glError);
// ScreenPopupError.ShowPopup('Error copying\nfade texture\n('+glErrorStr+')\nfading\ndisabled'); //show error message
end;
glViewPort((S-1) * ScreenW div Screens, 0, ScreenW div Screens, ScreenH);
// blackscreen-hack
if not BlackScreen then
NextScreen.onShow;
lastTime:=SDL_GetTicks();
if (S=2) or (Screens = 1) then
myfade:=myfade+1;
end; // end texture creation in first fading step
//do some time-based fading
currentTime:=SDL_GetTicks();
if (currentTime > lastTime+30) and (S=1) then
begin
myfade:=myfade+4;
lastTime:=currentTime;
end;
// LastFade := Fade; // whatever
// Fade := Fade -0.999; // start fading out
// CurrentScreen.ShowFinish := false; // no purpose?
// CurrentScreen.SetAnimationProgress(Fade-1); // nop?
// blackscreen-hack
if not BlackScreen then
NextScreen.Draw // draw next screen
else if ScreenAct=1 then
begin
glClearColor(0, 0, 0 , 0);
glClear(GL_COLOR_BUFFER_BIT or GL_DEPTH_BUFFER_BIT);
end;
// and draw old screen over it... slowly fading out
myfade2:=(myfade*myfade)/10000;
glBindTexture(GL_TEXTURE_2D, pTex[S]);
glColor4f(1, 1, 1, (1000-myfade*myfade)/1000); // strange calculation - alpha gets negative... but looks good this way
glEnable(GL_TEXTURE_2D);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
glBegin(GL_QUADS);
glTexCoord2f(0+myfade2,0+myfade2);glVertex2f(0, 600);
glTexCoord2f(0+myfade2,1-myfade2);glVertex2f(0, 0);
glTexCoord2f(1-myfade2,1-myfade2);glVertex2f(800, 0);
glTexCoord2f(1-myfade2,0+myfade2);glVertex2f(800, 600);
glEnd;
glDisable(GL_BLEND);
glDisable(GL_TEXTURE_2D);
end
// blackscreen hack
else if not BlackScreen then
begin
NextScreen.OnShow;
end;
if ((myfade > 40) or (not doFade) or (not canFade)) And (S = 1) then
begin // fade out complete...
myFade:=0;
CurrentScreen.onHide;
CurrentScreen.ShowFinish:=False;
CurrentScreen:=NextScreen;
NextScreen := nil;
if not blackscreen then
begin
CurrentScreen.onShowFinish;
CurrentScreen.ShowFinish := true;
end
else
begin
Result:=False;
Break;
end;
// end of fade mod
end;
end; // if
//Draw OSD only on first Screen if Debug Mode is enabled
if ((Ini.Debug = 1) or (Params.Debug)) and (S=1) then
DrawDebugInformation;
end; // for
// SDL_GL_SwapBuffers();
end;
{function TDisplay.Fade(FadeIn : Boolean; Steps : UInt8): UInt8;
begin
Self.FadeIn := FadeIn;
FadeStep := (SizeOf(FadeStep) * $FF) div Steps;
ActualStep := $FF;
Result := $FF div FadeStep;
end;}
procedure TDisplay.SaveScreenShot;
var
Num: integer;
FileName: string;
ScreenData: PChar;
Surface: PSDL_Surface;
Success: boolean;
Align: integer;
RowSize: integer;
begin
for Num := 1 to 9999 do
begin
FileName := IntToStr(Num);
while Length(FileName) < 4 do
FileName := '0' + FileName;
FileName := ScreenshotsPath + 'screenshot' + FileName + '.png';
if not FileExists(FileName) then
break
end;
// we must take the row-alignment (4byte by default) into account
glGetIntegerv(GL_PACK_ALIGNMENT, @Align);
// calc aligned row-size
RowSize := ((ScreenW*3 + (Align-1)) div Align) * Align;
GetMem(ScreenData, RowSize * ScreenH);
glReadPixels(0, 0, ScreenW, ScreenH, GL_RGB, GL_UNSIGNED_BYTE, ScreenData);
Surface := SDL_CreateRGBSurfaceFrom(
ScreenData, ScreenW, ScreenH, 24, RowSize,
$0000FF, $00FF00, $FF0000, 0);
//Success := WriteJPGImage(FileName, Surface, 95);
//Success := WriteBMPImage(FileName, Surface);
Success := WritePNGImage(FileName, Surface);
if Success then
ScreenPopupError.ShowPopup('Screenshot saved: ' + ExtractFileName(FileName))
else
ScreenPopupError.ShowPopup('Screenshot failed');
SDL_FreeSurface(Surface);
FreeMem(ScreenData);
end;
//------------
// DrawDebugInformation - Procedure draw FPS and some other Informations on Screen
//------------
procedure TDisplay.DrawDebugInformation;
var Ticks: Cardinal;
begin
//Some White Background for information
glEnable(GL_BLEND);
glDisable(GL_TEXTURE_2D);
glColor4f(1, 1, 1, 0.5);
glBegin(GL_QUADS);
glVertex2f(690, 44);
glVertex2f(690, 0);
glVertex2f(800, 0);
glVertex2f(800, 44);
glEnd;
glDisable(GL_BLEND);
//Set Font Specs
SetFontStyle(0);
SetFontSize(7);
SetFontItalic(False);
glColor4f(0, 0, 0, 1);
//Calculate FPS
Ticks := SDL_GetTicks();
if (Ticks >= NextFPSSwap) then
begin
LastFPS := FPSCounter * 4;
FPSCounter := 0;
NextFPSSwap := Ticks + 250;
end;
Inc(FPSCounter);
//Draw Text
//FPS
SetFontPos(695, 0);
glPrint (PChar('FPS: ' + InttoStr(LastFPS)));
//RSpeed
SetFontPos(695, 13);
glPrint (PChar('RSpeed: ' + InttoStr(Round(1000 * TimeMid))));
//LastError
SetFontPos(695, 26);
glColor4f(1, 0, 0, 1);
glPrint (PChar(OSD_LastError));
glColor4f(1, 1, 1, 1);
end;
end.
|