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 | |
---|
18 | |
---|
19 | #include "test_entity.h" |
---|
20 | #include "stdincl.h" |
---|
21 | #include "model.h" |
---|
22 | #include "md2Model.h" |
---|
23 | |
---|
24 | using namespace std; |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | TestEntity::TestEntity () : WorldEntity() |
---|
29 | { |
---|
30 | //this->md2Model = new MD2Model(); |
---|
31 | |
---|
32 | this->md2Model2 = new MD2Model2(); |
---|
33 | this->md2Model2->loadModel(ResourceManager::getFullName("models/tris.md2")); |
---|
34 | this->md2Model2->loadSkin(ResourceManager::getFullName("../data/models/tris.pcx")); |
---|
35 | |
---|
36 | this->md2Model2->debug(); |
---|
37 | } |
---|
38 | |
---|
39 | |
---|
40 | TestEntity::~TestEntity () |
---|
41 | {} |
---|
42 | |
---|
43 | |
---|
44 | void TestEntity::tick (float time) |
---|
45 | { |
---|
46 | this->md2Model2->tick(time); |
---|
47 | } |
---|
48 | |
---|
49 | |
---|
50 | void TestEntity::hit (WorldEntity* weapon, Vector* loc) {} |
---|
51 | |
---|
52 | |
---|
53 | void TestEntity::destroy () {} |
---|
54 | |
---|
55 | |
---|
56 | void TestEntity::collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags) {} |
---|
57 | |
---|
58 | |
---|
59 | void TestEntity::draw () |
---|
60 | { |
---|
61 | glMatrixMode(GL_MODELVIEW); |
---|
62 | glPushMatrix(); |
---|
63 | float matrix[4][4]; |
---|
64 | |
---|
65 | glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); |
---|
66 | this->getAbsDir().matrix (matrix); |
---|
67 | glMultMatrixf((float*)matrix); |
---|
68 | |
---|
69 | |
---|
70 | /* TESTGING TESTING TESTING */ |
---|
71 | //this->material->select(); |
---|
72 | //this->md2Model->draw(this->model); |
---|
73 | //this->md2Model->animate(); |
---|
74 | |
---|
75 | this->md2Model2->draw(); |
---|
76 | |
---|
77 | |
---|
78 | glPopMatrix(); |
---|
79 | } |
---|
80 | |
---|