summaryrefslogtreecommitdiffstats
path: root/core/debugger
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-194-6/+6
|\
| * Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-174-6/+6
| |
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-3/+3
|\|
| * Merge pull request #97218 from wenqiangwang/local_debuggger_expr_evalulationThaddeus Crews2024-11-121-3/+3
| |\ | | | | | | | | | Add support for `print` command in local (command line `-d`) debugger
| | * Added support for 'print' command in local (command line -d) debuggerWenqiang2024-09-281-3/+3
| | |
* | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-112-0/+38
|\| |
| * | [Debugger] Move quit shortcut configuration to the SceneDebuggerFabio Alessandrelli2024-11-072-0/+38
| | |
* | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-023-12/+12
|\| |
| * | [Core] Improve error messages with `vformat`A Thousand Ships2024-10-303-12/+12
| | |
* | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-1/+1
|\| |
| * | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-251-1/+1
| | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | | Fix copyright headers referring to GodotSpartan3222024-10-2714-28/+28
| | |
* | | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1114-0/+28
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | Add expression evaluater to debugger (REPL)kobewi2024-10-011-0/+36
| | | | | | | | Co-authored-by: rohanrhu <rohanrhu2@gmail.com>
* | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|/
* Use `MutexLock` in more placesA Thousand Ships2024-08-291-2/+1
|
* Fix Game window stops responding when debugger pausesJamie Pate2024-07-101-1/+2
| | | | | | | | | | | | | | | | | | | | | Fixes #73374 As of godot 4 On windows/osx the game window will be frozen and will not be updated. In the debugger loop it calls OS::get_singleton()->process_and_drop_events(); which allows windows/osx to handle system events. If the window doesn't handle these events then both systems will judge the window to be 'not responding' (osx beachball cursor) When the event processing code was migrated from OS to DisplayServer the process_and_drop_events() logic was moved to DisplayServer, but the call inside the remote debugger pause loop was not updated to call the DisplayServer version, there are currently no implementations of OS::process_and_drop_events() so i removed it and switched to the new DisplayServer::force_process_and_drop_events() method.
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-1/+1
| | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-043-8/+7
| | | | | | | | | 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
* Add const lvalue ref to core/* container parametersMuller-Castro2024-02-144-4/+4
|
* Allow Ref `instantiate` to accept constructor argsThaddeus Crews2024-02-101-1/+1
|
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-3/+3
|
* Merge pull request #86676 from rune-scape/sparse-script-reloadYuri Sizov2024-01-172-6/+26
|\ | | | | | | GDScript: Hot-reload changed scripts only
| * Hot-reload only changed scriptsrune-scape2024-01-022-6/+26
| |
* | fix deadlock in RemoteDebugger::debugACB2024-01-141-2/+0
| |
* | Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-1/+1
|/
* [Core] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-111-2/+2
|
* Extract ScriptInstance to simplify includesYuri Sizov2023-09-061-3/+1
| | | | | | | | | This allows to include script_instance.h directly in the generated gdvirtual.gen.inc, and remove excessive includes from the codebase. This should also allow Resource to use GDVIRTUAL macros, which wasn't possible previously due to a circular dependency.
* Support threads in the script debuggerJuan Linietsky2023-07-268-55/+137
| | | | | | | | | | * This implementation adds threads on the side of the client (script debugger). * Some functions of the debugger are optimized. * The profile is also now thread safe using atomics. * The editor can switch between multiple threads when debugging. This PR adds threaded support for the script language debugger. Every thread has its own thread local data and it will connect to the debugger using multiple thread IDs. This means that, now, the editor can receive multiple threads entering debug mode at the same time.
* Fix infinite loop on EOF in the command line debuggerSimon Barkehanai2023-06-111-2/+3
| | | | | | | | | | When using the command line debugger (godot -d) on Unix systems, when entering an EOF (ctrl+D), the debugger enters an infinite loop. Adding a check for EOF in the debugger loop exits the debugger when EOF is entered. Fixes #50170.
* Fix thread IDs.Juan Linietsky2023-04-241-1/+3
| | | | | | | | | 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.
* Cleanup unused engine code v2kobewi2023-01-192-5/+0
|
* One Copyright Update to rule them allRémi Verschelde2023-01-0514-406/+406
| | | | | | | | | | | | | | | | | | | | 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".
* [MP] Move engine and editor profilers to a plugin.Fabio Alessandrelli2022-11-142-89/+0
| | | | Also refactor the editor plugin out of the ReplicationEditor.
* Remove NO_THREADS fallback code, Godot 4 requires thread supportRémi Verschelde2022-10-032-11/+5
| | | | | This also removes `OS::can_use_threads` from the public API since it's always true.
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Fix editor re-focus on debugger break on WindowsPedro J. Estébanez2022-07-213-2/+11
|
* Fixing Print_rich which only displays correctly in terminalVoylin2022-07-011-0/+8
| | | There was an issue that the type was not passed through correctly. These couple of lines fix this issue and make print_rich work as expected.
* Remove SceneTree dependency from LocalDebuggerTechnoPorg2022-06-291-2/+5
| | | | Core classes should not have dependencies on scene classes.
* Adding print_rich for printing with BBCodeVoylin2022-06-292-3/+10
|
* Add a new HashSet templatereduz2022-05-203-7/+7
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-166-15/+15
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Rename profiler "Idle Time" to "Process Time"Hugo Locurcio2022-05-054-11/+11
| | | | | References to "idle time" are progressively being replaced by "process time" throughout the engine to avoid confusion.
* Merge pull request #59582 from Faless/net/4.x_tcp_explicit_pollRémi Verschelde2022-04-271-2/+4
|\
| * [Net] Make StreamPeerTCP::_poll_connection explicit.Fabio Alessandrelli2022-03-271-2/+4
| | | | | | | | | | | | No longer hacked into `get_status` and renamed to `poll`. The old `poll` (for *nix `poll`, win `select`) is now called `wait`.
* | Fix more issues found by cppcheck.bruvzg2022-04-202-2/+2
| |
* | Fix some issues found by cppcheck.bruvzg2022-04-065-19/+20
|/
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-1/+0
|
* [Debugger] Move servers-related behaviours to ServersDebugger.Fabio Alessandrelli2022-02-062-13/+0
| | | | | | | | | Forcing draw during debug break is now handled by ServersDebugger, and only happens when the proper message is sent from the EditorDebugger ("servers:draw"). In a similar way, briging the window in foreground is now also handled by ServersDebugger upon receiving "servers:foreground" which is sent by the EditorDebugger when resuming from a break ("continue").
* [Debugger] Move most profilers to ServersDebugger.Fabio Alessandrelli2022-02-064-598/+27
| | | | | Also splits bandwidth/rpc profiler (RPCProfiler is now in SceneDebugger).