mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-08-24 15:30:53 +00:00
initial commit. This is icculus version 5542b94cae02a6333845854bbbd1abe0a259f1a4
This commit is contained in:
commit
3096eaf5e2
2519 changed files with 816064 additions and 0 deletions
129
Aquaria/Spore.cpp
Normal file
129
Aquaria/Spore.cpp
Normal file
|
@ -0,0 +1,129 @@
|
|||
/*
|
||||
Copyright (C) 2007, 2010 - Bit-Blot
|
||||
|
||||
This file is part of Aquaria.
|
||||
|
||||
Aquaria is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
#include "Shot.h"
|
||||
#include "Game.h"
|
||||
#include "Avatar.h"
|
||||
|
||||
Spore::Spores Spore::spores;
|
||||
|
||||
Spore::Spore (const Vector &position) : CollideEntity()
|
||||
{
|
||||
spores.push_back(this);
|
||||
scale = Vector(0.1, 0.1);
|
||||
alpha = 0;
|
||||
|
||||
this->position = position;
|
||||
alpha.interpolateTo(1, 0.5);
|
||||
scale.interpolateTo(Vector(1, 1), 4);
|
||||
|
||||
setTexture("Spore");
|
||||
|
||||
setAllDamageTargets(false);
|
||||
setEntityType(ET_ENEMY);
|
||||
setDamageTarget(DT_AVATAR_ENERGYBLAST, true);
|
||||
setDamageTarget(DT_AVATAR_SHOCK, true);
|
||||
setDamageTarget(DT_AVATAR_ENERGYROLL, true);
|
||||
|
||||
health = maxHealth = 1;
|
||||
}
|
||||
|
||||
bool Spore::isPositionClear(const Vector &position)
|
||||
{
|
||||
if (dsq->game->isObstructed(TileVector(position)))
|
||||
return false;
|
||||
for (Spores::iterator i = spores.begin(); i != spores.end(); i++)
|
||||
{
|
||||
Spore *s = *i;
|
||||
if (s->position == position)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void Spore::destroy()
|
||||
{
|
||||
spores.remove(this);
|
||||
CollideEntity::destroy();
|
||||
}
|
||||
|
||||
void Spore::onEndOfLife()
|
||||
{
|
||||
//::onEndLife();
|
||||
spores.remove(this);
|
||||
}
|
||||
|
||||
void Spore::onEnterState(int state)
|
||||
{
|
||||
CollideEntity::onEnterState(state);
|
||||
if (state == STATE_DEAD)
|
||||
{
|
||||
setLife(1);
|
||||
setDecayRate(4);
|
||||
fadeAlphaWithLife = true;
|
||||
}
|
||||
}
|
||||
|
||||
void Spore::killAllSpores()
|
||||
{
|
||||
std::queue<Spore*>sporeDeleteQueue;
|
||||
for (Spores::iterator i = spores.begin(); i != spores.end(); i++)
|
||||
{
|
||||
sporeDeleteQueue.push(*i);
|
||||
}
|
||||
Spore *s = 0;
|
||||
while (!sporeDeleteQueue.empty())
|
||||
{
|
||||
s = sporeDeleteQueue.front();
|
||||
if (s)
|
||||
{
|
||||
s->safeKill();
|
||||
}
|
||||
sporeDeleteQueue.pop();
|
||||
}
|
||||
spores.clear();
|
||||
}
|
||||
|
||||
void Spore::onUpdate(float dt)
|
||||
{
|
||||
|
||||
CollideEntity::onUpdate(dt);
|
||||
|
||||
if (life < 1) return;
|
||||
if (!(dsq->game->avatar->position - position).isLength2DIn(1024))
|
||||
{
|
||||
safeKill();
|
||||
}
|
||||
else
|
||||
{
|
||||
int sporeCr = 48;
|
||||
|
||||
collideRadius = scale.x * sporeCr;
|
||||
|
||||
if (touchAvatarDamage(collideRadius, 1, Vector(-1,-1,-1), 500))
|
||||
{
|
||||
// YAY!
|
||||
}
|
||||
|
||||
dsq->game->handleShotCollisions(this);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue