/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx 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, or (at your option) any later version. ### File Specific: main-programmer: Stefan Lienhard co-programmer: ... */ #include "bomb.h" using namespace std; /** * constructs and loads a Bomb from a XML-element * @param root the XML-element to load from */ Bomb::Bomb(const TiXmlElement* root) { this->init(); if (root != NULL) this->loadParams(root); } /** * standard deconstructor */ Bomb::~Bomb () { } /** * initializes the Bomb * @todo change this to what you wish */ void Bomb::init() { this->setClassID(CL_PROTO_WORLD_ENTITY, "Bomb"); /** * @todo: Write CL_PROTO_WORLD_ENTITY INTO THE src/defs/class_id.h (your own definition) */ } /** * loads a Bomb from a XML-element * @param root the XML-element to load from * @todo make the class Loadable */ void Bomb::loadParams(const TiXmlElement* root) { // all the clases this Entity is directly derived from must be called in this way, to load all settings. static_cast(this)->loadParam(root); /** * @todo: make the class Loadable */ } /** * advances the Bomb about time seconds * @param time the Time to step */ Bomb::tick(float time) { } /** * draws this worldEntity */ void Bomb::draw () const { glMatrixMode(GL_MODELVIEW); glPushMatrix(); float matrix[4][4]; /* translate */ glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); /* rotate */ this->getAbsDir().matrix(matrix); glMultMatrixf((float*)matrix); if (model) model->draw(); glPopMatrix(); } /** * * */ void Bomb::collidesWith (WorldEntity* entity, const Vector& location) { }