| 1 |  | 
|---|
| 2 |  | 
|---|
| 3 | /* | 
|---|
| 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. | 
|---|
| 12 |  | 
|---|
| 13 | ### File Specific: | 
|---|
| 14 | main-programmer: Patrick Boenzli | 
|---|
| 15 | co-programmer: | 
|---|
| 16 | */ | 
|---|
| 17 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY | 
|---|
| 18 |  | 
|---|
| 19 |  | 
|---|
| 20 | #include "npc2.h" | 
|---|
| 21 | #include "obb_tree.h" | 
|---|
| 22 |  | 
|---|
| 23 | #include "shader.h" | 
|---|
| 24 | #include "state.h" | 
|---|
| 25 | #include "list.h" | 
|---|
| 26 |  | 
|---|
| 27 | using namespace std; | 
|---|
| 28 |  | 
|---|
| 29 |  | 
|---|
| 30 | NPC2::NPC2() | 
|---|
| 31 | { | 
|---|
| 32 | this->setClassID(CL_NPC, "NPC"); | 
|---|
| 33 |  | 
|---|
| 34 | this->loadModelWithScale("models/ships/bolido.obj", 3); | 
|---|
| 35 | this->shader = NULL; | 
|---|
| 36 | if (likely(Shader::checkShaderAbility())) | 
|---|
| 37 | this->shader = Shader::getShader("shaders/toon.vert", "shaders/toon.frag"); | 
|---|
| 38 |  | 
|---|
| 39 | this->obj = gluNewQuadric(); | 
|---|
| 40 |  | 
|---|
| 41 | this->randomRotAxis = VECTOR_RAND(1); | 
|---|
| 42 | } | 
|---|
| 43 |  | 
|---|
| 44 |  | 
|---|
| 45 | NPC2::~NPC2 () | 
|---|
| 46 | { | 
|---|
| 47 | if (this->shader) | 
|---|
| 48 | Shader::unload(this->shader); | 
|---|
| 49 | gluDeleteQuadric(this->obj); | 
|---|
| 50 | } | 
|---|
| 51 |  | 
|---|
| 52 |  | 
|---|
| 53 | void NPC2::collidesWith(WorldEntity* entity, const Vector& location) | 
|---|
| 54 | { | 
|---|
| 55 | if (entity->isA(CL_PROJECTILE)) | 
|---|
| 56 | { | 
|---|
| 57 | PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getName(), entity->getName(), location.x, location.y, location.z); | 
|---|
| 58 | this->applyForce(Vector(0,0,0)-location*1000); | 
|---|
| 59 | } | 
|---|
| 60 | else if (entity->isA(CL_PLAYER)) | 
|---|
| 61 | this->applyForce(Vector(0,0,0)-location*100); | 
|---|
| 62 | else | 
|---|
| 63 | { | 
|---|
| 64 | this->setVisibiliy(false); | 
|---|
| 65 | State::getWorldEntityList()->remove(this); | 
|---|
| 66 | } | 
|---|
| 67 | } | 
|---|
| 68 |  | 
|---|
| 69 |  | 
|---|
| 70 | /** | 
|---|
| 71 | *  the entity is drawn onto the screen with this function | 
|---|
| 72 | * | 
|---|
| 73 | * This is a central function of an entity: call it to let the entity painted to the screen. | 
|---|
| 74 | * Just override this function with whatever you want to be drawn. | 
|---|
| 75 | */ | 
|---|
| 76 | void NPC2::draw() | 
|---|
| 77 | { | 
|---|
| 78 | glMatrixMode(GL_MODELVIEW); | 
|---|
| 79 | glPushMatrix(); | 
|---|
| 80 | float matrix[4][4]; | 
|---|
| 81 |  | 
|---|
| 82 | /* translate */ | 
|---|
| 83 | glTranslatef (this->getAbsCoor ().x, | 
|---|
| 84 | this->getAbsCoor ().y, | 
|---|
| 85 | this->getAbsCoor ().z); | 
|---|
| 86 | /* rotate */ | 
|---|
| 87 | this->getAbsDir ().matrix (matrix); | 
|---|
| 88 | glMultMatrixf((float*)matrix); | 
|---|
| 89 |  | 
|---|
| 90 | if (this->shader != NULL && this->shader != Shader::getActiveShader()) | 
|---|
| 91 | shader->activateShader(); | 
|---|
| 92 | gluSphere(this->obj, 3, 10, 10); | 
|---|
| 93 | shader->deactivateShader(); | 
|---|
| 94 |  | 
|---|
| 95 |  | 
|---|
| 96 | /*  if (this->model) | 
|---|
| 97 | this->model->draw();*/ | 
|---|
| 98 | glPopMatrix(); | 
|---|
| 99 | } | 
|---|
| 100 |  | 
|---|
| 101 |  | 
|---|
| 102 | void NPC2::tick(float dt) | 
|---|
| 103 | { | 
|---|
| 104 | //  Vector direction = (State::getCameraTarget()->getAbsCoor() - this->getAbsCoor()); | 
|---|
| 105 |  | 
|---|
| 106 | //if (directin.len() < 100) | 
|---|
| 107 | //  this->shiftCoor(direction *dt * 5 * exp(-direction.len() / 30.0)); | 
|---|
| 108 | this->shiftDir(Quaternion(dt, this->randomRotAxis)); | 
|---|
| 109 |  | 
|---|
| 110 | } | 
|---|
| 111 |  | 
|---|
| 112 |  | 
|---|
| 113 |  | 
|---|