2016-05-18 03:46:23 +02:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-05-18 03:59:37 +02:00
|
|
|
package loop
|
2016-05-18 03:46:23 +02:00
|
|
|
|
|
|
|
import (
|
2016-05-28 19:51:34 +02:00
|
|
|
"errors"
|
2016-05-18 03:46:23 +02:00
|
|
|
"time"
|
2016-05-18 03:59:37 +02:00
|
|
|
|
2017-07-13 17:28:28 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/clock"
|
2017-05-26 19:37:01 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/sync"
|
2016-05-18 03:59:37 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/ui"
|
2016-05-18 03:46:23 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func CurrentFPS() float64 {
|
2016-06-13 17:49:43 +02:00
|
|
|
return currentRunContext.getCurrentFPS()
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type runContext struct {
|
2016-06-13 18:33:35 +02:00
|
|
|
running bool
|
|
|
|
currentFPS float64
|
|
|
|
runningSlowly bool
|
2017-04-05 17:45:28 +02:00
|
|
|
frames int64
|
2017-07-12 21:03:01 +02:00
|
|
|
framesForFPS int64
|
2016-06-13 18:33:35 +02:00
|
|
|
lastUpdated int64
|
|
|
|
lastFPSUpdated int64
|
2017-07-13 17:28:28 +02:00
|
|
|
lastClockFrame int64
|
2017-07-13 18:38:22 +02:00
|
|
|
ping func()
|
2016-06-13 18:33:35 +02:00
|
|
|
m sync.RWMutex
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:38:22 +02:00
|
|
|
var (
|
|
|
|
currentRunContext *runContext
|
|
|
|
contextInitCh = make(chan struct{})
|
|
|
|
)
|
2016-05-18 03:46:23 +02:00
|
|
|
|
|
|
|
func (c *runContext) startRunning() {
|
|
|
|
c.m.Lock()
|
|
|
|
defer c.m.Unlock()
|
|
|
|
c.running = true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *runContext) isRunning() bool {
|
2016-08-30 16:56:34 +02:00
|
|
|
c.m.RLock()
|
|
|
|
defer c.m.RUnlock()
|
2016-05-18 03:46:23 +02:00
|
|
|
return c.running
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *runContext) endRunning() {
|
|
|
|
c.m.Lock()
|
|
|
|
defer c.m.Unlock()
|
|
|
|
c.running = false
|
|
|
|
}
|
|
|
|
|
2016-06-13 17:49:43 +02:00
|
|
|
func (c *runContext) getCurrentFPS() float64 {
|
2016-05-18 03:46:23 +02:00
|
|
|
c.m.RLock()
|
|
|
|
defer c.m.RUnlock()
|
|
|
|
if !c.running {
|
|
|
|
// TODO: Should panic here?
|
|
|
|
return 0
|
|
|
|
}
|
2016-06-13 17:49:43 +02:00
|
|
|
return c.currentFPS
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *runContext) updateFPS(fps float64) {
|
|
|
|
c.m.Lock()
|
|
|
|
defer c.m.Unlock()
|
2016-06-13 17:49:43 +02:00
|
|
|
c.currentFPS = fps
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type GraphicsContext interface {
|
2017-05-31 03:47:52 +02:00
|
|
|
SetSize(width, height int, scale float64)
|
2017-05-30 19:09:27 +02:00
|
|
|
UpdateAndDraw(updateCount int) error
|
2017-01-21 17:37:08 +01:00
|
|
|
Invalidate()
|
2016-05-18 03:46:23 +02:00
|
|
|
}
|
|
|
|
|
2016-09-01 17:53:05 +02:00
|
|
|
type loopGraphicsContext struct {
|
|
|
|
runContext *runContext
|
|
|
|
graphicsContext GraphicsContext
|
|
|
|
}
|
|
|
|
|
2017-05-31 03:47:52 +02:00
|
|
|
func (g *loopGraphicsContext) SetSize(width, height int, scale float64) {
|
|
|
|
g.graphicsContext.SetSize(width, height, scale)
|
2016-09-01 17:53:05 +02:00
|
|
|
}
|
2016-08-31 19:38:47 +02:00
|
|
|
|
2016-09-01 17:53:05 +02:00
|
|
|
func (g *loopGraphicsContext) Update() error {
|
|
|
|
return g.runContext.render(g.graphicsContext)
|
2016-08-31 19:38:47 +02:00
|
|
|
}
|
|
|
|
|
2017-01-21 17:37:08 +01:00
|
|
|
func (g *loopGraphicsContext) Invalidate() {
|
|
|
|
g.graphicsContext.Invalidate()
|
|
|
|
}
|
|
|
|
|
2017-07-13 20:19:50 +02:00
|
|
|
func Run(g GraphicsContext, width, height int, scale float64, title string) (err error) {
|
2016-05-28 19:51:34 +02:00
|
|
|
if currentRunContext != nil {
|
|
|
|
return errors.New("loop: The game is already running")
|
|
|
|
}
|
2017-07-13 20:19:50 +02:00
|
|
|
currentRunContext = &runContext{}
|
2016-05-18 03:46:23 +02:00
|
|
|
currentRunContext.startRunning()
|
|
|
|
defer currentRunContext.endRunning()
|
|
|
|
|
2017-07-12 21:03:01 +02:00
|
|
|
n := now()
|
2016-06-13 18:33:35 +02:00
|
|
|
currentRunContext.lastUpdated = n
|
|
|
|
currentRunContext.lastFPSUpdated = n
|
2016-08-31 19:38:47 +02:00
|
|
|
|
2017-07-13 18:38:22 +02:00
|
|
|
close(contextInitCh)
|
|
|
|
|
2016-09-01 19:31:03 +02:00
|
|
|
lg := &loopGraphicsContext{currentRunContext, g}
|
2016-09-02 17:20:05 +02:00
|
|
|
if err := ui.Run(width, height, scale, title, lg); err != nil {
|
2016-09-01 17:53:05 +02:00
|
|
|
if _, ok := err.(*ui.RegularTermination); ok {
|
2016-08-31 19:38:47 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-07-12 21:03:01 +02:00
|
|
|
func (c *runContext) updateCount(now int64) int {
|
|
|
|
count := 0
|
|
|
|
sync := false
|
|
|
|
|
|
|
|
t := now - c.lastUpdated
|
|
|
|
if t < 0 {
|
|
|
|
return 0
|
2017-07-10 17:20:47 +02:00
|
|
|
}
|
2017-07-12 21:03:01 +02:00
|
|
|
|
2017-07-13 17:28:28 +02:00
|
|
|
if clock.IsValid() && c.lastClockFrame != clock.Frame() {
|
2017-07-12 21:03:01 +02:00
|
|
|
sync = true
|
2017-07-13 17:28:28 +02:00
|
|
|
f := clock.Frame()
|
2017-07-12 21:03:01 +02:00
|
|
|
if c.frames < f {
|
|
|
|
count = int(f - c.frames)
|
|
|
|
}
|
2017-07-13 17:28:28 +02:00
|
|
|
c.lastClockFrame = f
|
2017-07-12 21:03:01 +02:00
|
|
|
} else {
|
2017-07-16 16:54:14 +02:00
|
|
|
if t > 5*int64(time.Second)/int64(clock.FPS) {
|
|
|
|
// The previous time is too old. Let's assume that the window was unfocused.
|
|
|
|
count = 0
|
|
|
|
c.lastUpdated = now
|
|
|
|
} else {
|
|
|
|
count = int(t * int64(clock.FPS) / int64(time.Second))
|
|
|
|
}
|
2017-07-10 17:20:47 +02:00
|
|
|
}
|
2017-07-12 21:03:01 +02:00
|
|
|
|
|
|
|
// Stabilize FPS.
|
2017-07-13 20:19:50 +02:00
|
|
|
if count == 0 && (int64(time.Second)/int64(clock.FPS)/2) < t {
|
2017-07-12 21:03:01 +02:00
|
|
|
count = 1
|
|
|
|
}
|
2017-07-13 20:19:50 +02:00
|
|
|
if count == 2 && (int64(time.Second)/int64(clock.FPS)*3/2) > t {
|
2017-07-12 21:03:01 +02:00
|
|
|
count = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if count > 3 {
|
|
|
|
count = 3
|
2017-07-11 19:09:46 +02:00
|
|
|
}
|
2017-07-12 21:03:01 +02:00
|
|
|
|
|
|
|
if sync {
|
|
|
|
c.lastUpdated = now
|
|
|
|
} else {
|
2017-07-13 20:19:50 +02:00
|
|
|
c.lastUpdated += int64(count) * int64(time.Second) / int64(clock.FPS)
|
2017-07-12 21:03:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
c.frames += int64(count)
|
|
|
|
return count
|
2017-07-10 17:20:47 +02:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:38:22 +02:00
|
|
|
func RegisterPing(ping func()) {
|
|
|
|
<-contextInitCh
|
|
|
|
currentRunContext.registerPing(ping)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *runContext) registerPing(ping func()) {
|
|
|
|
c.m.Lock()
|
|
|
|
c.ping = ping
|
|
|
|
c.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2016-06-13 17:49:43 +02:00
|
|
|
func (c *runContext) render(g GraphicsContext) error {
|
2017-07-12 21:03:01 +02:00
|
|
|
n := now()
|
|
|
|
|
2017-07-13 18:38:22 +02:00
|
|
|
c.m.Lock()
|
|
|
|
if c.ping != nil {
|
|
|
|
c.ping()
|
2017-07-10 17:20:47 +02:00
|
|
|
}
|
2017-07-13 18:38:22 +02:00
|
|
|
c.m.Unlock()
|
2016-06-13 18:33:35 +02:00
|
|
|
|
2017-07-12 21:03:01 +02:00
|
|
|
count := c.updateCount(n)
|
|
|
|
if err := g.UpdateAndDraw(count); err != nil {
|
|
|
|
return err
|
2017-07-10 17:36:43 +02:00
|
|
|
}
|
2017-07-12 21:03:01 +02:00
|
|
|
c.framesForFPS++
|
2016-06-13 18:33:35 +02:00
|
|
|
|
2017-07-12 21:03:01 +02:00
|
|
|
// Calc the current FPS.
|
|
|
|
if time.Second > time.Duration(n-c.lastFPSUpdated) {
|
|
|
|
return nil
|
2016-06-13 17:49:43 +02:00
|
|
|
}
|
2017-07-12 21:03:01 +02:00
|
|
|
currentFPS := float64(c.framesForFPS) * float64(time.Second) / float64(n-c.lastFPSUpdated)
|
|
|
|
c.updateFPS(currentFPS)
|
|
|
|
c.lastFPSUpdated = n
|
|
|
|
c.framesForFPS = 0
|
|
|
|
|
2016-06-13 17:49:43 +02:00
|
|
|
return nil
|
|
|
|
}
|