]> git.mxchange.org Git - simgear.git/commitdiff
revert some test code
authorehofman <ehofman>
Thu, 22 Oct 2009 12:10:35 +0000 (12:10 +0000)
committerTim Moore <timoore@redhat.com>
Thu, 22 Oct 2009 20:52:05 +0000 (22:52 +0200)
simgear/sound/sample_openal.cxx
simgear/sound/xmlsound.cxx

index c5ced562963a576424bfc11181b3ce0e479cf9bb..2ec3c96d132b9fd43360a80af35e5f3a406a83d3 100644 (file)
@@ -182,8 +182,9 @@ void SGSoundSample::set_position( const SGGeod& pos ) {
 
 void SGSoundSample::update_absolute_position() {
     SGQuatd orient = SGQuatd::fromLonLat(_base_pos) * _orientation;
-    _orivec = -toVec3f(orient.rotate(_direction));
-//printf("ori: %f %f %f\n", _orivec[0], _orivec[1], _orivec[2]);
+    _orivec = -toVec3f(orient.rotate(-SGVec3d::e1()));
+printf("ori: %f %f %f\n", _orivec[0], _orivec[1], _orivec[2]);
+printf("vel: %f %f %f\n", _velocity[0], _velocity[1], _velocity[2]);
 
     orient = SGQuatd::fromRealImag(0, _relative_pos) * _orientation;
     _absolute_pos = -SGVec3d::fromGeod(_base_pos); // -orient.rotate(SGVec3d::e1());
index 54f3e4b1bcca7c0ed76c2e2cc7d5a2bf63aabd7e..39cfdfe00e8fff15b20c054eb08b6b6fc2f0a0b4 100644 (file)
@@ -171,7 +171,7 @@ SGXmlSound::init(SGPropertyNode *root, SGPropertyNode *node,
 
    }
 
-   float reference_dist = node->getDoubleValue("reference-dist", 50.0);
+   float reference_dist = node->getDoubleValue("reference-dist", 500.0);
    float max_dist = node->getDoubleValue("max-dist", 3000.0);
  
    //
@@ -243,7 +243,7 @@ SGXmlSound::init(SGPropertyNode *root, SGPropertyNode *node,
    SGVec3d dir = SGVec3d::zeros();
    float inner = 360.0;
    float outer = 360.0;
-   float outer_gain = 0.0;;
+   float outer_gain = 0.0;
    prop = node->getChild("orientation");
    if ( prop != NULL ) {
       dir = SGVec3d(-prop->getDoubleValue("x", 0.0),