summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.h
Commit message (Collapse)AuthorAgeFilesLines
...
| * Simplify script list click logickobewi2022-08-301-1/+1
| |
* | VCS: Port Godot 3.5's VCS features to GDExtensionTwarit Waikar2022-08-311-1/+1
|/
* Replace Array return types with TypedArray 2kobewi2022-08-231-2/+2
|
* Replace Array return types with TypedArraykobewi2022-08-221-3/+3
|
* Add a new HashSet templatereduz2022-05-201-2/+2
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Merge pull request #55134 from KoBeWi/script_pillow_or_somethingRémi Verschelde2022-05-171-1/+0
|\ | | | | Always soft-reload scripts
| * Always soft-reload scriptskobewi2021-11-191-1/+0
| |
* | Replace most uses of Map by HashMapreduz2022-05-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | * 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!
* | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-14/+14
| | | | | | | | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* | Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors.
* | Merge pull request #56695 from bruvzg/mod_unicode_inputRémi Verschelde2022-04-051-1/+1
|\ \
| * | [Input] Add extra `shortcut_input` input processing step to process Unicode ↵bruvzg2022-04-051-1/+1
| | | | | | | | | | | | character input with Alt / Ctrl modifiers, after processing of shortcuts.
* | | Fix lookup symbol in scripts which doesn't open a tab at first attemptYuri Roubinsky2022-04-051-0/+1
|/ /
* | Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-46/+46
| | | | | | | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* | Editor: Cleanup some includes dependenciesRémi Verschelde2022-02-151-2/+0
| | | | | | | | | | | | | | | | | | | | | | Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole.
* | Remove most EditorNode constructor parameters and fieldstrollodel2022-02-141-4/+2
| |
* | Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-0/+4
| |
* | Save script editor's function list split offset with the editor layoutjmb4622022-02-021-1/+1
| |
* | Disable ScriptEditor's menu items when they do nothingHaoyu Qiu2022-01-211-0/+3
| |
* | Convert TextEdit callbacks to CallablePaulb232022-01-191-1/+1
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Improve save handling for built-in scriptskobewi2021-11-071-0/+1
|
* Remove unimplemented methodsMarcel Admiraal2021-10-211-4/+0
|
* Allow dragging TextFiles from the Filesystem dockPaulb232021-10-121-1/+2
|
* Allow breakpoints in closed filesPaulb232021-10-071-0/+1
|
* Preserve script editor state through tab closesPaulb232021-10-071-0/+3
|
* Add TextFile support across the editorPaulb232021-09-301-0/+3
|
* Add history navigation in the script editor using extra mouse buttonsHugo Locurcio2021-09-251-0/+1
| | | | | | This feature is enabled by default, but it can be disabled in the editor settings in case it interferes with other uses of the extra buttons (such as push-to-talk in a VoIP program).
* Merge pull request #52479 from KoBeWi/the_close_of_all_tabsRémi Verschelde2021-09-201-0/+2
|\ | | | | Don't stop closing on unsaved script
| * Don't stop closing on unsaved scriptkobewi2021-09-071-0/+2
| |
* | Added status bar and toggle scripts panel button to EditorHelp/VScriptsYuri Roubinsky2021-09-151-0/+1
|/
* Merge pull request #51639 from Ev1lbl0w/gsoc21-dapFabio Alessandrelli2021-09-011-0/+4
|\ | | | | Implement more advanced features for DAP
| * Implemented advanced features of DAPEv1lbl0w2021-08-311-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Respect client "supportsVariableType" capability Implement "breakpointLocations" request Implement "restart" request Implement "evaluate" request Fix error messages not being shown, and improved wrong path message Removed thread option and behavior Implemented detailed inspection of complex variables Fix "const"ness of functions Added a configurable timeout for requests Implement Godot custom data request/event Implement syncing of breakpoints Added support for debugging native platforms
* | Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | | | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* | Replace BIND_VMETHOD by new GDVIRTUAL syntaxreduz2021-08-221-1/+4
| | | | | | | | | | | | | | | | | | | | | | * New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits.
* | Auto-reload scripts with external editorJihyun Yu2021-08-171-0/+1
|/
* Merge pull request #49650 from KoBeWi/FindReplaceCrashRémi Verschelde2021-06-241-0/+1
|\ | | | | Fix crash with FindReplaceBar
| * Fix crash with FindReplaceBarkobewi2021-06-241-0/+1
| |
* | Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-1/+1
|/
* Move FindReplaceBar out of CodeTextEditorkobewi2021-06-081-0/+2
|
* Add get_base_editor to ScriptEditorBasesent442021-05-151-0/+2
|
* Save the current script when pressing Ctrl + S if no scene is openHugo Locurcio2021-05-091-1/+1
| | | | | | - Tweak the dialog messages to be more informative. - The "Saved N modified resources" dialog is not a warning per se, so make it more explicit.
* Save the current script when adding a new method via signal connectionHugo Locurcio2021-05-051-0/+1
| | | | | | | | | This makes it possible for external editors to pick up the changes. Most modern editors should reload the file automatically, but some older/lightweight editors may ask the user instead (or only warn after trying to save in the external editor). This closes #41283.
* Don't save unchanged script upon closingkobewi2021-03-061-1/+1
|
* 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 🎆
* Cleanup unused engine codeTomasz Chabora2020-12-091-1/+0
|
* Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-1/+1
|
* Documentation generation for GDScriptThakee Nathees2020-11-291-0/+1
| | | | | | | | | | | | | | | | | | - ClassDoc added to GDScript and property reflection data were extracted from parse tree - GDScript comments are collected from tokenizer for documentation and applied to the ClassDoc by the GDScript compiler - private docs were excluded (name with underscore prefix and doesn't have any doc comments) - default values (of non exported vars), arguments are extraced from the parser - Integrated with GDScript 2.0 and new enums were added. - merge conflicts fixed
* Implement new shortcuts system.Eric M2020-11-231-1/+1
| | | | unhandled_key_input changed to unhandled_button_input. Controls can set a 'shortcut_context' which they can then use to determine if their shortcuts should be triggered or not, based on if the viewport's focused GUI control is a child of their 'shortcut context'.
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code