summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge branch 'imgui'HEADmainDan Goodliffe3 days
|\
| * Remove the old unused network.png iconDan Goodliffe3 days
| |
| * Use new SVG icons on main toolbarDan Goodliffe5 days
| |
| * Add SvgIcon classDan Goodliffe5 days
| | | | | | | | Based on Icon class, but constructor replaced with calls to lunasvg.
| * Add lunasvg (and plutovg)Dan Goodliffe6 days
| | | | | | | | | | This is the SVG library used by ImGui, so makes sense a choice even if we're not using it there yet.
| * Remove explicit library referring to imguisdl2Dan Goodliffe6 days
| | | | | | | | It already exists via the library of all of thirdparty/release.
| * Auto resize windows to contentDan Goodliffe8 days
| |
| * Add basic instructions to query toolDan Goodliffe8 days
| | | | | | | | Sets default text.
| * Support capturing and reacting to ImGui window closureDan Goodliffe2025-03-20
| |
| * Remove unrequired UIShaderDan Goodliffe2025-03-19
| |
| * Remove lots of stuff not required or superseded with ImGui useDan Goodliffe2025-03-19
| |
| * Replace basic query tool with a ImGui versionDan Goodliffe2025-03-19
| |
| * Replace basic rail builder UI with a ImGui versionDan Goodliffe2025-03-19
| |
| * Add operator to get ImTextureID from an IconDan Goodliffe2025-03-15
| |
| * Tidy glArrays, fixes warningsDan Goodliffe2025-03-15
| |
| * Add ImGui wrappers for creating a toolbar docked to a viewport edgeDan Goodliffe2025-03-15
| | | | | | | | Based on, but simplified, code for BeginMainMenuBar.
| * Wrap imgui_intenal if requestedDan Goodliffe2025-03-15
| |
| * Update ImGui to latestDan Goodliffe2025-03-15
| |
* | Merge remote-tracking branch 'origin/ptrs'Dan Goodliffe8 days
|\ \
| * | Fix check for bulk removalDan Goodliffe9 days
| | |
| * | Expose size of each container by typeDan Goodliffe9 days
| | |
| * | Add standard special membersDan Goodliffe9 days
| | |
| * | Fix up removeAll and test with more complex hierarchyDan Goodliffe9 days
| | |
| * | applyToOthersType allows passing any params in, not just a TDan Goodliffe10 days
| | |
| * | Fix lookup idx for otherObjects suitable for TDan Goodliffe12 days
| | |
| * | Use is_base_of_v instead of is_convertible_v to choose OtherObjectsDan Goodliffe12 days
| | |
| * | Add Renderable typed collection to GameState worldObjectsDan Goodliffe13 days
| | |
| * | Support using typed collections for subclass filteringDan Goodliffe13 days
| | |
| * | Use typed collections for apply/applyOneDan Goodliffe13 days
| | |
| * | Use otherObjects where possible for findDan Goodliffe14 days
| | |
| * | Other objects support in removeAll/clearDan Goodliffe14 days
| | | | | | | | | | | | | | | removeAll requires a type that is one of Others, clear clears everything regardless of type.
| * | Other objects support in operator=Dan Goodliffe14 days
| | |
| * | Populate typed collection of pointersDan Goodliffe14 days
| | | | | | | | | | | | create and emplace only, so far
| * | Make Collections::objects protected, extend interfaceDan Goodliffe2025-03-22
| | | | | | | | | | | | | | | Keeps all required features accessible, but through a controlled interface.
| * | Invert how shared/unique is specified for CollectionDan Goodliffe2025-03-22
| | | | | | | | | | | | Template param is a pointer now, typedefs added for ease.
| * | Add ManyPtr which tracks specified subclassesDan Goodliffe2025-03-22
| |/ | | | | | | | | | | This removes the need to repeated dynamic_cast the pointer. Provides interface which enforces the fastest option for the required types.
* | Create the last group in jsonParse.llDan Goodliffe8 days
| | | | | | | | Fixes warning from lcov/gvoc about missing lines.
* | Tidy perf tests with helperDan Goodliffe2025-03-21
|/
* Support resizing the main windowDan Goodliffe2025-03-14
|
* Add support for resizing a SceneRendererDan Goodliffe2025-03-14
|
* Add support for changing the aspect ratio of a cameraDan Goodliffe2025-03-14
|
* Fix ratio to include return type in common intermediary typeDan Goodliffe2025-03-14
|
* Merge branch 'culling'Dan Goodliffe2025-03-13
|\
| * Split Terrain::generateMeshes into smaller functionsDan Goodliffe2025-03-12
| | | | | | | | | | | | Also removes incorrect optimisation that a tile's AABB could be assumed from tile base position; in fact some faces cross the boundaries and the AABB needs to account for this.
| * Perfectly forward range when materializingDan Goodliffe2025-03-11
| |
| * Rebalance shadow band distributionDan Goodliffe2025-03-11
| | | | | | | | Extends the initial band from around 34m to around 100m.
| * Cull terrain meshes from render that don't cast a shadow into the frustumDan Goodliffe2025-03-11
| |
| * Add a spike of terrain in test-renderDan Goodliffe2025-03-11
| | | | | | | | Very fake, but casts a clear shadow.
| * Initialise shadow bounding box to light view pointDan Goodliffe2025-03-11
| | | | | | | | Then extended to cover the view extents.
| * Extend Frustum for testing for shaded byDan Goodliffe2025-03-11
| | | | | | | | | | Like contains, but doesn't test the back plane as shadow caster can be anywhere behind the view point and still cast into it.