2013-06-19 01:49:54 +02:00
|
|
|
package opengl
|
2013-06-15 10:07:14 +02:00
|
|
|
|
|
|
|
// #cgo LDFLAGS: -framework OpenGL
|
|
|
|
//
|
|
|
|
// #include <stdlib.h>
|
2013-06-17 16:10:55 +02:00
|
|
|
// #include <OpenGL/gl.h>
|
2013-06-15 10:07:14 +02:00
|
|
|
import "C"
|
|
|
|
import (
|
2013-06-18 17:48:41 +02:00
|
|
|
"fmt"
|
2013-10-14 04:34:58 +02:00
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics"
|
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics/matrix"
|
2013-10-27 11:27:59 +01:00
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics/opengl/texture"
|
2013-10-25 21:15:27 +02:00
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics/opengl/shader"
|
|
|
|
"github.com/hajimehoshi/go-ebiten/graphics/rendertarget"
|
2013-10-27 11:27:59 +01:00
|
|
|
gtexture "github.com/hajimehoshi/go-ebiten/graphics/texture"
|
2013-06-19 16:08:24 +02:00
|
|
|
"image"
|
2013-06-22 08:56:25 +02:00
|
|
|
"math"
|
2013-06-15 10:07:14 +02:00
|
|
|
)
|
|
|
|
|
2013-06-27 17:33:03 +02:00
|
|
|
type Context struct {
|
2013-10-21 15:18:10 +02:00
|
|
|
screenId graphics.RenderTargetId
|
2013-10-05 18:47:19 +02:00
|
|
|
screenWidth int
|
|
|
|
screenHeight int
|
2013-06-22 08:56:25 +02:00
|
|
|
screenScale int
|
2013-10-27 11:27:59 +01:00
|
|
|
textures map[graphics.TextureId]*gtexture.Texture
|
2013-10-25 21:15:27 +02:00
|
|
|
renderTargets map[graphics.RenderTargetId]*rendertarget.RenderTarget
|
2013-10-21 15:18:10 +02:00
|
|
|
renderTargetToTexture map[graphics.RenderTargetId]graphics.TextureId
|
2013-10-25 21:15:27 +02:00
|
|
|
mainFramebufferTexture *rendertarget.RenderTarget
|
2013-10-22 18:08:01 +02:00
|
|
|
projectionMatrix [16]float32
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
2013-06-27 17:33:03 +02:00
|
|
|
func newContext(screenWidth, screenHeight, screenScale int) *Context {
|
|
|
|
context := &Context{
|
2013-10-19 18:52:18 +02:00
|
|
|
screenWidth: screenWidth,
|
|
|
|
screenHeight: screenHeight,
|
|
|
|
screenScale: screenScale,
|
2013-10-27 11:27:59 +01:00
|
|
|
textures: map[graphics.TextureId]*gtexture.Texture{},
|
2013-10-25 21:15:27 +02:00
|
|
|
renderTargets: map[graphics.RenderTargetId]*rendertarget.RenderTarget{},
|
2013-10-21 15:18:10 +02:00
|
|
|
renderTargetToTexture: map[graphics.RenderTargetId]graphics.TextureId{},
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
2013-10-05 18:47:19 +02:00
|
|
|
return context
|
|
|
|
}
|
|
|
|
|
|
|
|
func (context *Context) Init() {
|
2013-10-11 18:29:19 +02:00
|
|
|
// The main framebuffer should be created sooner than any other
|
|
|
|
// framebuffers!
|
2013-06-15 10:07:14 +02:00
|
|
|
mainFramebuffer := C.GLint(0)
|
|
|
|
C.glGetIntegerv(C.GL_FRAMEBUFFER_BINDING, &mainFramebuffer)
|
2013-06-17 16:10:55 +02:00
|
|
|
|
2013-10-25 02:30:39 +02:00
|
|
|
var err error
|
2013-10-27 11:27:59 +01:00
|
|
|
context.mainFramebufferTexture, err = texture.NewRenderTargetWithFramebuffer(
|
2013-10-05 18:47:19 +02:00
|
|
|
context.screenWidth*context.screenScale,
|
2013-10-11 18:29:19 +02:00
|
|
|
context.screenHeight*context.screenScale,
|
2013-10-27 11:27:59 +01:00
|
|
|
texture.Framebuffer(mainFramebuffer))
|
2013-10-25 02:30:39 +02:00
|
|
|
if err != nil {
|
|
|
|
panic("creating main framebuffer failed: " + err.Error())
|
|
|
|
}
|
2013-07-12 18:36:01 +02:00
|
|
|
|
2013-10-20 18:13:09 +02:00
|
|
|
context.screenId, err = context.NewRenderTarget(
|
2013-10-16 17:14:32 +02:00
|
|
|
context.screenWidth, context.screenHeight)
|
2013-10-20 18:13:09 +02:00
|
|
|
if err != nil {
|
|
|
|
panic("initializing the offscreen failed: " + err.Error())
|
|
|
|
}
|
2013-10-26 19:25:41 +02:00
|
|
|
screen := context.renderTargets[context.screenId]
|
2013-10-27 11:27:59 +01:00
|
|
|
C.glBindTexture(C.GL_TEXTURE_2D, C.GLuint(screen.Texture().Native().(texture.Native)))
|
2013-10-26 19:25:41 +02:00
|
|
|
C.glTexParameteri(C.GL_TEXTURE_2D, C.GL_TEXTURE_MAG_FILTER, C.GL_NEAREST)
|
|
|
|
C.glTexParameteri(C.GL_TEXTURE_2D, C.GL_TEXTURE_MIN_FILTER, C.GL_NEAREST)
|
|
|
|
C.glBindTexture(C.GL_TEXTURE_2D, 0)
|
2013-10-16 17:14:32 +02:00
|
|
|
}
|
|
|
|
|
2013-10-21 15:18:10 +02:00
|
|
|
func (context *Context) ToTexture(renderTargetId graphics.RenderTargetId) graphics.TextureId {
|
|
|
|
return context.renderTargetToTexture[renderTargetId]
|
2013-07-04 16:57:53 +02:00
|
|
|
}
|
|
|
|
|
2013-06-27 17:33:03 +02:00
|
|
|
func (context *Context) Clear() {
|
2013-10-11 20:20:13 +02:00
|
|
|
context.Fill(0, 0, 0)
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
2013-10-11 20:20:13 +02:00
|
|
|
func (context *Context) Fill(r, g, b uint8) {
|
|
|
|
const max = float64(math.MaxUint8)
|
2013-06-17 16:10:55 +02:00
|
|
|
C.glClearColor(
|
2013-06-19 16:51:41 +02:00
|
|
|
C.GLclampf(float64(r)/max),
|
|
|
|
C.GLclampf(float64(g)/max),
|
|
|
|
C.GLclampf(float64(b)/max),
|
2013-10-11 20:20:13 +02:00
|
|
|
1)
|
2013-06-17 16:10:55 +02:00
|
|
|
C.glClear(C.GL_COLOR_BUFFER_BIT)
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
2013-10-25 21:15:27 +02:00
|
|
|
func (context *Context) DrawTexture(
|
|
|
|
textureId graphics.TextureId,
|
|
|
|
geometryMatrix matrix.Geometry, colorMatrix matrix.Color) {
|
2013-10-26 16:18:23 +02:00
|
|
|
tex, ok := context.textures[textureId]
|
2013-10-25 21:15:27 +02:00
|
|
|
if !ok {
|
|
|
|
panic("invalid texture ID")
|
|
|
|
}
|
2013-10-27 11:27:59 +01:00
|
|
|
tex.Draw(func(native interface{}, quads []gtexture.Quad) {
|
|
|
|
shader.DrawTexture(native.(texture.Native),
|
2013-10-26 18:56:58 +02:00
|
|
|
context.projectionMatrix, quads,
|
2013-10-26 16:18:23 +02:00
|
|
|
geometryMatrix, colorMatrix)
|
|
|
|
})
|
2013-10-25 21:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (context *Context) DrawTextureParts(
|
|
|
|
textureId graphics.TextureId, parts []graphics.TexturePart,
|
|
|
|
geometryMatrix matrix.Geometry, colorMatrix matrix.Color) {
|
2013-10-26 16:18:23 +02:00
|
|
|
tex, ok := context.textures[textureId]
|
2013-10-25 21:15:27 +02:00
|
|
|
if !ok {
|
|
|
|
panic("invalid texture ID")
|
|
|
|
}
|
2013-10-27 11:27:59 +01:00
|
|
|
tex.DrawParts(parts, func(native interface{}, quads []gtexture.Quad) {
|
|
|
|
shader.DrawTexture(native.(texture.Native),
|
2013-10-26 18:56:58 +02:00
|
|
|
context.projectionMatrix, quads,
|
2013-10-26 16:18:23 +02:00
|
|
|
geometryMatrix, colorMatrix)
|
|
|
|
})
|
2013-10-25 21:15:27 +02:00
|
|
|
}
|
|
|
|
|
2013-10-16 16:06:35 +02:00
|
|
|
func (context *Context) ResetOffscreen() {
|
2013-10-20 08:51:26 +02:00
|
|
|
context.SetOffscreen(context.screenId)
|
2013-10-16 16:06:35 +02:00
|
|
|
}
|
|
|
|
|
2013-10-21 15:18:10 +02:00
|
|
|
func (context *Context) SetOffscreen(renderTargetId graphics.RenderTargetId) {
|
|
|
|
renderTarget := context.renderTargets[renderTargetId]
|
2013-10-11 18:29:19 +02:00
|
|
|
context.setOffscreen(renderTarget)
|
2013-06-19 16:08:24 +02:00
|
|
|
}
|
|
|
|
|
2013-10-25 21:15:27 +02:00
|
|
|
func (context *Context) setOffscreen(renderTarget *rendertarget.RenderTarget) {
|
2013-06-19 02:41:17 +02:00
|
|
|
C.glFlush()
|
|
|
|
|
2013-10-27 11:27:59 +01:00
|
|
|
framebuffer := C.GLuint(renderTarget.Framebuffer().(texture.Framebuffer))
|
2013-10-25 21:15:27 +02:00
|
|
|
C.glBindFramebuffer(C.GL_FRAMEBUFFER, framebuffer)
|
2013-10-11 18:29:19 +02:00
|
|
|
err := C.glCheckFramebufferStatus(C.GL_FRAMEBUFFER)
|
|
|
|
if err != C.GL_FRAMEBUFFER_COMPLETE {
|
2013-06-18 17:48:41 +02:00
|
|
|
panic(fmt.Sprintf("glBindFramebuffer failed: %d", err))
|
2013-06-17 16:10:55 +02:00
|
|
|
}
|
2013-10-11 04:35:10 +02:00
|
|
|
|
2013-06-17 16:10:55 +02:00
|
|
|
C.glEnable(C.GL_BLEND)
|
2013-10-11 04:35:10 +02:00
|
|
|
C.glBlendFuncSeparate(C.GL_SRC_ALPHA, C.GL_ONE_MINUS_SRC_ALPHA,
|
|
|
|
C.GL_ZERO, C.GL_ONE)
|
2013-06-17 16:10:55 +02:00
|
|
|
|
2013-10-26 18:56:58 +02:00
|
|
|
isUsingMainFramebuffer := renderTarget == context.mainFramebufferTexture
|
2013-10-25 21:15:27 +02:00
|
|
|
setter := &viewportSetter{
|
|
|
|
isUsingMainFramebuffer,
|
|
|
|
context.screenHeight * context.screenScale,
|
|
|
|
context,
|
|
|
|
}
|
2013-10-26 18:56:58 +02:00
|
|
|
renderTarget.SetAsViewport(setter.Set)
|
2013-10-25 21:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type viewportSetter struct {
|
|
|
|
isUsingMainFramebuffer bool
|
|
|
|
actualScreenHeight int
|
|
|
|
context *Context
|
2013-10-09 16:34:11 +02:00
|
|
|
}
|
|
|
|
|
2013-10-25 21:15:27 +02:00
|
|
|
func (v *viewportSetter) Set(x, y, width, height int) {
|
2013-10-22 18:08:01 +02:00
|
|
|
C.glViewport(C.GLint(x), C.GLint(y), C.GLsizei(width), C.GLsizei(height))
|
2013-10-19 11:33:55 +02:00
|
|
|
|
2013-10-25 02:30:39 +02:00
|
|
|
matrix := graphics.OrthoProjectionMatrix(x, width, y, height)
|
2013-10-25 21:15:27 +02:00
|
|
|
if v.isUsingMainFramebuffer {
|
2013-10-25 02:30:39 +02:00
|
|
|
// Flip Y and move to fit with the top of the window.
|
2013-10-22 18:08:01 +02:00
|
|
|
matrix[1][1] *= -1
|
2013-10-25 21:15:27 +02:00
|
|
|
matrix[1][3] += float64(v.actualScreenHeight) / float64(height) * 2
|
2013-06-17 16:10:55 +02:00
|
|
|
}
|
2013-06-22 16:16:01 +02:00
|
|
|
|
2013-10-22 18:08:01 +02:00
|
|
|
for j := 0; j < 4; j++ {
|
|
|
|
for i := 0; i < 4; i++ {
|
2013-10-25 21:15:27 +02:00
|
|
|
v.context.projectionMatrix[i+j*4] = float32(matrix[i][j])
|
2013-10-22 18:08:01 +02:00
|
|
|
}
|
2013-06-17 16:10:55 +02:00
|
|
|
}
|
2013-10-22 18:08:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (context *Context) setMainFramebufferOffscreen() {
|
|
|
|
context.setOffscreen(context.mainFramebufferTexture)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (context *Context) flush() {
|
|
|
|
C.glFlush()
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
2013-10-20 18:13:09 +02:00
|
|
|
func (context *Context) NewRenderTarget(width, height int) (
|
2013-10-21 15:18:10 +02:00
|
|
|
graphics.RenderTargetId, error) {
|
2013-10-27 11:27:59 +01:00
|
|
|
renderTarget, err := texture.NewRenderTarget(width, height)
|
2013-10-20 18:13:09 +02:00
|
|
|
if err != nil {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2013-10-21 15:18:10 +02:00
|
|
|
renderTargetId := graphics.RenderTargetId(<-newId)
|
|
|
|
textureId := graphics.TextureId(<-newId)
|
2013-10-19 18:52:18 +02:00
|
|
|
context.renderTargets[renderTargetId] = renderTarget
|
2013-10-25 21:15:27 +02:00
|
|
|
context.textures[textureId] = renderTarget.Texture()
|
2013-10-19 18:52:18 +02:00
|
|
|
context.renderTargetToTexture[renderTargetId] = textureId
|
2013-06-22 19:23:45 +02:00
|
|
|
|
2013-10-19 11:47:34 +02:00
|
|
|
context.setOffscreen(renderTarget)
|
2013-06-22 19:23:45 +02:00
|
|
|
context.Clear()
|
2013-10-22 18:08:01 +02:00
|
|
|
// TODO: Is it OK to revert he main framebuffer?
|
2013-10-17 17:45:12 +02:00
|
|
|
context.setMainFramebufferOffscreen()
|
2013-06-22 19:23:45 +02:00
|
|
|
|
2013-10-20 18:13:09 +02:00
|
|
|
return renderTargetId, nil
|
2013-06-19 16:08:24 +02:00
|
|
|
}
|
|
|
|
|
2013-10-11 18:29:19 +02:00
|
|
|
func (context *Context) NewTextureFromImage(img image.Image) (
|
2013-10-21 15:18:10 +02:00
|
|
|
graphics.TextureId, error) {
|
2013-10-27 11:27:59 +01:00
|
|
|
texture, err := texture.NewFromImage(img)
|
2013-06-23 09:06:32 +02:00
|
|
|
if err != nil {
|
2013-10-16 17:14:32 +02:00
|
|
|
return 0, err
|
2013-06-23 09:06:32 +02:00
|
|
|
}
|
2013-10-21 15:18:10 +02:00
|
|
|
textureId := graphics.TextureId(<-newId)
|
2013-10-19 18:52:18 +02:00
|
|
|
context.textures[textureId] = texture
|
|
|
|
return textureId, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var newId chan int
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
newId = make(chan int)
|
|
|
|
go func() {
|
|
|
|
for i := 0; ; i++ {
|
|
|
|
newId <- i
|
|
|
|
}
|
|
|
|
}()
|
2013-06-15 10:07:14 +02:00
|
|
|
}
|