aboutsummaryrefslogblamecommitdiffstats
path: root/Game/Code/Screens/UScreenLoading.pas
blob: 989461f25f9b7d0c4e1f6b7e5f07587733483e2d (plain) (tree)
1
2
3
4
5
6
7



                     

                  
     




            




                                
                                    


                                                                                                             



               

               





                                                                                                         
                                   
      
                    
 
                                








                                 




                                             
     
unit UScreenLoading;

interface

{$I switches.inc}

uses
  UMenu,
  SDL,
  SysUtils,
  UThemes,
  OpenGL12;

type
  TScreenLoading = class(TMenu)
    public
      Fadeout:      boolean;
      constructor Create; override;
      procedure   onShow; override;
      function    ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean; override;
      function    GetBGTexNum: GLUInt;
  end;

implementation

uses UGraphic,
     UTime;

function TScreenLoading.ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean;
begin
  Result := true;
end;

constructor TScreenLoading.Create;
begin
  inherited Create;

  LoadFromTheme(Theme.Loading);

  Fadeout := false;
end;

procedure TScreenLoading.onShow;
begin
// nothing
end;

function TScreenLoading.GetBGTexNum: GLUInt;
begin
  Result := Self.BackImg.TexNum;
end;

end.