OSDN Git Service

Version 0.6.217, add #switch for X.Audio.
[pettanr/clientJs.git] / 0.6.x / js / 07_audio / 01_XWebAudio.js
index a59f2d2..1cc3cba 100644 (file)
@@ -90,7 +90,7 @@ var X_WebAudio_context      = // 4s 以下ではない iPad 2G または iPad mi
                                                                //!X_UA[ 'Blink' ] &&
                                                                // Firefox40.0.5 + Windows8 で音声が途中から鳴らなくなる
                                                                // Firefox41.0.1 + Windows8 で音声が途中から鳴らなくなる
-                                                               !( 40 <= X_UA[ 'Gecko' ] && X_UA[ 'Gecko' ] < 44 && X_UA[ 'Windows' ] ) &&
+                                                               !( 40 <= X_UA[ 'Gecko' ] && X_UA[ 'Gecko' ] < 46 && X_UA[ 'Windows' ] ) &&
                                                                ( window[ 'AudioContext' ] || window[ 'webkitAudioContext' ] ),
        X_WebAudio_BUFFER_LIST  = [],
        X_WebAudio_need1stTouch = X_UA[ 'iOS' ],
@@ -224,12 +224,12 @@ if( X_WebAudio_context ){
                        _startPos       : 0,
                        _endPosition    : 0,
                        _startTime      : 0,
-            _timerID        : 0,
+            //_timerID        : 0,
             _interval       : 0,
                audioBuffer     : null,
                bufferSource    : null,
             gainNode        : null,
-            _onended        : null,
+            //_onended        : null,
             
                        'Constructor' : function( disatcher, url, option ){                             
                                var i = 0,
@@ -280,7 +280,7 @@ if( X_WebAudio_context ){
                                this.playing      && this.actualPause();
                    this.bufferSource && this._sourceDispose();
        
-                   this._onended     && X_Closure_correct( this._onended );    
+                   //this._onended     && X_Closure_correct( this._onended );  
        
                    this.gainNode     && this.gainNode.disconnect();
                        },
@@ -306,7 +306,7 @@ if( X_WebAudio_context ){
                        this.audioBuffer = buffer;
                        this.duration    = buffer.duration * 1000;
 
-                                       this.disatcher[ 'asyncDispatch' ]( X_WebAudio_touchState ? X_EVENT_MEDIA_TOUCH_FOR_LOAD : X_EVENT_READY );
+                                       this.disatcher[ 'asyncDispatch' ]( X_WebAudio_touchState ? X_EVENT_MEDIA_WAIT_FOR_TOUCH : X_EVENT_READY );
                                },
                        
                        actualPlay : function(){
@@ -334,17 +334,24 @@ if( X_WebAudio_context ){
                                end   = X_Audio_getEndTime( this );
                                begin = X_Audio_getStartTime( this, end, true );
                                
-                               console.log( '[WebAudio] play ' + begin + ' -> ' + end );
+                               console.log( '[WebAudio] play ' + begin + ' -> ' + end + ' loop: ' + this.autoLoop + ' :' + this.loopStartTime + ' -> ' + this.loopEndTime );
                                
                                if( this.bufferSource ) this._sourceDispose();
                                if( !this.gainNode ){
                                        this.gainNode = X_WebAudio_context[ 'createGain' ] ? X_WebAudio_context[ 'createGain' ]() : X_WebAudio_context[ 'createGainNode' ]();
-                       this.gainNode[ 'connect' ]( X_WebAudio_context[ 'destination' ] );
+                                       this.gainNode[ 'connect' ]( X_WebAudio_context[ 'destination' ] );
                                };
+                               
                    this.bufferSource        = X_WebAudio_context[ 'createBufferSource' ]();
                    this.bufferSource.buffer = this.audioBuffer;
-                   this.bufferSource[ 'connect' ]( this.gainNode );
                    
+                   /* win8.1 Firefox45, win8.1 Chrome48 で動かなくなる...
+                   if( this.bufferSource[ 'loop' ] = this.autoLoop ){
+                       this.bufferSource[ 'loopStart' ] = 0 <= this.loopStartTime ? this.loopStartTime / 1000 : begin / 1000;
+                       this.bufferSource[ 'loopEnd'   ] = 0 <= this.loopEndTime   ? this.loopEndTime   / 1000 : end   / 1000;
+                   }; */
+                   
+                   this.bufferSource[ 'connect' ]( this.gainNode );
                    this.gainNode[ 'gain' ].value = this.gain;
                    
                    // おかしい、stop 前に外していても呼ばれる、、、@Firefox33.1
@@ -354,21 +361,24 @@ if( X_WebAudio_context ){
                        //console.log( '> use onended' );
                        //this.bufferSource.onended = this._onended || ( this._onended = X_Closure_create( this, this._onEnded ) );
                 //} else {
-                       this._timerID && X_Timer_remove( this._timerID );
-                                       this._timerID = X_Timer_once( end - begin, this, this._onEnded );
+                       //this._timerID && X_Timer_remove( this._timerID );
+                                       //this._timerID = X_Timer_once( end - begin, this, this._onEnded );
                 //};
        
                    if( this.bufferSource.start ){
-                       this.bufferSource.start( 0, begin / 1000, end / 1000 );
+                       this.bufferSource.start( 0, begin / 1000, ( end - begin ) / 1000 );
+                   } else
+                   if( this.bufferSource[ 'noteOn' ] ){
+                       this.bufferSource[ 'noteOn' ]( 0, begin / 1000, ( end - begin ) / 1000 );
                    } else {
-                       this.bufferSource[ 'noteGrainOn' ]( 0, begin / 1000, end / 1000 );
+                       this.bufferSource[ 'noteGrainOn' ]( 0, begin / 1000, ( end - begin ) / 1000 );
                    };
                    
                    this.playing      = true;
                    this._startPos    = begin;
                    this._endPosition = end;
                    this._startTime   = X_WebAudio_context.currentTime * 1000;
-                   this._interval    = this._interval || X_Timer_add( 1000, 0, this, this._onInterval );
+                   this._interval    = this._interval || X_Timer_add( 100, 0, this, this._onInterval );
                        },
                        
                                _sourceDispose : function(){
@@ -377,38 +387,36 @@ if( X_WebAudio_context ){
                            delete this.bufferSource;
                        },
 
+                               /* 
                                _onInterval : function(){
                                        if( !this.playing ){
                                                delete this._interval;
                                                return X_CALLBACK_UN_LISTEN;
                                        };
                                        this.disatcher[ 'dispatch' ]( X_EVENT_MEDIA_PLAYING );
-                               },
-                                               
-                               _onEnded : function(){
+                               }, */
+                                       
+                               _onInterval : function(){
                                        var time;
-                                       delete this._timerID;
                                        
                            if( this.playing ){
+                               // TODO 再生中に終了時間だけ変えた場合!
                                time = X_WebAudio_context.currentTime * 1000 - this._startTime - this._endPosition + this._startPos | 0;
                                //console.log( '> onEnd ' + ( this.playing && ( X_WebAudio_context.currentTime * 1000 - this._startTime ) ) + ' < ' + ( this._endPosition - this._startPos ) );
-                               if( this._onended ){
-                                       // Firefox 用の対策,,,
-                                       if( time < 0 ) return;
-                               } else {
-                                       if( time < 0 ){
-                                               //console.log( '> onEnd crt:' + ( X_WebAudio_context.currentTime * 1000 ) + ' startTime:' + this._startTime +
-                                               //      ' from:' + this._startPos + ' to:' + this._endPosition );
-                                               this._timerID = X_Timer_once( -time, this, this._onEnded );
-                                               return;
-                                       };
-                               };
+
+                               if( time < 0 ){
+                                       this.disatcher[ 'dispatch' ]( X_EVENT_MEDIA_PLAYING );
+                                       return;
+                               };
                                
                                if( this.autoLoop ){
                                        if( !( this.disatcher[ 'dispatch' ]( X_EVENT_MEDIA_BEFORE_LOOP ) & X_CALLBACK_PREVENT_DEFAULT ) ){
                                                this.looped = true;
                                                this.disatcher[ 'dispatch' ]( X_EVENT_MEDIA_LOOPED );
                                                this.actualPlay();
+                                       } else {
+                                                               delete this._interval;
+                                                               return X_CALLBACK_UN_LISTEN;
                                        };
                                } else {
                                        this.actualPause();
@@ -420,13 +428,11 @@ if( X_WebAudio_context ){
                        actualPause : function(){
                                console.log( '[WebAudio] pause' );
                                
-                   this._timerID && X_Timer_remove( this._timerID );
-                               delete this._timerID;
+                               this._interval && X_Timer_remove( this._interval );
+                               delete this._interval;
                                delete this.playing;
 
                    if( this.bufferSource ){
-                       //if( this.bufferSource.onended ) delete this.bufferSource.onended;
-                       
                        this.bufferSource.stop ? 
                                this.bufferSource.stop( 0 ) : this.bufferSource[ 'noteOff' ]( 0 );
                    };
@@ -456,7 +462,7 @@ if( X_WebAudio_context ){
 
                        canPlay     : X_Audio_codecs,
 
-                       detect      : function( proxy, source, ext ){
+                       detect      : function( proxy, ext /* hash */ ){
                                proxy[ 'asyncDispatch' ]( { type : X_EVENT_COMPLETE, canPlay : X_Audio_codecs[ ext ] } );
                        },