summaryrefslogtreecommitdiffstats
path: root/platform/android/java_godot_wrapper.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-0/+18
|\
| * [Android] Implement support for accent color retrievalAnish Mishra2024-11-011-0/+18
| |
* | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+24
|\|
| * [Android] Implement native file picker supportAnish Mishra2024-10-301-0/+24
| |
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-0/+18
|\|
| * [Android] Implement native input dialog supportAnish Mishra2024-10-291-0/+18
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Restore 'Toggle fullscreen' menu for the Android editor and clean up the ↵Fredia Huya-Kouadio2024-08-281-0/+20
| | | | immersive mode logic
* Update the `GodotHost` interface to support signing and verifying Android apksFredia Huya-Kouadio2024-08-261-0/+41
| | | | | | Update the export logic to enable apk generation and signing for Android editor builds Note: Only legacy builds are supported. Gradle builds are not supported at this point in time.
* Memory cleanup and optimizationsFredia Huya-Kouadio2024-08-161-9/+12
| | | | | | | | | | | | | | - Returns an empty list when there's not registered plugins, thus preventing the creation of spurious iterator objects - Inline `Godot#getRotatedValues(...)` given it only had a single caller. This allows to remove the allocation of a float array on each call and replace it with float variables - Disable sensor events by default. Sensor events can fired at 10-100s Hz taking cpu and memory resources. Now the use of sensor data is behind a project setting allowing projects that have use of it to enable it, while other projects don't pay the cost for a feature they don't use - Create a pool of specialized input `Runnable` objects to prevent spurious, unbounded `Runnable` allocations - Disable showing the boot logo for Android XR projects - Delete locale references of jni strings
* Fix the cleanup logic for the Android render threadFredia Huya-Kouadio2024-07-241-0/+11
| | | | | | | | | | | | | | | On Android the exit logic goes through `Godot#onDestroy()` who attempts to cleanup the engine using the following code: ``` runOnRenderThread { GodotLib.ondestroy() forceQuit() } ``` The issue however is that by the time we ran this code, the render thread has already been paused (but not yet destroyed), and thus `GodotLib.ondestroy()` and `forceQuit()` which are scheduled on the render thread are not executed. To address this, we instead explicitly request the render thread to exit and block until it does. As part of it exit logic, the render thread has been updated to properly destroy and clean the native instance of the Godot engine, resolving the issue.
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-2/+3
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Implement `amplitude` to Input.vibrate_handheldRadiant2024-05-021-3/+10
| | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: m4gr3d <m4gr3d@users.noreply.github.com>
* Fix leakage of JNI object referencesFredia Huya-Kouadio2024-04-151-3/+17
| | | | Fixes https://github.com/godotengine/godot/issues/87548
* Add const lvalue ref to container parametersMuller-Castro2024-01-051-1/+1
|
* Improve engine startup/shutdown benchmarksYuri Sizov2023-12-081-6/+8
| | | | | | | | | - Add contexts to give a better sense of benchmarked areas. - Add missing benchmarks and adjust some begin/end points. - Clean up names. - Improve Android's internal benchmarks in a similar manner. Co-authored-by: Fredia Huya-Kouadio <fhuya@meta.com>
* Add support for the OpenXR Eye gaze interaction extensionBastiaan Olij2023-10-021-0/+13
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* Support dark mode on Android and iOS.Zae2023-09-261-0/+22
|
* Godot Android plugin re-architectureFredia Huya-Kouadio2023-09-031-0/+20
|
* Godot Android re-architectureFredia Huya-Kouadio2023-07-161-73/+3
| | | | Decouples the Godot java entry point from the Android Fragment component. This enables the Godot component to be more easily reused across different types of Android components including Activities and Services.
* Improve startup benchmarkingFredia Huya-Kouadio2023-05-231-0/+30
| | | | Move the benchmarking measuring methods from `Engine` to `OS` to allow for platform specific overrides (e.g: can be used to hook into platform specific benchmarking and tracing capabilities).
* [TLS] Add support for platform-specific CA bundles.Fabio Alessandrelli2023-05-121-0/+12
| | | | | | | | | | | | | | | | | Adds a new OS::get_system_ca_certs method which can be implemented by platforms to retrieve the list of trusted CA certificates using OS specific APIs. The function should return the certificates in PEM format, and is currently implemented for Windows/macOS/LinuxBSD(*)/Android. mbedTLS will fall back to bundled certificates when the OS returns no certificates. (*) LinuxBSD does not have a standardized certificates store location. The current implementation will test for common locations and may return an empty string on some distributions (falling back to the bundled certificates).
* Fix the issue causing the Godot Android Editor to crash when returning from ↵Fredia Huya-Kouadio2023-01-261-8/+11
| | | | | | | the launched and running game The issue was caused because the running game pid was not set, and thus had a value of `0`. When trying to stop the running game, the `EditorRun::stop()` logic would kill the process with pid 0, which on Android corresponds to the running app's own process, thus causing the editor to crash. This issue did not happen on Godot 3 because pid with value of `0` are not considered valid.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Cleanup of the Android cursor shape logicFredia Huya-Kouadio2022-10-051-8/+22
|
* Fix issue causing the project manager to crash because of missing path argumentFredia Huya-Kouadio2022-09-071-4/+5
| | | | In the process, the initialization logic is updated to show an error message and gracefully close the engine when setup errors occur.
* Cleanup Android C++ codeMarcel Admiraal2022-05-311-50/+26
|
* Android port of the Godot EditorFredy Huya-Kouadio2022-03-281-0/+14
| | | | | | | These set of changes focus primarily on getting the core logic and overall Godot Editor UI and functionality up and running natively on Android devices. UI tweaks / cleanup / polish, as well configuration for Android specific functionality / restrictions will be addressed in follow-up PRs iteratively based on feedback. Co-authored-by: thebestnom <shoval.arad@gmail.com>
* Style: Cleanup single-line blocks, semicolons, dead codeRémi Verschelde2022-02-161-4/+8
| | | | | Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported.
* Add `DisplayServer.clipboard_has()` to check clipboard contentHaoyu Qiu2022-01-191-0/+16
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fixes on android:Bastiaan Olij2021-03-181-0/+36
| | | | | | - creating Vulkan context instead of OpenGL - checking for validity of ENV in wrapper classes - fix for access to JavaVM from threads
* Leverage java annotations to simplify the logic used to register the Godot ↵Fredia Huya-Kouadio2021-03-161-7/+20
| | | | plugin methods.
* Modernize ThreadPedro J. Estébanez2021-01-291-21/+21
| | | | | | | | | - Based on C++11's `thread` and `thread_local` - No more need to allocate-deallocate or check for null - No pointer anymore, just a member variable - Platform-specific implementations no longer needed (except for the few cases of non-portable functions) - Simpler for `NO_THREADS` - Thread ids are now the same across platforms (main is 1; others follow)
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Fix invalid invocation of `get_class_loader`.Fredia Huya-Kouadio2020-12-231-1/+1
| | | | The call was made on a `Godot` instance instead of an `Activity` instance.
* Android: Allow Mouse Capture thebestnom2020-12-081-0/+10
|
* Enable the ability to use Godot as a subview within an Android appFredia Huya-Kouadio2020-06-251-30/+39
|
* Replace NULL with nullptrlupoDharkael2020-04-021-8/+8
|
* Update the naming scheme for the GodotPlugin's methods in preparate of the ↵fhuya2020-03-191-4/+4
| | | | vulkan integration.
* Re-architecture of the Godot Android plugin.fhuya2020-03-051-0/+10
|
* Remove obsolete GLES3 backendRémi Verschelde2020-02-131-7/+0
| | | | | | | | | | | | | | Due to the port to Vulkan and complete redesign of the rendering backend, the `drivers/gles3` code is no longer usable in this state and is not planned to be ported to the new architecture. The GLES2 backend is kept (while still disabled and non-working) as it will eventually be ported to serve as the low-end renderer for Godot 4.0. Some GLES3 features might be selectively ported to the updated GLES2 backend if there's a need for them, and extensions we can use for that. So long, OpenGL driver bugs!
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Add request permission automatically at androidCagdas2019-10-221-0/+30
|
* Update the fallback input mapping for the Oculus mobile devices.fhuya2019-08-261-0/+11
|
* Support vibration for Android and iOSvolzhs2019-08-211-0/+8
|
* Setup Godot to support the Oculus Mobile SDK.fhuya2019-05-301-0/+20
|
* Android: Include Joysticks/Gamepads which are available on app start.wombatstampede2019-05-281-0/+8
|
* Restructuring glue code to make it easier to extendBastiaan Olij2019-04-051-0/+185