]> git.sesse.net Git - casparcg/blob - modules/bluefish/bluefish.cpp
Merge commit 'fcda9226c39ea7752abb74d40f9e20fa79e88848' into 2.1.0
[casparcg] / modules / bluefish / bluefish.cpp
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #include "StdAfx.h"
23
24 #include "bluefish.h"
25
26 #include "consumer/bluefish_consumer.h"
27
28 #include "util/blue_velvet.h"
29
30 #include <common/log.h>
31 #include <common/utf.h>
32
33 #include <core/consumer/frame_consumer.h>
34 #include <core/system_info_provider.h>
35
36 #include <boost/lexical_cast.hpp>
37 #include <boost/property_tree/ptree.hpp>
38
39 namespace caspar { namespace bluefish {
40
41 std::wstring version()
42 {
43         try
44         {
45                 bvc_wrapper blue;
46                 return u16(blue.get_version());
47         }
48         catch(...)
49         {
50                 return L"Not found";
51         }
52 }
53
54 std::vector<std::wstring> device_list()
55 {
56         std::vector<std::wstring> devices;
57
58         try
59         {               
60                 bvc_wrapper blue;
61                 int numCards = 0;
62                 blue.enumerate(numCards);
63
64                 for(int n = 1; n < (numCards+1); n++)
65                 {                               
66                         blue.attach(n);
67                         devices.push_back(std::wstring(get_card_desc(blue, n)) + L" [" + boost::lexical_cast<std::wstring>(n) + L"]");  
68                         blue.detach();
69                 }
70         }
71         catch(...){}
72
73         return devices;
74 }
75
76 void init(core::module_dependencies dependencies)
77 {
78         try
79         {
80                 bvc_wrapper blue;
81                 int num_cards = 0;
82                 blue.enumerate(num_cards);
83         }
84         catch(...){}
85
86         dependencies.consumer_registry->register_consumer_factory(L"Bluefish Consumer", create_consumer, describe_consumer);
87         dependencies.consumer_registry->register_preconfigured_consumer_factory(L"bluefish", create_preconfigured_consumer);
88         dependencies.system_info_provider_repo->register_system_info_provider([](boost::property_tree::wptree& info)
89         {
90                 info.add(L"system.bluefish.version", version());
91
92                 for (auto device : device_list())
93                         info.add(L"system.bluefish.device", device);
94         });
95
96 }
97
98 }}
99