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
|
|
|
|
2014-05-03 20:29:45 +02:00
|
|
|
import (
|
2014-12-30 18:55:17 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2014-05-03 20:29:45 +02:00
|
|
|
)
|
2014-05-03 17:40:53 +02:00
|
|
|
|
2015-02-09 02:25:00 +01:00
|
|
|
func newGraphicsContext(screenWidth, screenHeight, screenScale int) (*graphicsContext, error) {
|
|
|
|
c := &graphicsContext{}
|
|
|
|
if err := c.setSize(screenWidth, screenHeight, screenScale); err != nil {
|
2014-12-19 21:22:10 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-09 02:25:00 +01:00
|
|
|
return c, nil
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 07:26:10 +01:00
|
|
|
type graphicsContext struct {
|
2015-02-18 16:08:21 +01:00
|
|
|
screen *Image
|
|
|
|
defaultRenderTarget *Image
|
|
|
|
screenScale int
|
2014-12-07 16:07:36 +01:00
|
|
|
}
|
2014-01-11 03:18:55 +01:00
|
|
|
|
2016-02-27 15:39:06 +01:00
|
|
|
func (c *graphicsContext) update(f func(*Image) error) error {
|
|
|
|
if err := c.screen.Clear(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := f(c.screen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-02-27 18:25:53 +01:00
|
|
|
if IsRunningSlowly() {
|
|
|
|
return nil
|
|
|
|
}
|
2015-02-19 18:01:56 +01:00
|
|
|
// TODO: In WebGL, we don't need to clear the image here.
|
2015-02-18 16:08:21 +01:00
|
|
|
if err := c.defaultRenderTarget.Clear(); err != nil {
|
2014-12-22 18:34:45 +01:00
|
|
|
return err
|
|
|
|
}
|
2014-12-07 16:07:36 +01:00
|
|
|
scale := float64(c.screenScale)
|
2015-01-05 02:30:33 +01:00
|
|
|
options := &DrawImageOptions{}
|
|
|
|
options.GeoM.Scale(scale, scale)
|
2015-02-18 16:08:21 +01:00
|
|
|
if err := c.defaultRenderTarget.DrawImage(c.screen, options); err != nil {
|
2014-12-20 12:54:14 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2014-12-07 16:07:36 +01:00
|
|
|
}
|
2015-02-09 02:25:00 +01:00
|
|
|
|
|
|
|
func (c *graphicsContext) setSize(screenWidth, screenHeight, screenScale int) error {
|
2015-02-18 16:08:21 +01:00
|
|
|
if c.defaultRenderTarget != nil {
|
2016-02-06 17:27:55 +01:00
|
|
|
c.defaultRenderTarget.Dispose()
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
|
|
|
if c.screen != nil {
|
2016-02-06 17:27:55 +01:00
|
|
|
c.screen.Dispose()
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 20:39:43 +01:00
|
|
|
f, err := graphics.NewZeroFramebuffer(glContext, screenWidth*screenScale, screenHeight*screenScale)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-09 02:25:00 +01:00
|
|
|
|
2016-02-19 20:39:43 +01:00
|
|
|
texture, err := graphics.NewTexture(glContext, screenWidth, screenHeight, glContext.Nearest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
screenF, err := graphics.NewFramebufferFromTexture(glContext, texture)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
screen := &Image{framebuffer: screenF, texture: texture}
|
|
|
|
c.defaultRenderTarget = &Image{framebuffer: f, texture: nil}
|
|
|
|
c.screen = screen
|
|
|
|
c.screenScale = screenScale
|
|
|
|
return nil
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|