ebiten/image.go

198 lines
5.1 KiB
Go
Raw Normal View History

// 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
package ebiten
2013-10-27 14:58:56 +01:00
import (
"github.com/hajimehoshi/ebiten/internal"
"github.com/hajimehoshi/ebiten/internal/graphics"
2014-12-31 07:22:15 +01:00
"github.com/hajimehoshi/ebiten/internal/opengl"
2015-01-01 17:20:20 +01:00
"github.com/hajimehoshi/ebiten/internal/ui"
"image"
"image/color"
2013-10-27 14:58:56 +01:00
)
type innerImage struct {
framebuffer *graphics.Framebuffer
texture *graphics.Texture
}
2013-10-27 14:58:56 +01:00
2014-12-31 07:22:15 +01:00
func newInnerImage(c *opengl.Context, texture *graphics.Texture) (*innerImage, error) {
framebuffer, err := graphics.NewFramebufferFromTexture(c, texture)
2014-12-14 13:38:54 +01:00
if err != nil {
return nil, err
2014-12-14 13:38:54 +01:00
}
return &innerImage{framebuffer, texture}, nil
2013-10-27 14:58:56 +01:00
}
2014-12-22 03:14:44 +01:00
func (i *innerImage) size() (width, height int) {
return i.framebuffer.Size()
}
2014-12-31 10:23:18 +01:00
func (i *innerImage) Clear(c *opengl.Context) error {
return i.Fill(c, color.Transparent)
}
2014-12-31 10:23:18 +01:00
func (i *innerImage) Fill(c *opengl.Context, clr color.Color) error {
2014-12-22 20:32:36 +01:00
r, g, b, a := internal.RGBA(clr)
2014-12-31 10:23:18 +01:00
return i.framebuffer.Fill(c, r, g, b, a)
2014-01-11 00:59:38 +01:00
}
2014-12-31 08:12:13 +01:00
func (i *innerImage) drawImage(c *opengl.Context, img *innerImage, options *DrawImageOptions) error {
if options == nil {
options = &DrawImageOptions{}
2014-12-24 14:46:00 +01:00
}
2014-12-27 09:37:31 +01:00
parts := options.Parts
if parts == nil {
2014-12-24 14:46:00 +01:00
w, h := img.size()
2014-12-27 09:37:31 +01:00
parts = []ImagePart{
{
Dst: image.Rect(0, 0, w, h),
Src: image.Rect(0, 0, w, h),
},
2014-12-24 14:46:00 +01:00
}
}
w, h := img.size()
quads := &textureQuads{parts, w, h}
2015-01-02 19:29:04 +01:00
return i.framebuffer.DrawTexture(c, img.texture, quads, &options.GeoM, &options.ColorM)
2014-05-03 19:13:43 +02:00
}
2015-01-03 07:52:02 +01:00
func u(x float32, width int) float32 {
return x / float32(internal.NextPowerOf2Int(width))
}
2015-01-03 07:52:02 +01:00
func v(y float32, height int) float32 {
return y / float32(internal.NextPowerOf2Int(height))
}
type textureQuads struct {
parts []ImagePart
width int
height int
}
func (t *textureQuads) Len() int {
return len(t.parts)
}
func (t *textureQuads) Vertex(i int) (x0, y0, x1, y1 float32) {
2015-01-03 09:07:01 +01:00
p := &t.parts[i]
dst := &p.Dst
return float32(dst.Min.X), float32(dst.Min.Y), float32(dst.Max.X), float32(dst.Max.Y)
}
func (t *textureQuads) Texture(i int) (u0, v0, u1, v1 float32) {
2015-01-03 09:07:01 +01:00
p := &t.parts[i]
src := &p.Src
w, h := t.width, t.height
2015-01-03 07:52:02 +01:00
return u(float32(src.Min.X), w), v(float32(src.Min.Y), h), u(float32(src.Max.X), w), v(float32(src.Max.Y), h)
}
2014-12-22 03:20:14 +01:00
// Image represents an image.
// The pixel format is alpha-premultiplied.
2014-12-22 20:10:28 +01:00
// Image implements image.Image.
type Image struct {
inner *innerImage
pixels []uint8
}
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-22 03:14:44 +01:00
// Clear resets the pixels of the image into 0.
func (i *Image) Clear() (err error) {
i.pixels = nil
2015-01-01 19:25:31 +01:00
ui.Use(func(c *opengl.Context) {
2015-01-01 17:20:20 +01:00
err = i.inner.Clear(c)
})
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) {
i.pixels = nil
2015-01-01 19:25:31 +01:00
ui.Use(func(c *opengl.Context) {
2015-01-01 17:20:20 +01:00
err = i.inner.Fill(c, clr)
})
return
}
2014-12-23 18:08:03 +01:00
// DrawImage draws the given image on the receiver image.
//
2014-12-25 19:58:33 +01:00
// This method accepts the options.
// The parts of the given image at the parts of the destination.
// After determining parts to draw, this applies the geometry matrix and the color matrix.
//
// Here are the default values:
2014-12-27 15:29:56 +01:00
// Parts: (0, 0) - (source width, source height) to (0, 0) - (source width, source height)
// (i.e. the whole source image)
// GeoM: Identity matrix
// ColorM: Identity matrix (that changes no colors)
func (i *Image) DrawImage(image *Image, options *DrawImageOptions) (err error) {
return i.drawImage(image.inner, options)
}
func (i *Image) drawImage(image *innerImage, option *DrawImageOptions) (err error) {
i.pixels = nil
2015-01-01 19:25:31 +01:00
ui.Use(func(c *opengl.Context) {
2015-01-01 17:20:20 +01:00
err = i.inner.drawImage(c, image, option)
})
return
}
// 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).
2014-12-23 18:04:56 +01:00
//
// This method loads pixels from GPU to VRAM if necessary.
func (i *Image) At(x, y int) color.Color {
if i.pixels == nil {
2015-01-01 19:25:31 +01:00
ui.Use(func(c *opengl.Context) {
var err error
2015-01-01 17:20:20 +01:00
i.pixels, err = i.inner.texture.Pixels(c)
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}
}
2014-12-24 14:46:00 +01:00
2014-12-27 09:37:31 +01:00
type ImagePart struct {
Dst image.Rectangle
Src image.Rectangle
}
2014-12-28 16:21:40 +01:00
// A DrawImageOptions represents options to render an image on an image.
type DrawImageOptions struct {
2014-12-27 09:37:31 +01:00
Parts []ImagePart
GeoM GeoM
ColorM ColorM
2014-12-24 14:46:00 +01:00
}