SBSPSS/source/enemy/neyeball.cpp

101 lines
2.0 KiB
C++
Raw Normal View History

2001-01-22 23:24:53 +01:00
/*=========================================================================
neyeball.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
2001-04-20 16:48:15 +02:00
#ifndef __ENEMY_NEYEBALL_H__
#include "enemy\neyeball.h"
#endif
2001-01-22 23:24:53 +01:00
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
#ifndef __PLAYER_PLAYER_H__
#include "player\player.h"
#endif
#ifndef __PROJECTL_PROJECTL_H__
#include "projectl\projectl.h"
#endif
2001-04-24 21:03:06 +02:00
void CNpcEyeballEnemy::processEnemyCollision( CThing *thisThing )
{
// do nothing
}
2001-04-20 16:48:15 +02:00
void CNpcEyeballEnemy::postInit()
{
2001-05-11 18:10:23 +02:00
return;
2001-05-16 21:04:40 +02:00
m_fireHeading = m_heading;
2001-04-20 16:48:15 +02:00
CProjectile *projectile;
projectile = new ( "eyeball projectile" ) CProjectile;
projectile->init( Pos, m_fireHeading, CProjectile::PROJECTILE_FIXED, CProjectile::PROJECTILE_INFINITE_LIFE );
projectile->setLayerCollision( m_layerCollision );
addChild( projectile );
}
bool CNpcEyeballEnemy::processSensor()
{
2001-05-11 18:10:23 +02:00
return(false);
2001-04-20 16:48:15 +02:00
switch( m_sensorFunc )
{
case NPC_SENSOR_NONE:
return( false );
default:
{
if ( playerXDistSqr + playerYDistSqr < 40000 )
{
m_controlFunc = NPC_CONTROL_CLOSE;
return( true );
}
else
{
return( false );
}
}
}
}
void CNpcEyeballEnemy::processClose( int _frames )
2001-01-22 23:24:53 +01:00
{
2001-05-11 18:10:23 +02:00
return;
2001-01-22 23:24:53 +01:00
if ( Next )
2001-04-04 00:01:52 +02:00
{
CProjectile *projectile;
projectile = (CProjectile *) Next;
if ( projectile->getMovementType() == CProjectile::PROJECTILE_FIXED )
{
projectile->setMovementType( CProjectile::PROJECTILE_USER_SEEK );
projectile->setState( CProjectile::PROJECTILE_ATTACK );
}
}
2001-04-20 16:48:15 +02:00
else
{
CProjectile *projectile;
projectile = new ( "eyeball projectile" ) CProjectile;
projectile->init( Pos, m_fireHeading, CProjectile::PROJECTILE_USER_SEEK, CProjectile::PROJECTILE_INFINITE_LIFE );
projectile->setLayerCollision( m_layerCollision );
projectile->setState( CProjectile::PROJECTILE_ATTACK );
addChild( projectile );
}
2001-01-22 23:24:53 +01:00
}