summaryrefslogtreecommitdiffstats
path: root/platform/android/java_godot_lib_jni.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand android editor to allow play store signingTrashguy2024-11-131-33/+33
| | | | Co-authored-by: Spartan322 <Megacake1234@gmail.com>
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* Fix the crash that occurs on termination of the Godot engine on AndroidFredia Huya-Kouadio2024-07-291-0/+4
|
* Fix the cleanup logic for the Android render threadFredia Huya-Kouadio2024-07-241-0/+1
| | | | | | | | | | | | | | | 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.
* Cleanup Android input on render thread settingsFredia Huya-Kouadio2024-07-091-4/+5
| | | | | | | Follow up to https://github.com/godotengine/godot/pull/93933 Clean up the set of settings use to control whether Android input should be dispatched on the render thread. Addresses comments in https://github.com/godotengine/godot/pull/93933#issuecomment-2210437977
* Fix ANRs reported by the Google Play ConsoleFredia Huya-Kouadio2024-07-041-0/+7
| | | | | | - Add support for dispatching input on the render thread (UI thread is the current default) when `input_buffering` and `accumulated_input` are disabled. At the expense of latency, this helps prevent 'heavy' applications / games from blocking the UI thread (the default behavior) which may cause the application to ANR. - Remove GLSurfaceView logic causing the UI thread to wait on the GL thread during lifecycle events. The removed logic would cause the UI thread to ANR when the GL thread is blocked.
* Fix the issue causing the logo to not show when using the `compatibility` ↵Fredia Huya-Kouadio2024-07-031-20/+33
| | | | renderer
* Merge pull request #92133 from m4gr3d/fix_touch_inputRémi Verschelde2024-05-291-3/+5
|\ | | | | Fix invalid detection of mouse input
| * Input logic cleanup:Fredia Huya-Kouadio2024-05-191-3/+5
| | | | | | | | | | | | | | | | | | | | - Fix invalid detection of mouse input. Prioritize using the event tool type to detect the type of the event, and only use the event source as fallback. - Ensure that pressure and tilt information is passed for touch drag events - Consolidate logic and remove redundant methods - Improve the logic to detect when external hardware keyboards are connected to the device
* | Add logic to unregister the Godot plugins on engine terminationFredia Huya-Kouadio2024-05-191-0/+4
|/
* Fix leakage of JNI object referencesFredia Huya-Kouadio2024-04-151-4/+8
| | | | Fixes https://github.com/godotengine/godot/issues/87548
* Fix `EXIT_SUCCESS` on AndroidAlexander Hartmann2024-03-251-1/+1
|
* Add method to get "base" system UI color (macOS/Windows) and system theme ↵bruvzg2024-02-131-0/+7
| | | | change callback.
* Update deferred calls to use Callableskobewi2024-01-091-1/+1
|
* Android stylus pressure and tilt supportpikethom2023-08-151-2/+2
|
* Godot Android re-architectureFredia Huya-Kouadio2023-07-161-1/+1
| | | | 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.
* [Android] Set `echo` property for the physical keyboard events.bruvzg2023-07-061-2/+2
|
* Style: Harmonize header includes in platform portsRémi Verschelde2023-06-081-12/+11
| | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module should be included with relative paths (relative to the root folder of the modular component, e.g. `platform/linuxbsd/`), in their own section before Godot's "core" includes. The `api` and `export` subfolders also need to be handled as self-contained (and thus use relative paths for their "local" includes) as they are all compiled for each editor platform, without necessarily having the api/export matching platform folder in the include path. E.g. the Linux editor build will compile `platform/android/{api,export}/*.cpp` and those need to use relative includes for it to work.
* Add `audio/general/text_to_speech` project setting to enable/disable TTS.bruvzg2023-05-181-3/+4
|
* [Android] Fix dynamic Variant params stack constructions in JNI callbacksshendo2023-05-011-23/+10
| | | | | | | | Emitting signals with params from Android plugins could crash due to object assignment with uninitialised mem. Instead, use 'memnew_placement' to construct into stack addresses. Make similar JNI callbacks consistent. Fixes #75754.
* Fix issue with resizing the display on Android when using the compatibility ↵Fredia Huya-Kouadio2023-04-261-3/+2
| | | | renderer.
* Fix thread IDs.Juan Linietsky2023-04-241-1/+1
| | | | | | | | | On Linux, thread IDs were not properly assigned with the current approach. The line: `std::thread new_thread(&Thread::callback, _thread_id_hash(thread.get_id()), p_settings, p_callback, p_user);` does not work because the thread ID is not assigned until the thread starts. This PR changes the behavior to use manually generated thread IDs. Additionally, if a thread is (or may have been created) outside Godot, the method `Thread::attach_external_thread` was added.
* Enable granular control of touchscreen related settingsFredia Huya-Kouadio2023-02-221-0/+16
|
* Further refactoring to AudioDriver implementations after #69120.Emmanouil Papadeas2023-02-091-1/+1
| | | | | | | | | | | | - Rename all instances of `capture_start()` and `capture_end()` to their new names. Fixes #72892. - More internal renames to match what was started in #69120. - Use `override` consistently so that such refactoring bugs can be caught. - Harmonize the order of definition of the overridden virtual methods in each audio driver. - Harmonize prototype for `set_output_device` and `set_input_device`. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Cleanup and unify keyboard input.bruvzg2023-01-231-2/+2
| | | | | | | | | | - Unify keycode values (secondary label printed on a key), remove unused hardcoded Latin-1 codes. - Unify IME behaviour, add inline composition string display on Windows and X11. - Add key_label (localized label printed on a key) value to the key events, and allow mapping actions to the unshifted Unicode events. - Add support for physical keyboard (Bluetooth or Sidecar) handling on iOS. - Add support for media key handling on macOS. Co-authored-by: Raul Santos <raulsntos@gmail.com>
* Use BitField<> in core type masksJuan Linietsky2023-01-081-5/+5
| | | | | | | | * All core types masks are now correctly marked as bitfields. * The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks. * Most bitmask operations replaced by functions in BitField<> * Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is. * Documentation and API dump updated to reflect bitfields in core types.
* 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".
* Fix 'save & restart' logic for the Android EditorFredia Huya-Kouadio2022-11-161-21/+36
|
* Merge pull request #67578 from KoBeWi/GEDITORRémi Verschelde2022-10-311-1/+1
|\ | | | | | | Unify usage of GLOBAL/EDITOR_GET
| * Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-1/+1
| |
* | Add double_tap attribute to InputEventScreenTouchFredia Huya-Kouadio2022-10-221-2/+2
|/ | | | This provides parity with the `InputEventMouseButton` allowing for proper conversion between the two events.
* Merge pull request #65501 from m4gr3d/fix_invalid_project_manager_path_mainRémi Verschelde2022-09-081-6/+7
|\ | | | | | | Fix issue causing the project manager to crash because of missing path argument
| * Fix issue causing the project manager to crash because of missing path argumentFredia Huya-Kouadio2022-09-071-6/+7
| | | | | | | | In the process, the initialization logic is updated to show an error message and gracefully close the engine when setup errors occur.
* | Cleanup the Android input logic implementationFredia Huya-Kouadio2022-09-071-27/+17
|/
* Fix incorrect Android scancodesMarcel Admiraal2022-07-131-3/+2
|
* Add full support for Android scoped storage.Fredia Huya-Kouadio2022-07-051-6/+8
| | | | | This was done by refactoring directory and file access handling for the Android platform so that any general filesystem access type go through the Android layer. This allows us to validate whether the access is unrestricted, or whether it falls under scoped storage and thus act appropriately.
* Fix exit code of --help and --version, and test them in CIJan Haller2022-07-021-0/+1
| | | | Corrects prior regression which caused ERROR output and exit code of 1.
* Remove broken scroll gesture on AndroidMarcel Admiraal2022-06-211-9/+0
|
* Cleanup Android C++ codeMarcel Admiraal2022-05-311-19/+12
|
* Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵bruvzg2022-04-281-0/+6
| | | | | | Windows. Implement TextServer word break method.
* Fix the issue causing the screen to be black after resuming when in low ↵Fredy Huya-Kouadio2022-04-251-0/+2
| | | | | | processor mode. This is done by forcing a redraw and buffers swap when resuming the app.
* Fix flickering issues with low processor mode on AndroidFredia Huya-Kouadio2022-03-291-5/+8
|
* Android port of the Godot EditorFredy Huya-Kouadio2022-03-281-1/+5
| | | | | | | 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>
* Remove VARIANT_ARG* macrosreduz2022-03-091-5/+7
| | | | | | | | * Very old macros from the time Godot was created. * Limited arguments to 5 (then later changed to 8) in many places. * They were replaced by C++11 Variadic Templates. * Renamed methods that take argument pointers to have a "p" suffix. This was used in some places and not in others, so made it standard. * Also added a dereference check for Variant*. Helped catch a couple of bugs.
* Style: Cleanup single-line blocks, semicolons, dead codeRémi Verschelde2022-02-161-16/+30
| | | | | Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Use "enum class" for input enumsAaron Franke2021-11-121-11/+15
|
* Drop broken Android 32-bit framebuffer setting for a reliable one for depth ↵Pedro J. Estébanez2021-11-011-2/+1
| | | | buffer
* Switch to input buffering on AndroidPedro J. Estébanez2021-08-131-40/+59
| | | | | | | | | | Key, touch and joystick events will be passed directly from the UI thread to Godot, so they can benefit from agile input flushing. As another consequence of this new way of passing events, less Java object are created at runtime (`Runnable`), which is good since the garbage collector needs to run less. `AndroidInputHandler` is introduced to have a smaller cross-thread surface. `main_loop_request_go_back()` is removed in favor just inline calling `send_window_event()` at the most caller's convenience (i.e., leveraging the new `p_deferred`` parameter as appropriate). Lastly, `get_mouse_position()` and `get_mouse_button_state()` now just call through `Input` to avoid the need of sync of mouse data tracked on the UI thread.