summaryrefslogtreecommitdiffstats
path: root/platform/javascript
Commit message (Collapse)AuthorAgeFilesLines
...
* | Modules: Make sure to include modules_enabled.gen.h where neededRémi Verschelde2021-11-121-1/+1
|/
* Fix new projects always being created with OpenGLHugo Locurcio2021-11-011-2/+2
| | | | | | | | Only Vulkan is fully implemented for now, so OpenGL isn't available in the project manager yet. This also makes the rendering driver checks use lowercase names everywhere for consistency.
* Use OpenGL 3.3 core profile instead of compatibility profileClay John2021-10-313-676/+4
| | | | | | | | | | - Rename OpenGL to GLES3 in the source code per community feedback. - The renderer is still exposed as "OpenGL 3" to the user. - Hide renderer selection dropdown until OpenGL support is more mature. - The renderer can still be changed in the Project Settings or using the `--rendering-driver opengl` command line argument. - Remove commented out exporter code. - Remove some OpenGL/DisplayServer-related debugging prints.
* Rename GLES2 driver to OpenGL to prepare for the upgrade to GLES3Hugo Locurcio2021-10-303-6/+6
| | | | | - Use lowercase driver names for the `--rendering-driver` command line argument.
* Add GLES2 2D renderer + Linux display managerlawnjelly2021-10-301-0/+672
| | | | | | | | | First implementation with Linux display manager. - Add single-threaded mode for EditorResourcePreview (needed for OpenGL). Co-authored-by: clayjohn <claynjohn@gmail.com> Co-authored-by: Fabio Alessandrelli <fabio.alessandrelli@gmail.com>
* clang-format: Disable alignment of operands, too unreliableRémi Verschelde2021-10-281-1/+1
| | | | | | | | | Sets `AlignOperands` to `DontAlign`. `clang-format` developers seem to mostly care about space-based indentation and every other version of clang-format breaks the bad mismatch of tabs and spaces that it seems to use for operand alignment. So it's better without, so that it respects our two-tabs `ContinuationIndentWidth`.
* JS: Bump ansi-regex version for linterRémi Verschelde2021-10-221-3/+3
| | | | Silences warning about a moderate security vulnerability (which doesn't affect us).
* SCons: Set `DEBUG_ENABLED` and `DEV_ENABLED` in SConstructRémi Verschelde2021-10-151-3/+0
| | | | | They're the same for all platforms so they don't need to be repeated in all platform definitions.
* SCons: Add `DEV_ENABLED` defines for `target=debug` buildsRémi Verschelde2021-10-141-0/+1
| | | | | | | | | | | This will allow adding developer checks which will be fully compiled out in user builds, unlike `DEBUG_ENABLED` which is included in debug tempates and the editor builds. This define is not used yet, but we'll soon add code that uses it, and change some existing `DEBUG_ENABLED` checks to be performed only in dev builds. Related to godotengine/godot-proposals#3371.
* Fix some LGTM errors of "Multiplication result converted to larger type"Aaron Franke2021-10-121-2/+3
|
* Merge pull request #52711 from m4gr3d/provide_getter_for_project_data_dir_masterRémi Verschelde2021-10-051-1/+2
|\
| * Provide a getter for the project data directory.ne0fhyk2021-09-151-1/+2
| |
* | [HTML5] Refactor JS library listeners to OS.Fabio Alessandrelli2021-10-054-70/+70
| |
* | [HTML5] Refactor display/input JS library code.Fabio Alessandrelli2021-10-054-414/+435
| |
* | [HTML5] Implement Pointer Lock API in JS library.Fabio Alessandrelli2021-10-053-8/+37
| | | | | | | | Removes more emscripten HTML5 library dependencies.
* | [HTML5] Implement window blur in JS library.Fabio Alessandrelli2021-10-054-22/+12
| | | | | | | | Removes more emscripten HTML5 library dependencies.
* | [HTML5] Implement fullscreenchange in JS library.Fabio Alessandrelli2021-10-054-18/+22
| | | | | | | | Removes more emscripten HTML5 library dependencies.
* | [HTML5] Implement mouse/touch/key events in JS library.Fabio Alessandrelli2021-10-057-197/+259
| | | | | | | | | | This makes us more independent from emscripten libraries, giving us more control on the application lifecycle.
* | Use range iterators for `Map`Lightning_A2021-09-301-2/+2
| |
* | Merge pull request #52809 from selgesel/patch1Fabio Alessandrelli2021-09-292-0/+9
|\ \ | | | | | | Release pressed events when the window is blurred on HTML5 platform
| * | Release pressed events when the window is blurred on HTML5 platformSelgesel2021-09-232-0/+9
| | |
* | | HTML5: Fix minification error with Emscripten 1.39.9Rémi Verschelde2021-09-292-1/+9
|/ / | | | | | | | | | | | | It used an old vendored version of acorn.js which seems to choke on this trailing comma. This is not a problem for more recent Emscripten versions. We disable the `comma-dangle` check in ESLint to prevent this issue.
* | Merge pull request #52649 from Faless/js/4.x_audioworklet_nothreads_prRémi Verschelde2021-09-217-154/+339
|\ \ | | | | | | [HTML5] Refactor audio drivers. Implement AudioWorklet w/o threads.
| * | [HTML5] Refactor audio drivers. Implement AudioWorklet w/o threads.Fabio Alessandrelli2021-09-157-154/+339
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Performances are not great in general, bad on Firefox, on Chrome, well, it could be an improvement. Leave it as a fallback for now, but can be forced via project settings if desired (or custom JavaScript logic via the "args" option). I'm actually surprised this works, it involves so many allocations, but there's no way around it when SharedArrayBuffer is not available :(.
* | | Merge pull request #52720 from Faless/js/4.x_fix_wheelRémi Verschelde2021-09-161-5/+6
|\ \ \ | |/ / |/| | [HTML5] Fix wheel/touch callback modifying event after parse.
| * | [HTML5] Fix wheel/touch callback modifying event after parse.Fabio Alessandrelli2021-09-151-5/+6
| | | | | | | | | | | | | | | The events should be duplicated or reinstantiated without assuming that parse_input will consume them immediately.
* | | Merge pull request #52695 from Faless/js/4.x_audio_mix_rateFabio Alessandrelli2021-09-153-7/+14
|\ \ \ | |/ / |/| | [HTML5] Use browser mix rate by default on the Web.
| * | [HTML5] Use browser mix rate by default on the Web.Fabio Alessandrelli2021-09-153-7/+14
| | | | | | | | | | | | | | | | | | Browsers doesn't really like forcing the mix rate, e.g. Firefox does not allow input (microphone) if the mix rate is not the default one, Chrom* will exhibit worse performances, etc.
* | | [HTML5] Fix bug in AudioWorklet when reading output buffer.Fabio Alessandrelli2021-09-151-7/+7
|/ / | | | | | | Would attempt an out of bounds read, causing an exception.
* | Merge pull request #52604 from Faless/js/4.x_input_fixFabio Alessandrelli2021-09-142-2/+23
|\ \ | | | | | | [HTML5] Fix input not working when buffered.
| * | [HTML5] Fix input not working when buffered.Fabio Alessandrelli2021-09-121-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After input buffering was reworked, input accumulation is now handled outside of OS, and the JavaScript plaform never implemented that. Additionally, the JavaScript platform is quite obnoxious about calling specific APIs outside specific user triggered events. This commit adds event flushing during the main iteration, and forces it during keydown/keyup/mousedown/mouseup/touchstart/touchend/touchcanel events (effectively only accumulating only "move" events).
| * | [HTML5] Fix build error due to missing string cast.Fabio Alessandrelli2021-09-121-2/+2
| |/
* / Add logo attribution for Android, HTML5 and Linux platform iconsHugo Locurcio2021-09-111-0/+15
|/ | | | | - Tweak the Android platform logo to remove the Android wordmark, as it can't be used without explicit permission.
* Make platform feature tag names lowercaseHugo Locurcio2021-08-312-3/+3
| | | | | | | | | | | | | | Feature tag names are still case-sensitive, but this makes built-in feature tags more consistent. - `Windows` -> `windows` - `OSX` -> `osx` - `LinuxBSD` -> `linuxbsd` - `Android` -> `android` - `iOS` -> `ios` - `HTML5` -> `html5` - `JavaScript` -> `javascript` - `UWP` -> `uwp`
* Merge pull request #49598 from ↵Fabio Alessandrelli2021-08-311-7/+25
|\ | | | | | | | | Calinou/web-editor-improve-download-project-source-zip-name Improve the generated ZIP archive name when using Download Project Source
| * Improve the generated ZIP archive name when using Download Project SourceHugo Locurcio2021-08-161-7/+25
| | | | | | | | | | | | This makes for easier organization since downloading a project several times (or several different projects) will result in more meaningful file names.
* | HTML5: Handle GODOT_VERSION_STATUS env var in @GODOT_VERSION@Rémi Verschelde2021-08-191-1/+4
| | | | | | | | Follow-up to #51002.
* | [CI] Upgrade Emscripten to 2.0.27.Fabio Alessandrelli2021-08-181-1/+1
|/ | | | Update Godot Javascript FS library to manually depend on ERRNO_CODES.
* Split javascript export template into multiple filesSergey Minakov2021-08-125-964/+1081
|
* Use Key enum instead of plain integersAaron Franke2021-08-102-5/+5
|
* Fix various typos with codespellluz paz2021-07-251-1/+1
| | | | Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint`
* Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-2/+2
|
* Move `alert` function from `DisplayServer` to `OS`.bruvzg2021-07-224-5/+7
|
* Optimize StringName usagereduz2021-07-181-1/+1
| | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor.
* Modernize Display server to use override keywordHendrik Brucker2021-07-161-54/+54
|
* [HTML5] Make threads build the default.Fabio Alessandrelli2021-07-151-1/+1
| | | | Non-threads build are broken anyway.
* [HTML5] Fix build (with module_webxr_enabled=no).Fabio Alessandrelli2021-07-153-12/+11
| | | | | The XR API changed a bit, and it's not just a rename, though probably an easy update for someone who is qualified :).
* Misc cleanup of header includesRémi Verschelde2021-07-151-1/+1
| | | | | Was looking for misuse of module headers without checking that the module is actually enabled and got carried away...
* [HTML5] Raise default initial memory to 32 MiB.Fabio Alessandrelli2021-07-131-2/+1
| | | | | | | | | The memory was resized in any case during start. Mitigate Chromium issue: https://bugs.chromium.org/p/v8/issues/detail?id=11863 Also fix a warning about SAFE_HEAP being a linker only flag.
* Implement the ability to disable classesreduz2021-07-131-2/+2
| | | | | | | * This PR adds the ability to disable classes when building. * For now it's only possible to do this via command like: `scons disable_classes=RayCast2D,Area3D` * Eventually, a proper UI will be implemented to create a build config file to do this at large scale, as well as detect what is used in the project.