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 "environment.h" |
---|
20 | #include "stdincl.h" |
---|
21 | #include "world_entity.h" |
---|
22 | #include "vector.h" |
---|
23 | #include "objModel.h" |
---|
24 | #include "obb_tree.h" |
---|
25 | |
---|
26 | using namespace std; |
---|
27 | |
---|
28 | |
---|
29 | /** |
---|
30 | * creates an environment |
---|
31 | */ |
---|
32 | Environment::Environment () : WorldEntity() |
---|
33 | { |
---|
34 | this->setClassID(CL_ENVIRONMENT, "Environment"); |
---|
35 | this->model = (Model*)ResourceManager::getInstance()->load("models/reaplow.obj"/*"worlds/vulcania.obj"*/, OBJ, RP_CAMPAIGN); |
---|
36 | |
---|
37 | this->obbTree = new OBBTree(15, (sVec3D*)this->model->getVertexArray(), this->model->getVertexCount()); |
---|
38 | } |
---|
39 | |
---|
40 | |
---|
41 | /** |
---|
42 | * deletes an environment |
---|
43 | */ |
---|
44 | Environment::~Environment () |
---|
45 | { |
---|
46 | |
---|
47 | } |
---|
48 | |
---|
49 | /** |
---|
50 | * ticks the environment |
---|
51 | * @param time the time about which to tick |
---|
52 | */ |
---|
53 | void Environment::tick (float time) {} |
---|
54 | |
---|
55 | /** |
---|
56 | * if a hit occures |
---|
57 | */ |
---|
58 | void Environment::hit (WorldEntity* weapon, Vector* loc) {} |
---|
59 | |
---|
60 | /** |
---|
61 | * destroys an Environment |
---|
62 | */ |
---|
63 | void Environment::destroy () {} |
---|
64 | |
---|
65 | /** |
---|
66 | * a collision with some ship |
---|
67 | */ |
---|
68 | void Environment::collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags) {} |
---|
69 | |
---|
70 | /** |
---|
71 | * draws the Environment |
---|
72 | */ |
---|
73 | void Environment::draw () |
---|
74 | { |
---|
75 | //this->getRelCoor().debug(); |
---|
76 | |
---|
77 | glMatrixMode(GL_MODELVIEW); |
---|
78 | glPushMatrix(); |
---|
79 | float matrix[4][4]; |
---|
80 | |
---|
81 | glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); |
---|
82 | //rotate |
---|
83 | this->getAbsDir().matrix (matrix); |
---|
84 | glMultMatrixf((float*)matrix); |
---|
85 | |
---|
86 | this->model->draw(); |
---|
87 | |
---|
88 | glPopMatrix(); |
---|
89 | } |
---|
90 | |
---|