/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ #include "WaypointPatrolController.h" #include "util/Math.h" #include "core/CoreIncludes.h" #include "core/XMLPort.h" #include "worldentities/pawns/Pawn.h" namespace orxonox { CreateFactory(WaypointPatrolController); WaypointPatrolController::WaypointPatrolController(BaseObject* creator) : WaypointController(creator) { RegisterObject(WaypointPatrolController); this->team_ = 0; this->alertnessradius_ = 500; this->patrolTimer_.setTimer(rnd(), true, this, createExecutor(createFunctor(&WaypointPatrolController::searchEnemy))); } void WaypointPatrolController::XMLPort(Element& xmlelement, XMLPort::Mode mode) { SUPER(WaypointPatrolController, XMLPort, xmlelement, mode); XMLPortParam(WaypointPatrolController, "alertnessradius", setAlertnessRadius, getAlertnessRadius, xmlelement, mode).defaultValues(500.0f); XMLPortParam(WaypointPatrolController, "team", setTeam, getTeam, xmlelement, mode).defaultValues(0); } void WaypointPatrolController::tick(float dt) { if (!this->isActive()) return; if (this->target_) { this->aimAtTarget(); if (this->bHasTargetPosition_) this->moveToTargetPosition(); if (this->getControllableEntity() && this->isCloseAtTarget(1000) && this->isLookingAtTarget(Ogre::Math::PI / 20.0)) this->getControllableEntity()->fire(0); } else { SUPER(WaypointPatrolController, tick, dt); } } void WaypointPatrolController::searchEnemy() { this->patrolTimer_.setInterval(rnd()); if (!this->getControllableEntity()) return; Vector3 myposition = this->getControllableEntity()->getPosition(); float shortestsqdistance = static_cast(-1); for (ObjectList::iterator it = ObjectList::begin(); it != ObjectList::end(); ++it) { if (ArtificialController::sameTeam(this->getControllableEntity(), static_cast(*it), this->getGametype())) continue; float sqdistance = it->getPosition().squaredDistance(myposition); if (sqdistance < shortestsqdistance) { shortestsqdistance = sqdistance; this->target_ = (*it); } } if (shortestsqdistance > (this->alertnessradius_ * this->alertnessradius_)) this->target_ = 0; } }