1
0
Fork 0
OpenLCP/protocols/sacn/universe.h

77 lines
2.4 KiB
C
Raw Normal View History

2021-05-27 10:59:22 -04:00
/*
universe.h
Copyright (c) 2020 Kevin Matz (kevin.matz@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include "data.h"
#include "dmp/dmp.h"
#include "dmx/universe.h"
#include <cstdint>
2021-05-27 10:59:22 -04:00
#include <memory>
#include <vector>
2021-05-27 10:59:22 -04:00
namespace sACN {
2021-05-27 10:59:22 -04:00
/**
* @brief \cite sACN 3.2 Universe
*
* > A set of up to 512 data slots identified by universe number.
* > Note: In E1.31 there may be multiple sources for a universe. See also: Slot.
2021-08-02 10:09:14 -04:00
*/
2021-05-27 10:59:22 -04:00
class Universe
: public DMX::Universe
2021-05-27 10:59:22 -04:00
{
public:
2021-08-02 10:09:14 -04:00
Universe();
~Universe();
2021-08-02 10:09:14 -04:00
virtual void set(ACN::PDU::Message<ACN::DMP::Pdu>, std::shared_ptr<DATA::data_header>);
virtual std::shared_ptr<DATA::data_header> provenance() const;
virtual void setProvenance(std::shared_ptr<DATA::data_header>);
2021-05-27 10:59:22 -04:00
virtual bool isSyncronized() const;
2021-08-06 12:36:04 -04:00
virtual void synchronize();
2021-08-28 09:04:06 -04:00
protected:
/**
* @brief \cite sACN 3.7 Active Data Slots
2021-08-28 09:04:06 -04:00
*
* > When translating ANSI E1.11 DMX512-A \cite DMX to E1.31, the active data
* > slots are defined as ranging from data slot 1 to the maximum data slot in
* > the most recently received packet with the corresponding START Code.
* >
* > Devices originating E1.31 shall define their active data slots using
* > the DMP First Property Address and DMP Property Count fields shown in
* > Table 4-1.
2021-08-28 09:04:06 -04:00
*/
uint16_t active_data_slots;
2021-05-27 10:59:22 -04:00
private:
std::shared_ptr<DATA::data_header> provenance_;
std::vector<uint8_t> * sync_data_ = nullptr;
2021-05-27 10:59:22 -04:00
};
2021-08-02 10:09:14 -04:00
} // SACN namespace