ebiten/internal/thread/thread.go

87 lines
2.0 KiB
Go
Raw Normal View History

// Copyright 2018 The Ebiten Authors
//
// 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 thread
import (
"errors"
)
2020-10-20 20:17:40 +02:00
// Thread defines threading behavior in Ebiten.
type Thread interface {
Call(func() error) error
Loop()
}
// OSThread represents an OS thread.
type OSThread struct {
funcs chan func() error
results chan error
}
// NewOSThread creates a new thread.
//
// It is assumed that the OS thread is fixed by runtime.LockOSThread when NewOSThread is called.
func NewOSThread() *OSThread {
return &OSThread{
funcs: make(chan func() error),
results: make(chan error),
}
}
// BreakLoop represents an termination of the loop.
var BreakLoop = errors.New("break loop")
// Loop starts the thread loop until a posted function returns BreakLoop.
//
// Loop must be called on the thread.
func (t *OSThread) Loop() {
for f := range t.funcs {
err := f()
if err == BreakLoop {
t.results <- nil
return
}
t.results <- err
}
}
2019-06-05 17:19:12 +02:00
// Call calls f on the thread.
2019-02-09 07:32:00 +01:00
//
// Do not call this from the same thread. This would block forever.
2020-02-23 17:54:52 +01:00
//
// If f returns BreakLoop, Loop returns.
//
2020-03-29 09:27:08 +02:00
// Call blocks if Loop is not called.
func (t *OSThread) Call(f func() error) error {
t.funcs <- f
return <-t.results
}
// NoopThread is used to disable threading.
type NoopThread struct{}
// NewNoopThread creates a new thread that does no threading.
2021-06-14 17:43:48 +02:00
func NewNoopThread() *NoopThread {
return &NoopThread{}
}
// Loop does nothing
func (t *NoopThread) Loop() {}
// Call executes the func immediately
func (t *NoopThread) Call(f func() error) error {
return f()
}