Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
Container.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com> (C++, Java) and Rami Santina (Java)
3 * Copyright Gothel Software e.K. and the authors
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11#ifndef JAU_GAMP_GRAPH_UI_CONTAINER_HPP_
12#define JAU_GAMP_GRAPH_UI_CONTAINER_HPP_
13
14#include <jau/basic_types.hpp>
15#include <jau/darray.hpp>
16#include <jau/file_util.hpp>
17#include <jau/float_math.hpp>
18#include <jau/float_types.hpp>
19#include <jau/fraction_type.hpp>
22#include <jau/math/vec3f.hpp>
23#include <jau/math/vec4f.hpp>
24#include <jau/math/vec4f.hpp>
26
27#include <gamp/Gamp.hpp>
30
31namespace gamp::graph::ui {
32
33 using namespace jau::math;
34 using namespace jau::math::util;
35 using namespace jau::math::geom;
36
37 using namespace gamp::wt;
38 using namespace gamp::wt::event;
39 using namespace gamp::render;
40
41 using namespace gamp::graph;
42
43 /** \addtogroup Gamp_GraphUI
44 *
45 * @{
46 */
47
48 class Shape;
49 typedef std::shared_ptr<Shape> ShapeRef;
50 typedef std::vector<ShapeRef> ShapeList;
51
52 class RegionRenderer;
53
54 /**
55 * Container interface of UI {@link Shape}s
56 * @see Scene
57 * @see Shape
58 */
59 class Container {
60 public:
61 /** Returns number of {@link Shape}s, see {@link #getShapes()}. */
62 virtual size_t shapeCount() const noexcept = 0;
63
64 /** Returns {@link #addShape(Shape) added} {@link Shape}s. */
65 virtual const ShapeList& shapes() const noexcept = 0;
66
67 /**
68 * Returns {@link #addShape(Shape) added shapes} which are rendered and sorted by z-axis in ascending order toward z-near.
69 * <p>
70 * The rendered shapes are {@link Shape#isVisible() visible} and not deemed outside of this container due to {@link #isCullingEnabled() culling}.
71 * </p>
72 * <p>
73 * Only rendered shapes are considered for picking/activation.
74 * </p>
75 * <p>
76 * The returned list is data-race free, i.e. won't be mutated by the rendering thread
77 * as it gets completely replace at each rendering loop using a local volatile reference.<br/>
78 * Only when disposing the container, the list gets cleared, hence {@Link List#size()} shall be used in the loop.
79 * </p>
80 * @see #addShape(Shape)
81 * @see #isCullingEnabled()
82 * @see Shape#isVisible()
83 * @see #isOutside(PMVMatrix4f, Shape)
84 */
85 virtual ShapeList& renderedShapes() const noexcept = 0;
86
87 /** Adds a {@link Shape}. */
88 virtual void addShape(const ShapeRef& s) const noexcept = 0;
89
90 /**
91 * Removes given shape, w/o {@link Shape#destroy(GL2ES2, RegionRenderer)}.
92 * @return the removed shape or null if not contained
93 */
94 virtual ShapeRef removeShape(const ShapeRef& s) const noexcept = 0;
95
96 /** Removes all given shapes, w/o {@link Shape#destroy(GL2ES2, RegionRenderer)}. */
97 virtual void removeShapes(const ShapeList& shapes) = 0;
98
99 /**
100 * Removes given shape with {@link Shape#destroy(GL2ES2, RegionRenderer)}, if contained.
101 * @param gl GL2ES2 context
102 * @param renderer
103 * @param s the shape to be removed
104 * @return true if given Shape is removed and destroyed
105 */
106 // virtual bool removeShape(RenderContext& rc, final RegionRenderer renderer, const ShapeRef& s) = 0;
107
108 virtual void addShapes(const ShapeList& shapes) = 0;
109
110 /** Removes all given shapes with {@link Shape#destroy(GL2ES2, RegionRenderer)}. */
111 virtual void removeShapes(RenderContext& rc, RegionRenderer& renderer, const ShapeList& shapes) = 0;
112
113 /** Removes all contained shapes with {@link Shape#destroy(GL2ES2, RegionRenderer)}. */
114 virtual void removeAllShapes(RenderContext& rc, RegionRenderer& renderer) = 0;
115
116 virtual bool contains(const Shape& s) = 0;
117
118 virtual Shape& getShapeByIdx(int id) const noexcept = 0;
119 virtual Shape& getShapeByID(int id) const noexcept = 0;
120 virtual Shape& getShapeByName(const std::string& name) const noexcept = 0;
121
122 /** Returns {@link AABBox} dimension of given {@link Shape} from this container's perspective, i.e. world-bounds if performing from the {@link Scene}. */
123 virtual const AABBox3f& bounds(const PMVMat4f& pmv, const Shape& shape) const noexcept = 0;
124
125 /** Enable or disable {@link PMVMatrix4f#getFrustum() Project-Modelview (PMv) frustum} culling per {@link Shape} for this container. Default is disabled. */
126 virtual void setPMvCullingEnabled(bool v) noexcept = 0;
127
128 /** Return whether {@link #setPMvCullingEnabled(bool) Project-Modelview (PMv) frustum culling} is enabled for this container. */
129 virtual bool isPMvCullingEnabled() const noexcept = 0;
130
131 /**
132 * Return whether {@link #setPMvCullingEnabled(bool) Project-Modelview (PMv) frustum culling}
133 * or {@link Group#setClipMvFrustum(com.jogamp.math.geom.Frustum) Group's Modelview (Mv) frustum clipping}
134 * is enabled for this container. Default is disabled.
135 */
136 virtual bool isCullingEnabled() const noexcept = 0;
137
138 /**
139 * Returns whether the given {@link Shape} is completely outside of this container.
140 * <p>
141 * Note: If method returns false, the box may only be partially inside, i.e. intersects with this container
142 * </p>
143 * @param pmv current {@link PMVMatrix4f} of this container
144 * @param shape the {@link Shape} to test
145 * @see #isOutside2(Matrix4f, Shape, PMVMatrix4f)
146 * @see Shape#isOutside()
147 */
148 virtual bool isOutside(const PMVMat4f&, const Shape& shape) const noexcept = 0;
149
150 /**
151 * Returns whether the given {@link Shape} is completely outside of this container.
152 * <p>
153 * Note: If method returns false, the box may only be partially inside, i.e. intersects with this container
154 * </p>
155 * @param mvCont copy of the model-view {@link Matrix4f) of this container
156 * @param shape the {@link Shape} to test
157 * @param pmvShape current {@link PMVMatrix4f} of the shape to test
158 * @see #isOutside(PMVMatrix4f, Shape)
159 * @see Shape#isOutside()
160 */
161 virtual bool isOutside2(const Mat4f& mvCont, const Shape& shape, const PMVMat4f&) const noexcept = 0;
162 };
163
164 /**@}*/
165
166} // namespace gamp::graph::ui
167
168#endif /* JAU_GAMP_GRAPH_UI_CONTAINER_HPP_ */
Container interface of UI Shapes.
Definition Container.hpp:59
virtual void addShape(const ShapeRef &s) const noexcept=0
Adds a Shape.
virtual bool isCullingEnabled() const noexcept=0
Return whether Project-Modelview (PMv) frustum culling or Group's Modelview (Mv) frustum clipping is ...
virtual const ShapeList & shapes() const noexcept=0
Returns added Shapes.
virtual void setPMvCullingEnabled(bool v) noexcept=0
Enable or disable Project-Modelview (PMv) frustum culling per Shape for this container.
virtual void removeShapes(const ShapeList &shapes)=0
Removes all given shapes, w/o Shape#destroy(GL2ES2, RegionRenderer).
virtual const AABBox3f & bounds(const PMVMat4f &pmv, const Shape &shape) const noexcept=0
Returns AABBox dimension of given Shape from this container's perspective, i.e.
virtual ShapeRef removeShape(const ShapeRef &s) const noexcept=0
Removes given shape, w/o Shape#destroy(GL2ES2, RegionRenderer).
virtual size_t shapeCount() const noexcept=0
Returns number of Shapes, see getShapes().
virtual Shape & getShapeByID(int id) const noexcept=0
virtual void addShapes(const ShapeList &shapes)=0
Removes given shape with Shape#destroy(GL2ES2, RegionRenderer), if contained.
virtual Shape & getShapeByIdx(int id) const noexcept=0
virtual Shape & getShapeByName(const std::string &name) const noexcept=0
virtual ShapeList & renderedShapes() const noexcept=0
Returns added shapes which are rendered and sorted by z-axis in ascending order toward z-near.
virtual void removeAllShapes(RenderContext &rc, RegionRenderer &renderer)=0
Removes all contained shapes with Shape#destroy(GL2ES2, RegionRenderer).
virtual bool isOutside2(const Mat4f &mvCont, const Shape &shape, const PMVMat4f &) const noexcept=0
Returns whether the given Shape is completely outside of this container.
virtual bool isOutside(const PMVMat4f &, const Shape &shape) const noexcept=0
Returns whether the given Shape is completely outside of this container.
virtual bool isPMvCullingEnabled() const noexcept=0
Return whether Project-Modelview (PMv) frustum culling is enabled for this container.
virtual bool contains(const Shape &s)=0
Axis Aligned Bounding Box.
Definition aabbox3f.hpp:43
consteval_cxx20 std::string_view name() noexcept
std::vector< ShapeRef > ShapeList
Definition Container.hpp:50
std::shared_ptr< Shape > ShapeRef
Definition Container.hpp:49
Matrix4< float > Mat4f
Definition mat4f.hpp:1973
PMVMatrix4< float > PMVMat4f
STL namespace.