This commit is contained in:
Paul 2001-08-29 18:42:30 +00:00
parent d0ef00fb86
commit 2d0b977738
2 changed files with 172 additions and 0 deletions

112
source/frontend/fmvad.cpp Normal file
View File

@ -0,0 +1,112 @@
/*=========================================================================
fmvintro.cpp
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
/*----------------------------------------------------------------------
Includes
-------- */
#include "frontend\fmvintro.h"
#ifndef __FMV_HEADER__
#include "fmv\fmv.h"
#endif
#ifndef __VID_HEADER_
#include "system\vid.h"
#endif
#ifndef __GFX_FADER_H__
#include "gfx\fader.h"
#endif
#ifndef __PAD_PADS_H__
#include "pad\pads.h"
#endif
/* Std Lib
------- */
/* Data
---- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Function Prototypes
------------------- */
/*----------------------------------------------------------------------
Vars
---- */
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
static bool fmvPerFrameFunc()
{
PadUpdate();
if(PadGetDown(0)&(PAD_START|PAD_CROSS))
{
PadUpdate();
return true;
}
return false;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CFrontEndFMVIntro::select()
{
StopLoad();
FMV_play(FMV_INTRO,&fmvPerFrameFunc);
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
int CFrontEndFMVIntro::isReadyToExit()
{
return true;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
CFrontEndScene::FrontEndMode CFrontEndFMVIntro::getNextMode()
{
return CFrontEndScene::MODE__MAIN_TITLES;
}
/*===========================================================================
end */

60
source/frontend/fmvad.h Normal file
View File

@ -0,0 +1,60 @@
/*=========================================================================
fmvintro.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __FRONTEND_FMVAD_H__
#define __FRONTEND_FMVAD_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __FRONTEND_FRONTEND_H__
#include "frontend\frontend.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CFrontEndFMVIntro : public CFrontEndMode
{
public:
void select();
int isReadyToExit();
CFrontEndScene::FrontEndMode getNextMode();
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __FRONTEND_FMVAD_H__ */
/*===========================================================================
end */