aboutsummaryrefslogtreecommitdiffstats
path: root/src/Screens/UScreenLoading.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/Screens/UScreenLoading.pas')
-rw-r--r--src/Screens/UScreenLoading.pas57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/Screens/UScreenLoading.pas b/src/Screens/UScreenLoading.pas
new file mode 100644
index 00000000..ee3c6f7f
--- /dev/null
+++ b/src/Screens/UScreenLoading.pas
@@ -0,0 +1,57 @@
+unit UScreenLoading;
+
+interface
+
+{$IFDEF FPC}
+ {$MODE Delphi}
+{$ENDIF}
+
+{$I switches.inc}
+
+uses
+ UMenu,
+ SDL,
+ SysUtils,
+ UThemes,
+ gl;
+
+type
+ TScreenLoading = class(TMenu)
+ public
+ Fadeout: boolean;
+ constructor Create; override;
+ procedure onShow; override;
+ function ParseInput(PressedKey: Cardinal; CharCode: WideChar; PressedDown: Boolean): Boolean; override;
+ function GetBGTexNum: GLUInt;
+ end;
+
+implementation
+
+uses UGraphic,
+ UTime;
+
+function TScreenLoading.ParseInput(PressedKey: Cardinal; CharCode: WideChar; PressedDown: Boolean): Boolean;
+begin
+ Result := true;
+end;
+
+constructor TScreenLoading.Create;
+begin
+ inherited Create;
+
+ LoadFromTheme(Theme.Loading);
+
+ Fadeout := false;
+end;
+
+procedure TScreenLoading.onShow;
+begin
+ inherited;
+end;
+
+function TScreenLoading.GetBGTexNum: GLUInt;
+begin
+ Result := Self.BackImg.TexNum;
+end;
+
+end.