summaryrefslogtreecommitdiffstats
path: root/plugin/unicens-output/ucs2-vol/src/setup.cpp
blob: ad841ab6dff6e4ce2f44caca10fb3c14e370bfa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * libmostvolume example
 *
 * Copyright (C) 2017 Microchip Technology Germany II GmbH & Co. KG
 *
 * 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, see <http://www.gnu.org/licenses/>.
 *
 * You may also obtain this software under a propriety license from Microchip.
 * Please contact Microchip for further information.
 *
 */
#include <stddef.h>
#include "setup.h"

CSetup* CSetup::_instance = NULL;

// singleton
CSetup* CSetup::GetInstance() {
    if (_instance == NULL) {
        _instance = new CSetup();
    }

    return _instance;
}

// singleton
void CSetup::Release() {
    if (_instance != NULL) {
        delete _instance;
    }
    _instance = NULL;
}

CSetup::CSetup()
    :   _volume_amp_270_m(0x270U, DEVICE_VAL_MASTER, LIB_MOST_VOLUME_MASTER, true),
        _volume_amp_270_l(0x270U, DEVICE_VAL_LEFT, LIB_MOST_VOLUME_CH_FRONT_LEFT, true),
        _volume_amp_270_r(0x270U, DEVICE_VAL_RIGHT, LIB_MOST_VOLUME_CH_FRONT_RIGHT, true),
        _volume_amp_271_m(0x271U, DEVICE_VAL_MASTER, LIB_MOST_VOLUME_MASTER, true),
        _volume_amp_271_l(0x271U, DEVICE_VAL_LEFT, LIB_MOST_VOLUME_CH_REAR_LEFT, true),
        _volume_amp_271_r(0x271U, DEVICE_VAL_RIGHT, LIB_MOST_VOLUME_CH_REAR_RIGHT, true),
        _volume_amp_272_m(0x272U, DEVICE_VAL_MASTER, LIB_MOST_VOLUME_MASTER, true),
        _volume_amp_272_l(0x272U, DEVICE_VAL_LEFT, LIB_MOST_VOLUME_CH_CENTER, true),
        _volume_amp_272_r(0x272U, DEVICE_VAL_RIGHT, LIB_MOST_VOLUME_CH_SUB, true),
        _volume_amp_510_m(0x510U, DEVICE_VAL_FIBERDYNE_MASTER, LIB_MOST_VOLUME_MASTER, false),
        _value_container()
{
    static CDeviceValue* value_list[10] = {  &_volume_amp_270_m,
                                            &_volume_amp_270_l,
                                            &_volume_amp_270_r,
                                            &_volume_amp_271_m,
                                            &_volume_amp_271_l,
                                            &_volume_amp_271_r,
                                            &_volume_amp_272_m,
                                            &_volume_amp_272_l,
                                            &_volume_amp_272_r,
                                            &_volume_amp_510_m};

    _value_container.RegisterValues(value_list, 10U);
}

CSetup::~CSetup()
{

}

void CSetup::Configure(lib_most_volume_init_t *init_ptr)
{
    this->init_data = *init_ptr;
    _value_container.AssignService(&this->init_data);
}

void CSetup::SetVolume(enum lib_most_volume_channel_t channel, uint8_t volume)
{
    _value_container.SetValue((uint16_t)channel, volume);
}

void CSetup::Update()
{
    _value_container.Update();
}

void CSetup::SetNodeAvailable(uint16_t address, bool available)
{
    _value_container.ChangeNodeAvailable(address, available);
}