ebiten/internal/graphicsdriver/opengl/context_js.go

482 lines
14 KiB
Go
Raw Normal View History

2014-12-31 13:55:40 +01:00
// Copyright 2014 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 opengl
import (
"errors"
"fmt"
"syscall/js"
2018-10-28 12:42:57 +01:00
"github.com/hajimehoshi/ebiten/internal/driver"
"github.com/hajimehoshi/ebiten/internal/jsutil"
2019-05-26 12:08:46 +02:00
"github.com/hajimehoshi/ebiten/internal/web"
2014-12-31 13:55:40 +01:00
)
type (
2018-11-04 11:46:20 +01:00
textureNative js.Value
framebufferNative js.Value
shader js.Value
buffer js.Value
uniformLocation js.Value
2014-12-31 13:55:40 +01:00
attribLocation int
programID int
2018-10-29 17:52:59 +01:00
program struct {
value js.Value
id programID
}
)
2015-01-12 15:16:34 +01:00
2018-11-04 11:46:20 +01:00
var InvalidTexture = textureNative(js.Null())
2018-10-29 17:52:59 +01:00
func getProgramID(p program) programID {
return p.id
2015-01-12 15:16:34 +01:00
}
var (
// Accessing the prototype is rquired on Safari.
contextPrototype = js.Global().Get("WebGLRenderingContext").Get("prototype")
vertexShader = shaderType(contextPrototype.Get("VERTEX_SHADER").Int())
fragmentShader = shaderType(contextPrototype.Get("FRAGMENT_SHADER").Int())
arrayBuffer = bufferType(contextPrototype.Get("ARRAY_BUFFER").Int())
elementArrayBuffer = bufferType(contextPrototype.Get("ELEMENT_ARRAY_BUFFER").Int())
dynamicDraw = bufferUsage(contextPrototype.Get("DYNAMIC_DRAW").Int())
short = dataType(contextPrototype.Get("SHORT").Int())
float = dataType(contextPrototype.Get("FLOAT").Int())
zero = operation(contextPrototype.Get("ZERO").Int())
one = operation(contextPrototype.Get("ONE").Int())
srcAlpha = operation(contextPrototype.Get("SRC_ALPHA").Int())
dstAlpha = operation(contextPrototype.Get("DST_ALPHA").Int())
oneMinusSrcAlpha = operation(contextPrototype.Get("ONE_MINUS_SRC_ALPHA").Int())
oneMinusDstAlpha = operation(contextPrototype.Get("ONE_MINUS_DST_ALPHA").Int())
blend = contextPrototype.Get("BLEND")
clampToEdge = contextPrototype.Get("CLAMP_TO_EDGE")
compileStatus = contextPrototype.Get("COMPILE_STATUS")
colorAttachment0 = contextPrototype.Get("COLOR_ATTACHMENT0")
framebuffer_ = contextPrototype.Get("FRAMEBUFFER")
framebufferBinding = contextPrototype.Get("FRAMEBUFFER_BINDING")
framebufferComplete = contextPrototype.Get("FRAMEBUFFER_COMPLETE")
highFloat = contextPrototype.Get("HIGH_FLOAT")
linkStatus = contextPrototype.Get("LINK_STATUS")
maxTextureSize = contextPrototype.Get("MAX_TEXTURE_SIZE")
nearest = contextPrototype.Get("NEAREST")
noError = contextPrototype.Get("NO_ERROR")
rgba = contextPrototype.Get("RGBA")
texture2d = contextPrototype.Get("TEXTURE_2D")
textureMagFilter = contextPrototype.Get("TEXTURE_MAG_FILTER")
textureMinFilter = contextPrototype.Get("TEXTURE_MIN_FILTER")
textureWrapS = contextPrototype.Get("TEXTURE_WRAP_S")
textureWrapT = contextPrototype.Get("TEXTURE_WRAP_T")
triangles = contextPrototype.Get("TRIANGLES")
unpackAlignment = contextPrototype.Get("UNPACK_ALIGNMENT")
unsignedByte = contextPrototype.Get("UNSIGNED_BYTE")
unsignedShort = contextPrototype.Get("UNSIGNED_SHORT")
)
2016-07-03 11:11:37 +02:00
// temporaryBuffer is a temporary buffer used at gl.readPixels.
// The read data is converted to Go's byte slice as soon as possible.
// To avoid often allocating ArrayBuffer, reuse the buffer whenever possible.
var temporaryBuffer = js.Global().Get("ArrayBuffer").New(16)
type contextImpl struct {
2018-05-23 20:04:56 +02:00
gl js.Value
2016-05-31 19:33:31 +02:00
lastProgramID programID
2014-12-31 13:55:40 +01:00
}
func (c *context) ensureGL() {
if c.gl != (js.Value{}) {
return
}
if js.Global().Get("WebGLRenderingContext") == js.Undefined() {
panic("opengl: WebGL is not supported")
}
2017-12-02 08:46:55 +01:00
// TODO: Define id?
canvas := js.Global().Get("document").Call("querySelector", "canvas")
attr := js.Global().Get("Object").New()
2018-05-23 20:04:56 +02:00
attr.Set("alpha", true)
attr.Set("premultipliedAlpha", true)
gl := canvas.Call("getContext", "webgl", attr)
if gl == js.Null() {
gl = canvas.Call("getContext", "experimental-webgl", attr)
if gl == js.Null() {
panic("opengl: getContext failed")
}
2015-01-27 14:02:23 +01:00
}
2015-01-02 07:20:05 +01:00
c.gl = gl
2014-12-31 13:55:40 +01:00
}
func (c *context) reset() error {
2016-06-09 18:19:10 +02:00
c.locationCache = newLocationCache()
2018-11-04 11:46:20 +01:00
c.lastTexture = textureNative(js.Null())
c.lastFramebuffer = framebufferNative(js.Null())
2016-06-09 18:19:10 +02:00
c.lastViewportWidth = 0
c.lastViewportHeight = 0
c.lastCompositeMode = driver.CompositeModeUnknown
c.gl = js.Value{}
c.ensureGL()
if c.gl.Call("isContextLost").Bool() {
return fmt.Errorf("opengl: the context is lost")
}
2016-06-09 18:19:10 +02:00
gl := c.gl
gl.Call("enable", blend)
c.blendFunc(driver.CompositeModeSourceOver)
f := gl.Call("getParameter", framebufferBinding)
c.screenFramebuffer = framebufferNative(f)
return nil
2016-06-09 18:19:10 +02:00
}
func (c *context) blendFunc(mode driver.CompositeMode) {
if c.lastCompositeMode == mode {
2016-02-28 17:44:09 +01:00
return
}
c.lastCompositeMode = mode
2018-10-28 12:42:57 +01:00
s, d := mode.Operations()
s2, d2 := convertOperation(s), convertOperation(d)
c.ensureGL()
gl := c.gl
2018-10-28 12:42:57 +01:00
gl.Call("blendFunc", int(s2), int(d2))
2014-12-31 13:55:40 +01:00
}
func (c *context) newTexture(width, height int) (textureNative, error) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
t := gl.Call("createTexture")
if t == js.Null() {
2018-11-04 11:46:20 +01:00
return textureNative(js.Null()), errors.New("opengl: glGenTexture failed")
2014-12-31 13:55:40 +01:00
}
gl.Call("pixelStorei", unpackAlignment, 4)
2018-11-04 11:46:20 +01:00
c.bindTexture(textureNative(t))
2014-12-31 13:55:40 +01:00
gl.Call("texParameteri", texture2d, textureMagFilter, nearest)
gl.Call("texParameteri", texture2d, textureMinFilter, nearest)
gl.Call("texParameteri", texture2d, textureWrapS, clampToEdge)
gl.Call("texParameteri", texture2d, textureWrapT, clampToEdge)
2014-12-31 13:55:40 +01:00
2018-09-28 19:20:02 +02:00
// Firefox warns the usage of textures without specifying pixels (#629)
//
// Error: WebGL warning: drawElements: This operation requires zeroing texture data. This is slow.
//
// In Ebiten, textures are filled with pixels laster by the filter that ignores destination, so it is fine
// to leave textures as uninitialized here. Rather, extra memory allocating for initialization should be
// avoided.
gl.Call("texImage2D", texture2d, 0, rgba, width, height, 0, rgba, unsignedByte, nil)
2014-12-31 13:55:40 +01:00
2018-11-04 11:46:20 +01:00
return textureNative(t), nil
2014-12-31 13:55:40 +01:00
}
func (c *context) bindFramebufferImpl(f framebufferNative) {
c.ensureGL()
2015-02-19 18:02:23 +01:00
gl := c.gl
2018-11-04 11:49:09 +01:00
gl.Call("bindFramebuffer", framebuffer_, js.Value(f))
2015-02-19 18:02:23 +01:00
}
func (c *context) framebufferPixels(f *framebuffer, width, height int) ([]byte, error) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
c.bindFramebuffer(f.native)
l := 4 * width * height
if bufl := temporaryBuffer.Get("byteLength").Int(); bufl < l {
for bufl < l {
bufl *= 2
}
temporaryBuffer = js.Global().Get("ArrayBuffer").New(bufl)
}
p := js.Global().Get("Uint8Array").New(temporaryBuffer, 0, l)
gl.Call("readPixels", 0, 0, width, height, rgba, unsignedByte, p)
return jsutil.Uint8ArrayToSlice(p), nil
2014-12-31 13:55:40 +01:00
}
func (c *context) bindTextureImpl(t textureNative) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
gl.Call("bindTexture", texture2d, js.Value(t))
2014-12-31 13:55:40 +01:00
}
func (c *context) deleteTexture(t textureNative) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
if !gl.Call("isTexture", js.Value(t)).Bool() {
return
}
if c.lastTexture == t {
2018-11-04 11:46:20 +01:00
c.lastTexture = textureNative(js.Null())
}
gl.Call("deleteTexture", js.Value(t))
2014-12-31 13:55:40 +01:00
}
func (c *context) isTexture(t textureNative) bool {
c.ensureGL()
2016-06-12 16:54:36 +02:00
gl := c.gl
return gl.Call("isTexture", js.Value(t)).Bool()
2016-06-12 16:54:36 +02:00
}
func (c *context) texSubImage2D(t textureNative, pixels []byte, x, y, width, height int) {
2018-11-01 19:43:42 +01:00
c.bindTexture(t)
c.ensureGL()
2015-01-02 15:30:22 +01:00
gl := c.gl
// void texSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset,
// GLsizei width, GLsizei height,
// GLenum format, GLenum type, ArrayBufferView? pixels);
p, free := jsutil.SliceToTypedArray(pixels)
gl.Call("texSubImage2D", texture2d, 0, x, y, width, height, rgba, unsignedByte, p)
free()
2015-01-02 15:30:22 +01:00
}
func (c *context) newFramebuffer(t textureNative) (framebufferNative, error) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
f := gl.Call("createFramebuffer")
c.bindFramebuffer(framebufferNative(f))
2014-12-31 13:55:40 +01:00
2018-11-04 11:49:09 +01:00
gl.Call("framebufferTexture2D", framebuffer_, colorAttachment0, texture2d, js.Value(t), 0)
if s := gl.Call("checkFramebufferStatus", framebuffer_); s.Int() != framebufferComplete.Int() {
return framebufferNative(js.Null()), errors.New(fmt.Sprintf("opengl: creating framebuffer failed: %d", s.Int()))
2014-12-31 13:55:40 +01:00
}
return framebufferNative(f), nil
2014-12-31 13:55:40 +01:00
}
func (c *context) setViewportImpl(width, height int) {
c.ensureGL()
gl := c.gl
gl.Call("viewport", 0, 0, width, height)
2014-12-31 13:55:40 +01:00
}
func (c *context) deleteFramebuffer(f framebufferNative) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
if !gl.Call("isFramebuffer", js.Value(f)).Bool() {
return
}
2016-07-06 19:08:28 +02:00
// If a framebuffer to be deleted is bound, a newly bound framebuffer
// will be a default framebuffer.
// https://www.khronos.org/opengles/sdk/docs/man/xhtml/glDeleteFramebuffers.xml
if c.lastFramebuffer == f {
c.lastFramebuffer = framebufferNative(js.Null())
c.lastViewportWidth = 0
c.lastViewportHeight = 0
}
gl.Call("deleteFramebuffer", js.Value(f))
2014-12-31 13:55:40 +01:00
}
func (c *context) newShader(shaderType shaderType, source string) (shader, error) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
s := gl.Call("createShader", int(shaderType))
if s == js.Null() {
2018-10-29 17:52:59 +01:00
return shader(js.Null()), fmt.Errorf("opengl: glCreateShader failed: shader type: %d", shaderType)
2014-12-31 13:55:40 +01:00
}
gl.Call("shaderSource", js.Value(s), source)
gl.Call("compileShader", js.Value(s))
2014-12-31 13:55:40 +01:00
if !gl.Call("getShaderParameter", js.Value(s), compileStatus).Bool() {
log := gl.Call("getShaderInfoLog", js.Value(s))
2018-10-29 17:52:59 +01:00
return shader(js.Null()), fmt.Errorf("opengl: shader compile failed: %s", log)
2014-12-31 13:55:40 +01:00
}
2018-10-29 17:52:59 +01:00
return shader(s), nil
2014-12-31 13:55:40 +01:00
}
func (c *context) deleteShader(s shader) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
gl.Call("deleteShader", js.Value(s))
2014-12-31 13:55:40 +01:00
}
func (c *context) newProgram(shaders []shader, attributes []string) (program, error) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
v := gl.Call("createProgram")
if v == js.Null() {
2018-10-29 17:52:59 +01:00
return program{}, errors.New("opengl: glCreateProgram failed")
2014-12-31 13:55:40 +01:00
}
for _, shader := range shaders {
gl.Call("attachShader", v, js.Value(shader))
2014-12-31 13:55:40 +01:00
}
for i, name := range attributes {
gl.Call("bindAttribLocation", v, i, name)
}
gl.Call("linkProgram", v)
if !gl.Call("getProgramParameter", v, linkStatus).Bool() {
2018-10-29 17:52:59 +01:00
return program{}, errors.New("opengl: program error")
2014-12-31 13:55:40 +01:00
}
id := c.lastProgramID
c.lastProgramID++
2018-10-29 17:52:59 +01:00
return program{
value: v,
id: id,
}, nil
2014-12-31 13:55:40 +01:00
}
func (c *context) useProgram(p program) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
gl.Call("useProgram", p.value)
2014-12-31 13:55:40 +01:00
}
func (c *context) deleteProgram(p program) {
c.ensureGL()
gl := c.gl
if !gl.Call("isProgram", p.value).Bool() {
return
}
gl.Call("deleteProgram", p.value)
}
func (c *context) getUniformLocationImpl(p program, location string) uniformLocation {
c.ensureGL()
2015-01-12 15:16:34 +01:00
gl := c.gl
return uniformLocation(gl.Call("getUniformLocation", p.value, location))
2015-01-12 15:16:34 +01:00
}
func (c *context) uniformInt(p program, location string, v int) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
2016-02-26 19:01:55 +01:00
l := c.locationCache.GetUniformLocation(c, p, location)
gl.Call("uniform1i", js.Value(l), v)
2015-01-03 07:52:02 +01:00
}
func (c *context) uniformFloat(p program, location string, v float32) {
c.ensureGL()
gl := c.gl
l := c.locationCache.GetUniformLocation(c, p, location)
gl.Call("uniform1f", js.Value(l), v)
}
func (c *context) uniformFloats(p program, location string, v []float32) {
c.ensureGL()
2015-01-03 07:52:02 +01:00
gl := c.gl
2016-02-26 19:01:55 +01:00
l := c.locationCache.GetUniformLocation(c, p, location)
2015-01-03 07:52:02 +01:00
switch len(v) {
case 2:
gl.Call("uniform2f", js.Value(l), v[0], v[1])
2015-01-03 07:52:02 +01:00
case 4:
gl.Call("uniform4f", js.Value(l), v[0], v[1], v[2], v[3])
2015-01-03 07:52:02 +01:00
case 16:
arr, free := jsutil.SliceToTypedArray(v)
gl.Call("uniformMatrix4fv", js.Value(l), false, arr)
free()
default:
2019-02-07 09:19:24 +01:00
panic(fmt.Sprintf("opengl: invalid uniform floats num: %d", len(v)))
2014-12-31 13:55:40 +01:00
}
}
func (c *context) vertexAttribPointer(p program, index int, size int, dataType dataType, stride int, offset int) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
gl.Call("vertexAttribPointer", index, size, int(dataType), false, stride, offset)
2014-12-31 13:55:40 +01:00
}
func (c *context) enableVertexAttribArray(p program, index int) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
gl.Call("enableVertexAttribArray", index)
2014-12-31 13:55:40 +01:00
}
func (c *context) disableVertexAttribArray(p program, index int) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
gl.Call("disableVertexAttribArray", index)
2014-12-31 13:55:40 +01:00
}
func (c *context) newArrayBuffer(size int) buffer {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
b := gl.Call("createBuffer")
2018-10-30 14:41:05 +01:00
gl.Call("bindBuffer", int(arrayBuffer), js.Value(b))
gl.Call("bufferData", int(arrayBuffer), size, int(dynamicDraw))
2018-10-29 17:52:59 +01:00
return buffer(b)
}
func (c *context) newElementArrayBuffer(size int) buffer {
c.ensureGL()
gl := c.gl
b := gl.Call("createBuffer")
2018-10-30 14:41:05 +01:00
gl.Call("bindBuffer", int(elementArrayBuffer), js.Value(b))
gl.Call("bufferData", int(elementArrayBuffer), size, int(dynamicDraw))
2018-10-29 17:52:59 +01:00
return buffer(b)
2015-01-17 04:45:19 +01:00
}
func (c *context) bindBuffer(bufferType bufferType, b buffer) {
c.ensureGL()
2015-01-17 04:45:19 +01:00
gl := c.gl
gl.Call("bindBuffer", int(bufferType), js.Value(b))
2014-12-31 13:55:40 +01:00
}
func (c *context) arrayBufferSubData(data []float32) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
arr, free := jsutil.SliceToTypedArray(data)
2018-10-30 14:41:05 +01:00
gl.Call("bufferSubData", int(arrayBuffer), 0, arr)
free()
}
func (c *context) elementArrayBufferSubData(data []uint16) {
c.ensureGL()
gl := c.gl
arr, free := jsutil.SliceToTypedArray(data)
2018-10-30 14:41:05 +01:00
gl.Call("bufferSubData", int(elementArrayBuffer), 0, arr)
free()
2014-12-31 13:55:40 +01:00
}
func (c *context) deleteBuffer(b buffer) {
c.ensureGL()
gl := c.gl
gl.Call("deleteBuffer", js.Value(b))
}
func (c *context) drawElements(len int, offsetInBytes int) {
c.ensureGL()
2014-12-31 13:55:40 +01:00
gl := c.gl
2018-10-30 14:29:54 +01:00
gl.Call("drawElements", triangles, len, unsignedShort, offsetInBytes)
2014-12-31 13:55:40 +01:00
}
func (c *context) maxTextureSizeImpl() int {
c.ensureGL()
gl := c.gl
return gl.Call("getParameter", maxTextureSize).Int()
}
func (c *context) getShaderPrecisionFormatPrecision() int {
c.ensureGL()
gl := c.gl
return gl.Call("getShaderPrecisionFormat", js.ValueOf(int(fragmentShader)), highFloat).Get("precision").Int()
}
func (c *context) flush() {
c.ensureGL()
gl := c.gl
gl.Call("flush")
}
2019-05-26 12:08:46 +02:00
func (c *context) needsRestoring() bool {
return !web.IsMobileBrowser()
}