2014-12-24 03:04:10 +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 15:16:04 +01:00
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
package ebiten
|
2013-12-09 14:40:54 +01:00
|
|
|
|
2016-05-19 16:37:58 +02:00
|
|
|
import (
|
2018-01-06 15:30:11 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/clock"
|
2018-02-04 09:33:17 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/hooks"
|
2017-05-03 16:11:43 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/restorable"
|
2017-06-30 21:12:09 +02:00
|
|
|
"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-19 21:22:10 +01:00
|
|
|
}
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
type graphicsContext struct {
|
2016-06-17 21:46:33 +02:00
|
|
|
f func(*Image) error
|
|
|
|
offscreen *Image
|
|
|
|
screen *Image
|
2017-05-30 19:09:27 +02:00
|
|
|
initialized bool
|
2017-05-27 17:49:01 +02:00
|
|
|
invalidated bool // browser only
|
2018-02-24 15:32:36 +01:00
|
|
|
offsetX float64
|
|
|
|
offsetY float64
|
2016-07-23 23:02:04 +02:00
|
|
|
}
|
|
|
|
|
2017-01-21 17:37:08 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-05-31 03:47:52 +02:00
|
|
|
func (c *graphicsContext) SetSize(screenWidth, screenHeight int, screenScale float64) {
|
2016-05-18 03:46:23 +02:00
|
|
|
if c.screen != nil {
|
2017-05-31 03:47:52 +02:00
|
|
|
_ = c.screen.Dispose()
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
if c.offscreen != nil {
|
2017-05-31 03:47:52 +02:00
|
|
|
_ = c.offscreen.Dispose()
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
2018-02-21 17:58:50 +01:00
|
|
|
offscreen := newVolatileImage(screenWidth, screenHeight, FilterDefault)
|
2016-07-02 18:08:47 +02:00
|
|
|
|
2018-02-22 03:46:46 +01:00
|
|
|
w := int(float64(screenWidth) * screenScale)
|
|
|
|
h := int(float64(screenHeight) * screenScale)
|
2018-02-28 14:46:57 +01:00
|
|
|
px0, py0, _, _ := ui.ScreenPadding()
|
|
|
|
c.screen = newImageWithScreenFramebuffer(w, h)
|
2017-05-31 03:47:52 +02:00
|
|
|
_ = c.screen.Clear()
|
2016-07-02 18:08:47 +02:00
|
|
|
|
2016-06-17 21:46:33 +02:00
|
|
|
c.offscreen = offscreen
|
2018-02-24 15:32:36 +01:00
|
|
|
|
|
|
|
c.offsetX = px0
|
|
|
|
c.offsetY = py0
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *graphicsContext) initializeIfNeeded() error {
|
|
|
|
if !c.initialized {
|
2017-09-14 17:24:18 +02:00
|
|
|
if err := restorable.InitializeGLState(); err != nil {
|
2016-05-19 16:37:58 +02:00
|
|
|
return err
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
c.initialized = true
|
2016-05-19 16:37:58 +02:00
|
|
|
}
|
2017-07-02 08:58:00 +02:00
|
|
|
if err := c.restoreIfNeeded(); err != nil {
|
2016-07-12 19:07:35 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-06-13 17:55:25 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-06 15:30:11 +01:00
|
|
|
func (c *graphicsContext) Update(afterFrameUpdate func()) error {
|
|
|
|
updateCount := clock.Update()
|
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := c.initializeIfNeeded(); err != nil {
|
2016-06-13 17:55:25 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-07-03 09:18:29 +02:00
|
|
|
for i := 0; i < updateCount; i++ {
|
2018-02-28 15:21:23 +01:00
|
|
|
restorable.ClearVolatileImages()
|
2016-07-03 09:18:29 +02:00
|
|
|
setRunningSlowly(i < updateCount-1)
|
2018-02-04 09:33:17 +01:00
|
|
|
if err := hooks.Run(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-07-03 09:18:29 +02:00
|
|
|
if err := c.f(c.offscreen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-11-09 17:18:41 +01:00
|
|
|
afterFrameUpdate()
|
2016-02-27 18:25:53 +01:00
|
|
|
}
|
2018-03-01 03:37:01 +01:00
|
|
|
|
|
|
|
// Call ClearFramebuffer instead of c.screen.Clear()
|
|
|
|
// to clear the whole region including fullscreen's padding.
|
|
|
|
c.screen.restorable.ClearFramebuffer()
|
|
|
|
|
|
|
|
dw, dh := c.screen.Size()
|
|
|
|
sw, _ := c.offscreen.Size()
|
|
|
|
scale := float64(dw) / float64(sw)
|
|
|
|
|
|
|
|
op := &DrawImageOptions{}
|
|
|
|
|
|
|
|
// c.screen is special: its Y axis is down to up,
|
|
|
|
// and the origin point is lower left.
|
|
|
|
op.GeoM.Scale(scale, -scale)
|
|
|
|
op.GeoM.Translate(0, float64(dh))
|
|
|
|
op.GeoM.Translate(c.offsetX, c.offsetY)
|
|
|
|
|
|
|
|
op.CompositeMode = CompositeModeCopy
|
|
|
|
op.Filter = filterScreen
|
|
|
|
_ = c.screen.DrawImage(c.offscreen, op)
|
2017-08-06 16:00:24 +02:00
|
|
|
|
2017-09-14 17:24:18 +02:00
|
|
|
if err := restorable.ResolveStaleImages(); err != nil {
|
2017-05-30 03:55:07 +02:00
|
|
|
return err
|
|
|
|
}
|
2014-12-20 12:54:14 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
return c.offscreen.restorable.IsInvalidated()
|
|
|
|
}
|
|
|
|
|
2017-07-02 08:58:00 +02:00
|
|
|
func (c *graphicsContext) restoreIfNeeded() error {
|
|
|
|
if !restorable.IsRestoringEnabled() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
r, err := c.needsRestoring()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !r {
|
|
|
|
return nil
|
|
|
|
}
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := restorable.Restore(); err != nil {
|
2016-05-23 17:00:54 +02:00
|
|
|
return err
|
|
|
|
}
|
2017-01-21 17:37:08 +01:00
|
|
|
c.invalidated = false
|
2016-05-23 17:00:54 +02:00
|
|
|
return nil
|
|
|
|
}
|