MMDVMHost-Private/NXDNLICH.cpp

151 lines
3.4 KiB
C++
Raw Normal View History

2018-01-16 20:10:35 +00:00
/*
* Copyright (C) 2018 by Jonathan Naylor G4KLX
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "NXDNDefines.h"
#include "NXDNLICH.h"
#include "Log.h"
#include <cstdio>
#include <cassert>
#include <cstring>
const unsigned char BIT_MASK_TABLE[] = {0x80U, 0x40U, 0x20U, 0x10U, 0x08U, 0x04U, 0x02U, 0x01U};
#define WRITE_BIT1(p,i,b) p[(i)>>3] = (b) ? (p[(i)>>3] | BIT_MASK_TABLE[(i)&7]) : (p[(i)>>3] & ~BIT_MASK_TABLE[(i)&7])
#define READ_BIT1(p,i) (p[(i)>>3] & BIT_MASK_TABLE[(i)&7])
CNXDNLICH::CNXDNLICH(const CNXDNLICH& lich) :
m_lich(lich.m_lich)
{
}
CNXDNLICH::CNXDNLICH() :
m_lich(0U)
{
}
CNXDNLICH::~CNXDNLICH()
{
}
bool CNXDNLICH::decode(const unsigned char* bytes)
{
assert(bytes != NULL);
unsigned char lich[1U];
lich[0U] = 0x00U;
bool b[8U];
2018-01-16 20:10:35 +00:00
unsigned int offset1 = NXDN_FSW_LENGTH_BITS;
unsigned int offset2 = 7U;
for (unsigned int i = 0U; i < (NXDN_LICH_LENGTH_BITS / 2U); i++, offset1 += 2U, offset2--) {
b[offset2] = READ_BIT1(bytes, offset1);
2018-01-23 23:23:05 +00:00
WRITE_BIT1(lich, i, b[offset2]);
}
2018-01-16 20:10:35 +00:00
bool parity = b[7U] ^ b[6U] ^ b[5U] ^ b[4U];
2018-01-16 20:10:35 +00:00
2018-01-22 23:22:32 +00:00
LogMessage("NXDN, LICH bits: %d%d %d%d %d%d %d - %d, parity: %d", b[7U] ? 1 : 0, b[6U] ? 1 : 0, b[5U] ? 1 : 0, b[4U] ? 1 : 0, b[3U] ? 1 : 0, b[2U] ? 1 : 0, b[1U] ? 1 : 0, b[0U] ? 1 : 0, parity ? 1 : 0);
2018-01-16 20:10:35 +00:00
if (parity != b[0U])
2018-01-16 20:10:35 +00:00
return false;
m_lich = lich[0U] >> 1;
return true;
}
void CNXDNLICH::encode(unsigned char* bytes)
{
assert(bytes != NULL);
unsigned char lich[1U];
lich[0U] = m_lich << 1;
bool b[8U];
unsigned int offset = 7U;
for (unsigned int i = 0U; i < (NXDN_LICH_LENGTH_BITS / 2U); i++, offset--)
b[offset] = READ_BIT1(lich, offset);
b[0U] = b[7U] ^ b[6U] ^ b[5U] ^ b[4U];
unsigned int offset1 = NXDN_FSW_LENGTH_BITS;
unsigned int offset2 = 7U;
for (unsigned int i = 0U; i < (NXDN_LICH_LENGTH_BITS / 2U); i++, offset2--) {
WRITE_BIT1(bytes, offset1, b[offset2]);
offset1++;
WRITE_BIT1(bytes, offset1, true);
offset1++;
}
2018-01-16 20:10:35 +00:00
}
unsigned char CNXDNLICH::getRFCT() const
{
return (m_lich >> 5) & 0x03U;
}
unsigned char CNXDNLICH::getFCT() const
{
return (m_lich >> 3) & 0x03U;
}
unsigned char CNXDNLICH::getOption() const
{
return (m_lich >> 1) & 0x03U;
}
unsigned char CNXDNLICH::getDirection() const
{
return m_lich & 0x01U;
}
void CNXDNLICH::setRFCT(unsigned char rfct)
{
m_lich &= 0x1FU;
m_lich |= (rfct << 5) & 0x60U;
}
void CNXDNLICH::setFCT(unsigned char usc)
{
m_lich &= 0x67U;
m_lich |= (usc << 3) & 0x18U;
}
void CNXDNLICH::setOption(unsigned char option)
{
m_lich &= 0x79U;
m_lich |= (option << 1) & 0x06U;
}
void CNXDNLICH::setDirection(unsigned char direction)
{
m_lich &= 0x7EU;
m_lich |= direction & 0x01U;
}
CNXDNLICH& CNXDNLICH::operator=(const CNXDNLICH& lich)
{
if (&lich != this)
m_lich = lich.m_lich;
return *this;
}