[2068] | 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: |
---|
[2080] | 14 | main-programmer: Christian Meyer |
---|
[2068] | 15 | co-programmer: ... |
---|
| 16 | */ |
---|
| 17 | |
---|
| 18 | #include "camera.h" |
---|
[2100] | 19 | #include "world.h" |
---|
| 20 | #include "world_entity.h" |
---|
[2068] | 21 | |
---|
| 22 | using namespace std; |
---|
| 23 | |
---|
[2096] | 24 | /** |
---|
| 25 | \brief creates a Camera |
---|
| 26 | |
---|
| 27 | This standard constructor sets all parameters to zero |
---|
| 28 | */ |
---|
[2636] | 29 | Camera::Camera (World* world) |
---|
[2068] | 30 | { |
---|
[2636] | 31 | this->world = world; |
---|
[3238] | 32 | this->bound = NULL; |
---|
[2551] | 33 | /* give it some physical live */ |
---|
[3238] | 34 | this->m = 10; |
---|
| 35 | this->a = new Vector(0.0, 0.0, 0.0); |
---|
| 36 | this->v = new Vector(0.0, 0.0, 0.0); |
---|
| 37 | this->fs = new Vector(0.0, 0.0, 0.0); |
---|
| 38 | this->cameraMode = NORMAL; |
---|
| 39 | this->deltaTime = 3000.0; |
---|
| 40 | this->cameraOffset = 1.0; |
---|
| 41 | this->cameraOffsetZ = 10.0; |
---|
| 42 | this->t = 0.0; |
---|
[2551] | 43 | |
---|
[3238] | 44 | this->actualPlace.r.x = 0.0; |
---|
| 45 | this->actualPlace.r.y = 10.0; |
---|
| 46 | this->actualPlace.r.z = -5.0; |
---|
[2068] | 47 | } |
---|
| 48 | |
---|
[2096] | 49 | /** |
---|
| 50 | \brief default destructor |
---|
| 51 | */ |
---|
[2068] | 52 | Camera::~Camera () |
---|
| 53 | { |
---|
| 54 | } |
---|
| 55 | |
---|
[2096] | 56 | /** |
---|
| 57 | \brief time based actualisation of camera parameters |
---|
| 58 | \param deltaT: The amount of time that has passed in milliseconds |
---|
| 59 | |
---|
| 60 | This is called by the World in every time_slice, use it to do fancy time dependant effects (such |
---|
| 61 | as smooth camera movement or swaying). |
---|
| 62 | */ |
---|
[3238] | 63 | void Camera::timeSlice (Uint32 deltaT) |
---|
[2068] | 64 | { |
---|
[3238] | 65 | if( this->t <= deltaTime) |
---|
| 66 | {this->t += deltaT;} |
---|
[2551] | 67 | //printf("time is: t=%f\n", t ); |
---|
[3238] | 68 | updateDesiredPlace(); |
---|
| 69 | jump(NULL); |
---|
[2068] | 70 | } |
---|
| 71 | |
---|
[2096] | 72 | /** |
---|
[2551] | 73 | \brief this calculates the location where the track wants the camera to be |
---|
[2096] | 74 | |
---|
[2551] | 75 | This refreshes the placement the camera should have according to the |
---|
| 76 | bound entity's position on the track. |
---|
[2096] | 77 | */ |
---|
[3238] | 78 | void Camera::updateDesiredPlace () |
---|
[2068] | 79 | { |
---|
[2551] | 80 | switch(cameraMode) |
---|
| 81 | { |
---|
| 82 | |
---|
| 83 | case ELLIPTICAL: |
---|
| 84 | { |
---|
| 85 | //r = actual_place.r |
---|
| 86 | Orxonox *orx = Orxonox::getInstance(); |
---|
| 87 | Location lookat; |
---|
| 88 | Placement plFocus; |
---|
| 89 | if( bound != NULL) |
---|
| 90 | { |
---|
[3238] | 91 | bound->getLookat (&lookat); |
---|
| 92 | orx->getWorld()->calcCameraPos (&lookat, &plFocus); |
---|
[2551] | 93 | Quaternion *fr; |
---|
| 94 | if(t < 20.0) |
---|
| 95 | { |
---|
| 96 | Vector *start = new Vector(0.0, 1.0, 0.0); |
---|
| 97 | //r = /*actual_place.r*/ *start - plFocus.r; |
---|
| 98 | r = *(new Vector(0.0, 5.0, 0.0)); |
---|
| 99 | |
---|
| 100 | Vector up(0.0, 0.0, 1.0); |
---|
[2068] | 101 | |
---|
[2551] | 102 | Vector op(1.0, 0.0, 0.0); |
---|
[3238] | 103 | float angle = angleDeg(op, *start); |
---|
[2551] | 104 | printf("angle is: %f\n", angle); |
---|
| 105 | |
---|
| 106 | //if in one plane |
---|
| 107 | from = new Quaternion(angle, up); |
---|
| 108 | |
---|
| 109 | //from = new Quaternion(*start, *up); |
---|
| 110 | //&from = &plFocus.w; |
---|
| 111 | //fr = &plFocus.w; real quaternion use |
---|
| 112 | |
---|
| 113 | |
---|
| 114 | |
---|
| 115 | Vector vDirection(1.0, 0.0, 0.0); |
---|
| 116 | //vDirection = plFocus.w.apply(vDirection); |
---|
| 117 | to = new Quaternion(vDirection, *start); |
---|
| 118 | res = new Quaternion(); |
---|
| 119 | } |
---|
| 120 | //printf("vector r = %f, %f, %f\n",r.x, r.y, r.z ); |
---|
| 121 | rAbs = r.len(); |
---|
| 122 | if(t < 30.0) /* FIXME!!*/ |
---|
| 123 | { |
---|
| 124 | ka = rAbs / deltaTime*deltaTime; |
---|
| 125 | } |
---|
| 126 | /* this is the new length of the vector */ |
---|
| 127 | //float len = ka * powf((deltaTime - t), 2); |
---|
| 128 | |
---|
| 129 | /* calc the rotation */ |
---|
| 130 | /* |
---|
| 131 | Vector axis(0.0, 0.0, 1.0); |
---|
| 132 | if(t < 30.0) |
---|
| 133 | a0 = PI/4 - atanf(fabs(r.x) / fabs(r.y)); |
---|
| 134 | printf("a0 = %f\n", a0); |
---|
| 135 | float angle = a0/deltaTime * (deltaTime - t); |
---|
| 136 | printf("angle is: %f\n", angle); |
---|
| 137 | Quaternion q(angle, axis); |
---|
| 138 | */ |
---|
| 139 | //r = q.apply(r); |
---|
| 140 | //r = r * (len/r.len()); |
---|
| 141 | |
---|
| 142 | //res->quatSlerp(from, to, t/deltaTime, res); |
---|
| 143 | res->quatSlerp(to, from, t/deltaTime, res); |
---|
| 144 | |
---|
| 145 | Vector ursp(0.0, 0.0, 0.0); |
---|
[3238] | 146 | desiredPlace.r = /*plFocus.r -*/ ursp - res->apply(r); |
---|
[2551] | 147 | |
---|
[3238] | 148 | printf("desired place is: %f, %f, %f\n", desiredPlace.r.x, desiredPlace.r.y, desiredPlace.r.z); |
---|
[2551] | 149 | //plLastBPlace = *bound->get_placement(); |
---|
| 150 | } |
---|
| 151 | } |
---|
| 152 | break; |
---|
| 153 | case SMOTH_FOLLOW: |
---|
| 154 | { |
---|
[3238] | 155 | Placement *plBound = bound->getPlacement(); |
---|
[2551] | 156 | Location lcBound; |
---|
| 157 | if(bound != null) |
---|
| 158 | { |
---|
[3238] | 159 | bound->getLookat(&lcBound); |
---|
[2551] | 160 | Vector vDirection(0.0, 0.0, 1.0); |
---|
| 161 | vDirection = plBound->w.apply(vDirection); |
---|
[3238] | 162 | desiredPlace.r = (vDirection * ((lcBound.dist-10.0)/* / l*/)) + Vector(0,0,5.0); |
---|
[2551] | 163 | } |
---|
| 164 | break; |
---|
| 165 | } |
---|
| 166 | /* this is a camera mode that tries just to follow the entity. */ |
---|
| 167 | case STICKY: |
---|
| 168 | { |
---|
| 169 | if(bound != null) |
---|
| 170 | { |
---|
[3238] | 171 | Placement *plBound = bound->getPlacement(); |
---|
[2551] | 172 | Vector vDirection(0.0, 0.0, 1.0); |
---|
| 173 | Vector eclipticOffset(0.0, 0.0, 5.0); |
---|
| 174 | vDirection = plBound->w.apply(vDirection); |
---|
[3238] | 175 | desiredPlace.r = plBound->r - vDirection*10 + eclipticOffset; |
---|
[2551] | 176 | } |
---|
| 177 | break; |
---|
| 178 | } |
---|
| 179 | /* the camera is handled like an entity and rolls on the track */ |
---|
| 180 | case NORMAL: |
---|
| 181 | Location lookat; |
---|
[2636] | 182 | if( bound != NULL && world != NULL ) |
---|
[2551] | 183 | { |
---|
[3238] | 184 | bound->getLookat (&lookat); |
---|
| 185 | world->calcCameraPos (&lookat, &desiredPlace); |
---|
[2551] | 186 | } |
---|
| 187 | else |
---|
| 188 | { |
---|
[3238] | 189 | desiredPlace.r = Vector (0,0,0); |
---|
| 190 | desiredPlace.w = Quaternion (); |
---|
[2551] | 191 | } |
---|
| 192 | break; |
---|
| 193 | } |
---|
[2068] | 194 | } |
---|
| 195 | |
---|
[2096] | 196 | /** |
---|
[2551] | 197 | \brief initialize rendering perspective according to this camera |
---|
[2096] | 198 | |
---|
[2551] | 199 | This is called immediately before the rendering cycle starts, it sets all global |
---|
| 200 | rendering options as well as the GL_PROJECTION matrix according to the camera. |
---|
[2096] | 201 | */ |
---|
[2068] | 202 | void Camera::apply () |
---|
| 203 | { |
---|
[2551] | 204 | glMatrixMode (GL_PROJECTION); |
---|
[2112] | 205 | glLoadIdentity (); |
---|
[2551] | 206 | // view |
---|
| 207 | // TO DO: implement options for frustum generation |
---|
[3238] | 208 | //glFrustum(-1.0, 1.0, -1.0, 1.0, 1.5, 250.0); |
---|
| 209 | gluPerspective(60, 1.2f, 0.1, 250); |
---|
| 210 | |
---|
[2551] | 211 | //Vector up(0,0,1); |
---|
| 212 | //Vector dir(1,0,0); |
---|
| 213 | //Quaternion q(dir,up); |
---|
| 214 | //float matrix[4][4]; |
---|
| 215 | //q.conjugate().matrix (matrix); |
---|
| 216 | //glMultMatrixf ((float*)matrix); |
---|
| 217 | //glTranslatef (10,0,-5); |
---|
| 218 | // |
---|
| 219 | //dir = Vector(-1,-1,0); |
---|
| 220 | //q = Quaternion( dir, up); |
---|
| 221 | //glMatrixMode (GL_MODELVIEW); |
---|
| 222 | //glLoadIdentity (); |
---|
| 223 | //q.matrix (matrix); |
---|
| 224 | //glMultMatrixf ((float*)matrix); |
---|
| 225 | //glTranslatef (2,2,0); |
---|
| 226 | // |
---|
| 227 | //glBegin(GL_TRIANGLES); |
---|
| 228 | //glColor3f(1,0,0); |
---|
| 229 | //glVertex3f(0,0,0.5); |
---|
| 230 | //glColor3f(0,1,0); |
---|
| 231 | //glVertex3f(-0.5,0,-1); |
---|
| 232 | //glColor3f(0,0,1); |
---|
| 233 | //glVertex3f(0.5,0,-1); |
---|
| 234 | //glEnd(); |
---|
[2115] | 235 | |
---|
[2551] | 236 | // ===== first camera control calculation option |
---|
| 237 | // rotation |
---|
[2112] | 238 | float matrix[4][4]; |
---|
[3238] | 239 | actualPlace.w.conjugate().matrix (matrix); |
---|
[2551] | 240 | /* orientation and */ |
---|
[2112] | 241 | glMultMatrixf ((float*)matrix); |
---|
[2551] | 242 | /* translation */ |
---|
[3238] | 243 | glTranslatef (-actualPlace.r.x, -actualPlace.r.y,- actualPlace.r.z); |
---|
| 244 | //Placement *plBound = bound->get_placement(); |
---|
[2551] | 245 | |
---|
| 246 | // ===== second camera control calculation option |
---|
| 247 | /* |
---|
[3238] | 248 | gluLookAt(actual_place.r.x, actual_place.r.y, actual_place.r.z, |
---|
[2551] | 249 | plBound->r.x, plBound->r.y, plBound->r.z, |
---|
| 250 | 0.0, 0.0, 1.0); |
---|
| 251 | */ |
---|
| 252 | |
---|
[2068] | 253 | glMatrixMode (GL_MODELVIEW); |
---|
[2080] | 254 | glLoadIdentity (); |
---|
[2068] | 255 | } |
---|
| 256 | |
---|
[2096] | 257 | /** |
---|
| 258 | \brief set the camera position |
---|
| 259 | \param plc: The Placement to set the camera to |
---|
| 260 | |
---|
| 261 | This will set the actual and desired placement of the camera to plc |
---|
| 262 | */ |
---|
[2068] | 263 | void Camera::jump (Placement* plc = NULL) |
---|
| 264 | { |
---|
[2551] | 265 | if( plc == NULL) |
---|
| 266 | { |
---|
[3238] | 267 | actualPlace = desiredPlace; |
---|
[2551] | 268 | //printf("Camera|jump: camer@ %f, %f, %f\n\n", actual_place.r.x, actual_place.r.y, actual_place.r.z); |
---|
| 269 | } |
---|
| 270 | else |
---|
| 271 | { |
---|
[3238] | 272 | desiredPlace = *plc; |
---|
| 273 | actualPlace = *plc; |
---|
[2551] | 274 | } |
---|
[2068] | 275 | } |
---|
| 276 | |
---|
[2096] | 277 | /** |
---|
| 278 | \brief bind the camera to an entity |
---|
| 279 | \param entity: The enitity to bind the camera to |
---|
| 280 | |
---|
[3238] | 281 | This sets the focus of the camera to the given entity. This means that it will use the given WorldEntity's |
---|
| 282 | Location and get_lookat() to determine the viewpoint the camera will render from. |
---|
| 283 | Note that you cannot bind a camera to a free entity. |
---|
[2096] | 284 | */ |
---|
[2068] | 285 | void Camera::bind (WorldEntity* entity) |
---|
| 286 | { |
---|
[2551] | 287 | if( entity != NULL) |
---|
| 288 | { |
---|
[3238] | 289 | if( entity->isFree()) printf("Cannot bind camera to free entity"); |
---|
[2551] | 290 | else |
---|
[2080] | 291 | { |
---|
[3238] | 292 | this->bound = entity; |
---|
[2551] | 293 | } |
---|
| 294 | } |
---|
[2068] | 295 | } |
---|
[2636] | 296 | |
---|
| 297 | |
---|
| 298 | void Camera::setWorld(World* world) |
---|
| 299 | { |
---|
| 300 | this->world = world; |
---|
| 301 | } |
---|
[3238] | 302 | |
---|
| 303 | |
---|
| 304 | /** |
---|
| 305 | \brief destroy, reset the camera so that it doesn't perform anything anymore |
---|
| 306 | |
---|
| 307 | */ |
---|
| 308 | void Camera::destroy() |
---|
| 309 | { |
---|
| 310 | this->bound = NULL; |
---|
| 311 | this->world = NULL; |
---|
| 312 | } |
---|