mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
119 lines
3.0 KiB
Go
119 lines
3.0 KiB
Go
// 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.
|
|
|
|
package ebiten
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
|
"github.com/hajimehoshi/ebiten/internal/ui"
|
|
)
|
|
|
|
func newGraphicsContext(f func(*Image) error) *graphicsContext {
|
|
return &graphicsContext{
|
|
f: f,
|
|
}
|
|
}
|
|
|
|
type graphicsContext struct {
|
|
f func(*Image) error
|
|
screen *Image
|
|
defaultRenderTarget *Image
|
|
screenScale int
|
|
initialized bool
|
|
}
|
|
|
|
func (c *graphicsContext) SetSize(screenWidth, screenHeight, screenScale int) error {
|
|
if c.defaultRenderTarget != nil {
|
|
c.defaultRenderTarget.Dispose()
|
|
}
|
|
if c.screen != nil {
|
|
c.screen.Dispose()
|
|
}
|
|
screen, err := NewImage(screenWidth, screenHeight, FilterNearest)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.defaultRenderTarget, err = newImageWithZeroFramebuffer(screenWidth*screenScale, screenHeight*screenScale)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.defaultRenderTarget.Clear()
|
|
c.screen = screen
|
|
c.screenScale = screenScale
|
|
return nil
|
|
}
|
|
|
|
func (c *graphicsContext) Update() error {
|
|
if !c.initialized {
|
|
if err := graphics.Initialize(ui.GLContext()); err != nil {
|
|
return err
|
|
}
|
|
c.initialized = true
|
|
}
|
|
if err := c.screen.Clear(); err != nil {
|
|
return err
|
|
}
|
|
if err := c.f(c.screen); err != nil {
|
|
return err
|
|
}
|
|
if IsRunningSlowly() {
|
|
return nil
|
|
}
|
|
if err := c.defaultRenderTarget.Clear(); err != nil {
|
|
return err
|
|
}
|
|
scale := float64(c.screenScale)
|
|
options := &DrawImageOptions{}
|
|
options.GeoM.Scale(scale, scale)
|
|
if err := c.defaultRenderTarget.DrawImage(c.screen, options); err != nil {
|
|
return err
|
|
}
|
|
if err := c.flush(); err != nil {
|
|
return err
|
|
}
|
|
exceptions := map[*imageImpl]struct{}{
|
|
c.screen.impl: {},
|
|
c.defaultRenderTarget.impl: {},
|
|
}
|
|
if err := theImages.savePixels(ui.GLContext(), exceptions); 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
|
|
}
|
|
// Call glFlush to prevent black flicking (especially on Android (#226)).
|
|
ui.GLContext().Flush()
|
|
return nil
|
|
}
|
|
|
|
func (c *graphicsContext) Resume() error {
|
|
imageM.Lock()
|
|
defer imageM.Unlock()
|
|
ui.GLContext().Resume()
|
|
if err := graphics.Initialize(ui.GLContext()); err != nil {
|
|
return err
|
|
}
|
|
if err := theImages.restorePixels(ui.GLContext()); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|