This commit is contained in:
parent
ffa9080e78
commit
25a557744e
7 changed files with 19 additions and 3 deletions
BIN
Graphics/backdrop/start1.tga
Normal file
BIN
Graphics/backdrop/start1.tga
Normal file
Binary file not shown.
After Width: | Height: | Size: 384 KiB |
BIN
Graphics/backdrop/start2.tga
Normal file
BIN
Graphics/backdrop/start2.tga
Normal file
Binary file not shown.
After Width: | Height: | Size: 384 KiB |
BIN
Graphics/backdrop/start3.tga
Normal file
BIN
Graphics/backdrop/start3.tga
Normal file
Binary file not shown.
After Width: | Height: | Size: 384 KiB |
BIN
Graphics/backdrop/start4.tga
Normal file
BIN
Graphics/backdrop/start4.tga
Normal file
Binary file not shown.
After Width: | Height: | Size: 384 KiB |
|
@ -36,7 +36,10 @@ sfx/ingame.vb
|
||||||
sfx/ingame.vh
|
sfx/ingame.vh
|
||||||
demo/demo____.dmo
|
demo/demo____.dmo
|
||||||
backdrop/credits.gfx
|
backdrop/credits.gfx
|
||||||
backdrop/start.gfx
|
backdrop/start1.gfx
|
||||||
|
backdrop/start2.gfx
|
||||||
|
backdrop/start3.gfx
|
||||||
|
backdrop/start4.gfx
|
||||||
loadingscreens/culture.gfx
|
loadingscreens/culture.gfx
|
||||||
loadingscreens/karate.gfx
|
loadingscreens/karate.gfx
|
||||||
loadingscreens/monitor.gfx
|
loadingscreens/monitor.gfx
|
||||||
|
|
|
@ -353,7 +353,7 @@ GFX_DATA_OUT += $(TRANS_OUT_DAT)
|
||||||
# Big TGA backdrops
|
# Big TGA backdrops
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
BACKDROPS_IN_DIR := $(GRAF_DIR)/backdrop
|
BACKDROPS_IN_DIR := $(GRAF_DIR)/backdrop
|
||||||
BACKDROPS_IN := credits start
|
BACKDROPS_IN := credits start1 start2 start3 start4
|
||||||
|
|
||||||
BACKDROPS_OUT_DIR := $(DATA_OUT)/backdrop
|
BACKDROPS_OUT_DIR := $(DATA_OUT)/backdrop
|
||||||
BACKDROPS_OUT := $(foreach SCREEN,$(BACKDROPS_IN),$(BACKDROPS_OUT_DIR)/$(SCREEN).gfx)
|
BACKDROPS_OUT := $(foreach SCREEN,$(BACKDROPS_IN),$(BACKDROPS_OUT_DIR)/$(SCREEN).gfx)
|
||||||
|
|
|
@ -66,6 +66,10 @@
|
||||||
#include "frontend\frontend.h"
|
#include "frontend\frontend.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef __UTILS_HEADER__
|
||||||
|
#include "utils\utils.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Std Lib
|
/* Std Lib
|
||||||
------- */
|
------- */
|
||||||
|
@ -167,6 +171,13 @@ void CFrontEndMainTitles::shutdown()
|
||||||
Returns:
|
Returns:
|
||||||
---------------------------------------------------------------------- */
|
---------------------------------------------------------------------- */
|
||||||
static u8 *s_image;
|
static u8 *s_image;
|
||||||
|
static FileEquate s_imageFiles[4]=
|
||||||
|
{
|
||||||
|
BACKDROP_START1_GFX,
|
||||||
|
BACKDROP_START2_GFX,
|
||||||
|
BACKDROP_START3_GFX,
|
||||||
|
BACKDROP_START4_GFX,
|
||||||
|
};
|
||||||
void CFrontEndMainTitles::select()
|
void CFrontEndMainTitles::select()
|
||||||
{
|
{
|
||||||
m_mode=MODE__PRESS_START;
|
m_mode=MODE__PRESS_START;
|
||||||
|
@ -177,7 +188,9 @@ void CFrontEndMainTitles::select()
|
||||||
|
|
||||||
m_demoTimeout=0;
|
m_demoTimeout=0;
|
||||||
|
|
||||||
s_image=CFileIO::loadFile(BACKDROP_START_GFX);
|
// Currently the selection of title screens is random.. eventually it will be tied
|
||||||
|
// into how much of the game has been completed (pkg)
|
||||||
|
s_image=CFileIO::loadFile(s_imageFiles[getRndRange(4)]);
|
||||||
ASSERT(s_image);
|
ASSERT(s_image);
|
||||||
SetScreenImage(s_image);
|
SetScreenImage(s_image);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue