summaryrefslogtreecommitdiffstats
path: root/core/templates
Commit message (Collapse)AuthorAgeFilesLines
...
* Allow renaming child nodes in `_ready`RedworkDE2023-06-261-0/+34
|
* Handle RID validator overflowNinni Pipping2023-06-201-1/+2
|
* Improve `SelfList` and fix error in `BaseMaterial3D` when running doctoolRedworkDE2023-05-221-1/+10
|
* Optimize threading-sensitive node data for single-threaded processingPedro J. Estébanez2023-05-171-1/+4
|
* Make more base nodes thread safeJuan Linietsky2023-05-151-0/+11
| | | | Ongoing work to make more of the base nodes thread safe.
* Merge pull request #75901 from reduz/refactor-node-processingRémi Verschelde2023-05-104-6/+11
|\ | | | | | | Refactor Node Processing to allow Scene Multithreading
| * Refactor Node ProcessingJuan Linietsky2023-05-094-6/+11
| | | | | | | | | | | | | | | | | | | | * Node processing works on the concept of process groups. * A node group can be inherited, run on main thread, or a sub-thread. * Groups can be ordered. * Process priority is now present for physics. This is the first steps towards implementing https://github.com/godotengine/godot-proposals/issues/6424. No threading or thread guards exist yet in most of the scene code other than Node. That will have to be added later.
* | Add missing thread safety to PagedAllocatorPedro J. Estébanez2023-05-081-6/+39
|/
* Make `LocalVector` respect its `tight` template parameterkleonc2023-05-081-12/+3
|
* Merge pull request #72421 from myaaaaaaaaa/signal-hashmapRémi Verschelde2023-04-251-0/+6
|\ | | | | | | Store Object signals in a HashMap rather than a VMap
| * Store Object signals in a HashMap rather than a VMapmyaaaaaaaaa2023-02-251-0/+6
| |
* | Optimize HashMap sizebitsawer2023-04-241-3/+3
| |
* | Fix misuses of error macrosDanil Alexeev2023-04-181-1/+0
| |
* | Fix PagedArray.merge_unordered() dropping pagesmyaaaaaaaaa2023-02-161-11/+9
|/
* Add range iterator to LocalVectorkobewi2023-01-211-0/+64
|
* Merge pull request #64795 from RandomShaper/fix_saferefcountRémi Verschelde2023-01-091-0/+20
|\ | | | | | | Prevent misuse of SafeRefCount
| * Prevent misuse of SafeRefCountPedro J. Estébanez2023-01-091-0/+20
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-0531-899/+899
|/ | | | | | | | | | | | | | | | | | | | 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".
* Improve logic for detecting and tracking extensionsBastiaan Olij2022-11-241-0/+1
|
* Merge pull request #66804 from akien-mga/core-remove-NO_SAFE_CASTRémi Verschelde2022-10-041-9/+2
|\ | | | | | | Remove unsupported `NO_SAFE_CAST`/`-fno-rtti` from Android build
| * Remove unsupported `NO_SAFE_CAST`/`-fno-rtti` from Android buildRémi Verschelde2022-10-031-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | Android was the last platform to still attempt to disable RTTI (for binary size), but both the Android editor and now the ICU library used by templates need RTTI. There could still be the possibility to support this for non-ICU template builds (i.e. without the TextServerAdvanced module), but since this isn't one of the build configurations we test regularly it's pretty risky to keep this option only for that specific use case. And our code is already littered with `dynamic_cast`s which weren't guarded with `!defined(NO_SAFE_CAST)`.
* | Remove NO_THREADS fallback code, Godot 4 requires thread supportRémi Verschelde2022-10-033-299/+1
|/ | | | | This also removes `OS::can_use_threads` from the public API since it's always true.
* Use `constexpr` in the conditions with template parameters and `sizeof`s to ↵bruvzg2022-09-292-6/+6
| | | | suppress C4127 warnings.
* Merge pull request #66548 from akien-mga/msvc-warnings-c4701-c4703Rémi Verschelde2022-09-281-1/+1
|\ | | | | | | Fix MSVC warnings C4701 and C4703: Potentially uninitialized variable used
| * Fix MSVC warnings C4701 and C4703: Potentially uninitialized variable usedRémi Verschelde2022-09-281-1/+1
| |
* | Fix MSVC warning C4706: assignment within conditional expressionRémi Verschelde2022-09-281-2/+3
|/ | | | Part of #66537.
* Style: Cleanup header guards for consistencyRémi Verschelde2022-09-261-1/+4
| | | | Fix file names for {Static,Lightmap}RaycasterEmbree.
* Add a Framebuffer cacheJuan Linietsky2022-08-051-10/+10
| | | | | | | | | | Adds a FramebufferCache singletion that operates the same way as UniformSetCache. Allows creating framebuffers on the fly (and keep them cached if re-requested) such as: ```C++ RID fb = FramebufferCache::get_singleton()->get_cache(texture1,texture2); ```
* Merge pull request #63906 from Faless/fix/4.x_warningsRémi Verschelde2022-08-043-14/+18
|\
| * [Core] Use std type traits to check operations triviality.Fabio Alessandrelli2022-08-043-14/+18
| |
* | Arrays: Zero new items of trivial types on resize() (bindings only)Rémi Verschelde2022-08-042-0/+5
|/ | | | | | | | | | | | | | This is not enabled by default in the core version for performance reasons, as Vector/CowData are used in critical code paths where not zero'ing memory which is going to be set later on can be important. But for bindings / the scripting API, we make zero the new items by default (which already happened for built types like Vector3, etc., but not for trivial types like int, float). Fixes #43033. Co-authored-by: David Hoppenbrouwers <david@salt-inc.org>
* Merge pull request #61315 from lawnjelly/variant_bucket_poolsRémi Verschelde2022-08-021-1/+9
|\ | | | | Variant memory pools
| * Variant memory poolslawnjelly2022-07-041-1/+9
| | | | | | | | Memory pools via PagedAllocator for Transform2D, Transform3D, Basis and AABB.
* | Remove ThreadWorkPool, replace by WorkerThreadPoolJuan Linietsky2022-07-252-238/+0
| | | | | | | | | | The former needs to be allocated once per usage. The later is shared for all threads, which is more efficient. It can also be better debugged.
* | Code quality: Fix header guards consistencyRémi Verschelde2022-07-255-5/+5
| | | | | | | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* | Implement Vector4, Vector4i, Projectionreduz2022-07-231-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | Implement built-in classes Vector4, Vector4i and Projection. * Two versions of Vector4 (float and integer). * A Projection class, which is a 4x4 matrix specialized in projection types. These types have been requested for a long time, but given they were very corner case they were not added before. Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity. **Q**: Why Projection and not Matrix4? **A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
* | Implement a Worker ThreadPoolreduz2022-07-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | This PR implements a worked thread pool. It uses a fixed amount of threads in a pool and allows scheduling tasks that can be run on threads (and then waited for). It satisfies the following use cases: * HTML5 thread count is fixed (and similar restrictions are known in consoles) so we need to reuse threads. * Thread spawning is slow in general, so reusing threads is faster anyway. * This implementation supports recursive waiting for tasks, making it less prone to deadlocks if threads from the pool also run tasks. After this is approved and merged, subsequent PRs will be needed to replace the ThreadWorkPool usage by this class.
* | Use the right memory ordering in SafeNumeric operationsPedro J. Estébanez2022-07-191-2/+2
| |
* | Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-0/+1
|/
* Use custom key structs, instead of raw hashes for the Label3D and TextMesh, ↵bruvzg2022-07-041-2/+2
| | | | to avoid potential hash collisions.
* Merge pull request #62477 from lyuma/packedbytearrayRémi Verschelde2022-07-011-0/+3
|\ | | | | Prevent out-of-bounds write in array conversion; avoid logspam on empty arrays.
| * Prevent out-of-bounds write in array conversion; avoid logspam on empty arrays.Lyuma2022-06-301-0/+3
| |
* | Avoid manual memory management of certain arrays in Vulkan RDPedro J. Estébanez2022-06-281-2/+7
|/
* Optimize HashMap/HashSet using fastmodHendrik Brucker2022-06-233-30/+98
|
* Clean up Hash Functionsreduz2022-06-201-31/+131
| | | | | | | Clean up and do fixes to hash functions and newly introduced murmur3 hashes in #61934 * Clean up usage of murmur3 * Fixed usages of binary murmur3 on floats (this is invalid) * Changed DJB2 to use xor (which seems to be better)
* Hash function improvementsHendrik Brucker2022-06-151-74/+101
|
* use ERR_FAIL_INDEX when preferredNathan Franke2022-05-251-2/+2
|
* Add a new HashSet templatereduz2022-05-203-1/+477
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-166-56/+110
| | | | | | | | | | | | * 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!
* Add a new HashMap implementationreduz2022-05-124-675/+494
| | | | | | | | | | | | | | | | | Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<>