2001-02-21 00:41:36 +01:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
pjlammo.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\pjlammo.h"
|
|
|
|
|
|
|
|
#ifndef __MATHTABLE_HEADER__
|
|
|
|
#include "utils\mathtab.h"
|
|
|
|
#endif
|
|
|
|
|
2001-04-08 20:57:16 +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 00:41:36 +01:00
|
|
|
|
|
|
|
/* Std Lib
|
|
|
|
------- */
|
|
|
|
|
|
|
|
/* Data
|
|
|
|
---- */
|
|
|
|
|
2001-04-20 16:53:35 +02:00
|
|
|
#ifndef __SPR_SPRITES_H__
|
|
|
|
#include <sprites.h>
|
2001-02-21 00:41:36 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Tyepdefs && Defines
|
|
|
|
------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Structure defintions
|
|
|
|
-------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function Prototypes
|
|
|
|
------------------- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Vars
|
|
|
|
---- */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CJellyLauncherAmmoPickup::init()
|
|
|
|
{
|
2001-04-20 18:57:05 +02:00
|
|
|
sFrameHdr *fh;
|
|
|
|
|
2001-02-21 00:41:36 +01:00
|
|
|
CBasePickup::init();
|
|
|
|
m_rattle=0;
|
2001-04-20 18:57:05 +02:00
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
fh=CGameScene::getSpriteBank()->getFrameHeader(FRM__JELLYAMMO);
|
2001-04-20 18:57:05 +02:00
|
|
|
setCollisionSize(fh->W,fh->H);
|
2001-02-21 00:41:36 +01:00
|
|
|
}
|
|
|
|
|
2001-04-02 23:37:20 +02:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
DVECTOR CJellyLauncherAmmoPickup::getSizeForPlacement()
|
|
|
|
{
|
|
|
|
DVECTOR size;
|
|
|
|
sFrameHdr *fh;
|
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
fh=CGameScene::getSpriteBank()->getFrameHeader(FRM__JELLYAMMO);
|
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 CJellyLauncherAmmoPickup::collect(class CPlayer *_player)
|
|
|
|
{
|
2001-04-08 20:57:16 +02:00
|
|
|
_player->giveJellyAmmo();
|
2001-02-21 23:33:17 +01:00
|
|
|
CBasePickup::collect(_player);
|
|
|
|
}
|
|
|
|
|
2001-02-21 00:41:36 +01:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
2001-02-21 18:13:37 +01:00
|
|
|
int jlammo_rattlespeed=500;
|
|
|
|
int jlammo_rattlescale=90;
|
|
|
|
int jlammo_rattlecount=5;
|
|
|
|
int jlammo_waitcount=10;
|
2001-02-21 23:33:17 +01:00
|
|
|
void CJellyLauncherAmmoPickup::thinkPickup(int _frames)
|
2001-02-21 00:41:36 +01:00
|
|
|
{
|
2001-02-21 18:13:37 +01:00
|
|
|
m_rattle+=jlammo_rattlespeed*_frames;
|
|
|
|
if(m_rattle>(jlammo_rattlecount+jlammo_waitcount)*4095)m_rattle=0;
|
2001-02-21 00:41:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
2001-02-21 23:33:17 +01:00
|
|
|
void CJellyLauncherAmmoPickup::renderPickup(DVECTOR *_pos)
|
2001-02-21 00:41:36 +01:00
|
|
|
{
|
|
|
|
SpriteBank *sprites;
|
|
|
|
sFrameHdr *fh;
|
|
|
|
int angle;
|
|
|
|
|
2001-05-25 20:43:47 +02:00
|
|
|
sprites=CGameScene::getSpriteBank();
|
2001-05-22 22:34:29 +02:00
|
|
|
fh=sprites->getFrameHeader(FRM__JELLYAMMO);
|
2001-02-21 18:13:37 +01:00
|
|
|
if(m_rattle<=jlammo_rattlecount*4095)
|
2001-02-21 00:41:36 +01:00
|
|
|
{
|
2001-02-21 18:13:37 +01:00
|
|
|
angle=((msin(m_rattle&4095)*jlammo_rattlescale)>>12)&4095;
|
2001-02-21 00:41:36 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
angle=0;
|
|
|
|
}
|
2001-04-19 22:46:43 +02:00
|
|
|
sprites->printRotatedScaledSprite(fh,_pos->vx,_pos->vy,4096,4096,angle,OTPOS__PICKUP_POS);
|
2001-02-21 00:41:36 +01:00
|
|
|
}
|
|
|
|
|
2001-04-26 23:19:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CJellyLauncherPickup::init()
|
|
|
|
{
|
2001-05-18 23:03:51 +02:00
|
|
|
CBaseWeaponSimplePickup::init();
|
2001-04-30 23:27:46 +02:00
|
|
|
|
|
|
|
GameScene.getPlayer()->registerAddon(PLAYER_ADDON_JELLYLAUNCHER);
|
2001-04-26 23:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
|
|
|
void CJellyLauncherPickup::collect(class CPlayer *_player)
|
|
|
|
{
|
|
|
|
_player->setMode(PLAYER_MODE_JELLY_LAUNCHER);
|
2001-05-18 23:03:51 +02:00
|
|
|
CBaseWeaponSimplePickup::collect(_player);
|
2001-04-26 23:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
Function:
|
|
|
|
Purpose:
|
|
|
|
Params:
|
|
|
|
Returns:
|
|
|
|
---------------------------------------------------------------------- */
|
2001-05-18 23:03:51 +02:00
|
|
|
int CJellyLauncherPickup::getWeaponSpriteFrame()
|
2001-04-26 23:19:53 +02:00
|
|
|
{
|
2001-05-18 23:03:51 +02:00
|
|
|
return FRM__LAUNCHER;
|
2001-04-26 23:19:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-21 00:41:36 +01:00
|
|
|
/*===========================================================================
|
|
|
|
end */
|