Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/npc.cc @ 5065

Last change on this file since 5065 was 5065, checked in by patrick, 19 years ago

orxonox/trunk: changelog

File size: 1.2 KB
RevLine 
[1853]1
2
[4597]3/*
[1853]4   orxonox - the future of 3D-vertical-scrollers
5
6   Copyright (C) 2004 orx
7
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2, or (at your option)
11   any later version.
[1855]12
13   ### File Specific:
14   main-programmer: Patrick Boenzli
15   co-programmer:
[1853]16*/
17
18
19#include "npc.h"
[5033]20#include "obb_tree.h"
[1853]21
[4984]22#include "state.h"
[5064]23#include "list.h"
[4984]24
[1858]25using namespace std;
[1853]26
[1858]27
[4976]28NPC::NPC()
[1931]29{
[4597]30  this->setClassID(CL_NPC, "NPC");
[4976]31
[5058]32  this->loadModelWithScale("models/ships/bolido.obj",5);
[5059]33
34  this->randomRotAxis = VECTOR_RAND(1);
[1931]35}
[1853]36
[5034]37
[1853]38NPC::~NPC () {}
39
40
[5029]41void NPC::collidesWith(WorldEntity* entity, const Vector& location)
42{
[5053]43  if (entity->isA(CL_PROJECTILE))
[5065]44    PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getName(), entity->getName(), location.x, location.y, location.z);
[5063]45  this->setVisibiliy(false);
[5064]46  State::getWorldEntityList()->remove(this);
[1931]47}
48
[5029]49
[4984]50void NPC::tick(float dt)
51{
[4986]52  Vector direction = (State::getCameraTarget()->getAbsCoor() - this->getAbsCoor());
[2036]53
[4986]54  //if (directin.len() < 100)
[5054]55  this->shiftCoor(direction *dt * 5 * exp(-direction.len() / 30.0));
[5060]56  this->shiftDir(Quaternion(dt, this->randomRotAxis));
[4986]57
[4984]58}
59
60
[5033]61
Note: See TracBrowser for help on using the repository browser.