Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
REveScene.hxx
Go to the documentation of this file.
1 // @(#)root/eve7:$Id$
2 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT7_REveScene
13 #define ROOT7_REveScene
14 
15 #include <ROOT/REveElement.hxx>
16 
17 #include "TClass.h"
18 
19 #include <vector>
20 #include <memory>
21 
22 namespace ROOT {
23 namespace Experimental {
24 
25 class REveClient;
26 class REveManager;
27 
28 /******************************************************************************/
29 // REveScene
30 // REve representation of TGLScene.
31 /******************************************************************************/
32 
33 class REveScene : public REveElement
34 {
35  friend class REveManager;
36 
37 private:
38  REveScene(const REveScene &); // Not implemented
39  REveScene &operator=(const REveScene &); // Not implemented
40 
41 protected:
42  struct SceneCommand
43  {
44  std::string fName;
45  std::string fIcon;
46  std::string fElementClass;
47  std::string fAction;
48  ElementId_t fElementId;
49 
50  SceneCommand(const std::string& name, const std::string& icon,
51  const REveElement* element, const std::string& action) :
52  fName(name),
53  fIcon(icon),
54  fElementClass(element->IsA()->GetName()),
55  fAction(action),
56  fElementId(element->GetElementId())
57  {}
58  };
59 
60  Bool_t fSmartRefresh{kTRUE}; ///<!
61  Bool_t fHierarchical{kFALSE}; ///<!
62 
63  Bool_t fAcceptingChanges{kFALSE}; ///<!
64  Bool_t fChanged{kFALSE}; ///<!
65  // Changed or/and added.
66  // XXXX can change to vector (element checks if already registered now).
67  List_t fChangedElements; ///<!
68  // For the following two have to re-think how the hierarchy will be handled.
69  // If I remove a parent, i have to remove all the children.
70  // So this has to be done right on both sides (on eve element and here).
71  // I might need a set, so i can easily check if parent is in the removed / added list already.
72  std::vector<ElementId_t> fRemovedElements; ///<!
73 
74  std::vector<std::unique_ptr<REveClient>> fSubscribers; ///<!
75 
76  List_t fElsWithBinaryData;
77  std::string fOutputJson; ///<!
78  std::vector<char> fOutputBinary; ///<!
79  Int_t fTotalBinarySize; ///<!
80 
81  std::vector<SceneCommand> fCommands; ///<!
82 
83  // void RetransHierarchicallyRecurse(REveElement* el, const REveTrans& tp);
84 
85 public:
86  REveScene(const std::string &n = "REveScene", const std::string &t = "");
87  virtual ~REveScene();
88 
89  Bool_t SingleRnrState() const override { return kTRUE; }
90 
91  void SetHierarchical(Bool_t h) { fHierarchical = h; }
92  Bool_t GetHierarchical() const { return fHierarchical; }
93 
94  void Changed() { fChanged = kTRUE; } // AMT ??? depricated
95  Bool_t IsChanged() const;
96 
97  Bool_t IsAcceptingChanges() const { return fAcceptingChanges; }
98  void BeginAcceptingChanges();
99  void SceneElementChanged(REveElement *element);
100  void SceneElementRemoved(ElementId_t id);
101  void EndAcceptingChanges();
102  void ProcessChanges();
103 
104  void StreamElements();
105  void StreamJsonRecurse(REveElement *el, nlohmann::json &jobj);
106 
107  // void Repaint(Bool_t dropLogicals=kFALSE);
108  // void RetransHierarchically();
109 
110  // virtual void Paint(Option_t* option = "");
111 
112  // void DestroyElementRenderers(REveElement* element);
113  // void DestroyElementRenderers(TObject* rnrObj);
114  void StreamRepresentationChanges();
115  void SendChangesToSubscribers();
116 
117  Bool_t HasSubscribers() const { return !fSubscribers.empty(); }
118  void AddSubscriber(std::unique_ptr<REveClient> &&sub);
119  void RemoveSubscriber(unsigned int);
120 
121  void AddCommand(const std::string &name, const std::string &icon, const REveElement *element, const std::string &action)
122  { fCommands.emplace_back(name, icon, element, action); }
123 };
124 
125 /******************************************************************************/
126 // REveSceneList
127 // List of Scenes providing common operations on REveScene collections.
128 /******************************************************************************/
129 
130 class REveSceneList : public REveElement
131 {
132 private:
133  REveSceneList(const REveSceneList &); // Not implemented
134  REveSceneList &operator=(const REveSceneList &); // Not implemented
135 
136 protected:
137 public:
138  REveSceneList(const std::string& n = "REveSceneList", const std::string& t = "");
139  virtual ~REveSceneList() {}
140 
141  void DestroyScenes();
142 
143  // void RepaintChangedScenes(Bool_t dropLogicals);
144  // void RepaintAllScenes(Bool_t dropLogicals);
145 
146  // void DestroyElementRenderers(REveElement* element);
147  void AcceptChanges(bool);
148 
149  void ProcessSceneChanges();
150 };
151 
152 } // namespace Experimental
153 } // namespace ROOT
154 
155 #endif