Last change
on this file since 4111 was
4094,
checked in by bensch, 20 years ago
|
orxonox/trunk: orxonox now runs from anywhere of the LINUX environment
|
File size:
1.3 KB
|
Line | |
---|
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 | |
---|
25 | using namespace std; |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | Environment::Environment () : WorldEntity() |
---|
30 | { |
---|
31 | this->model = (Model*) ResourceManager::getInstance()->load("cube", RP_LEVEL); |
---|
32 | } |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | Environment::~Environment () |
---|
37 | { |
---|
38 | |
---|
39 | } |
---|
40 | |
---|
41 | void Environment::tick (float time) {} |
---|
42 | |
---|
43 | void Environment::hit (WorldEntity* weapon, Vector* loc) {} |
---|
44 | |
---|
45 | void Environment::destroy () {} |
---|
46 | |
---|
47 | void Environment::collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags) {} |
---|
48 | |
---|
49 | void Environment::draw () |
---|
50 | { |
---|
51 | //this->getRelCoor().debug(); |
---|
52 | |
---|
53 | glMatrixMode(GL_MODELVIEW); |
---|
54 | glPushMatrix(); |
---|
55 | float matrix[4][4]; |
---|
56 | |
---|
57 | glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); |
---|
58 | //rotate |
---|
59 | this->getAbsDir().matrix (matrix); |
---|
60 | glMultMatrixf((float*)matrix); |
---|
61 | |
---|
62 | this->model->draw(); |
---|
63 | |
---|
64 | glPopMatrix(); |
---|
65 | } |
---|
66 | |
---|
Note: See
TracBrowser
for help on using the repository browser.