Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/aim.cc @ 6056

Last change on this file since 6056 was 6054, checked in by bensch, 18 years ago

orxonox/trunk: multiple new Reparenting modes in PNode.
Testing the stuff in GuidedMissile
Projectile has a PNode as reference not as pointer
some minor weapon changes

File size: 5.0 KB
RevLine 
[4744]1/*
[1853]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
[1855]10
11   ### File Specific:
[4779]12   main-programmer: Benjamin Grauer
[1855]13   co-programmer: ...
[1853]14*/
15
[5357]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WEAPON
[1853]17
[5556]18#include "aim.h"
[4781]19
[4832]20#include "load_param.h"
[4781]21#include "graphics_engine.h"
22#include "state.h"
[5750]23#include "list.h"
[4832]24#include "material.h"
[5750]25#include "t_animation.h"
26#include "text.h"
[4781]27
[5750]28#include "world_entity.h"
29
[1856]30using namespace std;
[1853]31
[1856]32
[3245]33/**
[4832]34 * standart constructor
35 */
[5750]36Aim::Aim (PNode* source, const TiXmlElement* root)
[4832]37{
38  this->init();
39
[5750]40  this->source = source;
41
[4832]42  if (root)
43    this->loadParams(root);
44  else
45    this->setTexture("maps/aim.png");
46}
47
48/**
[5556]49 * destroys a Aim
[3245]50*/
[5556]51Aim::~Aim ()
[3365]52{
[4832]53  if (this->material)
[5557]54    delete this->material;
[5750]55
56  if (this->text != NULL)
57    delete this->text;
[4832]58}
59
60/**
[5556]61 * initializes the Aim
[4832]62 */
[5556]63void Aim::init()
[4832]64{
[5556]65  this->setClassID(CL_CROSSHAIR, "Aim");
66  this->setName("Aim");
[4320]67
[6054]68  this->addNodeModeFlags(PNODE_REPARENT_TO_NULLPARENT);
69
[5398]70  this->setLayer(E2D_LAYER_TOP);
[5750]71  this->setRotationSpeed(30.0* (float)rand()/RAND_MAX + 10.0);
[4832]72  this->setSize(GraphicsEngine::getInstance()->getResolutionX()/10.0);
[4830]73
[5750]74  this->setBindNode(this);
[4832]75  this->material = new Material;
[5750]76  this->source = NULL;
77
78  this->anim = new tAnimation<Aim>(this, &Aim::setSize);
79  this->anim->setInfinity(ANIM_INF_CONSTANT);
80  this->anim->addKeyFrame(500, .3, ANIM_LINEAR);
81  this->anim->addKeyFrame(100, .2, ANIM_LINEAR);
82  this->anim->addKeyFrame(50, .01, ANIM_LINEAR);
83
84  this->text = new Text();
[5779]85  this->text->setLayer(this->getLayer());
[5750]86  this->text->setParent2D(this);
87  this->text->setRelCoor2D(10, -50);
88  this->text->setParentMode2D(E2D_PARENT_MOVEMENT);
89  this->text->setText("Testing");
[3365]90}
[1853]91
[5556]92void Aim::loadParams(const TiXmlElement* root)
[3543]93{
[4832]94  static_cast<PNode*>(this)->loadParams(root);
[4830]95
[5671]96  LoadParam(root, "texture", this, Aim, setTexture)
[5556]97      .describe("the texture-file to load onto the Aim");
[4831]98
[5671]99  LoadParam(root, "size", this, Aim, setSize)
[5556]100      .describe("the size of the Aim in Pixels");
[4832]101
[5671]102  LoadParam(root, "rotation-speed", this, Aim, setRotationSpeed)
[5556]103      .describe("the Speed with which the Aim should rotate");
[3543]104}
[4779]105
[5750]106void Aim::searchTarget(float range)
107{
108  tIterator<WorldEntity>* iterator = State::getWorldEntityList()->getIterator();
109  WorldEntity* entity = iterator->firstElement();
110  while (likely(entity != NULL))
111  {
112    if (entity->isA(CL_NPC) && this->source->getAbsCoor().x < entity->getAbsCoor().x && (this->source->getAbsCoor() - entity->getAbsCoor()).len() < range)
113    {
114      if (this->getParent() != entity)
115      {
116        this->anim->replay();
117        this->setParentSoft(entity, 5);
118      }
119      delete iterator;
120      return;
121    }
122    entity = iterator->nextElement();
123  }
[4832]124
[5750]125  delete iterator;
126}
127
128
129
[4832]130/**
[5556]131 * sets the size of the Aim.
[4832]132 * @param size the size in pixels
133 */
[5556]134void Aim::setSize(float size)
[4832]135{
[5378]136  this->setSize2D(size/2, size/2);
137}
[4832]138
139/**
140 * sets the material to load
141 * @param textureFile The texture-file to load onto the crosshair
142 */
[5556]143void Aim::setTexture(const char* textureFile)
[4832]144{
145  this->material->setDiffuseMap(textureFile);
146}
147
148/**
[5556]149 * ticks the Aim
[4832]150 * @param dt the time to ticks
151 */
[5556]152void Aim::tick(float dt)
[4832]153{
[4834]154  // let the crosshair rotate
[5378]155  this->shiftDir2D(dt * rotationSpeed);
[4781]156
[5750]157  char outputText[100];
158  sprintf(outputText, "%s - distance: %f\n", this->getParent()->getName(), (this->source->getAbsCoor() - this->getAbsCoor()).len());
159  this->text->setText(outputText);
[4832]160
161
[5750]162  if (this->source->getAbsCoor().x > this->getAbsCoor().x )
163    this->searchTarget(1000);
164//   float z = 0.0f;
165//   glReadPixels ((int)this->getAbsCoor2D().x,
166//                  GraphicsEngine::getInstance()->getResolutionY()-(int)this->getAbsCoor2D().y-1,
167//                  1,
168//                  1,
169//                  GL_DEPTH_COMPONENT,
170//                  GL_FLOAT,
171//                  &z);
172//
173//
174//   GLdouble objX=.0, objY=.0, objZ=.0;
175//   gluUnProject(this->getAbsCoor2D().x,
176//                GraphicsEngine::getInstance()->getResolutionY()-this->getAbsCoor2D().y-1,
177//                .99,  // z
178//                GraphicsEngine::modMat,
179//                GraphicsEngine::projMat,
180//                GraphicsEngine::viewPort,
181//                &objX,
182//                &objY,
183//                &objZ );
184//
185//   this->setAbsCoor(objX, objY, objZ);
[4834]186}
187
188/**
189 * draws the crosshair
190 */
[5556]191void Aim::draw() const
[4834]192{
[5750]193
[4955]194  glPushMatrix();
[5378]195  glTranslatef(this->getAbsCoor2D().x, this->getAbsCoor2D().y, 0);
[4830]196
[5378]197  glRotatef(this->getAbsDir2D(), 0,0,1);
[4832]198  this->material->select();
199  glBegin(GL_TRIANGLE_STRIP);
200  glTexCoord2f(0, 0);
[5378]201  glVertex2f(-this->getSizeX2D(), -this->getSizeY2D());
[4832]202  glTexCoord2f(1, 0);
[5378]203  glVertex2f(this->getSizeX2D(), -this->getSizeY2D());
[4832]204  glTexCoord2f(0, 1);
[5378]205  glVertex2f(-this->getSizeX2D(), this->getSizeY2D());
[4832]206  glTexCoord2f(1, 1);
[5378]207  glVertex2f(this->getSizeX2D(), this->getSizeY2D());
[4832]208  glEnd();
[4955]209  glPopMatrix();
[4830]210
[4781]211}
Note: See TracBrowser for help on using the repository browser.