mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
// Copyright 2018 The Ebiten Authors
|
|
//
|
|
// 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.
|
|
|
|
package stb
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gopherjs/gopherwasm/js"
|
|
)
|
|
|
|
func init() {
|
|
// Eval wasm.js first to set the Wasm binary to Module.
|
|
js.Global().Get("window").Call("eval", string(wasm_js))
|
|
|
|
js.Global().Get("window").Call("eval", string(stbvorbis_js))
|
|
js.Global().Get("window").Call("eval", string(decode_js))
|
|
|
|
ch := make(chan struct{})
|
|
js.Global().Get("_ebiten").Call("initializeVorbisDecoder", js.NewCallback(func([]js.Value) {
|
|
close(ch)
|
|
}))
|
|
<-ch
|
|
}
|
|
|
|
func DecodeVorbis(buf []byte) ([]float32, int, int, error) {
|
|
arr := js.TypedArrayOf(buf)
|
|
r := js.Global().Get("_ebiten").Call("decodeVorbis", arr)
|
|
arr.Release()
|
|
if r == js.Null() {
|
|
return nil, 0, 0, fmt.Errorf("audio/vorbis/internal/stb: decode failed")
|
|
}
|
|
|
|
data := make([]float32, r.Get("data").Get("length").Int())
|
|
arr = js.TypedArrayOf(data)
|
|
arr.Call("set", r.Get("data"))
|
|
arr.Release()
|
|
return data, r.Get("channels").Int(), r.Get("sampleRate").Int(), nil
|
|
}
|