Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/test_entity.cc @ 7198

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

orxonox/trunk: new Default Values… they now too are in MultiType instead of (count, …) or (count, va_arg) style

File size: 2.5 KB
RevLine 
[4245]1
2
[4679]3/*
[4245]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
[4679]15   co-programmer:
[4245]16*/
[5357]17#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
[4245]18
19
[6222]20#include "executor/executor.h"
[7193]21#include "util/loading/factory.h"
22#include "util/loading/load_param.h"
[6222]23
[4245]24#include "test_entity.h"
25#include "stdincl.h"
26#include "model.h"
27#include "md2Model.h"
[4682]28#include "obb_tree.h"
[5087]29#include "state.h"
[4245]30
31using namespace std;
32
33
[6222]34CREATE_FACTORY(TestEntity, CL_TEST_ENTITY);
[4245]35
[6222]36
[4762]37TestEntity::TestEntity ()
[4679]38{
[6222]39  this->init();
40}
[4245]41
[4714]42
[5994]43
[6222]44TestEntity::TestEntity(const TiXmlElement* root)
45{
46  this->init();
47  if (root != NULL)
48    this->loadParams(root);
[4245]49}
50
51
[4679]52TestEntity::~TestEntity ()
[6222]53{}
54
55
56
57void TestEntity::init()
[4462]58{
[6222]59  this->setClassID(CL_TEST_ENTITY, "TestEntity");
[7078]60  this->toList(OM_GROUP_00);
[7113]61
62  this->bDeath = false;
[4462]63}
[4245]64
[6222]65/**
66 * loads the Settings of a MD2Creature from an XML-element.
67 * @param root the XML-element to load the MD2Creature's properties from
68 */
69void TestEntity::loadParams(const TiXmlElement* root)
70{
[6512]71  WorldEntity::loadParams(root);
[4245]72
[6222]73  LoadParam(root, "md2animation", this, TestEntity, setAnim)
74      .describe("sets the animation of the md2 model")
[7198]75      .defaultValues(1);
[6222]76
77}
78
79
[7071]80void  TestEntity::setAnim(int animationIndex, int animPlaybackMode)
[4488]81{
[6222]82  if( likely(this->getModel(0) != NULL))
[7071]83    ((MD2Model*)this->getModel(0))->setAnim(animationIndex, animPlaybackMode);
[4488]84}
85
86
[4679]87void TestEntity::tick (float time)
[4245]88{
[6222]89  if( likely(this->getModel(0) != NULL))
90    ((MD2Model*)this->getModel(0))->tick(time);
91
[4245]92}
93
94
[5087]95void TestEntity::collidesWith(WorldEntity* entity, const Vector& location)
[7071]96{
97  if( this->lastCollided != entity)
98  {
99    this->dieHard();
100    this->lastCollided = entity;
101  }
102}
[5087]103
[4245]104
[7071]105
106void TestEntity::dieHard()
107{
[7113]108  if( this->bDeath)
109    return;
110  this->bDeath = true;
111  float anim;
112  int randi = (int)(5.0f * (float)rand()/(float)RAND_MAX);
113
114  PRINTF(0)("randi = %i\n", randi);
115
116  if( randi == 1)
117    this->setAnim(DEATH_FALLBACK, MD2_ANIM_ONCE);
118  else if( randi == 2)
119    this->setAnim(DEATH_FALLFORWARD, MD2_ANIM_ONCE);
120  else if( randi == 3)
121    this->setAnim(DEATH_FALLBACKSLOW, MD2_ANIM_ONCE);
122  else if( randi == 4)
123    this->setAnim(CROUCH_DEATH, MD2_ANIM_ONCE);
124  else
125    this->setAnim(DEATH_FALLBACK, MD2_ANIM_ONCE);
[7071]126}
127
Note: See TracBrowser for help on using the repository browser.