2002-11-18 21:37:58 +00:00
|
|
|
#ifndef LOADING_WINDOW_SDL_H
|
|
|
|
|
#define LOADING_WINDOW_SDL_H
|
|
|
|
|
|
|
|
|
|
#include "LoadingWindow.h"
|
|
|
|
|
#include "SDL.h"
|
|
|
|
|
|
2003-11-13 00:39:36 +00:00
|
|
|
#ifdef _XBOX
|
|
|
|
|
#define XFONT_TRUETYPE
|
|
|
|
|
#include <xfont.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-18 21:37:58 +00:00
|
|
|
class LoadingWindow_SDL: public LoadingWindow {
|
|
|
|
|
SDL_Surface *loading_screen;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
LoadingWindow_SDL();
|
|
|
|
|
~LoadingWindow_SDL();
|
|
|
|
|
|
|
|
|
|
void Paint();
|
2003-11-13 00:39:36 +00:00
|
|
|
|
|
|
|
|
#ifdef _XBOX
|
|
|
|
|
|
|
|
|
|
void SetText(CString str);
|
|
|
|
|
|
|
|
|
|
CString m_cstrText ;
|
|
|
|
|
XFONT* m_pConsoleTTF; // Pointer to the Arial TrueTypeFont
|
|
|
|
|
#endif
|
2002-11-18 21:37:58 +00:00
|
|
|
};
|
|
|
|
|
|
2003-09-08 01:18:14 +00:00
|
|
|
#define HAVE_LOADING_WINDOW_SDL
|
2002-11-18 21:37:58 +00:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Glenn Maynard
|
|
|
|
|
*/
|