2016-06-18 22:04:38 +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.
|
|
|
|
|
2023-10-01 16:14:47 +02:00
|
|
|
//go:build (freebsd || (linux && !android) || netbsd || openbsd) && !nintendosdk && !playstation5
|
2016-06-18 22:04:38 +02:00
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2016-06-18 22:04:38 +02:00
|
|
|
|
2018-01-02 21:22:56 +01:00
|
|
|
import (
|
2023-10-15 16:27:04 +02:00
|
|
|
"errors"
|
2021-09-18 09:58:30 +02:00
|
|
|
"fmt"
|
2021-09-17 19:21:24 +02:00
|
|
|
"runtime"
|
2021-09-15 05:47:04 +02:00
|
|
|
|
|
|
|
"github.com/jezek/xgb"
|
|
|
|
"github.com/jezek/xgb/randr"
|
|
|
|
"github.com/jezek/xgb/xproto"
|
2022-03-22 15:33:21 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/glfw"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/opengl"
|
2018-01-02 21:22:56 +01:00
|
|
|
)
|
2016-07-04 04:37:34 +02:00
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
func (u *UserInterface) initializePlatform() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
type graphicsDriverCreatorImpl struct {
|
2022-02-11 12:38:45 +01:00
|
|
|
transparent bool
|
|
|
|
}
|
2022-03-22 15:33:21 +01:00
|
|
|
|
2022-07-30 19:56:16 +02:00
|
|
|
func (g *graphicsDriverCreatorImpl) newAuto() (graphicsdriver.Graphics, GraphicsLibrary, error) {
|
|
|
|
graphics, err := g.newOpenGL()
|
|
|
|
return graphics, GraphicsLibraryOpenGL, err
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
func (*graphicsDriverCreatorImpl) newOpenGL() (graphicsdriver.Graphics, error) {
|
2022-11-13 07:25:22 +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 16:27:04 +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 (*graphicsDriverCreatorImpl) newMetal() (graphicsdriver.Graphics, error) {
|
2023-10-15 16:27:04 +02:00
|
|
|
return nil, errors.New("ui: Metal is not supported in this environment")
|
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-09-29 17:11:06 +02:00
|
|
|
// glfwMonitorSizeInGLFWPixels must be called from the main thread.
|
2023-10-03 16:07:53 +02:00
|
|
|
func glfwMonitorSizeInGLFWPixels(m *glfw.Monitor) (int, int, error) {
|
|
|
|
vm, err := m.GetVideoMode()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2023-09-29 17:11:06 +02:00
|
|
|
physWidth, physHeight := vm.Width, vm.Height
|
|
|
|
|
2021-09-19 11:18:18 +02:00
|
|
|
// TODO: if glfw/glfw#1961 gets fixed, this function may need revising.
|
2021-09-15 05:47:04 +02:00
|
|
|
// In case GLFW decides to switch to returning logical pixels, we can just return 1.
|
|
|
|
|
|
|
|
// Note: GLFW currently returns physical pixel sizes,
|
|
|
|
// but we need to predict the window system-side size of the fullscreen window
|
2024-03-23 14:31:08 +01:00
|
|
|
// for Ebitengine's `(*Monitor).Size()` public API.
|
2023-01-28 11:06:38 +01:00
|
|
|
// Also at the moment we need this prior to switching to fullscreen, but that might be replaceable.
|
2021-09-15 05:47:04 +02:00
|
|
|
// So this function computes the ratio of physical per logical pixels.
|
|
|
|
xconn, err := xgb.NewConn()
|
|
|
|
if err != nil {
|
|
|
|
// No X11 connection?
|
|
|
|
// Assume we're on pure Wayland then.
|
|
|
|
// GLFW/Wayland shouldn't be having this issue.
|
2023-10-03 16:07:53 +02:00
|
|
|
return physWidth, physHeight, nil
|
2021-09-15 05:47:04 +02:00
|
|
|
}
|
2021-09-19 11:18:18 +02:00
|
|
|
defer xconn.Close()
|
|
|
|
|
2021-09-22 19:03:37 +02:00
|
|
|
if err := randr.Init(xconn); err != nil {
|
2021-09-19 11:18:18 +02:00
|
|
|
// No RANDR extension? No problem.
|
2023-10-03 16:07:53 +02:00
|
|
|
return physWidth, physHeight, nil
|
2021-09-15 05:47:04 +02:00
|
|
|
}
|
2021-09-19 11:18:18 +02:00
|
|
|
|
2021-09-15 05:47:04 +02:00
|
|
|
root := xproto.Setup(xconn).DefaultScreen(xconn).Root
|
|
|
|
res, err := randr.GetScreenResourcesCurrent(xconn, root).Reply()
|
|
|
|
if err != nil {
|
2021-09-19 11:18:18 +02:00
|
|
|
// Likely means RANDR is not working. No problem.
|
2023-10-03 16:07:53 +02:00
|
|
|
return physWidth, physHeight, nil
|
2021-09-15 05:47:04 +02:00
|
|
|
}
|
2021-09-19 11:18:18 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
monitorX, monitorY, err := m.GetPos()
|
|
|
|
if err != nil {
|
|
|
|
// TODO: Is it OK to ignore this error?
|
|
|
|
return physWidth, physHeight, nil
|
|
|
|
}
|
2021-09-22 19:48:22 +02:00
|
|
|
|
2021-09-15 05:47:04 +02:00
|
|
|
for _, crtc := range res.Crtcs[:res.NumCrtcs] {
|
|
|
|
info, err := randr.GetCrtcInfo(xconn, crtc, res.ConfigTimestamp).Reply()
|
|
|
|
if err != nil {
|
|
|
|
// This Crtc is bad. Maybe just got disconnected?
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if info.NumOutputs == 0 {
|
|
|
|
// This Crtc is not connected to any output.
|
|
|
|
// In other words, a disabled monitor.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if int(info.X) == monitorX && int(info.Y) == monitorY {
|
2023-10-03 16:07:53 +02:00
|
|
|
return int(info.Width), int(info.Height), nil
|
2021-09-15 05:47:04 +02:00
|
|
|
}
|
|
|
|
}
|
2021-09-19 11:18:18 +02:00
|
|
|
|
2021-09-15 05:47:04 +02:00
|
|
|
// Monitor not known to XRandR. Weird.
|
2023-10-03 16:07:53 +02:00
|
|
|
return physWidth, physHeight, nil
|
2021-09-15 05:47:04 +02:00
|
|
|
}
|
|
|
|
|
2024-03-03 15:27:02 +01:00
|
|
|
func dipFromGLFWPixel(x float64, deviceScaleFactor float64) float64 {
|
|
|
|
return x / deviceScaleFactor
|
2020-09-18 17:31:34 +02:00
|
|
|
}
|
|
|
|
|
2024-03-03 15:27:02 +01:00
|
|
|
func dipToGLFWPixel(x float64, deviceScaleFactor float64) float64 {
|
|
|
|
return x * deviceScaleFactor
|
2020-09-18 17:56:39 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) adjustWindowPosition(x, y int, monitor *Monitor) (int, int) {
|
2017-04-18 17:51:15 +02:00
|
|
|
return x, y
|
|
|
|
}
|
2018-10-06 15:42:28 +02:00
|
|
|
|
2023-09-23 19:05:42 +02:00
|
|
|
func initialMonitorByOS() (*Monitor, error) {
|
2022-02-07 19:10:59 +01:00
|
|
|
xconn, err := xgb.NewConn()
|
|
|
|
if err != nil {
|
|
|
|
// Assume we're on pure Wayland then.
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
defer xconn.Close()
|
|
|
|
|
|
|
|
root := xproto.Setup(xconn).DefaultScreen(xconn).Root
|
|
|
|
rep, err := xproto.QueryPointer(xconn, root).Reply()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
x, y := int(rep.RootX), int(rep.RootY)
|
|
|
|
|
|
|
|
// Find the monitor including the cursor.
|
2023-09-29 09:48:20 +02:00
|
|
|
return theMonitors.monitorFromPosition(x, y), nil
|
2021-10-09 09:49:47 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
func monitorFromWindowByOS(_ *glfw.Window) (*Monitor, error) {
|
2020-03-28 17:12:53 +01:00
|
|
|
// TODO: Implement this correctly. (#1119).
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil, nil
|
2018-10-06 15:42:28 +02:00
|
|
|
}
|
2018-11-12 16:00:10 +01:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) nativeWindow() (uintptr, error) {
|
2018-12-28 06:08:44 +01:00
|
|
|
// TODO: Implement this.
|
2023-10-03 16:07:53 +02:00
|
|
|
return 0, nil
|
2018-11-12 16:00:10 +01:00
|
|
|
}
|
2021-04-18 10:35:46 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isNativeFullscreen() (bool, error) {
|
2023-10-07 11:05:03 +02:00
|
|
|
return false, nil
|
2021-04-18 10:35:46 +02:00
|
|
|
}
|
2021-05-02 07:50:50 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isNativeFullscreenAvailable() bool {
|
2021-09-17 19:21:24 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setNativeFullscreen(fullscreen bool) error {
|
2022-02-06 08:08:22 +01:00
|
|
|
panic(fmt.Sprintf("ui: setNativeFullscreen is not implemented in this environment: %s", runtime.GOOS))
|
2021-09-17 19:21:24 +02:00
|
|
|
}
|
2021-09-18 15:11:26 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) adjustViewSizeAfterFullscreen() error {
|
2023-10-07 11:05:03 +02:00
|
|
|
return nil
|
2021-09-18 15:11:26 +02:00
|
|
|
}
|
2021-09-24 19:46:18 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowResizingModeForOS(mode WindowResizingMode) error {
|
2023-10-07 11:05:03 +02:00
|
|
|
return nil
|
2021-12-29 14:08:59 +01:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
func initializeWindowAfterCreation(w *glfw.Window) error {
|
2021-09-24 19:46:18 +02:00
|
|
|
// Show the window once before getting the position of the window.
|
|
|
|
// On Linux/Unix, the window position is not reliable before showing.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := w.Show(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-09-28 15:15:59 +02:00
|
|
|
|
|
|
|
// Hiding the window makes the position unreliable again. Do not call w.Hide() here (#1829)
|
|
|
|
// Calling Hide is problematic especially on XWayland and/or Sway.
|
|
|
|
// Apparently the window state is inconsistent just after the window is created, but we are not sure.
|
|
|
|
// For more details, see the discussion in #1829.
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2021-09-24 19:46:18 +02:00
|
|
|
}
|
2022-12-12 17:03:19 +01:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) skipTaskbar() error {
|
2022-12-12 17:03:19 +01:00
|
|
|
return nil
|
|
|
|
}
|
2024-07-31 16:54:16 +02:00
|
|
|
|
|
|
|
func (u *UserInterface) setDocumentEdited(edited bool) error {
|
|
|
|
return nil
|
|
|
|
}
|