ebiten/graphicscontext.go

181 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 (
2019-01-12 16:56:33 +01:00
"image/color"
"math"
2018-01-06 15:30:11 +01:00
"github.com/hajimehoshi/ebiten/internal/clock"
2018-11-12 16:00:10 +01:00
"github.com/hajimehoshi/ebiten/internal/graphicscommand"
"github.com/hajimehoshi/ebiten/internal/graphicsdriver"
"github.com/hajimehoshi/ebiten/internal/hooks"
"github.com/hajimehoshi/ebiten/internal/shareable"
"github.com/hajimehoshi/ebiten/internal/ui"
2017-10-04 19:41:18 +02:00
"github.com/hajimehoshi/ebiten/internal/web"
2016-05-19 16:37:58 +02:00
)
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
screen *Image
screenWidth int
screenHeight int
screenScale float64
initialized bool
invalidated bool // browser only
offsetX float64
offsetY float64
}
func (c *graphicsContext) Invalidate() {
// Note that this is called only on browsers so far.
// TODO: On mobiles, this function is not called and instead IsTexture is called
// to detect if the context is lost. This is simple but might not work on some platforms.
// Should Invalidate be called explicitly?
c.invalidated = true
}
func (c *graphicsContext) SetSize(screenWidth, screenHeight int, screenScale float64) {
c.screenScale = screenScale
2016-05-18 03:46:23 +02:00
if c.screen != nil {
_ = c.screen.Dispose()
2016-05-18 03:46:23 +02:00
}
if c.offscreen != nil {
_ = c.offscreen.Dispose()
}
c.offscreen = newVolatileImage(screenWidth, screenHeight)
2016-07-02 18:08:47 +02:00
w := int(float64(screenWidth) * screenScale)
h := int(float64(screenHeight) * screenScale)
px0, py0, px1, py1 := ui.ScreenPadding()
c.screen = newImageWithScreenFramebuffer(w+int(math.Ceil(px0+px1)), h+int(math.Ceil(py0+py1)))
c.screenWidth = w
c.screenHeight = h
2016-07-02 18:08:47 +02:00
c.offsetX = px0
c.offsetY = py0
2016-05-18 03:46:23 +02:00
}
func (c *graphicsContext) initializeIfNeeded() error {
if !c.initialized {
if err := shareable.InitializeGraphicsDriverState(); err != nil {
2016-05-19 16:37:58 +02:00
return err
}
c.initialized = true
2016-05-19 16:37:58 +02:00
}
if err := c.restoreIfNeeded(); err != nil {
return err
}
return nil
}
2018-01-06 15:30:11 +01:00
func (c *graphicsContext) Update(afterFrameUpdate func()) error {
2018-07-17 15:41:27 +02:00
tps := int(MaxTPS())
updateCount := clock.Update(tps)
2018-01-06 15:30:11 +01:00
2018-07-17 20:05:09 +02:00
// TODO: If updateCount is 0 and vsync is disabled, swapping buffers can be skipped.
if err := c.initializeIfNeeded(); err != nil {
return err
}
2016-07-03 09:18:29 +02:00
for i := 0; i < updateCount; i++ {
2019-01-12 16:56:33 +01:00
c.offscreen.Fill(color.Transparent)
// Mipmap images should be disposed by fill.
setDrawingSkipped(i < updateCount-1)
if err := hooks.RunBeforeUpdateHooks(); err != nil {
return err
}
2016-07-03 09:18:29 +02:00
if err := c.f(c.offscreen); err != nil {
return err
}
afterFrameUpdate()
2016-02-27 18:25:53 +01:00
}
// Before clearing the screen, the offscreen's pixels must be solved.
// After clearing the screen, resolving doesn't work. This is very hacky
// but we could not find other way so far (#792).
c.offscreen.resolvePixelsToSet(true)
// This clear is needed for fullscreen mode or some mobile platforms (#622).
c.screen.Clear()
op := &DrawImageOptions{}
2018-11-12 16:00:10 +01:00
switch graphicscommand.Driver().VDirection() {
case graphicsdriver.VDownward:
// c.screen is special: its Y axis is down to up,
// and the origin point is lower left.
op.GeoM.Scale(c.screenScale, -c.screenScale)
op.GeoM.Translate(0, float64(c.screenHeight))
2018-11-12 16:00:10 +01:00
case graphicsdriver.VUpward:
op.GeoM.Scale(c.screenScale, c.screenScale)
default:
panic("not reached")
}
op.GeoM.Translate(c.offsetX, c.offsetY)
op.CompositeMode = CompositeModeCopy
// filterScreen works with >=1 scale, but does not well with <1 scale.
// Use regular FilterLinear instead so far (#669).
if c.screenScale >= 1 {
op.Filter = filterScreen
} else {
op.Filter = FilterLinear
}
_ = c.screen.DrawImage(c.offscreen, op)
2017-08-06 16:00:24 +02:00
shareable.ResolveStaleImages()
if err := shareable.Error(); err != nil {
return err
}
return nil
2014-12-07 16:07:36 +01:00
}
2016-05-23 17:00:54 +02:00
2017-10-04 19:41:18 +02:00
func (c *graphicsContext) needsRestoring() (bool, error) {
if web.IsBrowser() {
return c.invalidated, nil
}
2018-10-24 19:11:54 +02:00
return c.offscreen.mipmap.original().IsInvalidated()
2017-10-04 19:41:18 +02:00
}
func (c *graphicsContext) restoreIfNeeded() error {
if !shareable.IsRestoringEnabled() {
return nil
}
r, err := c.needsRestoring()
if err != nil {
return err
}
if !r {
return nil
}
if err := shareable.Restore(); err != nil {
2016-05-23 17:00:54 +02:00
return err
}
c.invalidated = false
2016-05-23 17:00:54 +02:00
return nil
}