68 constexpr static const
char* TypeName() noexcept {
return "Object"; }
69 virtual const char*
typeName()
const {
return TypeName(); }
72 T *
asType() {
return dynamic_cast<T*
>( this ); }
74 const T *
asType()
const {
return dynamic_cast<const T*
>( this ); }
76 const std::string &
name()
const {
return name_; }
77 virtual void setName( std::string name ) { name_ = std::move( name ); }
80 MRMESH_API std::shared_ptr<const Object>
find(
const std::string_view & name )
const;
81 std::shared_ptr<Object>
find(
const std::string_view & name ) {
return std::const_pointer_cast<Object>(
const_cast<const Object*
>(
this )->
find( name ) ); }
85 std::shared_ptr<const T> find()
const;
87 std::shared_ptr<T>
find() {
return std::const_pointer_cast<T>(
const_cast<const Object*
>(
this )->find<T>() ); }
91 std::shared_ptr<const T> find(
const std::string_view & name )
const;
93 std::shared_ptr<T>
find(
const std::string_view & name ) {
return std::const_pointer_cast<T>(
const_cast<const Object*
>(
this )->find<T>( name ) ); }
97 const AffineXf3f &
xf(
ViewportId id = {},
bool * isDef = nullptr )
const {
return xf_.get(
id, isDef ); }
152 const std::vector<std::shared_ptr<const Object>>&
children()
const {
return reinterpret_cast<const std::vector< std::shared_ptr< const Object >
> &>(
children_ ); }
235 [[nodiscard]]
virtual bool hasModel()
const {
return false; }
279 bool locked_ =
false;
280 bool parentLocked_ =
false;
281 bool selected_{
false };
282 bool ancillary_{
false };
283 mutable bool needRedraw_{
false};
292 if (
auto res = std::dynamic_pointer_cast<T>( child ) )
298std::shared_ptr<const T>
Object::find(
const std::string_view & name )
const
301 if ( child->name() == name )
302 if (
auto res = std::dynamic_pointer_cast<T>( child ) )
#define MRMESH_API
Definition MRMesh/MRMeshFwd.h:46
#define MRMESH_CLASS
Definition MRMesh/MRMeshFwd.h:50
std::vector< std::shared_ptr< Object > > children_
Definition MRObject.h:54
std::vector< std::weak_ptr< Object > > bastards_
recognized ones
Definition MRObject.h:55
MRMESH_API size_t heapBytes() const
ObjectChildrenHolder & operator=(const ObjectChildrenHolder &) noexcept
Definition MRObject.h:39
MRMESH_API std::shared_ptr< Object > getSharedPtr() const
ObjectChildrenHolder(const ObjectChildrenHolder &) noexcept
Definition MRObject.h:38
ObjectChildrenHolder * parent_
Definition MRObject.h:53
MRMESH_API ObjectChildrenHolder(ObjectChildrenHolder &&) noexcept
ObjectChildrenHolder()=default
named object in the data model
Definition MRObject.h:60
virtual MRMESH_API void setVisibilityMask(ViewportMask viewportMask)
specifies object visibility as bitmask of viewports
Object * parent()
Definition MRObject.h:133
virtual MRMESH_API void applyScale(float scaleFactor)
scale object size (all point positions)
virtual MRMESH_API std::shared_ptr< Object > shallowClone() const
virtual MRMESH_API void resetXf(ViewportId id={})
forgets specific transform in given viewport (or forgets all specific transforms for {}...
MRMESH_API ViewportMask globalVisibilityMask() const
returns all viewports where this object is visible together with all its parents
bool globalVisibility(ViewportMask viewportMask=ViewportMask::any()) const
returns true if this object is visible together with all its parents in any of given viewports
Definition MRObject.h:118
virtual MRMESH_API void removeAllChildren()
detaches all recognized children from this, keeping all unrecognized ones
T * asType()
Definition MRObject.h:72
MRMESH_API void setWorldXf(const AffineXf3f &xf, ViewportId id={})
virtual MRMESH_API bool removeChild(Object *child)
const std::vector< std::shared_ptr< const Object > > & children() const
Definition MRObject.h:152
virtual MRMESH_API void setXf(const AffineXf3f &xf, ViewportId id={})
std::shared_ptr< T > find()
Definition MRObject.h:87
virtual MRMESH_API void setAncillary(bool ancillary)
virtual bool hasModel() const
Definition MRObject.h:235
MRMESH_API void swap(Object &other)
std::string name_
Definition MRObject.h:276
bool isAncillary() const
Definition MRObject.h:177
virtual bool isSelected() const
Definition MRObject.h:172
MRMESH_API Box3f getWorldTreeBox(ViewportId={}) const
returns bounding box of this object and all children visible in given (or default) viewport in world ...
virtual const char * typeName() const
Definition MRObject.h:69
virtual bool getRedrawFlag(ViewportMask) const
this method virtual because others data model types could have dirty flags or something
Definition MRObject.h:189
virtual MRMESH_API void serializeFields_(Json::Value &root) const
MRMESH_API void setVisible(bool on, ViewportMask viewportMask=ViewportMask::all())
sets the object visible in the viewports specified by the mask (by default in all viewports)
MRMESH_API std::shared_ptr< Object > cloneTree() const
clones all tree of this object (except ancillary and unrecognized children)
virtual MRMESH_API void propagateWorldXfChangedSignal_()
ViewportProperty< AffineXf3f > xf_
Definition MRObject.h:277
const AffineXf3f & xf(ViewportId id={}, bool *isDef=nullptr) const
Definition MRObject.h:97
std::shared_ptr< Object > find(const std::string_view &name)
Definition MRObject.h:81
const T * asType() const
Definition MRObject.h:74
const Object * parent() const
returns parent object in the tree
Definition MRObject.h:132
virtual MRMESH_API Expected< void > deserializeModel_(const std::filesystem::path &path, ProgressCallback progressCb={})
Reads model from file.
const ViewportProperty< AffineXf3f > & xfsForAllViewports() const
returns xfs for all viewports, combined into a single object
Definition MRObject.h:103
virtual void setXfsForAllViewports(ViewportProperty< AffineXf3f > xf)
modifies xfs for all viewports at once
Definition MRObject.h:105
MRMESH_API void sortChildren()
sort recognized children by name
MRMESH_API Expected< std::vector< std::future< Expected< void > > > > serializeRecursive(const std::filesystem::path &path, Json::Value &root, int childId) const
Object(ProtectedStruct, const Object &obj)
Definition MRObject.h:249
virtual MRMESH_API Expected< std::future< Expected< void > > > serializeModel_(const std::filesystem::path &path) const
MRMESH_API bool isAncestor(const Object *ancestor) const
return true if given object is ancestor of this one, false otherwise
std::shared_ptr< T > find(const std::string_view &name)
Definition MRObject.h:93
virtual MRMESH_API bool detachFromParent()
virtual MRMESH_API void swapSignals_(Object &other)
XfChangedSignal worldXfChangedSignal
Definition MRObject.h:244
virtual MRMESH_API bool addChildBefore(std::shared_ptr< Object > newChild, const std::shared_ptr< Object > &existingChild)
virtual MRMESH_API void swapBase_(Object &other)
swaps whole object (signals too)
const std::vector< std::shared_ptr< Object > > & children()
an object can hold other sub-objects
Definition MRObject.h:151
virtual ViewportMask visibilityMask() const
gets object visibility as bitmask of viewports
Definition MRObject.h:186
virtual MRMESH_API bool select(bool on)
selects the object, returns true if value changed, otherwise returns false
bool isVisible(ViewportMask viewportMask=ViewportMask::any()) const
checks whether the object is visible in any of the viewports specified by the mask (by default in any...
Definition MRObject.h:182
void resetRedrawFlag() const
Definition MRObject.h:190
virtual bool hasVisualRepresentation() const
does the object have any visual representation (visible points, triangles, edges, etc....
Definition MRObject.h:231
MRMESH_API Object * findCommonAncestor(Object &other)
virtual MRMESH_API bool addChild(std::shared_ptr< Object > child, bool recognizedChild=true)
bool removeChild(const std::shared_ptr< Object > &child)
returns false if it was not child of this
Definition MRObject.h:163
Object(Object &&) noexcept=default
MRMESH_API std::shared_ptr< const Object > find(const std::string_view &name) const
finds a direct child by name
virtual void setLocked(bool on)
Definition MRObject.h:124
Object(const Object &obj)=default
user should not be able to call copy implicitly, use clone() function instead
MRMESH_API std::shared_ptr< Object > shallowCloneTree() const
virtual void setParentLocked(bool lock)
Definition MRObject.h:129
virtual void setName(std::string name)
Definition MRObject.h:77
virtual std::string getClassName() const
return human readable name of subclass
Definition MRObject.h:206
bool isLocked() const
object properties lock for UI
Definition MRObject.h:123
virtual MRMESH_API std::vector< std::string > getInfoLines() const
return several info lines that can better describe object in the UI
virtual MRMESH_API size_t heapBytes() const
returns the amount of memory this object occupies on heap
MRMESH_API AffineXf3f worldXf(ViewportId id={}, bool *isDef=nullptr) const
virtual MRMESH_API std::shared_ptr< Object > clone() const
clones current object only, without parent and/or children
MRMESH_API Expected< void > deserializeRecursive(const std::filesystem::path &path, const Json::Value &root, ProgressCallback progressCb={}, int *objCounter=nullptr)
bool isParentLocked() const
Definition MRObject.h:128
const std::string & name() const
Definition MRObject.h:76
virtual Box3f getWorldBox(ViewportId={}) const
returns bounding box of this object in world coordinates for default or specific viewport
Definition MRObject.h:226
const Object * findCommonAncestor(const Object &other) const
Definition MRObject.h:142
MRMESH_API void setGlobalVisibility(bool on, ViewportMask viewportMask=ViewportMask::any())
if true sets all predecessors visible, otherwise sets this object invisible
virtual MRMESH_API void deserializeFields_(const Json::Value &root)
Definition MRViewportId.h:16
stores mask of viewport unique identifiers
Definition MRViewportId.h:38
static ViewportMask any()
Definition MRViewportId.h:46
static ViewportMask all()
mask meaning all or any viewports
Definition MRViewportId.h:45
Definition MRViewportProperty.h:17
std::function< bool(float)> ProgressCallback
Definition MRMesh/MRMeshFwd.h:576
std::shared_ptr< const T > find() const
finds a direct child by type
Definition MRObject.h:289
Definition MRCameraOrientationPlugin.h:8
tl::expected< T, E > Expected
Definition MRExpected.h:58
Definition MRObject.h:246
ProtectedStruct()=default