ebiten/graphicscontext.go

196 lines
4.7 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-12-09 14:40:54 +01:00
2016-05-19 16:37:58 +02:00
import (
"math"
2016-05-19 16:37:58 +02:00
"github.com/hajimehoshi/ebiten/internal/graphics"
2016-06-12 16:54:36 +02:00
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
2016-05-19 16:37:58 +02:00
"github.com/hajimehoshi/ebiten/internal/ui"
)
2016-05-18 03:46:23 +02:00
func newGraphicsContext(f func(*Image) error) *graphicsContext {
return &graphicsContext{
f: f,
}
2014-12-07 20:22:50 +01:00
}
type graphicsContext struct {
f func(*Image) error
offscreen *Image
offscreen2 *Image // TODO: better name
screen *Image
2016-06-18 19:59:17 +02:00
screenScale float64
initialized bool
2014-12-07 16:07:36 +01:00
}
2014-01-11 03:18:55 +01:00
2016-06-18 19:59:17 +02:00
func (c *graphicsContext) SetSize(screenWidth, screenHeight int, screenScale float64) error {
2016-05-18 03:46:23 +02:00
if c.screen != nil {
c.screen.Dispose()
}
if c.offscreen != nil {
c.offscreen.Dispose()
}
offscreen, err := NewImage(screenWidth, screenHeight, FilterNearest)
2016-05-18 03:46:23 +02:00
if err != nil {
return err
}
intScreenScale := int(math.Floor(screenScale))
w := screenWidth * intScreenScale
h := screenHeight * intScreenScale
offscreen2, err := NewImage(w, h, FilterLinear)
if err != nil {
return err
}
w = int(float64(screenWidth) * screenScale)
h = int(float64(screenHeight) * screenScale)
2016-06-18 19:59:17 +02:00
c.screen, err = newImageWithScreenFramebuffer(w, h)
2016-05-18 03:46:23 +02:00
if err != nil {
return err
}
c.screen.Clear()
c.offscreen = offscreen
c.offscreen2 = offscreen2
2016-05-18 03:46:23 +02:00
c.screenScale = screenScale
ui.GLContext().ResetViewportSize()
2016-05-18 03:46:23 +02:00
return nil
}
2016-06-12 16:54:36 +02:00
func (c *graphicsContext) needsRestoring(context *opengl.Context) (bool, error) {
imageM.Lock()
defer imageM.Unlock()
// FlushCommands is required because c.offscreen.impl might not have an actual texture.
2016-06-12 16:54:36 +02:00
if err := graphics.FlushCommands(ui.GLContext()); err != nil {
return false, err
}
return c.offscreen.impl.isInvalidated(context), nil
2016-06-12 16:54:36 +02:00
}
func (c *graphicsContext) initializeIfNeeded() error {
// glViewport must be called at every frame on iOS
ui.GLContext().ResetViewportSize()
2016-06-11 17:32:35 +02:00
if !c.initialized {
2016-05-19 16:37:58 +02:00
if err := graphics.Initialize(ui.GLContext()); err != nil {
return err
}
2016-06-11 17:32:35 +02:00
c.initialized = true
2016-05-19 16:37:58 +02:00
}
2016-06-12 16:54:36 +02:00
r, err := c.needsRestoring(ui.GLContext())
if err != nil {
return err
}
if r {
if err := c.restore(); err != nil {
return err
}
}
return nil
}
func drawWithFittingScale(dst *Image, src *Image) error {
wd, hd := dst.Size()
ws, hs := src.Size()
sw := float64(wd) / float64(ws)
sh := float64(hd) / float64(hs)
op := &DrawImageOptions{}
op.GeoM.Scale(sw, sh)
if err := dst.DrawImage(src, op); err != nil {
return err
}
return nil
}
2016-06-13 19:10:43 +02:00
func (c *graphicsContext) drawToDefaultRenderTarget() error {
if err := c.screen.Clear(); err != nil {
2016-06-13 19:10:43 +02:00
return err
}
if err := drawWithFittingScale(c.screen, c.offscreen2); err != nil {
2016-06-13 19:10:43 +02:00
return err
}
if err := c.flush(); err != nil {
return err
}
return nil
}
func (c *graphicsContext) UpdateAndDraw() error {
if err := c.initializeIfNeeded(); err != nil {
return err
}
if err := c.offscreen.Clear(); err != nil {
return err
}
if err := c.f(c.offscreen); err != nil {
return err
}
2016-02-27 18:25:53 +01:00
if IsRunningSlowly() {
return nil
}
if err := c.offscreen2.Clear(); err != nil {
return err
}
if err := drawWithFittingScale(c.offscreen2, c.offscreen); err != nil {
return err
}
2016-06-13 19:10:43 +02:00
if err := c.drawToDefaultRenderTarget(); err != nil {
return err
}
exceptions := map[*imageImpl]struct{}{
c.offscreen.impl: {},
c.offscreen2.impl: {},
c.screen.impl: {},
}
if err := theImages.savePixels(ui.GLContext(), exceptions); err != nil {
return err
}
return nil
}
func (c *graphicsContext) Draw() error {
if err := c.initializeIfNeeded(); err != nil {
return err
}
2016-06-13 19:10:43 +02:00
if err := c.drawToDefaultRenderTarget(); err != nil {
return err
}
return nil
}
func (c *graphicsContext) flush() error {
// TODO: imageM is necessary to call graphics functions. Move this to graphics package.
imageM.Lock()
defer imageM.Unlock()
if err := graphics.FlushCommands(ui.GLContext()); err != nil {
return err
}
2016-06-23 18:24:08 +02:00
// Call glFlush to prevent black flicking (especially on Android (#226) and iOS).
ui.GLContext().Flush()
return nil
2014-12-07 16:07:36 +01:00
}
2016-05-23 17:00:54 +02:00
2016-06-12 16:54:36 +02:00
func (c *graphicsContext) restore() error {
imageM.Lock()
defer imageM.Unlock()
2016-06-09 18:19:10 +02:00
ui.GLContext().Resume()
2016-05-23 17:00:54 +02:00
if err := graphics.Initialize(ui.GLContext()); err != nil {
return err
}
2016-06-10 18:20:55 +02:00
if err := theImages.restorePixels(ui.GLContext()); err != nil {
2016-05-23 17:00:54 +02:00
return err
}
return nil
}