2001-02-21 01:11:53 +01:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
pbubmix.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\pbubmix.h"
|
|
|
|
|
|
|
|
#ifndef __MATHTABLE_HEADER__
|
|
|
|
#include "utils\mathtab.h"
|
|
|
|
#endif
|
|
|
|
|
2001-03-30 19:47:00 +02:00
|
|
|
#ifndef __PLAYER_PLAYER_H__
|
|
|
|
#include "player\player.h"
|
|
|
|
#endif
|
|
|
|
|
2001-04-30 23:27:46 +02:00
|
|
|
#ifndef __GAME_GAME_H__
|
|
|
|
#include "game\game.h"
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 22:46:43 +02:00
|
|
|
#ifndef __GFX_OTPOS_H__
|
|
|
|
#include "gfx\otpos.h"
|
|
|
|
#endif
|
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
#include "game/game.h"
|
2001-02-21 01:11:53 +01:00
|
|
|
|
|
|
|
/* Std Lib
|
|
|
|
------- */
|
|
|
|
|
|
|
|
/* Data
|
|
|
|
---- */
|
|
|
|
|
2001-04-20 16:53:35 +02:00
|
|
|
#ifndef __SPR_SPRITES_H__
|
|
|
|
#include <sprites.h>
|
2001-02-21 01:11:53 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Tyepdefs && Defines
|
|
|
|
------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Structure defintions
|
|
|
|
-------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function Prototypes
|
|
|
|
------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Vars
|
|
|
|
---- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CBubbleMixturePickup::init()
|
|
|
|
{
|
2001-04-20 18:57:05 +02:00
|
|
|
sFrameHdr *fh;
|
|
|
|
|
2001-03-30 19:47:00 +02:00
|
|
|
CBaseRespawningPickup::init();
|
2001-02-21 01:11:53 +01:00
|
|
|
m_sin=0;
|
2001-04-20 18:57:05 +02:00
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
fh=CGameScene::getSpriteBank()->getFrameHeader(FRM__BUBBLEMIXTURE);
|
2001-04-20 18:57:05 +02:00
|
|
|
setCollisionSize(fh->W,fh->H);
|
2001-02-21 01:11:53 +01:00
|
|
|
}
|
|
|
|
|
2001-04-02 23:37:20 +02:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
DVECTOR CBubbleMixturePickup::getSizeForPlacement()
|
|
|
|
{
|
|
|
|
DVECTOR size;
|
|
|
|
sFrameHdr *fh;
|
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
fh=CGameScene::getSpriteBank()->getFrameHeader(FRM__BUBBLEMIXTURE);
|
2001-04-02 23:37:20 +02:00
|
|
|
size.vx=fh->W;
|
|
|
|
size.vy=fh->H;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2001-02-21 23:33:17 +01:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CBubbleMixturePickup::collect(class CPlayer *_player)
|
|
|
|
{
|
2001-03-31 04:05:24 +02:00
|
|
|
_player->giveBubbleAmmo();
|
2001-03-30 19:47:00 +02:00
|
|
|
CBaseRespawningPickup::collect(_player);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
int CBubbleMixturePickup::getRespawnTime()
|
|
|
|
{
|
|
|
|
return 60*10;
|
2001-02-21 23:33:17 +01:00
|
|
|
}
|
|
|
|
|
2001-02-21 01:11:53 +01:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
int bubmix_bobspeed=10;
|
|
|
|
int bubmix_bobscale=3;
|
2001-02-21 23:33:17 +01:00
|
|
|
void CBubbleMixturePickup::thinkPickup(int _frames)
|
2001-02-21 01:11:53 +01:00
|
|
|
{
|
|
|
|
m_sin=(m_sin+(_frames*bubmix_bobspeed))&4095;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
2001-02-21 23:33:17 +01:00
|
|
|
void CBubbleMixturePickup::renderPickup(DVECTOR *_pos)
|
2001-02-21 01:11:53 +01:00
|
|
|
{
|
|
|
|
SpriteBank *sprites;
|
|
|
|
sFrameHdr *fh;
|
|
|
|
int x,y;
|
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
sprites=CGameScene::getSpriteBank();
|
2001-02-21 01:11:53 +01:00
|
|
|
fh=sprites->getFrameHeader(FRM__BUBBLEMIXTURE);
|
2001-02-21 23:33:17 +01:00
|
|
|
x=_pos->vx-(fh->W/2);
|
|
|
|
y=_pos->vy-(fh->H/2)+((msin(m_sin)*bubmix_bobscale)>>12);
|
2001-04-19 22:46:43 +02:00
|
|
|
sprites->printFT4(fh,x,y,0,0,OTPOS__PICKUP_POS);
|
2001-02-21 01:11:53 +01:00
|
|
|
}
|
|
|
|
|
2001-03-31 04:05:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CBubbleWandPickup::init()
|
|
|
|
{
|
2001-05-18 23:03:51 +02:00
|
|
|
CBaseWeaponSimplePickup::init();
|
2001-04-30 23:27:46 +02:00
|
|
|
|
|
|
|
GameScene.getPlayer()->registerAddon(PLAYER_ADDON_BUBBLEWAND);
|
2001-03-31 04:05:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CBubbleWandPickup::collect(class CPlayer *_player)
|
|
|
|
{
|
2001-07-27 18:00:58 +02:00
|
|
|
if(!getHasBeenCollected())
|
|
|
|
{
|
|
|
|
_player->giveBubbleAmmoFromWeapon();
|
|
|
|
}
|
2001-03-31 04:05:24 +02:00
|
|
|
_player->setMode(PLAYER_MODE_BUBBLE_MIXTURE);
|
2001-05-18 23:03:51 +02:00
|
|
|
CBaseWeaponSimplePickup::collect(_player);
|
2001-03-31 04:05:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
2001-05-18 23:03:51 +02:00
|
|
|
int CBubbleWandPickup::getWeaponSpriteFrame()
|
2001-03-31 04:05:24 +02:00
|
|
|
{
|
2001-05-18 23:03:51 +02:00
|
|
|
return FRM__BUBBLEWAND;
|
2001-03-31 04:05:24 +02:00
|
|
|
}
|
|
|
|
|
2001-02-21 01:11:53 +01:00
|
|
|
/*===========================================================================
|
|
|
|
end */
|