2015-01-10 17:23:43 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-01-23 15:04:56 +01:00
|
|
|
package audio
|
2015-01-10 17:23:43 +01:00
|
|
|
|
|
|
|
import (
|
2016-02-07 08:03:33 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/audio"
|
2015-01-10 17:23:43 +01:00
|
|
|
)
|
|
|
|
|
2015-01-24 07:48:48 +01:00
|
|
|
// SampleRate returns the sampling frequency (e.g. 44100).
|
2016-02-07 16:48:43 +01:00
|
|
|
const SampleRate = audio.SampleRate
|
2015-01-11 11:52:11 +01:00
|
|
|
|
2015-01-24 07:48:48 +01:00
|
|
|
// MaxChannel is a max number of channels.
|
2016-02-07 16:48:43 +01:00
|
|
|
const MaxChannel = audio.MaxChannel
|
2015-01-24 07:48:48 +01:00
|
|
|
|
|
|
|
// Queue queues the given data to the given channel.
|
|
|
|
// The given data is queued to the end of the buffer and not played immediately.
|
|
|
|
//
|
2016-02-07 16:45:02 +01:00
|
|
|
// channel must be -1 or a channel index. If channel is -1, an empty channel is automatically selected.
|
|
|
|
// If the channel is not empty, this function does nothing and returns false. This returns true otherwise.
|
2015-01-24 07:48:48 +01:00
|
|
|
//
|
2016-02-07 16:48:43 +01:00
|
|
|
// data's format must be linear PCM (44100Hz, 16bits, 2 channel stereo, little endian) without a header (e.g. RIFF header).
|
2016-02-07 16:45:02 +01:00
|
|
|
func Queue(channel int, data []byte) bool {
|
|
|
|
return audio.Queue(channel, data)
|
2015-01-22 19:02:23 +01:00
|
|
|
}
|
|
|
|
|
2015-01-24 13:46:30 +01:00
|
|
|
// IsPlaying returns a boolean value which indicates if the channel buffer has data to play.
|
|
|
|
func IsPlaying(channel int) bool {
|
2016-02-07 08:03:33 +01:00
|
|
|
return audio.IsPlaying(channel)
|
2015-01-11 11:52:11 +01:00
|
|
|
}
|
2015-06-13 19:37:20 +02:00
|
|
|
|
|
|
|
// TODO: Add Clear function
|