1
0
Fork 0
OpenLCP/sacn/universe.h

94 lines
3.1 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 "sacn.h"
#include "data.h"
#include "../dmx/universe.h"
#include "../uuid/uuid.h"
#include <memory>
#include <string>
namespace SACN {
/**
universe metadata
*/
class UniverseSource
{
public:
2021-06-20 09:10:21 -04:00
UniverseSource();
2021-05-27 10:59:22 -04:00
UniverseSource(std::shared_ptr<DATA::Pdu>);
2021-06-20 09:10:21 -04:00
const UUID::uuid CID() const {return cid_;};
2021-05-27 10:59:22 -04:00
const std::string description() const {return description_;}
const uint16_t universe() const {return universe_;}
const uint8_t priority() const {return priority_;}
const uint16_t syncAddress() const {return sync_address_;}
const bool isTerminated() const {return options_
& DATA::STREAM_TERMINATED;}
const bool isPreview() const {return options_
& DATA::PREVIEW_DATA;}
const bool isForced() const {return options_
& DATA::FORCE_SYNCHRONIZATION;}
2021-06-20 09:10:32 -04:00
void setCID(UUID::uuid cid) { cid_ = cid; }
void setDescription(std::string desc) { description_ = desc; }
void setOptions(uint8_t o) { options_ = o; }
void setUniverse(uint16_t n) { if (n >= 1 && n <= 63999) universe_ = n; }
void setSyncAddress(uint16_t a) { if (a >= 1 && a <= 63999) sync_address_ = a; }
void setPriority(uint8_t p) { if (p <= 200) priority_ = p; }
2021-05-27 10:59:22 -04:00
private:
UUID::uuid cid_;
std::string description_;
uint16_t universe_;
uint8_t priority_;
uint16_t sync_address_;
uint8_t options_;
};
/**
universe data
*/
class Universe
: public DMX::Universe
{
public:
Universe() : DMX::Universe(), synchronized_(false) {};
const bool isSyncronized() const {return synchronized_;};
2021-06-20 09:35:03 -04:00
std::shared_ptr<UniverseSource> source() const { return source_; }
2021-05-27 10:59:22 -04:00
void set(std::shared_ptr<DMP::Pdu>, std::shared_ptr<UniverseSource>);
void setSource(std::shared_ptr<UniverseSource>);
2021-05-27 10:59:22 -04:00
private:
bool synchronized_;
std::shared_ptr<UniverseSource> source_;
};
};