ebiten/graphics.go

129 lines
3.6 KiB
Go
Raw Normal View History

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-09 14:09:22 +01:00
package ebiten
2013-12-02 13:45:10 +01:00
import (
"github.com/hajimehoshi/ebiten/internal/opengl"
"github.com/hajimehoshi/ebiten/internal/opengl/internal/shader"
)
2014-12-07 17:07:39 +01:00
// A Rect represents a rectangle.
2014-05-02 17:06:20 +02:00
type Rect struct {
2014-12-18 12:48:36 +01:00
X float64
Y float64
Width float64
Height float64
2014-05-02 17:06:20 +02:00
}
2014-12-07 17:07:39 +01:00
// A TexturePart represents a part of a texture.
2014-05-02 17:06:20 +02:00
type TexturePart struct {
2014-12-18 12:04:40 +01:00
Dst Rect
Src Rect
2014-05-02 17:06:20 +02:00
}
2014-12-07 17:07:39 +01:00
// A Drawer is the interface that draws itself.
2014-05-01 15:45:48 +02:00
type Drawer interface {
2014-12-14 13:38:54 +01:00
Draw(parts []TexturePart, geo GeometryMatrix, color ColorMatrix) error
2014-05-01 15:45:48 +02:00
}
// DrawWholeTexture draws the whole texture.
func DrawWholeTexture(g GraphicsContext, texture *Texture, geo GeometryMatrix, color ColorMatrix) error {
w, h := texture.Size()
2014-05-03 06:58:18 +02:00
parts := []TexturePart{
2014-12-18 12:48:36 +01:00
{Rect{0, 0, float64(w), float64(h)}, Rect{0, 0, float64(w), float64(h)}},
2014-05-03 06:58:18 +02:00
}
return g.Texture(texture).Draw(parts, geo, color)
}
// DrawWholeRenderTarget draws the whole render target.
func DrawWholeRenderTarget(g GraphicsContext, renderTarget *RenderTarget, geo GeometryMatrix, color ColorMatrix) error {
w, h := renderTarget.Size()
parts := []TexturePart{
2014-12-18 12:48:36 +01:00
{Rect{0, 0, float64(w), float64(h)}, Rect{0, 0, float64(w), float64(h)}},
}
return g.RenderTarget(renderTarget).Draw(parts, geo, color)
2014-05-03 06:58:18 +02:00
}
2014-12-14 14:05:44 +01:00
// A GraphicsContext is the interface that means a context of rendering.
2014-12-09 14:09:22 +01:00
type GraphicsContext interface {
2014-12-14 13:38:54 +01:00
Clear() error
Fill(r, g, b uint8) error
2014-12-17 13:49:28 +01:00
Texture(texture *Texture) Drawer
RenderTarget(id *RenderTarget) Drawer
// TODO: ScreenRenderTarget() Drawer
PushRenderTarget(id *RenderTarget)
PopRenderTarget()
2013-12-02 13:45:10 +01:00
}
// Filter represents the type of filter to be used when a texture or a render
// target is maginified or minified.
type Filter int
2014-12-14 14:05:44 +01:00
// Filters
const (
FilterNearest Filter = iota
FilterLinear
)
// Texture represents a texture.
2014-12-17 13:49:28 +01:00
type Texture struct {
2014-12-17 14:12:32 +01:00
glTexture *opengl.Texture
2014-12-17 13:49:28 +01:00
}
// Size returns the size of the texture.
func (t *Texture) Size() (width int, height int) {
return t.glTexture.Width(), t.glTexture.Height()
}
// RenderTarget represents a render target.
// A render target is essentially same as a texture, but it is assumed that the
// all alpha values of a render target is maximum.
2014-12-17 13:49:28 +01:00
type RenderTarget struct {
2014-12-17 14:24:30 +01:00
glRenderTarget *opengl.RenderTarget
texture *Texture
2014-12-17 13:49:28 +01:00
}
// Size returns the size of the render target.
func (r *RenderTarget) Size() (width int, height int) {
return r.glRenderTarget.Width(), r.glRenderTarget.Height()
}
2014-12-18 12:48:36 +01:00
func u(x float64, width int) float32 {
return float32(x) / float32(opengl.AdjustSizeForTexture(width))
}
2014-12-18 12:48:36 +01:00
func v(y float64, height int) float32 {
return float32(y) / float32(opengl.AdjustSizeForTexture(height))
}
func textureQuads(parts []TexturePart, width, height int) []shader.TextureQuad {
quads := make([]shader.TextureQuad, 0, len(parts))
for _, part := range parts {
2014-12-18 12:04:40 +01:00
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
}