TAMSVIZ
Visualization and annotation tool for ROS
tracks.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "tracks.h"
5 
6 #include "bagplayer.h"
7 #include "workspace.h"
8 
9 std::shared_ptr<AnnotationBranch>
10 AnnotationTrack::branch(const std::shared_ptr<Workspace> &ws, bool create) {
11  std::string name = "";
12  if (ws->player) {
13  name = ws->player->fileName();
14  }
15  for (auto &branch : branches()) {
16  if (branch->name() == name) {
17  return branch;
18  }
19  }
20  if (create) {
21  auto branch = std::make_shared<AnnotationBranch>();
22  branch->name() = name;
23  branches().push_back(branch);
24  return branch;
25  } else {
26  return nullptr;
27  }
28 }