This commit is contained in:
Paul 2001-04-17 21:31:35 +00:00
parent eabbdc0bee
commit 6453e168ee
2 changed files with 168 additions and 0 deletions

View file

@ -0,0 +1,108 @@
/*=========================================================================
fmvintro.cpp
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
/*----------------------------------------------------------------------
Includes
-------- */
#include "frontend\fmvthq.h"
#ifndef __FMV_HEADER__
#include "fmv\fmv.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:
---------------------------------------------------------------------- */
bool fmvPerFrameFunc()
{
PadUpdate();
if(PadGetDown(0)&(PAD_START|PAD_CROSS))
{
PadUpdate();
return true;
}
return false;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CFrontEndFMVIntro::select()
{
FMV_play(FMV_THQ,&fmvPerFrameFunc);
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
int CFrontEndFMVIntro::isReadyToExit()
{
return true;
}
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
CFrontEndScene::FrontEndMode CFrontEndFMVIntro::getNextMode()
{
return CFrontEndScene::MODE__MAIN_TITLES;
}
/*===========================================================================
end */

View file

@ -0,0 +1,60 @@
/*=========================================================================
fmvintro.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __FRONTEND_FMVINTRO_H__
#define __FRONTEND_FMVINTRO_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_FMVINTRO_H__ */
/*===========================================================================
end */