ebiten/internal/ui/ui_js.go

94 lines
2.2 KiB
Go
Raw Normal View History

2015-01-02 07:20:05 +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.
// +build js
package ui
import (
"github.com/gopherjs/gopherjs/js"
"github.com/gopherjs/webgl"
"github.com/hajimehoshi/ebiten/internal/opengl"
"time"
)
var canvas js.Object
var context *opengl.Context
func Use(f func(*opengl.Context)) {
f(context)
}
func DoEvents() {
2015-01-02 17:14:36 +01:00
time.Sleep(0)
2015-01-02 07:20:05 +01:00
}
func Terminate() {
// Do nothing.
}
func IsClosed() bool {
return false
}
func SwapBuffers() {
// Do nothing.
}
func init() {
2015-01-02 08:48:07 +01:00
ch := make(chan struct{})
js.Global.Get("window").Set("onload", func() {
close(ch)
})
<-ch
doc := js.Global.Get("document")
canvas = doc.Call("createElement", "canvas")
canvas.Set("width", 16)
canvas.Set("height", 16)
doc.Get("body").Call("appendChild", canvas)
doc.Get("body").Get("style").Set("backgroundColor", "#000")
2015-01-02 07:20:05 +01:00
webglContext, err := webgl.NewContext(canvas, &webgl.ContextAttributes{
Alpha: true,
PremultipliedAlpha: true,
})
if err != nil {
panic(err)
}
context = opengl.NewContext(webglContext)
2015-01-02 16:52:49 +01:00
// Make the canvas focusable.
canvas.Call("setAttribute", "tabindex", 1)
canvas.Get("style").Set("outline", "none")
canvas.Set("onkeydown", func(e js.Object) {
defer e.Call("preventDefault")
code := e.Get("keyCode").Int()
currentInput.keyDown(code)
})
canvas.Set("onkeyup", func(e js.Object) {
defer e.Call("preventDefault")
code := e.Get("keyCode").Int()
currentInput.keyUp(code)
})
2015-01-02 07:20:05 +01:00
}
func Start(width, height, scale int, title string) (actualScale int, err error) {
2015-01-05 14:08:22 +01:00
doc := js.Global.Get("document")
doc.Set("title", title)
2015-01-02 08:48:07 +01:00
canvas.Set("width", width*scale)
canvas.Set("height", height*scale)
2015-01-02 07:20:05 +01:00
return scale, nil
}