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"
|
2015-01-05 14:22:47 +01:00
|
|
|
"strconv"
|
2015-01-02 07:20:05 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var canvas js.Object
|
|
|
|
var context *opengl.Context
|
|
|
|
|
2015-01-08 03:56:03 +01:00
|
|
|
func shown() bool {
|
2015-01-08 15:45:30 +01:00
|
|
|
return !js.Global.Get("document").Get("hidden").Bool()
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
2015-01-02 07:20:05 +01:00
|
|
|
func Use(f func(*opengl.Context)) {
|
|
|
|
f(context)
|
|
|
|
}
|
|
|
|
|
2015-01-07 17:32:37 +01:00
|
|
|
func vsync() {
|
2015-01-07 16:44:41 +01:00
|
|
|
ch := make(chan struct{})
|
|
|
|
js.Global.Get("window").Call("requestAnimationFrame", func() {
|
|
|
|
close(ch)
|
|
|
|
})
|
|
|
|
<-ch
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2015-01-11 17:54:18 +01:00
|
|
|
func DoEvents() error {
|
2015-01-07 17:32:37 +01:00
|
|
|
vsync()
|
2015-01-08 03:56:03 +01:00
|
|
|
for !shown() {
|
2015-01-07 17:32:37 +01:00
|
|
|
vsync()
|
|
|
|
}
|
2015-01-11 17:54:18 +01:00
|
|
|
return nil
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
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-09 17:02:26 +01:00
|
|
|
// TODO: Implement this with node-webgl mainly for testing.
|
|
|
|
|
2015-01-02 08:48:07 +01:00
|
|
|
doc := js.Global.Get("document")
|
2015-01-09 16:38:17 +01:00
|
|
|
if doc.Get("body") == nil {
|
|
|
|
ch := make(chan struct{})
|
|
|
|
js.Global.Get("window").Call("addEventListener", "load", func() {
|
|
|
|
close(ch)
|
|
|
|
})
|
|
|
|
<-ch
|
|
|
|
}
|
2015-01-10 07:51:07 +01:00
|
|
|
doc.Call("addEventListener", "keydown", func(e js.Object) bool {
|
2015-01-07 03:22:48 +01:00
|
|
|
code := e.Get("keyCode").Int()
|
|
|
|
// Backspace
|
|
|
|
if code == 8 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// Functions
|
|
|
|
if 112 <= code && code <= 123 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// Alt and arrows
|
|
|
|
if code == 37 && code == 39 {
|
|
|
|
// Don't need to check Alt.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
2015-01-02 08:48:07 +01:00
|
|
|
canvas = doc.Call("createElement", "canvas")
|
|
|
|
canvas.Set("width", 16)
|
|
|
|
canvas.Set("height", 16)
|
|
|
|
doc.Get("body").Call("appendChild", canvas)
|
2015-01-05 14:22:47 +01:00
|
|
|
|
|
|
|
htmlStyle := doc.Get("documentElement").Get("style")
|
|
|
|
htmlStyle.Set("height", "100%")
|
2015-01-05 16:44:39 +01:00
|
|
|
htmlStyle.Set("margin", "0")
|
|
|
|
htmlStyle.Set("padding", "0")
|
2015-01-05 14:22:47 +01:00
|
|
|
|
|
|
|
bodyStyle := doc.Get("body").Get("style")
|
|
|
|
bodyStyle.Set("backgroundColor", "#000")
|
|
|
|
bodyStyle.Set("position", "relative")
|
|
|
|
bodyStyle.Set("height", "100%")
|
2015-01-05 16:44:39 +01:00
|
|
|
bodyStyle.Set("margin", "0")
|
|
|
|
bodyStyle.Set("padding", "0")
|
2015-01-10 07:51:07 +01:00
|
|
|
doc.Get("body").Call("addEventListener", "click", func() {
|
2015-01-06 20:39:33 +01:00
|
|
|
canvas.Call("focus")
|
|
|
|
})
|
2015-01-05 14:22:47 +01:00
|
|
|
|
|
|
|
canvasStyle := canvas.Get("style")
|
|
|
|
canvasStyle.Set("position", "absolute")
|
|
|
|
|
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")
|
|
|
|
|
2015-01-10 07:51:07 +01:00
|
|
|
canvas.Call("addEventListener", "keydown", func(e js.Object) bool {
|
2015-01-02 16:52:49 +01:00
|
|
|
code := e.Get("keyCode").Int()
|
|
|
|
currentInput.keyDown(code)
|
2015-01-07 15:01:18 +01:00
|
|
|
return false
|
2015-01-02 16:52:49 +01:00
|
|
|
})
|
2015-01-10 07:51:07 +01:00
|
|
|
canvas.Call("addEventListener", "keyup", func(e js.Object) bool {
|
2015-01-02 16:52:49 +01:00
|
|
|
code := e.Get("keyCode").Int()
|
|
|
|
currentInput.keyUp(code)
|
2015-01-07 15:01:18 +01:00
|
|
|
return false
|
2015-01-02 16:52:49 +01:00
|
|
|
})
|
2015-01-10 07:51:07 +01:00
|
|
|
canvas.Call("addEventListener", "mousedown", func(e js.Object) bool {
|
2015-01-06 15:41:03 +01:00
|
|
|
button := e.Get("button").Int()
|
|
|
|
currentInput.mouseDown(button)
|
2015-01-07 15:01:18 +01:00
|
|
|
return false
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-01-10 07:51:07 +01:00
|
|
|
canvas.Call("addEventListener", "mouseup", func(e js.Object) bool {
|
2015-01-06 15:41:03 +01:00
|
|
|
button := e.Get("button").Int()
|
|
|
|
currentInput.mouseUp(button)
|
2015-01-07 15:01:18 +01:00
|
|
|
return false
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-01-10 07:51:07 +01:00
|
|
|
canvas.Call("addEventListener", "contextmenu", func(e js.Object) bool {
|
2015-01-06 18:24:47 +01:00
|
|
|
return false
|
2015-01-06 15:41:03 +01:00
|
|
|
})
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
|
|
|
|
2015-01-07 15:59:04 +01:00
|
|
|
func devicePixelRatio() int {
|
|
|
|
// TODO: What if ratio is not an integer but a float?
|
|
|
|
ratio := js.Global.Get("window").Get("devicePixelRatio").Int()
|
|
|
|
if ratio == 0 {
|
|
|
|
ratio = 1
|
|
|
|
}
|
|
|
|
return ratio
|
|
|
|
}
|
|
|
|
|
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-07 15:59:04 +01:00
|
|
|
actualScale = scale * devicePixelRatio()
|
|
|
|
canvas.Set("width", width*actualScale)
|
|
|
|
canvas.Set("height", height*actualScale)
|
2015-01-05 14:22:47 +01:00
|
|
|
canvasStyle := canvas.Get("style")
|
2015-01-07 15:59:04 +01:00
|
|
|
|
|
|
|
cssWidth := width * scale
|
|
|
|
cssHeight := height * scale
|
|
|
|
canvasStyle.Set("width", strconv.Itoa(cssWidth)+"px")
|
|
|
|
canvasStyle.Set("height", strconv.Itoa(cssHeight)+"px")
|
2015-01-10 11:59:47 +01:00
|
|
|
// CSS calc requires space chars.
|
2015-01-07 15:59:04 +01:00
|
|
|
canvasStyle.Set("left", "calc(50% - "+strconv.Itoa(cssWidth/2)+"px)")
|
|
|
|
canvasStyle.Set("top", "calc(50% - "+strconv.Itoa(cssHeight/2)+"px)")
|
2015-01-06 15:41:03 +01:00
|
|
|
|
2015-01-10 07:51:07 +01:00
|
|
|
canvas.Call("addEventListener", "mousemove", func(e js.Object) {
|
2015-01-06 15:41:03 +01:00
|
|
|
rect := canvas.Call("getBoundingClientRect")
|
|
|
|
x, y := e.Get("clientX").Int(), e.Get("clientY").Int()
|
|
|
|
x -= rect.Get("left").Int()
|
|
|
|
y -= rect.Get("top").Int()
|
|
|
|
currentInput.mouseMove(x/scale, y/scale)
|
|
|
|
})
|
2015-01-06 20:34:36 +01:00
|
|
|
canvas.Call("focus")
|
2015-01-06 15:41:03 +01:00
|
|
|
|
2015-01-07 15:59:04 +01:00
|
|
|
return actualScale, nil
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|