本文整理汇总了C++中Universe::SetDMX方法的典型用法代码示例。如果您正苦于以下问题:C++ Universe::SetDMX方法的具体用法?C++ Universe::SetDMX怎么用?C++ Universe::SetDMX使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Universe
的用法示例。
在下文中一共展示了Universe::SetDMX方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testSetGetDmx
/*
* Check that SetDMX/GetDMX works
*/
void UniverseTest::testSetGetDmx() {
Universe *universe = m_store->GetUniverseOrCreate(TEST_UNIVERSE);
OLA_ASSERT(universe);
// a new universe should be all 0s
DmxBuffer empty_buffer;
OLA_ASSERT(empty_buffer == universe->GetDMX());
// check that SetDMX works
OLA_ASSERT(universe->SetDMX(m_buffer));
OLA_ASSERT(m_buffer == universe->GetDMX());
}
示例2: testSendDmx
/*
* Check that SendDmx updates all ports
*/
void UniverseTest::testSendDmx() {
Universe *universe = m_store->GetUniverseOrCreate(TEST_UNIVERSE);
OLA_ASSERT(universe);
TestMockOutputPort port(NULL, 1); // output port
universe->AddPort(&port);
OLA_ASSERT_EQ((unsigned int) 0, universe->InputPortCount());
OLA_ASSERT_EQ((unsigned int) 1, universe->OutputPortCount());
OLA_ASSERT(universe->IsActive());
// send some data to the universe and check the port gets it
OLA_ASSERT(universe->SetDMX(m_buffer));
OLA_ASSERT(m_buffer == port.ReadDMX());
// remove the port from the universe
universe->RemovePort(&port);
OLA_ASSERT_EQ((unsigned int) 0, universe->InputPortCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->OutputPortCount());
OLA_ASSERT_FALSE(universe->IsActive());
}
示例3: testGetDmx
/*
* Check that the GetDmx method works
*/
void OlaServerServiceImplTest::testGetDmx() {
UniverseStore store(NULL, NULL);
OlaServerServiceImpl impl(&store,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
m_uid);
OlaClientService service(NULL, &impl);
GenericMissingUniverseCheck<GetDmxCheck, ola::proto::DmxData>
missing_universe_check;
GetDmxNoDataCheck empty_data_check;
GetDmxValidDataCheck valid_data_check;
// test a universe that doesn't exist
unsigned int universe_id = 0;
CallGetDmx(&impl, universe_id, missing_universe_check);
// test a new universe
Universe *universe = store.GetUniverseOrCreate(universe_id);
OLA_ASSERT(universe);
CallGetDmx(&impl, universe_id, empty_data_check);
// Set the universe data
DmxBuffer buffer(SAMPLE_DMX_DATA, sizeof(SAMPLE_DMX_DATA));
universe->SetDMX(buffer);
CallGetDmx(&impl, universe_id, valid_data_check);
// remove the universe and try again
store.AddUniverseGarbageCollection(universe);
store.GarbageCollectUniverses();
CallGetDmx(&impl, universe_id, missing_universe_check);
}
示例4: testSinkClients
/*
* Check that we can add/remove sink clients from this universes
*/
void UniverseTest::testSinkClients() {
Universe *universe = m_store->GetUniverseOrCreate(TEST_UNIVERSE);
OLA_ASSERT(universe);
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SinkClientCount());
// test that we can add a source client
MockClient client;
universe->AddSinkClient(&client);
OLA_ASSERT_EQ((unsigned int) 1, universe->SinkClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT(universe->ContainsSinkClient(&client));
OLA_ASSERT_FALSE(universe->ContainsSourceClient(&client));
OLA_ASSERT(universe->IsActive());
// Setting DMX now should update the client
OLA_ASSERT_FALSE(client.m_dmx_set);
universe->SetDMX(m_buffer);
OLA_ASSERT(client.m_dmx_set);
// now remove it
universe->RemoveSinkClient(&client);
OLA_ASSERT_EQ((unsigned int) 0, universe->SinkClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT_FALSE(universe->ContainsSinkClient(&client));
OLA_ASSERT_FALSE(universe->ContainsSourceClient(&client));
OLA_ASSERT_FALSE(universe->IsActive());
// try to remove it again
OLA_ASSERT_FALSE(universe->RemoveSinkClient(&client));
OLA_ASSERT_EQ((unsigned int) 0, universe->SinkClientCount());
OLA_ASSERT_EQ((unsigned int) 0, universe->SourceClientCount());
OLA_ASSERT_FALSE(universe->ContainsSinkClient(&client));
OLA_ASSERT_FALSE(universe->ContainsSourceClient(&client));
OLA_ASSERT_FALSE(universe->IsActive());
}