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-14 07:26:10 +01:00
|
|
|
package ebiten
|
2013-10-27 14:58:56 +01:00
|
|
|
|
|
|
|
import (
|
2015-01-06 15:50:02 +01:00
|
|
|
"errors"
|
2014-12-19 22:18:28 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal"
|
2014-12-30 18:55:17 +01:00
|
|
|
"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"
|
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 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 20:10:28 +01:00
|
|
|
// Image implements image.Image.
|
2014-12-22 02:36:42 +01:00
|
|
|
type Image struct {
|
2015-01-12 11:54:25 +01:00
|
|
|
framebuffer *graphics.Framebuffer
|
|
|
|
texture *graphics.Texture
|
|
|
|
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) {
|
2015-01-12 11:54:25 +01:00
|
|
|
return i.framebuffer.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) {
|
2015-01-12 11:54:25 +01:00
|
|
|
return i.Fill(color.Transparent)
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
|
|
|
|
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
|
2015-01-12 11:54:25 +01:00
|
|
|
r, g, b, a := internal.RGBA(clr)
|
2015-01-01 19:25:31 +01:00
|
|
|
ui.Use(func(c *opengl.Context) {
|
2015-01-16 02:37:26 +01:00
|
|
|
// TODO: Change to pass color.Color
|
2015-01-12 11:54:25 +01:00
|
|
|
err = i.framebuffer.Fill(c, r, g, b, a)
|
2014-12-20 12:54:14 +01:00
|
|
|
})
|
|
|
|
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.
|
|
|
|
//
|
2014-12-26 03:43:31 +01:00
|
|
|
// Here are the default values:
|
2015-01-05 02:08:00 +01:00
|
|
|
// ImageParts: (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)
|
2015-01-05 15:55:40 +01:00
|
|
|
//
|
|
|
|
// Be careful that this method is potentially slow.
|
|
|
|
// It would be better if you could call this method fewer times.
|
2014-12-25 19:46:25 +01:00
|
|
|
func (i *Image) DrawImage(image *Image, options *DrawImageOptions) (err error) {
|
2015-01-06 15:50:02 +01:00
|
|
|
if i == image {
|
|
|
|
return errors.New("Image.DrawImage: image should be different from the receiver")
|
|
|
|
}
|
2014-12-22 17:26:44 +01:00
|
|
|
i.pixels = nil
|
2015-01-12 11:54:25 +01:00
|
|
|
if options == nil {
|
|
|
|
options = &DrawImageOptions{}
|
|
|
|
}
|
|
|
|
parts := options.ImageParts
|
|
|
|
if parts == nil {
|
|
|
|
// Check options.Parts for backward-compatibility.
|
|
|
|
dparts := options.Parts
|
|
|
|
if dparts != nil {
|
|
|
|
parts = imageParts(dparts)
|
|
|
|
} else {
|
|
|
|
w, h := image.Size()
|
|
|
|
parts = &wholeImage{w, h}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w, h := image.Size()
|
|
|
|
quads := &textureQuads{parts: parts, width: w, height: h}
|
2015-01-01 19:25:31 +01:00
|
|
|
ui.Use(func(c *opengl.Context) {
|
2015-01-12 11:54:25 +01:00
|
|
|
err = i.framebuffer.DrawTexture(c, image.texture, quads, &options.GeoM, &options.ColorM)
|
2014-12-20 12:54:14 +01:00
|
|
|
})
|
|
|
|
return
|
2015-01-12 12:47:49 +01:00
|
|
|
}
|
|
|
|
|
2015-01-17 04:45:19 +01:00
|
|
|
// DrawLine draws a line.
|
|
|
|
func (i *Image) DrawLine(x0, y0, x1, y1 int, clr color.Color) error {
|
|
|
|
return i.DrawLines(&line{x0, y0, x1, y1, clr})
|
|
|
|
}
|
|
|
|
|
|
|
|
// DrawLines draws lines.
|
|
|
|
func (i *Image) DrawLines(lines Lines) (err error) {
|
|
|
|
ui.Use(func(c *opengl.Context) {
|
|
|
|
err = i.framebuffer.DrawLines(c, lines)
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-01-17 07:46:56 +01:00
|
|
|
func (i *Image) DrawRect(x, y, width, height int, clr color.Color) error {
|
|
|
|
return i.DrawLines(&rectsAsLines{&rect{x, y, width, height, clr}})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *Image) DrawRects(rects Rects) error {
|
|
|
|
return i.DrawLines(&rectsAsLines{rects})
|
|
|
|
}
|
|
|
|
|
2015-01-17 07:01:04 +01:00
|
|
|
// FillRect draws a filled rectangle.
|
2015-01-17 04:45:19 +01:00
|
|
|
func (i *Image) FillRect(x, y, width, height int, clr color.Color) error {
|
|
|
|
return i.FillRects(&rect{x, y, width, height, clr})
|
2015-01-15 17:56:27 +01:00
|
|
|
}
|
|
|
|
|
2015-01-17 07:01:04 +01:00
|
|
|
// FillRects draws filled rectangles on the image.
|
2015-01-17 04:45:19 +01:00
|
|
|
func (i *Image) FillRects(rects Rects) (err error) {
|
2015-01-12 12:47:49 +01:00
|
|
|
ui.Use(func(c *opengl.Context) {
|
2015-01-17 04:45:19 +01:00
|
|
|
err = i.framebuffer.FillRects(c, rects)
|
2015-01-12 12:47:49 +01:00
|
|
|
})
|
|
|
|
return
|
2014-12-20 12:54:14 +01:00
|
|
|
}
|
2014-12-22 17:26:44 +01:00
|
|
|
|
|
|
|
// Bounds returns the bounds of the image.
|
|
|
|
func (i *Image) Bounds() image.Rectangle {
|
2015-01-12 11:54:25 +01:00
|
|
|
w, h := i.Size()
|
2014-12-22 17:26:44 +01:00
|
|
|
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
|
|
|
//
|
2015-01-10 20:20:28 +01:00
|
|
|
// This method loads pixels from VRAM to system memory if necessary.
|
2014-12-22 17:26:44 +01:00
|
|
|
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) {
|
2014-12-22 17:26:44 +01:00
|
|
|
var err error
|
2015-01-12 11:54:25 +01:00
|
|
|
i.pixels, err = i.texture.Pixels(c)
|
2014-12-22 17:26:44 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2015-01-12 11:54:25 +01:00
|
|
|
w, _ := i.Size()
|
2014-12-22 17:26:44 +01:00
|
|
|
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-28 16:21:40 +01:00
|
|
|
// A DrawImageOptions represents options to render an image on an image.
|
2014-12-25 17:39:32 +01:00
|
|
|
type DrawImageOptions struct {
|
2015-01-04 16:42:20 +01:00
|
|
|
ImageParts ImageParts
|
|
|
|
GeoM GeoM
|
|
|
|
ColorM ColorM
|
|
|
|
|
2015-01-05 02:08:54 +01:00
|
|
|
// Deprecated (as of 1.1.0-alpha): Use ImageParts instead.
|
2015-01-04 16:42:20 +01:00
|
|
|
Parts []ImagePart
|
2014-12-24 14:46:00 +01:00
|
|
|
}
|