summaryrefslogtreecommitdiffstats
path: root/modules/raycast
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-12/+5
|\
| * Fix Occlusion Culling Buffer getting corrupted.Rudolph Bester2024-11-021-12/+5
| |
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-1/+1
|\|
| * Fix Occlusion Culling not working for an orthogonal camera.Rudolph Bester2024-10-261-1/+1
| |
* | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-278-16/+16
|\ \ | | | | | | Fix copyright headers referring to Godot
| * | Fix copyright headers referring to GodotSpartan3222024-10-278-16/+16
| | |
* | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-261-11/+1
|\ \ \ | |/ / |/| / | |/
| * Alternative fix to occlusion culling where all math is based on Euclidean ↵Rudolph Bester2024-10-171-11/+1
| | | | | | | | distance.
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-118-0/+16
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Style: Update `ruff` & `mypy` to latest versionsThaddeus Crews2024-09-201-7/+7
|
* [Windows/ARM64] Fix raycast/embree ARM64 build with LLVM/MinGW.bruvzg2024-06-201-1/+1
|
* Fix arm64/Windows build.bruvzg2024-04-301-2/+3
|
* Merge pull request #88783 from Chubercik/embree-4.3.1Rémi Verschelde2024-04-048-172/+93
|\ | | | | | | embree: Update to 4.3.1
| * embree: Update to 4.3.1Jakub Mateusz Marcowski2024-03-278-172/+93
| |
* | Jitter raster occlusion camera to reduce false positives.lawnjelly2024-04-032-1/+64
|/ | | | Due to the low resolution of the occlusion buffer, small gaps between occluders can be closed and incorrectly occlude instances which should show through the gaps. To ameliorate this problem, this PR jitters the occlusion buffer over time, making it more likely an instance will be seen through a gap. This is used in conjunction with an occlusion timer per instance, to prevent instances flickering on and off rapidly.
* [Buildsystem] Fix encoding when reading filesA Thousand Ships2024-03-241-1/+1
|
* Enforce `\n` eol for Python writesThaddeus Crews2024-03-091-3/+5
| | | | • Ensure utf-8 encoding if previously unspecified
* Fix RaycastOcclusionCull World3D scenario memory leakbitsawer2023-09-262-45/+31
|
* [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-261-5/+5
|
* Revert "Implement parallel foreach() for easier multithreading"Pedro J. Estébanez2023-07-272-3/+40
| | | | This reverts commit e28868e30cd478e878d0a8331e17e2cf90039558.
* Merge pull request #72784 from myaaaaaaaaa/parallel-foreachYuri Sizov2023-07-142-40/+3
|\ | | | | | | Implement parallel `foreach()` for easier multithreading
| * Implement parallel foreach() for easier multithreadingmyaaaaaaaaa2023-06-092-40/+3
| |
* | Style: Harmonize header includes in modulesRémi Verschelde2023-06-152-2/+3
|/ | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Fix wait for thread not startedSamuele Panzeri2023-04-271-1/+3
|
* Use range iterators in LocalVector loopskobewi2023-01-211-2/+2
|
* Merge pull request #70684 from filiperinaldi/fix_arm64_build_clangRémi Verschelde2023-01-161-1/+1
|\ | | | | | | Fix arm64 build when using Clang
| * Fix arm64 build when using ClangFilipe Rinaldi2022-12-261-1/+1
| | | | | | | | | | | | | | | | The commit b5a8055b5c should target GCC builds only as -flax-vector-conversions has different behaviour in Clang and is currently making the build fail. Signed-off-by: Filipe Rinaldi <filipe.rinaldi@gmail.com>
* | One Copyright Update to rule them allRémi Verschelde2023-01-058-232/+232
|/ | | | | | | | | | | | | | | | | | | | 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".
* embree: Fix Linux ARM64 build with `-flax-vector-conversions`Rémi Verschelde2022-12-201-4/+8
| | | | | | | | | | | This is a change done upstream in the `devel3` branch for 3.13.6: https://github.com/embree/embree/commit/82ca6b5ccb7abe0403a658a0e079926478f04cb1 They also seem to define it for macOS, but for us it breaks the build... ¯\_(ツ)_/¯ Also change wrong use of CPPFLAGS (pre-processor) where CXXFLAGS (C++) makes more sense.
* Improve architecture support logic in Raycast moduleAaron Franke2022-12-121-7/+5
|
* embree: Enable raycast module build for Web and Windows x86_32Rémi Verschelde2022-11-252-7/+14
| | | | | | Embree initially only supported x86_64, then got arm64 support added. Now it seems to be possible to build it with Emscripten (wasm32) and on x86_32 Windows.
* Update embree to 3.13.5DeeJayLSP2022-11-251-10/+14
|
* Fix MSVC warnings C4324, C4389, C4456, and C4459Rémi Verschelde2022-09-281-0/+3
| | | | Part of #66537.
* Style: Cleanup header guards for consistencyRémi Verschelde2022-09-266-12/+27
| | | | Fix file names for {Static,Lightmap}RaycasterEmbree.
* SCons: Cleanup `DEBUG`, `_DEBUG` and `NDEBUG` definesRémi Verschelde2022-09-231-1/+2
| | | | | | | | | | | | | | | | - `_DEBUG` is MSVC specific so it didn't make much sense to define for Android and iOS builds. - iOS was the only platform to define `DEBUG`. We don't use it anywhere outside thirdparty code, which we usually don't intend to debug, so it seems better to be consistent with other platforms. - Consistently define `NDEBUG` to disable assert behavior in both `release` and `release_debug` targets. This used to be set for `release` for all platforms, and `release_debug` for Android and iOS only. - Due to the above, I removed the only use we made of `assert()` in Godot code, which was only implemented for Unix anyway, should have been `DEV_ENABLED`, and is in PoolAllocator which we don't actually use. - The denoise and recast modules keep defining `NDEBUG` even for the `debug` target as we don't want OIDN and Embree asserting all over the place.
* [Windows] Improve build environment detection, add support for Windows on ARM.bruvzg2022-08-271-0/+3
|
* Unify bits, arch, and android_arch into env["arch"]Aaron Franke2022-08-252-16/+4
| | | | | | Fully removes the `bits` option and adapts the code that relied on it. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Remove ThreadWorkPool, replace by WorkerThreadPoolJuan Linietsky2022-07-252-23/+31
| | | | | 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-253-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-232-6/+6
| | | | | | | | | | | | | 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.
* Clean up Hash Functionsreduz2022-06-201-2/+2
| | | | | | | 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)
* Add a new HashSet templatereduz2022-05-205-13/+15
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Use range iterators for RBSet in most casesAaron Record2022-05-193-11/+11
|
* Replace most uses of Map by HashMapreduz2022-05-166-14/+14
| | | | | | | | | | | | * 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-121-10/+7
| | | | | | | | | | | | | | | | | 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<>
* Merge pull request #60723 from reduz/refactor-module-initializationRémi Verschelde2022-05-042-4/+14
|\
| * Refactor module initializationreduz2022-05-042-4/+14
| | | | | | | | | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* | Rename Basis get_axis to get_column, remove redundant methodsAaron Franke2022-05-031-2/+2
|/
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-2/+2
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.