ebiten/internal/loop/run.go

66 lines
1.3 KiB
Go
Raw Normal View History

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:59:37 +02:00
2017-07-13 17:28:28 +02:00
"github.com/hajimehoshi/ebiten/internal/clock"
2016-05-18 03:46:23 +02:00
)
const FPS = clock.FPS
2016-05-18 03:46:23 +02:00
func CurrentFPS() float64 {
return clock.CurrentFPS()
2016-05-18 03:46:23 +02:00
}
type runContext struct{}
2016-05-18 03:46:23 +02:00
2017-07-13 18:38:22 +02:00
var (
theRunContext *runContext
contextInitCh = make(chan struct{})
2017-07-13 18:38:22 +02:00
)
2016-05-18 03:46:23 +02:00
2017-08-05 14:24:04 +02:00
func Start() error {
2017-08-05 15:07:03 +02:00
// TODO: Need lock here?
if theRunContext != nil {
2016-05-28 19:51:34 +02:00
return errors.New("loop: The game is already running")
}
theRunContext = &runContext{}
2017-07-13 18:38:22 +02:00
close(contextInitCh)
2017-08-05 14:24:04 +02:00
return nil
}
2017-07-13 18:38:22 +02:00
2017-08-05 14:24:04 +02:00
func End() {
theRunContext = nil
}
2017-08-05 13:43:49 +02:00
type Updater interface {
Update(updateCount int) error
}
func Update(u Updater) error {
<-contextInitCh
return theRunContext.update(u)
2017-08-05 13:43:49 +02:00
}
func (c *runContext) update(u Updater) error {
2017-08-05 19:12:23 +02:00
count := clock.Update()
2017-08-05 13:43:49 +02:00
if err := u.Update(count); err != nil {
2017-07-12 21:03:01 +02:00
return err
}
2016-06-13 17:49:43 +02:00
return nil
}