summaryrefslogtreecommitdiffstats
path: root/scene/resources/resource_format_text.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix using Resource objects as keys in the `tres` formatLife4gal2023-01-191-0/+3
|/ | | | Fixes #57506.
* Text resource loader fixesJuan Linietsky2023-01-101-16/+13
| | | | | * Moved the order of progress update to after the actual resource loading to give better % numbers. * Fix a bug introduced by #67714, which broke cache ignoring.
* Ability to change a resource UID from APIJuan Linietsky2023-01-091-2/+60
| | | | | | | | | | * Works for text, binary and imported resources * Allows better clean up of duplicate files. TODO (future PRs): * Use this API for assigning new UIDs to copied files. * Use this API for UID conflict on FS scanning (if more than one file has the same UID, the newer one(s) should get assigned a different UID).
* 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".
* Use buffer to speed up copying/transcribing when renaming dependenciesRindbee2022-12-131-6/+17
| | | | | If the scene is more complex, you may need to copy/transcribe a large amount of data, so use buffer to speed up this process.
* VariantParser make readahead optionallawnjelly2022-12-121-1/+2
| | | | | | It turns out some areas are independently moving / reading filepointers outside of the VariantParser, which can cause the readahead caching to get out of sync. This PR makes the VariantParser readahead to be optional to allow for these use cases.
* Use system fonts as fallback and improve system font handling.bruvzg2022-12-041-1/+1
| | | | | | | Add support for font weight and stretch selection when using system fonts. Add function to get system fallback font from a font name, style, text, and language code. Implement system font support for Android. Use system fonts as a last resort fallback.
* Don't break parsing on missing resourceskobewi2022-11-281-3/+4
|
* Fix cyclic references in GDScript 2.0Adam Scott2022-11-181-3/+7
|
* Merge pull request #68709 from MewPurPur/instance-begone-part3Rémi Verschelde2022-11-161-2/+2
|\ | | | | | | Remove more instances of 'instance' being used as a verb
| * Remove more instances of 'instance' being used as a verbVolTer2022-11-161-2/+2
| |
* | Fixes infinite loop in ResourceFormatText when having unexpected end of fileGilles Roudière2022-11-151-0/+2
|/
* Defer clearing of ResourceUID cache and silence warningskobewi2022-10-101-0/+7
|
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-14/+14
| | | | change warnings=all to use /W4.
* Rename String `plus_file` to `path_join`Aaron Franke2022-08-291-3/+3
|
* Swap arguments of ResourceSaver.save()kobewi2022-07-291-1/+1
|
* Implement Feature Build Profilesreduz2022-07-221-12/+160
| | | | | | | | | | | | | | | | | | | | | This PR is a continuation of #50381 (which was implemented exactly a year ago!) * Add a visual interface to select which classes should not be built into Godot (well, they are built if something else uses them, but if not used the optimizer will remove them out). * Add a detection system to scan the project and figure out the actual classes used. * Added the ability for SCons to load build profiles. Obligatory Screen: A simple test with a couple of nodes in the scene resulted in a 25% reduction for the final binary size TODO: * Script languages need to implement used class detection (left for another PR). * Options to disable servers or server functionalities (like 2D or 3D physics, navigation, etc). Are missing, that should also greatly aid in reducing binary size. * Options to disable some modules would be desired. * More options to disable drivers (OpenGL, Vulkan, etc) would be desired. In general this PR is a starting point for more contributors to improve and enhance this functionality.
* Merge pull request #62185 from reduz/export-node-pointer-pathRémi Verschelde2022-06-271-2/+17
|\ | | | | Add ability to export Node pointers as NodePaths
| * Add ability to export Node pointers as NodePathsreduz2022-06-251-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | This PR implements: * A new hint: PROPERTY_HINT_NODE_TYPE for variant type OBJECT, which can take specific node types as hint string. * The editor will show it as a node path, but will set it as a pointer to a node from the current scene if you select a path. * When scene is saved, the node path is saved, then restored as a pointer. NOTE: This is a proof of concept and this approach will most likely not work. The reason if that, if the node referenced is deleted, then when trying to edit this the node will become invalid. Potential workarounds: Since this uses the Variant API, it should obtain the pointer from the Variant object ID. Yet, this would either only really work in GDScript or it would need to be implemented with workarounds in every language. Alternative ways to make this work: Nodes could export an additional property with a node path (like for which_node, it could be which_node_path). Another alternative: Path editing could happen as a hidden metadata (ignoring the pointer).
* | Merge pull request #62309 from reduz/remake-resource-thread-safetyRémi Verschelde2022-06-251-12/+10
|\ \ | |/ |/| Remake ResourceCache thread safety code and API
| * Remake resource thread safety and APIreduz2022-06-221-12/+10
| | | | | | | | | | | | | | | | * Ensures thread safety when resources are destroyed. * Simplified API by always forcing `ResourceCache::get_ref`, which needs less hacks and is fully thread safe. * Removed RWLock for resources because its not possible to use for the new logic. Should not be a problem. Supersedes #57533
* | Merge pull request #56185 from nikitalita/fix-save-as-binaryRémi Verschelde2022-06-221-11/+21
|\ \ | |/ |/| Fix ResourceLoaderText::save_as_binary()
| * Fix binsary resource exportnikitalita2022-04-131-11/+21
| |
* | Remove spaces in `SubResource()/ExtResource/Resource()` in text resourcesHugo Locurcio2022-06-191-3/+3
| | | | | | | | | | | | | | | | These spaces are not needed for the file to be successfully parsed. Other types such as Vector3 are no longer serialized with spaces after the opening parenthesis and before the closing parenthesis, so this is also more consistent.
* | Fix typos with codespellRémi Verschelde2022-05-231-1/+1
| | | | | | | | Using codespell 2.2-dev from current git.
* | Add a new HashSet templatereduz2022-05-201-2/+2
| | | | | | | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* | Replace most uses of Map by HashMapreduz2022-05-161-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | * 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!
* | Implement missing Node & Resource placeholdersreduz2022-05-031-19/+115
| | | | | | | | | | | | | | | | | | Implemented by request of @neikeq to advance in the GDExtension version of Mono. * If a Resource type is missing upon load, it will be remembered together with its data (Unless manually overriden). * If a Node type is missing upon load, it will be also be remembered together with its data (unless deleted). This feature makes working with GDExtension much easier, as it ensures that missing types no longer cause data loss.
* | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-22/+22
| | | | | | | | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* | Fix tscn not listed as Resource extensionkobewi2022-05-021-2/+5
| |
* | Fix resource dependence renaming.bruvzg2022-05-021-14/+18
| |
* | Close FileAccess before accessing it with DirAccessHaoyu Qiu2022-04-221-0/+2
|/
* Narrow FileAccess scope to prevent deadlocks.bruvzg2022-04-121-103/+104
|
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-111-52/+35
|
* Fix some issues found by cppcheck.bruvzg2022-04-061-1/+1
|
* Convert uses of `DirAccess *` to `DirAccessRef` to prevent memleaksRémi Verschelde2022-03-111-2/+1
| | | | | | | | `DirAccess *` needs to be deleted manually, and this is often forgotten especially when doing early returns with `ERR_FAIL_COND`. `DirAccessRef` is deleted automatically when it goes out of scope. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* Don't abort loading scene on missing dependencykobewi2022-02-261-3/+5
|
* Refactor some object type checking code with `cast_to`Rémi Verschelde2022-02-081-5/+5
| | | | Less stringly typed logic, and less String allocations and comparisons.
* String: Add contains().Anilforextra2022-02-041-2/+2
|
* Merge pull request #53313 from KoBeWi/debinded_konnektRémi Verschelde2022-01-041-0/+11
|\
| * Add support for unbinding in connection dialogkobewi2021-10-041-0/+11
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | | | | | Happy new year to the wonderful Godot community!
* | Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-091-14/+14
| | | | | | | | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* | Improve various textskobewi2021-11-231-1/+1
| |
* | Add is_built_in() method to Resourcekobewi2021-11-041-3/+3
|/
* Use range iterators for `Map`Lightning_A2021-09-301-16/+16
|
* Write node groups one a single line when saving a `.tscn` fileHugo Locurcio2021-08-311-2/+8
| | | | | This makes `.tscn` files more readable by ensuring sections are always written on a single line.
* Rename String::is_rel_path to String::is_relative_pathWilson E. Alvarez2021-08-291-2/+2
|
* Assign embedded text resource path earlier to prevent error on embedded scripts.SaracenOne2021-08-101-6/+6
|
* Merge pull request #51042 from nikitalita/fix_binary_res_load_saveK. S. Ernest (iFire) Lee2021-08-021-4/+4
|\ | | | | Fix binary resource loading and saving