1
0
Fork 0

the RDM section of the spec describes two gateway types

This commit is contained in:
Kevin Matz 2023-05-20 13:27:20 -04:00
parent 9e36ab422c
commit cf06c0fa9a
3 changed files with 126 additions and 1 deletions

View File

@ -9,6 +9,7 @@ target_sources(${PROJECT_NAME}
PUBLIC
controller.h
device.h
gateway.h
mediaserver.h
node.h
universe.h
@ -16,6 +17,7 @@ target_sources(${PROJECT_NAME}
artnet.h
controller.cpp
device.cpp
gateway.cpp
mediaserver.cpp
node.cpp
packet.h
@ -28,7 +30,7 @@ target_sources(${PROJECT_NAME}
target_link_libraries(${PROJECT_NAME}
PRIVATE
LCP::BufferStream
LCP::DMX
LCP::RDM
)
set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION})

View File

@ -0,0 +1,54 @@
/*
artnet/gateway.cpp
Copyright (c) 2023 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.
*/
#include "gateway.h"
namespace ARTNET {
InputGateway::InputGateway()
{
}
InputGateway::~InputGateway()
{
}
OutputGateway::OutputGateway()
{
}
OutputGateway::~OutputGateway()
{
}
} // namespace ARTNET

View File

@ -0,0 +1,69 @@
/*
artnet/gateway.h
Copyright (c) 2023 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 <basicdevice.h>
#include <rdm_controller.h>
namespace ARTNET {
/**
* @brief \cite ARTNET The list of RDM devices maintained by both Input and Output Gateways.
*/
using TableofDevices = std::vector<std::shared_ptr<::RDM::BasicDevice>>;
/**
* @brief \cite ARTNET A device that inputs DMX512 onto the Art-Net network.
*/
class InputGateway
{
public:
explicit InputGateway();
virtual ~InputGateway();
private:
TableofDevices devices;
};
/**
* @brief \cite ARTNET A device that outputs DMX512 from the Art-Net network.
*/
class OutputGateway
: public ::RDM::Controller
{
public:
explicit OutputGateway();
virtual ~OutputGateway();
private:
TableofDevices devices;
};
} // namespace ARTNET