2014-12-09 15:16:04 +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-14 07:26:10 +01:00
|
|
|
package ebiten
|
2013-10-27 14:58:56 +01:00
|
|
|
|
|
|
|
import (
|
2014-12-06 07:47:48 +01:00
|
|
|
"github.com/go-gl/gl"
|
2014-12-19 22:18:28 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal"
|
2014-12-14 07:26:10 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2014-12-09 16:25:54 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl/internal/shader"
|
2014-12-22 17:26:44 +01:00
|
|
|
"image"
|
2014-12-19 22:18:28 +01:00
|
|
|
"image/color"
|
2013-10-27 14:58:56 +01:00
|
|
|
)
|
|
|
|
|
2014-12-22 02:36:42 +01:00
|
|
|
type innerImage struct {
|
2014-12-22 16:01:22 +01:00
|
|
|
framebuffer *opengl.Framebuffer
|
|
|
|
texture *opengl.Texture
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
2013-10-27 14:58:56 +01:00
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
func newInnerImage(texture *opengl.Texture, filter int) (*innerImage, error) {
|
2014-12-22 16:01:22 +01:00
|
|
|
framebuffer, err := opengl.NewFramebufferFromTexture(texture)
|
2014-12-14 13:38:54 +01:00
|
|
|
if err != nil {
|
2014-12-17 14:04:33 +01:00
|
|
|
return nil, err
|
2014-12-14 13:38:54 +01:00
|
|
|
}
|
2014-12-22 16:01:22 +01:00
|
|
|
return &innerImage{framebuffer, texture}, nil
|
2013-10-27 14:58:56 +01:00
|
|
|
}
|
2014-01-07 13:58:46 +01:00
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *innerImage) size() (width, height int) {
|
2014-12-22 16:01:22 +01:00
|
|
|
return i.framebuffer.Size()
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *innerImage) Clear() error {
|
|
|
|
return i.Fill(color.Transparent)
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *innerImage) Fill(clr color.Color) error {
|
2014-12-22 16:01:22 +01:00
|
|
|
if err := i.framebuffer.SetAsViewport(); err != nil {
|
2014-12-14 13:38:54 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-12-21 16:02:14 +01:00
|
|
|
rf, gf, bf, af := internal.RGBA(clr)
|
|
|
|
gl.ClearColor(gl.GLclampf(rf), gl.GLclampf(gf), gl.GLclampf(bf), gl.GLclampf(af))
|
2014-12-06 07:47:48 +01:00
|
|
|
gl.Clear(gl.COLOR_BUFFER_BIT)
|
2014-12-14 13:38:54 +01:00
|
|
|
return nil
|
2014-01-11 00:59:38 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *innerImage) drawImage(image *innerImage, parts []ImagePart, geo GeometryMatrix, color ColorMatrix) error {
|
2014-12-22 16:01:22 +01:00
|
|
|
if err := i.framebuffer.SetAsViewport(); err != nil {
|
2014-12-14 13:38:54 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-12-22 03:14:44 +01:00
|
|
|
w, h := image.texture.Size()
|
2014-12-20 17:04:49 +01:00
|
|
|
quads := textureQuads(parts, w, h)
|
2014-12-22 16:01:22 +01:00
|
|
|
projectionMatrix := i.framebuffer.ProjectionMatrix()
|
2014-12-22 17:26:44 +01:00
|
|
|
shader.DrawTexture(image.texture.Native(), projectionMatrix, quads, &geo, &color)
|
2014-12-14 13:38:54 +01:00
|
|
|
return nil
|
2014-05-03 19:13:43 +02:00
|
|
|
}
|
|
|
|
|
2014-12-19 22:18:28 +01:00
|
|
|
func u(x float64, width int) float32 {
|
2014-12-20 18:05:08 +01:00
|
|
|
return float32(x) / float32(internal.NextPowerOf2Int(width))
|
2014-12-19 22:18:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func v(y float64, height int) float32 {
|
2014-12-20 18:05:08 +01:00
|
|
|
return float32(y) / float32(internal.NextPowerOf2Int(height))
|
2014-12-19 22:18:28 +01:00
|
|
|
}
|
|
|
|
|
2014-12-20 18:42:55 +01:00
|
|
|
func textureQuads(parts []ImagePart, width, height int) []shader.TextureQuad {
|
2014-12-19 22:18:28 +01:00
|
|
|
quads := make([]shader.TextureQuad, 0, len(parts))
|
|
|
|
for _, part := range parts {
|
|
|
|
x1 := float32(part.Dst.X)
|
|
|
|
x2 := float32(part.Dst.X + part.Dst.Width)
|
|
|
|
y1 := float32(part.Dst.Y)
|
|
|
|
y2 := float32(part.Dst.Y + part.Dst.Height)
|
|
|
|
u1 := u(part.Src.X, width)
|
|
|
|
u2 := u(part.Src.X+part.Src.Width, width)
|
|
|
|
v1 := v(part.Src.Y, height)
|
|
|
|
v2 := v(part.Src.Y+part.Src.Height, height)
|
|
|
|
quad := shader.TextureQuad{x1, x2, y1, y2, u1, u2, v1, v2}
|
|
|
|
quads = append(quads, quad)
|
|
|
|
}
|
|
|
|
return quads
|
|
|
|
}
|
2014-12-20 12:54:14 +01:00
|
|
|
|
|
|
|
type syncer interface {
|
|
|
|
Sync(func())
|
|
|
|
}
|
|
|
|
|
2014-12-22 03:20:14 +01:00
|
|
|
// Image represents an image.
|
2014-12-22 13:39:25 +01:00
|
|
|
// The pixel format is alpha-premultiplied.
|
2014-12-22 02:36:42 +01:00
|
|
|
type Image struct {
|
2014-12-20 12:54:14 +01:00
|
|
|
syncer syncer
|
2014-12-22 02:36:42 +01:00
|
|
|
inner *innerImage
|
2014-12-22 17:26:44 +01:00
|
|
|
pixels []uint8
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// Size returns the size of the image.
|
|
|
|
func (i *Image) Size() (width, height int) {
|
|
|
|
return i.inner.size()
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// Clear resets the pixels of the image into 0.
|
|
|
|
func (i *Image) Clear() (err error) {
|
2014-12-22 17:26:44 +01:00
|
|
|
i.pixels = nil
|
2014-12-22 03:14:44 +01:00
|
|
|
i.syncer.Sync(func() {
|
|
|
|
err = i.inner.Clear()
|
2014-12-20 12:54:14 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// Fill fills the image with a solid color.
|
|
|
|
func (i *Image) Fill(clr color.Color) (err error) {
|
2014-12-22 17:26:44 +01:00
|
|
|
i.pixels = nil
|
2014-12-22 03:14:44 +01:00
|
|
|
i.syncer.Sync(func() {
|
|
|
|
err = i.inner.Fill(clr)
|
2014-12-20 12:54:14 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
// DrawImage draws the given image on the receiver (i).
|
|
|
|
func (i *Image) DrawImage(image *Image, parts []ImagePart, geo GeometryMatrix, color ColorMatrix) (err error) {
|
|
|
|
return i.drawImage(image.inner, parts, geo, color)
|
2014-12-22 02:36:42 +01:00
|
|
|
}
|
|
|
|
|
2014-12-22 03:14:44 +01:00
|
|
|
func (i *Image) drawImage(image *innerImage, parts []ImagePart, geo GeometryMatrix, color ColorMatrix) (err error) {
|
2014-12-22 17:26:44 +01:00
|
|
|
i.pixels = nil
|
2014-12-22 03:14:44 +01:00
|
|
|
i.syncer.Sync(func() {
|
|
|
|
err = i.inner.drawImage(image, parts, geo, color)
|
2014-12-20 12:54:14 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2014-12-22 17:26:44 +01:00
|
|
|
|
|
|
|
// Bounds returns the bounds of the image.
|
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
|
|
|
w, h := i.inner.size()
|
|
|
|
return image.Rect(0, 0, w, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ColorModel returns the color model of the image.
|
|
|
|
func (i *Image) ColorModel() color.Model {
|
|
|
|
return color.RGBAModel
|
|
|
|
}
|
|
|
|
|
|
|
|
// At returns the color of the image at (x, y).
|
|
|
|
// This method may read pixels from GPU to VRAM and be slow.
|
|
|
|
func (i *Image) At(x, y int) color.Color {
|
|
|
|
if i.pixels == nil {
|
|
|
|
i.syncer.Sync(func() {
|
|
|
|
var err error
|
|
|
|
i.pixels, err = i.inner.texture.Pixels()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
w, _ := i.inner.size()
|
|
|
|
w = internal.NextPowerOf2Int(w)
|
|
|
|
idx := 4*x + 4*y*w
|
|
|
|
r, g, b, a := i.pixels[idx], i.pixels[idx+1], i.pixels[idx+2], i.pixels[idx+3]
|
|
|
|
return color.RGBA{r, g, b, a}
|
|
|
|
}
|