Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/npc2.cc @ 5357

Last change on this file since 5357 was 5357, checked in by bensch, 19 years ago

orxonox/trunk: some minor cleanup, of the mess i made with AutoMake-sh

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