2014-12-24 03:04:10 +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.
|
2014-12-09 15:16:04 +01:00
|
|
|
|
2014-12-30 18:55:17 +01:00
|
|
|
package graphics
|
2013-10-27 11:54:28 +01:00
|
|
|
|
|
|
|
import (
|
2015-01-15 17:56:27 +01:00
|
|
|
"image/color"
|
2016-02-28 16:25:16 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
|
2013-10-27 11:54:28 +01:00
|
|
|
)
|
|
|
|
|
2015-01-02 19:29:04 +01:00
|
|
|
func orthoProjectionMatrix(left, right, bottom, top int) *[4][4]float64 {
|
2014-12-07 11:25:49 +01:00
|
|
|
e11 := float64(2) / float64(right-left)
|
|
|
|
e22 := float64(2) / float64(top-bottom)
|
|
|
|
e14 := -1 * float64(right+left) / float64(right-left)
|
|
|
|
e24 := -1 * float64(top+bottom) / float64(top-bottom)
|
|
|
|
|
2015-01-02 19:29:04 +01:00
|
|
|
return &[4][4]float64{
|
2014-12-07 11:25:49 +01:00
|
|
|
{e11, 0, 0, e14},
|
|
|
|
{0, e22, 0, e24},
|
|
|
|
{0, 0, 1, 0},
|
|
|
|
{0, 0, 0, 1},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 16:01:22 +01:00
|
|
|
type Framebuffer struct {
|
2015-02-16 02:33:27 +01:00
|
|
|
native opengl.Framebuffer
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
flipY bool
|
|
|
|
proMatrix *[4][4]float64
|
2014-12-14 10:34:47 +01:00
|
|
|
}
|
|
|
|
|
2014-12-31 07:22:15 +01:00
|
|
|
func NewZeroFramebuffer(c *opengl.Context, width, height int) (*Framebuffer, error) {
|
2016-06-02 20:24:27 +02:00
|
|
|
f := &Framebuffer{
|
2014-12-14 10:34:47 +01:00
|
|
|
width: width,
|
|
|
|
height: height,
|
2014-12-20 10:07:25 +01:00
|
|
|
flipY: true,
|
2014-12-14 10:34:47 +01:00
|
|
|
}
|
2016-06-02 20:24:27 +02:00
|
|
|
return f, nil
|
2014-12-14 10:34:47 +01:00
|
|
|
}
|
|
|
|
|
2014-12-31 07:22:15 +01:00
|
|
|
func NewFramebufferFromTexture(c *opengl.Context, texture *Texture) (*Framebuffer, error) {
|
2016-06-02 20:24:27 +02:00
|
|
|
native, err := c.NewFramebuffer(opengl.Texture(texture.native))
|
2014-12-14 13:38:54 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-06-02 20:24:27 +02:00
|
|
|
f := &Framebuffer{
|
|
|
|
native: native,
|
2016-06-02 20:07:55 +02:00
|
|
|
width: texture.width,
|
|
|
|
height: texture.height,
|
2016-06-02 20:24:27 +02:00
|
|
|
}
|
|
|
|
return f, nil
|
2014-12-14 10:34:47 +01:00
|
|
|
}
|
|
|
|
|
2016-05-07 16:34:10 +02:00
|
|
|
func (f *Framebuffer) Dispose(c *opengl.Context) error {
|
2015-02-09 02:25:00 +01:00
|
|
|
// Don't delete the default framebuffer.
|
|
|
|
if f.native == opengl.ZeroFramebuffer {
|
2016-05-07 16:34:10 +02:00
|
|
|
return nil
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
2014-12-31 10:23:18 +01:00
|
|
|
c.DeleteFramebuffer(f.native)
|
2016-05-07 16:34:10 +02:00
|
|
|
return nil
|
2014-12-14 07:26:10 +01:00
|
|
|
}
|
|
|
|
|
2016-06-05 18:49:34 +02:00
|
|
|
const viewportSize = 4096
|
|
|
|
|
2014-12-31 10:23:18 +01:00
|
|
|
func (f *Framebuffer) setAsViewport(c *opengl.Context) error {
|
2016-06-05 18:49:34 +02:00
|
|
|
width := viewportSize
|
|
|
|
height := viewportSize
|
2014-12-31 10:23:18 +01:00
|
|
|
return c.SetViewport(f.native, width, height)
|
2014-01-08 08:38:03 +01:00
|
|
|
}
|
|
|
|
|
2015-01-02 19:29:04 +01:00
|
|
|
func (f *Framebuffer) projectionMatrix() *[4][4]float64 {
|
2015-02-16 02:33:27 +01:00
|
|
|
if f.proMatrix != nil {
|
|
|
|
return f.proMatrix
|
|
|
|
}
|
2016-06-05 18:49:34 +02:00
|
|
|
width := viewportSize
|
|
|
|
height := viewportSize
|
2014-12-14 07:26:10 +01:00
|
|
|
m := orthoProjectionMatrix(0, width, 0, height)
|
2014-12-22 16:01:22 +01:00
|
|
|
if f.flipY {
|
2014-12-14 07:26:10 +01:00
|
|
|
m[1][1] *= -1
|
2016-06-05 18:49:34 +02:00
|
|
|
m[1][3] += float64(f.height) / float64(height) * 2
|
2014-01-10 13:28:50 +01:00
|
|
|
}
|
2015-02-16 02:33:27 +01:00
|
|
|
f.proMatrix = m
|
|
|
|
return f.proMatrix
|
2014-01-07 13:58:46 +01:00
|
|
|
}
|
2014-12-30 14:25:38 +01:00
|
|
|
|
2016-06-10 22:48:09 +02:00
|
|
|
func (f *Framebuffer) Fill(clr color.Color) error {
|
2016-06-02 19:34:34 +02:00
|
|
|
c := &fillCommand{
|
|
|
|
dst: f,
|
|
|
|
color: clr,
|
2014-12-30 14:25:38 +01:00
|
|
|
}
|
2016-06-02 20:24:27 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
return nil
|
2014-12-30 14:25:38 +01:00
|
|
|
}
|
|
|
|
|
2016-06-11 14:50:13 +02:00
|
|
|
func (f *Framebuffer) DrawTexture(t *Texture, vertices []int16, geo, clr Matrix, mode opengl.CompositeMode) error {
|
2016-06-02 19:34:34 +02:00
|
|
|
c := &drawImageCommand{
|
|
|
|
dst: f,
|
|
|
|
src: t,
|
|
|
|
vertices: vertices,
|
|
|
|
geo: geo,
|
|
|
|
color: clr,
|
|
|
|
mode: mode,
|
2014-12-30 14:25:38 +01:00
|
|
|
}
|
2016-06-02 20:24:27 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
return nil
|
2015-01-17 04:45:19 +01:00
|
|
|
}
|
|
|
|
|
2016-06-02 20:24:27 +02:00
|
|
|
func (f *Framebuffer) Pixels(context *opengl.Context) ([]uint8, error) {
|
|
|
|
// Flush the enqueued commands so that pixels are certainly read.
|
|
|
|
if err := theCommandQueue.Flush(context); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return context.FramebufferPixels(f.native, f.width, f.height)
|
2015-01-17 10:22:58 +01:00
|
|
|
}
|
2016-03-16 19:31:12 +01:00
|
|
|
|
2016-06-10 22:48:09 +02:00
|
|
|
func (f *Framebuffer) ReplacePixels(t *Texture, p []uint8) error {
|
2016-06-02 19:34:34 +02:00
|
|
|
c := &replacePixelsCommand{
|
|
|
|
dst: f,
|
|
|
|
texture: t,
|
|
|
|
pixels: p,
|
2016-03-16 19:31:12 +01:00
|
|
|
}
|
2016-06-02 20:24:27 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
return nil
|
2016-03-16 19:31:12 +01:00
|
|
|
}
|