TAMSVIZ
Visualization and annotation tool for ROS
scene.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "../core/document.h"
7 #include "../core/tracks.h"
8 
9 class SceneNode;
10 
12 private:
13  std::shared_ptr<SceneNode> _node;
14  std::shared_ptr<SceneContext> _context;
15  bool _reset = false;
16 
17 protected:
19  virtual void update(const std::shared_ptr<SceneNode> &node) {}
20 
21 public:
22  std::shared_ptr<SceneNode> node();
23  virtual void renderSync(const RenderSyncContext &context,
24  const std::shared_ptr<TrackBase> &track,
25  const std::shared_ptr<AnnotationSpan> &span);
26  virtual void renderAsync(const RenderAsyncContext &context);
27  virtual bool pick(uint32_t id) const;
28  virtual bool interact(const Interaction &interaction);
29  bool selected();
30  // virtual void clear();
31 };
32 DECLARE_TYPE(SceneAnnotationBase, AnnotationBase);
Definition: node.h:20