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-12-09 14:40:54 +01:00
|
|
|
|
2014-05-03 20:29:45 +02:00
|
|
|
import (
|
2014-12-06 07:47:48 +01:00
|
|
|
"github.com/go-gl/gl"
|
2014-12-14 07:26:10 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2014-05-03 20:29:45 +02:00
|
|
|
)
|
2014-05-03 17:40:53 +02:00
|
|
|
|
2014-12-14 10:34:47 +01:00
|
|
|
func newGraphicsContext(screenWidth, screenHeight, screenScale int) (*graphicsContext, error) {
|
2014-12-19 21:22:10 +01:00
|
|
|
r, t, err := opengl.NewZeroRenderTarget(screenWidth*screenScale, screenHeight*screenScale, true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-12-09 14:40:54 +01:00
|
|
|
|
2014-12-17 14:04:33 +01:00
|
|
|
screen, err := idsInstance.createRenderTarget(screenWidth, screenHeight, gl.NEAREST)
|
2013-12-09 14:40:54 +01:00
|
|
|
if err != nil {
|
2014-12-07 20:22:50 +01:00
|
|
|
return nil, err
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
2014-12-10 19:50:35 +01:00
|
|
|
|
2014-12-14 13:21:05 +01:00
|
|
|
c := &graphicsContext{
|
2014-12-17 14:04:33 +01:00
|
|
|
currents: make([]*RenderTarget, 1),
|
2014-12-19 21:22:10 +01:00
|
|
|
defaultR: &RenderTarget{r, &Texture{t}},
|
2014-12-17 14:04:33 +01:00
|
|
|
screen: screen,
|
2014-12-14 13:21:05 +01:00
|
|
|
screenWidth: screenWidth,
|
|
|
|
screenHeight: screenHeight,
|
|
|
|
screenScale: screenScale,
|
|
|
|
}
|
|
|
|
|
2014-12-17 14:04:33 +01:00
|
|
|
idsInstance.fillRenderTarget(c.screen, 0, 0, 0)
|
2013-12-09 15:52:14 +01:00
|
|
|
|
2014-12-08 17:08:47 +01:00
|
|
|
return c, nil
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
type graphicsContext struct {
|
2014-12-17 14:04:33 +01:00
|
|
|
screen *RenderTarget
|
|
|
|
defaultR *RenderTarget
|
|
|
|
currents []*RenderTarget
|
2014-12-07 20:22:50 +01:00
|
|
|
screenWidth int
|
|
|
|
screenHeight int
|
|
|
|
screenScale int
|
2014-12-07 16:07:36 +01:00
|
|
|
}
|
2014-01-11 03:18:55 +01:00
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
var _ GraphicsContext = new(graphicsContext)
|
2014-12-09 14:09:22 +01:00
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
func (c *graphicsContext) dispose() {
|
2014-12-07 16:07:36 +01:00
|
|
|
// NOTE: Now this method is not used anywhere.
|
2014-12-17 14:50:44 +01:00
|
|
|
glRenderTarget := c.screen.glRenderTarget
|
|
|
|
texture := c.screen.texture
|
|
|
|
glTexture := texture.glTexture
|
|
|
|
|
|
|
|
glRenderTarget.Dispose()
|
|
|
|
glTexture.Dispose()
|
2013-12-09 15:52:14 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 13:38:54 +01:00
|
|
|
func (c *graphicsContext) Clear() error {
|
|
|
|
return c.Fill(0, 0, 0)
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 13:38:54 +01:00
|
|
|
func (c *graphicsContext) Fill(r, g, b uint8) error {
|
2014-12-17 14:04:33 +01:00
|
|
|
return idsInstance.fillRenderTarget(c.currents[len(c.currents)-1], r, g, b)
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
|
|
|
|
2014-12-18 14:24:27 +01:00
|
|
|
func (c *graphicsContext) DrawTexture(texture *Texture, parts []TexturePart, geo GeometryMatrix, color ColorMatrix) error {
|
|
|
|
current := c.currents[len(c.currents)-1]
|
|
|
|
return idsInstance.drawTexture(current, texture, parts, geo, color)
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
|
|
|
|
2014-12-17 14:04:33 +01:00
|
|
|
func (c *graphicsContext) PushRenderTarget(renderTarget *RenderTarget) {
|
|
|
|
c.currents = append(c.currents, renderTarget)
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
func (c *graphicsContext) PopRenderTarget() {
|
2014-12-17 14:04:33 +01:00
|
|
|
c.currents = c.currents[:len(c.currents)-1]
|
2013-12-09 14:40:54 +01:00
|
|
|
}
|
2014-05-01 15:45:48 +02:00
|
|
|
|
2014-12-14 10:57:29 +01:00
|
|
|
func (c *graphicsContext) preUpdate() {
|
2014-12-17 14:04:33 +01:00
|
|
|
c.currents = c.currents[0:1]
|
|
|
|
c.currents[0] = c.defaultR
|
|
|
|
c.PushRenderTarget(c.screen)
|
2014-12-07 16:07:36 +01:00
|
|
|
c.Clear()
|
2014-12-08 17:08:47 +01:00
|
|
|
}
|
2014-12-07 16:07:36 +01:00
|
|
|
|
2014-12-14 10:57:29 +01:00
|
|
|
func (c *graphicsContext) postUpdate() {
|
2014-12-10 20:02:46 +01:00
|
|
|
c.PopRenderTarget()
|
2014-12-07 16:07:36 +01:00
|
|
|
c.Clear()
|
|
|
|
|
|
|
|
scale := float64(c.screenScale)
|
2014-12-14 07:26:10 +01:00
|
|
|
geo := GeometryMatrixI()
|
2014-12-14 17:58:52 +01:00
|
|
|
geo.Concat(ScaleGeometry(scale, scale))
|
2014-12-18 14:24:27 +01:00
|
|
|
DrawWholeTexture(c, c.screen.texture, geo, ColorMatrixI())
|
2014-12-07 16:07:36 +01:00
|
|
|
|
|
|
|
gl.Flush()
|
|
|
|
}
|