]> git.sesse.net Git - casparcg/blobdiff - common/diagnostics/graph.h
2.0.2: Is now locked, only bug fixes should be added. New features go into 2.1.0.
[casparcg] / common / diagnostics / graph.h
index 26c10d1fc9f852b434998fcd22b7018925bb1a6a..5bdcda25a829d144350320f1a27cbe70c74b92fa 100644 (file)
@@ -1,10 +1,41 @@
+/*\r
+* Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
+*\r
+* This file is part of CasparCG (www.casparcg.com).\r
+*\r
+* CasparCG is free software: you can redistribute it and/or modify\r
+* it under the terms of the GNU General Public License as published by\r
+* the Free Software Foundation, either version 3 of the License, or\r
+* (at your option) any later version.\r
+*\r
+* CasparCG is distributed in the hope that it will be useful,\r
+* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+* GNU General Public License for more details.\r
+*\r
+* You should have received a copy of the GNU General Public License\r
+* along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
+*\r
+* Author: Robert Nagy, ronag89@gmail.com\r
+*/\r
+\r
 #pragma once\r
 \r
 #include "../memory/safe_ptr.h"\r
 \r
+#include <functional>\r
 #include <string>\r
+#include <vector>\r
+#include <map>\r
+\r
+#include <boost/range/iterator_range.hpp>\r
+#include <boost/circular_buffer.hpp>\r
 \r
-namespace caspar { namespace diagnostics {\r
+namespace caspar {\r
+               \r
+typedef std::function<std::wstring()> printer;\r
+       \r
+namespace diagnostics {\r
        \r
 struct color\r
 {\r
@@ -22,18 +53,77 @@ struct color
 \r
 class graph\r
 {\r
-       friend safe_ptr<graph> create_graph(const std::string& name);\r
-       graph(const std::string& name);\r
+       friend void register_graph(const safe_ptr<graph>& graph);\r
 public:\r
-       void update(const std::string& name, float value);\r
-       void tag(const std::string& name);\r
-       void guide(const std::string& name, float value);\r
+       graph();\r
+       void set_text(const std::string& value);\r
+       void set_text(const std::wstring& value);\r
+       void update_value(const std::string& name, double value);\r
+       void set_value(const std::string& name, double value);\r
        void set_color(const std::string& name, color c);\r
+       void add_tag(const std::string& name);\r
+       void add_guide(const std::string& name, double value);\r
 private:\r
        struct implementation;\r
        std::shared_ptr<implementation> impl_;\r
 };\r
 \r
-safe_ptr<graph> create_graph(const std::string& name);\r
-       \r
+void register_graph(const safe_ptr<graph>& graph);\r
+void show_graphs(bool value);\r
+\r
+//namespace v2\r
+//{\r
+//     \r
+//     struct data\r
+//     {\r
+//             float value;\r
+//     };\r
+//\r
+//     class line\r
+//     {\r
+//     public:\r
+//             line();\r
+//             line(const std::wstring& name);\r
+//             std::wstring print() const;\r
+//             void update_value(float value);\r
+//             void set_value(float value);\r
+//             void set_tag(const std::wstring& tag);\r
+//\r
+//             boost::circular_buffer<data>& ticks();\r
+//     private:\r
+//             struct implementation;\r
+//             std::shared_ptr<implementation> impl_;\r
+//     };\r
+//     \r
+//     class graph;\r
+//\r
+//\r
+//     class graph\r
+//     {\r
+//     public:\r
+//             graph(const std::wstring& name);\r
+//             graph(const printer& parent_printer);\r
+//\r
+//             void update_value(const std::wstring& name, float value);\r
+//             void set_value(const std::wstring& name, float value);\r
+//\r
+//             void set_guide(const std::wstring& name, float value);\r
+//             void set_color(const std::wstring& name, color c);\r
+//\r
+//             color get_color() const;\r
+//             std::map<std::wstring, line>& get_lines();\r
+//\r
+//             std::wstring print() const;\r
+//\r
+//             safe_ptr<graph> clone() const;\r
+//     private:\r
+//             struct implementation;\r
+//             std::shared_ptr<implementation> impl_;\r
+//     };\r
+//     \r
+//     static safe_ptr<graph> create_graph(const std::wstring& name);\r
+//     static safe_ptr<graph> create_graph(const printer& parent_printer);\r
+//     static std::vector<safe_ptr<graph>> get_all_graphs();\r
+//}\r
+\r
 }}
\ No newline at end of file