2016-06-11 18:45:40 +02:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
|
|
|
package graphics
|
|
|
|
|
|
|
|
import (
|
|
|
|
"image"
|
|
|
|
"image/color"
|
2016-12-26 14:49:58 +01:00
|
|
|
"image/draw"
|
2016-12-26 17:57:15 +01:00
|
|
|
"runtime"
|
2016-06-11 18:45:40 +02:00
|
|
|
|
2016-10-31 16:20:27 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2016-06-11 18:45:40 +02:00
|
|
|
)
|
|
|
|
|
2016-12-26 14:49:58 +01:00
|
|
|
func CopyImage(origImg image.Image) *image.RGBA {
|
|
|
|
size := origImg.Bounds().Size()
|
|
|
|
w, h := size.X, size.Y
|
2016-12-26 19:18:56 +01:00
|
|
|
newImg := image.NewRGBA(image.Rect(0, 0, NextPowerOf2Int(w), NextPowerOf2Int(h)))
|
2016-12-26 14:49:58 +01:00
|
|
|
switch origImg := origImg.(type) {
|
|
|
|
case *image.Paletted:
|
|
|
|
b := origImg.Bounds()
|
|
|
|
x0 := b.Min.X
|
|
|
|
y0 := b.Min.Y
|
|
|
|
x1 := b.Max.X
|
|
|
|
y1 := b.Max.Y
|
2016-12-26 17:08:22 +01:00
|
|
|
palette := make([]uint8, len(origImg.Palette)*4)
|
2016-12-26 14:49:58 +01:00
|
|
|
for i, c := range origImg.Palette {
|
2016-12-26 17:08:22 +01:00
|
|
|
rgba := color.RGBAModel.Convert(c).(color.RGBA)
|
|
|
|
palette[4*i] = rgba.R
|
|
|
|
palette[4*i+1] = rgba.G
|
|
|
|
palette[4*i+2] = rgba.B
|
|
|
|
palette[4*i+3] = rgba.A
|
2016-12-26 14:49:58 +01:00
|
|
|
}
|
2017-01-19 02:10:57 +01:00
|
|
|
index0 := 0
|
2016-12-26 14:49:58 +01:00
|
|
|
index1 := 0
|
|
|
|
d0 := origImg.Stride - (x1 - x0)
|
|
|
|
d1 := newImg.Stride - (x1-x0)*4
|
2016-12-26 19:21:07 +01:00
|
|
|
pix0 := origImg.Pix
|
|
|
|
pix1 := newImg.Pix
|
2016-12-26 14:49:58 +01:00
|
|
|
for j := 0; j < y1-y0; j++ {
|
|
|
|
for i := 0; i < x1-x0; i++ {
|
2017-02-18 18:56:07 +01:00
|
|
|
p := int(pix0[index0])
|
2016-12-26 19:21:07 +01:00
|
|
|
pix1[index1] = palette[4*p]
|
|
|
|
pix1[index1+1] = palette[4*p+1]
|
|
|
|
pix1[index1+2] = palette[4*p+2]
|
|
|
|
pix1[index1+3] = palette[4*p+3]
|
2016-12-26 14:49:58 +01:00
|
|
|
index0++
|
|
|
|
index1 += 4
|
|
|
|
}
|
|
|
|
index0 += d0
|
|
|
|
index1 += d1
|
|
|
|
}
|
|
|
|
default:
|
2016-12-26 19:18:56 +01:00
|
|
|
draw.Draw(newImg, image.Rect(0, 0, w, h), origImg, origImg.Bounds().Min, draw.Src)
|
2016-12-26 14:49:58 +01:00
|
|
|
}
|
2016-12-26 17:57:15 +01:00
|
|
|
runtime.Gosched()
|
2016-12-26 14:49:58 +01:00
|
|
|
return newImg
|
|
|
|
}
|
|
|
|
|
2016-06-11 18:45:40 +02:00
|
|
|
type Image struct {
|
|
|
|
texture *texture
|
|
|
|
framebuffer *framebuffer
|
2016-07-04 17:24:06 +02:00
|
|
|
width int
|
|
|
|
height int
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 17:22:51 +01:00
|
|
|
const MaxImageSize = viewportSize
|
2016-11-04 19:06:18 +01:00
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func NewImage(width, height int, filter opengl.Filter) *Image {
|
2016-07-04 17:24:06 +02:00
|
|
|
i := &Image{
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &newImageCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
result: i,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
filter: filter,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
2017-03-03 15:51:25 +01:00
|
|
|
return i
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func NewImageFromImage(img *image.RGBA, width, height int, filter opengl.Filter) *Image {
|
2016-07-04 17:24:06 +02:00
|
|
|
i := &Image{
|
2016-12-26 19:18:56 +01:00
|
|
|
width: width,
|
|
|
|
height: height,
|
2016-07-04 17:24:06 +02:00
|
|
|
}
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &newImageFromImageCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
result: i,
|
|
|
|
img: img,
|
|
|
|
filter: filter,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
2017-03-03 15:51:25 +01:00
|
|
|
return i
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func NewScreenFramebufferImage(width, height int) *Image {
|
2016-07-04 17:24:06 +02:00
|
|
|
i := &Image{
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
c := &newScreenFramebufferImageCommand{
|
|
|
|
result: i,
|
2016-06-11 18:45:40 +02:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
theCommandQueue.Enqueue(c)
|
2017-03-03 15:51:25 +01:00
|
|
|
return i
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func (i *Image) Dispose() {
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &disposeCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
target: i,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
}
|
|
|
|
|
2016-07-04 17:24:06 +02:00
|
|
|
func (i *Image) Size() (int, int) {
|
|
|
|
return i.width, i.height
|
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func (i *Image) Fill(clr color.RGBA) {
|
2016-08-22 17:05:23 +02:00
|
|
|
// TODO: Need to clone clr value
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &fillCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
dst: i,
|
2016-06-11 18:45:40 +02:00
|
|
|
color: clr,
|
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
}
|
|
|
|
|
2017-05-27 09:14:48 +02:00
|
|
|
func (i *Image) DrawImage(src *Image, vertices []float32, clr *affine.ColorM, mode opengl.CompositeMode) {
|
2017-05-02 15:45:09 +02:00
|
|
|
theCommandQueue.EnqueueDrawImageCommand(i, src, vertices, clr, mode)
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (i *Image) Pixels() ([]uint8, error) {
|
2016-06-11 18:45:40 +02:00
|
|
|
// Flush the enqueued commands so that pixels are certainly read.
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := theCommandQueue.Flush(); err != nil {
|
2016-06-11 18:45:40 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
f, err := i.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
return opengl.GetContext().FramebufferPixels(f.native, NextPowerOf2Int(i.width), NextPowerOf2Int(i.height))
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:51:25 +01:00
|
|
|
func (i *Image) ReplacePixels(p []uint8) {
|
2016-08-17 15:10:29 +02:00
|
|
|
pixels := make([]uint8, len(p))
|
|
|
|
copy(pixels, p)
|
2016-06-11 18:45:40 +02:00
|
|
|
c := &replacePixelsCommand{
|
2016-06-12 15:44:23 +02:00
|
|
|
dst: i,
|
2016-08-17 15:10:29 +02:00
|
|
|
pixels: pixels,
|
2016-06-11 18:45:40 +02:00
|
|
|
}
|
|
|
|
theCommandQueue.Enqueue(c)
|
|
|
|
}
|
2016-06-12 16:54:36 +02:00
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (i *Image) IsInvalidated() bool {
|
|
|
|
return !opengl.GetContext().IsTexture(i.texture.native)
|
2016-06-12 16:54:36 +02:00
|
|
|
}
|
2016-12-14 15:40:43 +01:00
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (i *Image) createFramebufferIfNeeded() (*framebuffer, error) {
|
2016-12-14 15:40:43 +01:00
|
|
|
if i.framebuffer != nil {
|
|
|
|
return i.framebuffer, nil
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
f, err := newFramebufferFromTexture(i.texture)
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
i.framebuffer = f
|
|
|
|
return i.framebuffer, nil
|
|
|
|
}
|