2022-02-11 18:12:47 +01:00
|
|
|
// Copyright 2022 The Ebiten Authors
|
2019-09-02 21:08:58 +02:00
|
|
|
//
|
|
|
|
// 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-03-19 15:55:14 +01:00
|
|
|
package ui
|
2019-09-02 21:08:58 +02:00
|
|
|
|
2023-09-23 20:24:58 +02:00
|
|
|
// #cgo CFLAGS: -x objective-c
|
|
|
|
// #cgo LDFLAGS: -framework Foundation -framework UIKit
|
|
|
|
//
|
|
|
|
// #import <UIKit/UIKit.h>
|
|
|
|
//
|
|
|
|
// static double devicePixelRatio() {
|
|
|
|
// return [[UIScreen mainScreen] nativeScale];
|
|
|
|
// }
|
|
|
|
import "C"
|
|
|
|
|
2022-03-22 15:33:21 +01:00
|
|
|
import (
|
2023-10-15 17:23:18 +02:00
|
|
|
"errors"
|
2022-06-16 19:10:29 +02:00
|
|
|
"fmt"
|
|
|
|
|
2022-03-22 15:33:21 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/metal"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/opengl"
|
|
|
|
)
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
type graphicsDriverCreatorImpl struct {
|
2024-08-27 16:55:33 +02:00
|
|
|
colorSpace graphicsdriver.ColorSpace
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-07-30 19:56:16 +02:00
|
|
|
func (g *graphicsDriverCreatorImpl) newAuto() (graphicsdriver.Graphics, GraphicsLibrary, error) {
|
2022-06-16 19:10:29 +02:00
|
|
|
m, err1 := g.newMetal()
|
|
|
|
if err1 == nil {
|
2022-07-30 19:56:16 +02:00
|
|
|
return m, GraphicsLibraryMetal, nil
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
2022-06-16 19:10:29 +02:00
|
|
|
o, err2 := g.newOpenGL()
|
|
|
|
if err2 == nil {
|
2022-07-30 19:56:16 +02:00
|
|
|
return o, GraphicsLibraryMetal, nil
|
2022-06-16 19:10:29 +02:00
|
|
|
}
|
2022-07-30 19:56:16 +02:00
|
|
|
return nil, GraphicsLibraryUnknown, fmt.Errorf("ui: failed to choose graphics drivers: Metal: %v, OpenGL: %v", err1, err2)
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-11-13 06:51:45 +01:00
|
|
|
func (g *graphicsDriverCreatorImpl) newOpenGL() (graphicsdriver.Graphics, error) {
|
2024-01-07 16:18:03 +01:00
|
|
|
return opengl.NewGraphics()
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-06-17 04:39:43 +02:00
|
|
|
func (*graphicsDriverCreatorImpl) newDirectX() (graphicsdriver.Graphics, error) {
|
2023-10-15 17:23:18 +02:00
|
|
|
return nil, errors.New("ui: DirectX is not supported in this environment")
|
2022-03-25 11:43:32 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
func (g *graphicsDriverCreatorImpl) newMetal() (graphicsdriver.Graphics, error) {
|
2024-08-27 16:55:33 +02:00
|
|
|
return metal.NewGraphics(g.colorSpace)
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2023-10-01 16:14:47 +02:00
|
|
|
func (*graphicsDriverCreatorImpl) newPlayStation5() (graphicsdriver.Graphics, error) {
|
|
|
|
return nil, errors.New("ui: PlayStation 5 is not supported in this environment")
|
|
|
|
}
|
|
|
|
|
2023-10-15 10:02:15 +02:00
|
|
|
func (u *UserInterface) SetUIView(uiview uintptr) error {
|
2022-11-14 17:34:25 +01:00
|
|
|
select {
|
|
|
|
case err := <-u.errCh:
|
|
|
|
return err
|
2023-10-15 10:21:56 +02:00
|
|
|
case <-u.graphicsLibraryInitCh:
|
2022-11-14 17:34:25 +01:00
|
|
|
}
|
|
|
|
|
2022-03-22 16:00:45 +01:00
|
|
|
// This function should be called only when the graphics library is Metal.
|
2022-11-14 17:34:25 +01:00
|
|
|
if g, ok := u.graphicsDriver.(interface{ SetUIView(uintptr) }); ok {
|
2022-03-22 16:00:45 +01:00
|
|
|
g.SetUIView(uiview)
|
|
|
|
}
|
2022-11-14 17:34:25 +01:00
|
|
|
return nil
|
2022-03-22 16:00:45 +01:00
|
|
|
}
|
2019-09-02 21:08:58 +02:00
|
|
|
|
2023-10-15 13:14:23 +02:00
|
|
|
func (u *UserInterface) IsGL() (bool, error) {
|
2022-11-14 17:34:25 +01:00
|
|
|
select {
|
|
|
|
case err := <-u.errCh:
|
|
|
|
return false, err
|
2023-10-15 10:21:56 +02:00
|
|
|
case <-u.graphicsLibraryInitCh:
|
2022-11-14 17:34:25 +01:00
|
|
|
}
|
|
|
|
|
2023-10-15 10:21:56 +02:00
|
|
|
return u.GraphicsLibrary() == GraphicsLibraryOpenGL, nil
|
2019-09-02 21:08:58 +02:00
|
|
|
}
|
2023-09-23 20:24:58 +02:00
|
|
|
|
|
|
|
func deviceScaleFactorImpl() float64 {
|
|
|
|
// TODO: Can this be called from non-main threads?
|
|
|
|
return float64(C.devicePixelRatio())
|
|
|
|
}
|
2024-03-03 15:31:14 +01:00
|
|
|
|
|
|
|
func dipToNativePixels(x float64, scale float64) float64 {
|
|
|
|
return x
|
|
|
|
}
|