2015-01-02 08:48:07 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
2014-12-24 03:04:10 +01:00
|
|
|
//
|
|
|
|
// 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.
|
2014-12-17 12:03:26 +01:00
|
|
|
|
2015-01-02 08:48:07 +01:00
|
|
|
// +build js
|
|
|
|
|
2014-12-17 12:03:26 +01:00
|
|
|
package ebitenutil
|
|
|
|
|
|
|
|
import (
|
2015-01-02 08:48:07 +01:00
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
2014-12-17 12:03:26 +01:00
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"image"
|
|
|
|
)
|
|
|
|
|
2014-12-20 18:59:00 +01:00
|
|
|
func NewImageFromFile(path string, filter ebiten.Filter) (*ebiten.Image, image.Image, error) {
|
2015-01-02 08:48:07 +01:00
|
|
|
var err error
|
2015-02-28 17:26:05 +01:00
|
|
|
var content *js.Object
|
2015-01-02 08:48:07 +01:00
|
|
|
ch := make(chan struct{})
|
|
|
|
req := js.Global.Get("XMLHttpRequest").New()
|
|
|
|
req.Call("open", "GET", path, true)
|
2015-01-03 10:40:01 +01:00
|
|
|
req.Set("responseType", "arraybuffer")
|
2015-01-10 07:51:07 +01:00
|
|
|
req.Call("addEventListener", "load", func() {
|
2015-01-02 08:48:07 +01:00
|
|
|
defer close(ch)
|
|
|
|
status := req.Get("status").Int()
|
|
|
|
if 200 <= status && status < 400 {
|
|
|
|
content = req.Get("response")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = errors.New(fmt.Sprintf("http error: %d", status))
|
|
|
|
})
|
2015-01-10 07:51:07 +01:00
|
|
|
req.Call("addEventListener", "error", func() {
|
2015-01-02 08:48:07 +01:00
|
|
|
defer close(ch)
|
2015-02-01 18:58:09 +01:00
|
|
|
err = errors.New(fmt.Sprintf("XMLHttpRequest error: %s", req.Get("statusText").String()))
|
2015-01-02 08:48:07 +01:00
|
|
|
})
|
|
|
|
req.Call("send")
|
|
|
|
<-ch
|
2014-12-17 12:03:26 +01:00
|
|
|
if err != nil {
|
2014-12-17 13:49:28 +01:00
|
|
|
return nil, nil, err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2015-01-02 08:48:07 +01:00
|
|
|
|
|
|
|
data := js.Global.Get("Uint8Array").New(content).Interface().([]uint8)
|
|
|
|
b := bytes.NewBuffer(data)
|
|
|
|
img, _, err := image.Decode(b)
|
2014-12-17 12:03:26 +01:00
|
|
|
if err != nil {
|
2014-12-17 13:49:28 +01:00
|
|
|
return nil, nil, err
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2014-12-22 02:36:42 +01:00
|
|
|
img2, err := ebiten.NewImageFromImage(img, filter)
|
2014-12-17 13:49:28 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2015-01-02 08:48:07 +01:00
|
|
|
return img2, img, nil
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|