2022-03-22 15:33:21 +01:00
|
|
|
// Copyright 2022 The Ebiten Authors
|
2018-11-05 19:56:04 +01: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
|
2018-11-05 19:56:04 +01:00
|
|
|
|
2023-09-23 20:24:58 +02:00
|
|
|
/*
|
|
|
|
#include <jni.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
// Basically same as:
|
|
|
|
//
|
|
|
|
// WindowService windowService = context.getSystemService(Context.WINDOW_SERVICE);
|
|
|
|
// Display display = windowManager.getDefaultDisplay();
|
|
|
|
// DisplayMetrics displayMetrics = new DisplayMetrics();
|
|
|
|
// display.getRealMetrics(displayMetrics);
|
|
|
|
// this.deviceScale = displayMetrics.density;
|
|
|
|
//
|
|
|
|
static float deviceScale(uintptr_t java_vm, uintptr_t jni_env, uintptr_t ctx) {
|
|
|
|
JavaVM* vm = (JavaVM*)java_vm;
|
|
|
|
JNIEnv* env = (JNIEnv*)jni_env;
|
|
|
|
jobject context = (jobject)ctx;
|
|
|
|
|
|
|
|
const char* kWindowService = "window";
|
|
|
|
|
|
|
|
const jclass android_content_Context =
|
|
|
|
(*env)->FindClass(env, "android/content/Context");
|
|
|
|
const jclass android_view_WindowManager =
|
|
|
|
(*env)->FindClass(env, "android/view/WindowManager");
|
|
|
|
const jclass android_view_Display =
|
|
|
|
(*env)->FindClass(env, "android/view/Display");
|
|
|
|
const jclass android_util_DisplayMetrics =
|
|
|
|
(*env)->FindClass(env, "android/util/DisplayMetrics");
|
|
|
|
|
|
|
|
const jobject android_context_Context_WINDOW_SERVICE =
|
|
|
|
(*env)->GetStaticObjectField(
|
|
|
|
env, android_content_Context,
|
|
|
|
(*env)->GetStaticFieldID(env, android_content_Context, "WINDOW_SERVICE", "Ljava/lang/String;"));
|
|
|
|
|
|
|
|
const jobject windowManager =
|
|
|
|
(*env)->CallObjectMethod(
|
|
|
|
env, context,
|
|
|
|
(*env)->GetMethodID(env, android_content_Context, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;"),
|
|
|
|
android_context_Context_WINDOW_SERVICE);
|
|
|
|
const jobject display =
|
|
|
|
(*env)->CallObjectMethod(
|
|
|
|
env, windowManager,
|
|
|
|
(*env)->GetMethodID(env, android_view_WindowManager, "getDefaultDisplay", "()Landroid/view/Display;"));
|
|
|
|
const jobject displayMetrics =
|
|
|
|
(*env)->NewObject(
|
|
|
|
env, android_util_DisplayMetrics,
|
|
|
|
(*env)->GetMethodID(env, android_util_DisplayMetrics, "<init>", "()V"));
|
|
|
|
(*env)->CallVoidMethod(
|
|
|
|
env, display,
|
|
|
|
(*env)->GetMethodID(env, android_view_Display, "getRealMetrics", "(Landroid/util/DisplayMetrics;)V"),
|
|
|
|
displayMetrics);
|
|
|
|
const float density =
|
|
|
|
(*env)->GetFloatField(
|
|
|
|
env, displayMetrics,
|
|
|
|
(*env)->GetFieldID(env, android_util_DisplayMetrics, "density", "F"));
|
|
|
|
|
|
|
|
(*env)->DeleteLocalRef(env, android_content_Context);
|
|
|
|
(*env)->DeleteLocalRef(env, android_view_WindowManager);
|
|
|
|
(*env)->DeleteLocalRef(env, android_view_Display);
|
|
|
|
(*env)->DeleteLocalRef(env, android_util_DisplayMetrics);
|
|
|
|
|
|
|
|
(*env)->DeleteLocalRef(env, android_context_Context_WINDOW_SERVICE);
|
|
|
|
(*env)->DeleteLocalRef(env, windowManager);
|
|
|
|
(*env)->DeleteLocalRef(env, display);
|
|
|
|
(*env)->DeleteLocalRef(env, displayMetrics);
|
|
|
|
|
|
|
|
return density;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
2018-11-10 14:47:39 +01:00
|
|
|
import (
|
2023-10-15 17:23:18 +02:00
|
|
|
"errors"
|
2023-09-23 20:24:58 +02:00
|
|
|
"fmt"
|
|
|
|
|
2024-02-18 10:04:16 +01:00
|
|
|
"github.com/ebitengine/gomobile/app"
|
2022-11-13 06:51:45 +01:00
|
|
|
|
2022-02-06 12:41:32 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/opengl"
|
2018-11-10 14:47:39 +01:00
|
|
|
)
|
2018-11-05 19:56:04 +01:00
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
type graphicsDriverCreatorImpl struct {
|
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-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()
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|
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 (*graphicsDriverCreatorImpl) newMetal() (graphicsdriver.Graphics, error) {
|
2023-10-15 17:23:18 +02:00
|
|
|
return nil, errors.New("ui: Metal is not supported in this environment")
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
2023-09-23 20:24:58 +02: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-23 20:24:58 +02:00
|
|
|
func deviceScaleFactorImpl() float64 {
|
|
|
|
var s float64
|
|
|
|
if err := app.RunOnJVM(func(vm, env, ctx uintptr) error {
|
|
|
|
// TODO: This might be crash when this is called from init(). How can we detect this?
|
|
|
|
s = float64(C.deviceScale(C.uintptr_t(vm), C.uintptr_t(env), C.uintptr_t(ctx)))
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
panic(fmt.Sprintf("devicescale: error %v", err))
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
2024-03-03 15:31:14 +01:00
|
|
|
|
|
|
|
func dipToNativePixels(x float64, scale float64) float64 {
|
|
|
|
return x * scale
|
|
|
|
}
|