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.
|
|
|
|
|
2018-01-03 15:32:21 +01:00
|
|
|
// +build dragonfly freebsd linux netbsd openbsd solaris
|
2016-06-18 22:14:02 +02:00
|
|
|
// +build !android
|
2016-06-18 22:04:38 +02:00
|
|
|
|
2019-04-07 03:42:55 +02:00
|
|
|
package glfw
|
2016-06-18 22:04:38 +02:00
|
|
|
|
2018-01-02 21:22:56 +01:00
|
|
|
import (
|
2020-09-21 11:52:24 +02:00
|
|
|
"math"
|
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/glfw"
|
2018-01-02 21:22:56 +01:00
|
|
|
)
|
2016-07-04 04:37:34 +02:00
|
|
|
|
2020-09-18 17:56:39 +02:00
|
|
|
// fromGLFWMonitorPixel must be called from the main thread.
|
2021-02-10 19:45:35 +01:00
|
|
|
func fromGLFWMonitorPixel(x float64, deviceScale float64) float64 {
|
2021-04-17 08:45:46 +02:00
|
|
|
// deviceScaleFactor is sometimes an unnice value (e.g., 1.502361). Use math.Ceil to clean the vaule.
|
2021-02-10 19:45:35 +01:00
|
|
|
return math.Ceil(x / deviceScale)
|
2020-09-18 17:21:08 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 17:31:34 +02:00
|
|
|
// fromGLFWPixel must be called from the main thread.
|
|
|
|
func (u *UserInterface) fromGLFWPixel(x float64) float64 {
|
2020-09-18 18:24:16 +02:00
|
|
|
// deviceScaleFactor() is a scale by desktop environment (e.g., Cinnamon), while GetContentScale() is X's scale.
|
2021-02-10 19:45:35 +01:00
|
|
|
// They are different things and then need to be treated in different ways (#1350).
|
2020-09-18 18:24:16 +02:00
|
|
|
s, _ := currentMonitor(u.window).GetContentScale()
|
|
|
|
return x / float64(s)
|
2020-09-18 17:31:34 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 17:21:08 +02:00
|
|
|
// toGLFWPixel must be called from the main thread.
|
|
|
|
func (u *UserInterface) toGLFWPixel(x float64) float64 {
|
2020-09-18 18:24:16 +02:00
|
|
|
s, _ := currentMonitor(u.window).GetContentScale()
|
|
|
|
return x * float64(s)
|
2016-07-04 04:37:34 +02:00
|
|
|
}
|
2017-04-18 17:51:15 +02:00
|
|
|
|
2020-09-18 17:56:39 +02:00
|
|
|
// toFramebufferPixel must be called from the main thread.
|
|
|
|
func (u *UserInterface) toFramebufferPixel(x float64) float64 {
|
2020-09-18 18:24:16 +02:00
|
|
|
s, _ := currentMonitor(u.window).GetContentScale()
|
2021-04-17 08:45:46 +02:00
|
|
|
// deviceScaleFactor is sometimes an unnice value (e.g., 1.502361). Use math.Ceil to clean the vaule.
|
2020-09-21 11:52:24 +02:00
|
|
|
return math.Ceil(x * float64(s) / u.deviceScaleFactor())
|
2020-09-18 17:56:39 +02:00
|
|
|
}
|
|
|
|
|
2020-03-28 13:26:57 +01:00
|
|
|
func (u *UserInterface) adjustWindowPosition(x, y int) (int, int) {
|
2017-04-18 17:51:15 +02:00
|
|
|
return x, y
|
|
|
|
}
|
2018-10-06 15:42:28 +02:00
|
|
|
|
2020-08-23 20:31:46 +02:00
|
|
|
func currentMonitorByOS(_ *glfw.Window) *glfw.Monitor {
|
2020-03-28 17:12:53 +01:00
|
|
|
// TODO: Implement this correctly. (#1119).
|
2020-08-23 20:27:38 +02:00
|
|
|
return nil
|
2018-10-06 15:42:28 +02:00
|
|
|
}
|
2018-11-12 16:00:10 +01:00
|
|
|
|
2020-09-03 17:43:51 +02:00
|
|
|
func (u *UserInterface) nativeWindow() uintptr {
|
2018-12-28 06:08:44 +01:00
|
|
|
// TODO: Implement this.
|
2020-09-03 17:43:51 +02:00
|
|
|
return 0
|
2018-11-12 16:00:10 +01:00
|
|
|
}
|
2021-04-18 10:35:46 +02:00
|
|
|
|
|
|
|
func (u *UserInterface) isNativeFullscreen() bool {
|
|
|
|
return false
|
|
|
|
}
|