Changeset 10714 in orxonox.OLD for branches/presentation/src/world_entities/space_ships/space_ship.cc
- Timestamp:
- Jun 18, 2007, 3:19:15 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/space_ships/space_ship.cc
r10698 r10714 274 274 registerVar( new SynchronizeableBool( &bFire, &bFire, "bSecFire", PERMISSION_OWNER)); 275 275 registerVar( new SynchronizeableVector( &velocity, &velocity, "velocity", PERMISSION_MASTER_SERVER ) ); 276 // registerVar( new SynchronizeableQuaternion( &mouseDir, &mouseDir, "mousedir", PERMISSION_OWNER ) ); 276 277 277 278 //this->airFriction = 0.5f; … … 554 555 void SpaceShip::process(const Event &event) 555 556 { 556 //Playable::process(event);557 // Playable::process(event); 557 558 558 559 if( event.type == KeyMapper::PEV_LEFT) … … 572 573 else if( event.type == KeyMapper::PEV_FIRE2) 573 574 this->bSecFire = event.bPressed; 574 else if( event.type == KeyMapper::PEV_FIRE1) 575 else if( event.type == KeyMapper::PEV_FIRE1){ 576 printf("fireing primary"); 575 577 this->bFire = event.bPressed; 578 } 576 579 else if( event.type == KeyMapper::PEV_NEXT_WEAPON && event.bPressed) 577 580 { … … 580 583 else if ( event.type == KeyMapper::PEV_PREVIOUS_WEAPON && event.bPressed) 581 584 this->previousWeaponConfig(); 582 583 if (!(State::getCamera()->getEventHandling())) 585 else if( event.type == EV_MOUSE_MOTION) 586 { 587 // printf("Spaceship Mouse Motion Event\n"); 588 // dynamic_cast<Crosshair*>(this->weaponMan.getFixedTarget())->process(event); 589 // this->weaponMan.process(event); 590 this->xMouse += event.xRel; 591 this->yMouse += event.yRel; 592 // printf("Mouse Coord: %f, %f\n", this->xMouse, this->yMouse); 593 this->weaponMan.getFixedTarget()->setRelCoor(10000, 4*xMouse, 4*yMouse); 594 } 595 else if (!(State::getCamera()->getEventHandling())) 584 596 { 585 597 //PRINTF(0)("\n\n\n\n\n\n\n\nSETCAMERA %x\n\n\n\n\n\n\n", State::getCamera()); … … 622 634 } 623 635 624 625 /*626 else if( event.type == EV_MOUSE_MOTION)627 {628 629 this->xMouse += event.xRel;630 this->yMouse += event.yRel;631 }632 */633 636 } 634 637 … … 821 824 State::getCamera()->setEventHandling(false); 822 825 823 PRINTF(0)(" \n\n\n\n\n\n\n\nSETCAMERA %x\n\n\n\n\n\n\n", State::getCamera());826 PRINTF(0)("SETCAMERA %x\n", State::getCamera()); 824 827 State::getCamera()->setViewMode(Camera::ViewNormal); 825 828 State::getCameraTargetNode()->setParent(this);
Note: See TracChangeset
for help on using the changeset viewer.