Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6797 in orxonox.OLD


Ignore:
Timestamp:
Jan 27, 2006, 1:43:42 PM (18 years ago)
Author:
rennerc
Message:

spaceship: finetuning mousedir sync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/world_entities/space_ships/space_ship.cc

    r6796 r6797  
    687687      SYNCHELP_WRITE_INT( mask, NWT_SS_FLAGS );
    688688    }
    689 #define __OFFSET_ROT 0.01
    690     if ( fabs( oldMouseDir.w - mouseDir.w ) > __OFFSET_ROT ||
    691          fabs( oldMouseDir.v.x - mouseDir.v.x ) > __OFFSET_ROT ||
    692          fabs( oldMouseDir.v.y - mouseDir.v.y ) > __OFFSET_ROT ||
    693          fabs( oldMouseDir.v.z - mouseDir.v.z ) > __OFFSET_ROT )
     689#define __OFFSET_MDIR_W 0.01
     690#define __OFFSET_MDIR_V 0.01
     691    if ( fabs( oldMouseDir.w - mouseDir.w ) > __OFFSET_MDIR_W ||
     692         fabs( oldMouseDir.v.x - mouseDir.v.x ) > __OFFSET_MDIR_V ||
     693         fabs( oldMouseDir.v.y - mouseDir.v.y ) > __OFFSET_MDIR_V ||
     694         fabs( oldMouseDir.v.z - mouseDir.v.z ) > __OFFSET_MDIR_V )
    694695    {
    695696      oldMouseDir = mouseDir;
     
    702703      SYNCHELP_WRITE_FLOAT( mouseDir.v.z, NWT_SS_MOUSEDIRZ );
    703704    }
    704 #define __OFFSET_VEL 5
    705     if ( fabs( oldVelocity.x - velocity.x ) > __OFFSET_VEL ||
    706          fabs( oldVelocity.y - velocity.y ) > __OFFSET_VEL ||
    707          fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL )
     705#define __OFFSET_VEL 0.05
     706    if ( fabs( oldVelocity.x - velocity.x ) > __OFFSET_VEL*velocity.x ||
     707         fabs( oldVelocity.y - velocity.y ) > __OFFSET_VEL*velocity.y ||
     708         fabs( oldVelocity.z - velocity.z ) > __OFFSET_VEL*velocity.z )
    708709    {
    709710      oldVelocity = velocity;
Note: See TracChangeset for help on using the changeset viewer.