125 lines
2.9 KiB
C++
125 lines
2.9 KiB
C++
/*=========================================================================
|
|
|
|
pglasses.cpp
|
|
|
|
Author: PKG
|
|
Created:
|
|
Project: Spongebob
|
|
Purpose:
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
===========================================================================*/
|
|
|
|
/*----------------------------------------------------------------------
|
|
Includes
|
|
-------- */
|
|
|
|
#ifndef __GFX_SPRBANK_H__
|
|
#include "gfx\sprbank.h" // Damnit.. include order! :( (pkg)
|
|
#endif
|
|
|
|
#include "pickups\pglasses.h"
|
|
|
|
#ifndef __PLAYER_PLAYER_H__
|
|
#include "player\player.h"
|
|
#endif
|
|
|
|
|
|
/* Std Lib
|
|
------- */
|
|
|
|
/* Data
|
|
---- */
|
|
|
|
#ifndef __SPR_INGAMEFX_H__
|
|
#include <ingamefx.h>
|
|
#endif
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
Tyepdefs && Defines
|
|
------------------- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Structure defintions
|
|
-------------------- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Function Prototypes
|
|
------------------- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Vars
|
|
---- */
|
|
|
|
/*----------------------------------------------------------------------
|
|
Function:
|
|
Purpose:
|
|
Params:
|
|
Returns:
|
|
---------------------------------------------------------------------- */
|
|
void CGlassesPickup::init()
|
|
{
|
|
CBasePickup::init();
|
|
|
|
m_glint=0;
|
|
}
|
|
|
|
/*----------------------------------------------------------------------
|
|
Function:
|
|
Purpose:
|
|
Params:
|
|
Returns:
|
|
---------------------------------------------------------------------- */
|
|
void CGlassesPickup::collect(class CPlayer *_player)
|
|
{
|
|
_player->giveGlasses();
|
|
CBasePickup::collect(_player);
|
|
}
|
|
|
|
/*----------------------------------------------------------------------
|
|
Function:
|
|
Purpose:
|
|
Params:
|
|
Returns:
|
|
---------------------------------------------------------------------- */
|
|
int glasses_glintspeed=1;
|
|
int glasses_glintframes=20;
|
|
int glasses_glintwait=500;
|
|
DVECTOR glasses_gxy={-3,-4};
|
|
int glasses_glintFrames[]={FRM__GLINT1,FRM__GLINT2,FRM__GLINT3,FRM__GLINT4};
|
|
void CGlassesPickup::thinkPickup(int _frames)
|
|
{
|
|
m_glint+=_frames*glasses_glintspeed;
|
|
if(m_glint>glasses_glintframes+glasses_glintwait)m_glint=0;
|
|
}
|
|
|
|
/*----------------------------------------------------------------------
|
|
Function:
|
|
Purpose:
|
|
Params:
|
|
Returns:
|
|
---------------------------------------------------------------------- */
|
|
void CGlassesPickup::renderPickup(DVECTOR *_pos)
|
|
{
|
|
SpriteBank *sprites;
|
|
sFrameHdr *fh;
|
|
int x,y;
|
|
|
|
sprites=getSpriteBank();
|
|
fh=sprites->getFrameHeader(FRM__GLASSES);
|
|
x=_pos->vx-(fh->W/2);
|
|
y=_pos->vy-(fh->H/2);
|
|
sprites->printFT4(fh,x,y,0,0,PICKUPS_OT_POS);
|
|
|
|
if(m_glint<=glasses_glintframes)
|
|
{
|
|
fh=sprites->getFrameHeader(glasses_glintFrames[m_glint&0x03]);
|
|
sprites->printFT4(fh,x+glasses_gxy.vx,y+glasses_gxy.vy,0,0,PICKUPS_OT_POS-1);
|
|
}
|
|
}
|
|
|
|
/*===========================================================================
|
|
end */
|