summaryrefslogtreecommitdiffstats
path: root/scene/resources/resource_format_text.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-191-1/+1
|\
| * Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-171-1/+1
| |
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-0/+4
|\|
| * Universalize UID support in all resource typesJuan2024-11-111-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | Ensures all resource types support UIDs in a project. This is required to fix: * Scripts and many other resource types can't be referenced by UID and when refactored the references are lost. * Path export properties can't use UID for unsupported types. * Refactoring problems when files are moved outside the editor (this PR effectively fixes it). * Editor properly refreshing paths if they changed externally while opened (as example, git update). This needs to be addressed in a subsequent PR, but this one effectively sets the prerequisites. Resource types that do not support UID will get a .uid file appended to them (this includes .gd, .gdshader, .gdextension, etc. files).
* | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-14/+15
|\|
| * Merge pull request #86600 from nikitalita/fix-missing-resourcesThaddeus Crews2024-11-101-14/+15
| |\ | | | | | | | | | Fix `MissingResource` properties being stripped on save
| | * Fix missing resource properties being dropped on savenikitalita2024-11-051-14/+15
| | |
* | | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| | |
* | | Merge commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-221-2/+2
|\| |
| * | Fix lost of gdextension on editor startup.Hilderin2024-10-201-2/+2
| |/ | | | | | | Co-authored-by: NetroScript <noreply@enostrion.com>"
* / 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>
* Partially revert 96780, remove warnings from project/editor settings `_get`.bruvzg2024-10-041-40/+36
|
* Make internal unique scene resource ID deterministicJuan2024-09-231-0/+2
| | | | | | | Changes the Resource::generate_scene_unique_id() to be deterministic and seedable. Fixes #97110
* [Resource Loader] Do not check property type for non registered properties.bruvzg2024-09-101-36/+40
|
* Implement typed dictionariesThaddeus Crews2024-09-041-0/+28
|
* Fix SCU global namespace conflict in `resource_format_text.cpp`lawnjelly2024-09-031-10/+5
| | | | `FORMAT_VERSION` is used in multiple places in the codebase, and #defining it was causing conflicts.
* GDScript: Enhance handling of cyclic dependenciesPedro J. Estébanez2024-06-261-27/+32
|
* Merge pull request #91488 from ↵Rémi Verschelde2024-05-291-322/+0
|\ | | | | | | | | | | akien-mga/resource-format-text-remove-obsolete-binary-conversion Remove unused code to convert text resource format to binary
| * Remove unused code to convert text resource format to binaryRémi Verschelde2024-05-031-322/+0
| | | | | | | | This is now handled in `ResourceSaver::save` when saving with a binary extension.
* | Add PackedVector4Array Variant typeK. S. Ernest (iFire) Lee2024-05-031-4/+8
|/ | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Use compatible text resource format when possibleHaoyu Qiu2024-04-231-13/+23
|
* Improve error when scene/resource is saved with newer formatkobewi2024-04-151-1/+1
|
* Merge pull request #89186 from groud/save_byte_arrays_as_base64_encodedRémi Verschelde2024-04-101-1/+2
|\ | | | | | | Save PackedByteArrays as base64 encoded
| * Save PackedByteArrays as base64 encodedGilles Roudière2024-03-061-1/+2
| |
* | [Core] Add iteration support to `Array`A Thousand Ships2024-04-101-8/+6
| |
* | Type of exported typed array can be external resourceJordyfel2024-04-091-0/+1
|/
* Enhance cache modes in resource loadingPedro J. Estébanez2024-02-261-5/+27
| | | | | | | - Unify documentation, hoping to clear misconcepctions about about propagation of the cache mode across dependant loads. - Clarify in docs that `CACHE_MODE_REPLACE` now also works on the main resource (from #87008). - Add two recursive modes, counterparts of `CACHE_MODE_REPLACE` and `CACHE_MODE_IGNORE`, since it seems some need them (see #59669, #82830). - Let resources, even loaded with one of the ignore-cache modes, get a path, which is useful for tools.
* Allow opening scenes with missing scene dependencykobewi2024-02-131-0/+7
|
* Ensure special characters are escaped in tscn connections and editable hintLimestaX2024-01-081-5/+5
|
* Improve error message in text resource format parserEoin O'Neill2024-01-021-1/+1
| | | | | | | This improves the error message in our text resource parsing code to help the user potentially fix parsing issues in case of failure. It also helps with the debugging process of finding out which sub_resource is causing the parser to fail with line messages.
* Fix file disappearing when renaming dependencieskobewi2023-12-141-2/+2
|
* Remove unnecessary assignmentsWilson E. Alvarez2023-12-131-2/+1
| | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* Assign temporary path to preloaded resourceskobewi2023-11-101-0/+2
|
* Add error checks for DirAccess creation.Saracen2023-09-261-0/+2
|
* Extract ScriptInstance to simplify includesYuri Sizov2023-09-061-0/+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.
* Fix ImageTextureLayered serialisation issues.Ithamar R. Adema2023-07-231-4/+7
|
* Fix crash when saving resources with circular referencesMaxim Kulkin2023-07-141-2/+3
| | | | | | | | When saving resources, marking of already seen resources was done too late, causing infinite loop traversing referenced resources and eventual stack overflow. The change marks traversed resource before descending to it's children, thus when this resource is encountered again, it is already marked as seen and traversal stops.
* Allow change import type without restarting editorkobewi2023-07-031-1/+5
|
* Fix missing UID handling in Dependency Editorkobewi2023-06-131-2/+10
|
* Fix external resource ids lostPedro J. Estébanez2023-06-011-1/+1
|
* Avoid interaction issues between resource loading threadsPedro J. Estébanez2023-05-101-56/+27
|
* Merge pull request #70234 from Rindbee/fix-uid-lostRémi Verschelde2023-04-251-2/+12
|\ | | | | | | Fix the uid field of the tscn/res file is lost when the external dependency is updated
| * Fix the uid field of the tscn/res file is lost when the external dependency ↵Rindbee2023-01-221-2/+12
| | | | | | | | is updated
* | Fix sub-resource IDs resetting when preloadedkobewi2023-02-071-3/+5
| |
* | More codespell fixes, do more changes from previous ignore listRémi Verschelde2023-02-011-3/+3
| |
* | GDScript: Fix issues with typed arraysDmitrii Maganov2023-01-311-0/+24
|/
* Merge pull request #71687 from reduz/support-script-class-name-in-efsRémi Verschelde2023-01-211-2/+77
|\ | | | | | | Support script global resource name in EditorFileSystem
| * Support script global resource name in EditorFileSystemJuan Linietsky2023-01-211-2/+77
| | | | | | | | | | | | | | | | | | | | * Works for binary and text files. * Makes EditorQuickOpen work with custom resources again. * Information is cached and easily accessible. Properly fixes #66179. Supersedes #66215 and supersedes #62417 **WARNING**: This required breaking backwards binary compatibility (.res and .scn files). Files saved after this PR is merged will no longer open in any earlier versions of Godot.
* | Merge pull request #44596 from KoBeWi/🧹🧹🧹Rémi Verschelde2023-01-191-4/+0
|\ \ | |/ |/| | | Cleanup unused engine code v2
| * Cleanup unused engine code v2kobewi2023-01-191-4/+0
| |