2020-10-20 19:55:17 +02:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
2022-08-12 05:40:23 +02:00
|
|
|
//go:build !android && !ios && !js && !nintendosdk && !ebitenginesinglethread && !ebitensinglethread
|
2020-10-20 19:55:17 +02:00
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2020-10-20 19:55:17 +02:00
|
|
|
|
|
|
|
import (
|
2022-12-28 09:03:49 +01:00
|
|
|
stdcontext "context"
|
2023-01-03 13:17:47 +01:00
|
|
|
|
|
|
|
"golang.org/x/sync/errgroup"
|
2022-12-28 09:03:49 +01:00
|
|
|
|
2020-10-20 19:55:17 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicscommand"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/thread"
|
|
|
|
)
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) Run(game Game, options *RunOptions) error {
|
2022-04-01 10:59:44 +02:00
|
|
|
u.context = newContext(game)
|
2020-10-20 19:55:17 +02:00
|
|
|
|
2023-09-01 21:20:08 +02:00
|
|
|
u.mainThread = thread.NewOSThread()
|
|
|
|
u.renderThread = thread.NewOSThread()
|
|
|
|
graphicscommand.SetRenderThread(u.renderThread)
|
|
|
|
|
|
|
|
// Set the running state true after the main thread is set, and before initOnMainThread is called (#2742).
|
|
|
|
// TODO: As the existance of the main thread is the same as the value of `running`, this is redundant.
|
|
|
|
// Make `mainThread` atomic and remove `running` if possible.
|
2022-12-28 08:44:22 +01:00
|
|
|
u.setRunning(true)
|
|
|
|
defer u.setRunning(false)
|
|
|
|
|
2022-12-30 08:28:07 +01:00
|
|
|
if err := u.initOnMainThread(options); err != nil {
|
2022-12-28 08:44:22 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-12-28 09:03:49 +01:00
|
|
|
ctx, cancel := stdcontext.WithCancel(stdcontext.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
2023-01-03 13:17:47 +01:00
|
|
|
var wg errgroup.Group
|
2020-10-20 19:55:17 +02:00
|
|
|
|
2023-01-03 13:17:47 +01:00
|
|
|
// Run the render thread.
|
|
|
|
wg.Go(func() error {
|
|
|
|
defer cancel()
|
|
|
|
_ = u.renderThread.Loop(ctx)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
// Run the game thread.
|
|
|
|
wg.Go(func() error {
|
|
|
|
defer cancel()
|
|
|
|
return u.loopGame()
|
|
|
|
})
|
|
|
|
|
|
|
|
// Run the main thread.
|
|
|
|
_ = u.mainThread.Loop(ctx)
|
|
|
|
return wg.Wait()
|
2020-10-20 19:55:17 +02:00
|
|
|
}
|