mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-04 05:30:32 -05:00 
			
		
		
		
	
		
			
	
	
		
			115 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			115 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
								 | 
							
								///////////////////////////////////////////////////////////////////////////////////
							 | 
						||
| 
								 | 
							
								// Copyright (C) 2022 Edouard Griffiths, F4EXB                                   //
							 | 
						||
| 
								 | 
							
								//                                                                               //
							 | 
						||
| 
								 | 
							
								// 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 as version 3 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 V3 for more details.                               //
							 | 
						||
| 
								 | 
							
								//                                                                               //
							 | 
						||
| 
								 | 
							
								// You should have received a copy of the GNU General Public License             //
							 | 
						||
| 
								 | 
							
								// along with this program. If not, see <http://www.gnu.org/licenses/>.          //
							 | 
						||
| 
								 | 
							
								///////////////////////////////////////////////////////////////////////////////////
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <QColor>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include "util/simpleserializer.h"
							 | 
						||
| 
								 | 
							
								#include "settings/serializable.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include "ambesettings.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								AMBESettings::AMBESettings() :
							 | 
						||
| 
								 | 
							
								    m_rollupState(nullptr)
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    resetToDefaults();
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void AMBESettings::resetToDefaults()
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    m_title = "AMBE Controller";
							 | 
						||
| 
								 | 
							
								    m_rgbColor = QColor(255, 0, 0).rgb();
							 | 
						||
| 
								 | 
							
								    m_useReverseAPI = false;
							 | 
						||
| 
								 | 
							
								    m_reverseAPIAddress = "127.0.0.1";
							 | 
						||
| 
								 | 
							
								    m_reverseAPIPort = 8888;
							 | 
						||
| 
								 | 
							
								    m_reverseAPIFeatureSetIndex = 0;
							 | 
						||
| 
								 | 
							
								    m_reverseAPIFeatureIndex = 0;
							 | 
						||
| 
								 | 
							
								    m_workspaceIndex = 0;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								QByteArray AMBESettings::serialize() const
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    SimpleSerializer s(1);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    s.writeString(1, m_title);
							 | 
						||
| 
								 | 
							
								    s.writeU32(2, m_rgbColor);
							 | 
						||
| 
								 | 
							
								    s.writeBool(7, m_useReverseAPI);
							 | 
						||
| 
								 | 
							
								    s.writeString(8, m_reverseAPIAddress);
							 | 
						||
| 
								 | 
							
								    s.writeU32(9, m_reverseAPIPort);
							 | 
						||
| 
								 | 
							
								    s.writeU32(10, m_reverseAPIFeatureSetIndex);
							 | 
						||
| 
								 | 
							
								    s.writeU32(11, m_reverseAPIFeatureIndex);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    if (m_rollupState) {
							 | 
						||
| 
								 | 
							
								        s.writeBlob(12, m_rollupState->serialize());
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    s.writeS32(18, m_workspaceIndex);
							 | 
						||
| 
								 | 
							
								    s.writeBlob(19, m_geometryBytes);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    return s.final();
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								bool AMBESettings::deserialize(const QByteArray& data)
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    SimpleDeserializer d(data);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    if(!d.isValid())
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        resetToDefaults();
							 | 
						||
| 
								 | 
							
								        return false;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    if(d.getVersion() == 1)
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        QByteArray bytetmp;
							 | 
						||
| 
								 | 
							
								        uint32_t utmp;
							 | 
						||
| 
								 | 
							
								        QString strtmp;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        d.readString(1, &m_title, "Simple PTT");
							 | 
						||
| 
								 | 
							
								        d.readU32(2, &m_rgbColor, QColor(255, 0, 0).rgb());
							 | 
						||
| 
								 | 
							
								        d.readBool(7, &m_useReverseAPI, false);
							 | 
						||
| 
								 | 
							
								        d.readString(8, &m_reverseAPIAddress, "127.0.0.1");
							 | 
						||
| 
								 | 
							
								        d.readU32(9, &utmp, 0);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        if ((utmp > 1023) && (utmp < 65535)) {
							 | 
						||
| 
								 | 
							
								            m_reverseAPIPort = utmp;
							 | 
						||
| 
								 | 
							
								        } else {
							 | 
						||
| 
								 | 
							
								            m_reverseAPIPort = 8888;
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        d.readU32(10, &utmp, 0);
							 | 
						||
| 
								 | 
							
								        m_reverseAPIFeatureSetIndex = utmp > 99 ? 99 : utmp;
							 | 
						||
| 
								 | 
							
								        d.readU32(11, &utmp, 0);
							 | 
						||
| 
								 | 
							
								        m_reverseAPIFeatureIndex = utmp > 99 ? 99 : utmp;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        if (m_rollupState)
							 | 
						||
| 
								 | 
							
								        {
							 | 
						||
| 
								 | 
							
								            d.readBlob(12, &bytetmp);
							 | 
						||
| 
								 | 
							
								            m_rollupState->deserialize(bytetmp);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        d.readS32(18, &m_workspaceIndex, 0);
							 | 
						||
| 
								 | 
							
								        d.readBlob(19, &m_geometryBytes);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        return true;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								    else
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        resetToDefaults();
							 | 
						||
| 
								 | 
							
								        return false;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |