1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 23:56:13 +01:00
CommandStation-EX/Turntables.cpp

183 lines
5.2 KiB
C++
Raw Normal View History

2023-08-20 11:26:04 +02:00
/*
* © 2023 Peter Cole
* All rights reserved.
*
* This file is part of CommandStation-EX
*
* This 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 3 of the License, or
* (at your option) any later version.
*
* It 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 CommandStation. If not, see <https://www.gnu.org/licenses/>.
*/
#include "defines.h"
#include <Arduino.h>
#include "Turntables.h"
#include "StringFormatter.h"
#include "CommandDistributor.h"
#include "EXRAIL2.h"
#include "DCC.h"
/*
* Protected static data
*/
Turntable *Turntable::_firstTurntable = 0;
/*
* Public static data
*/
2023-08-22 11:30:22 +02:00
int Turntable::turntablelistHash = 0;
2023-08-20 11:26:04 +02:00
/*
* Protected static functions
*/
// Add new turntable to end of list
2023-08-22 11:30:22 +02:00
2023-08-20 11:26:04 +02:00
void Turntable::add(Turntable *tto) {
if (!_firstTurntable) {
_firstTurntable = tto;
} else {
Turntable *ptr = _firstTurntable;
for ( ; ptr->_nextTurntable!=0; ptr=ptr->_nextTurntable) {}
ptr->_nextTurntable = tto;
}
turntablelistHash++;
}
// Find turntable from list
Turntable *Turntable::get(uint16_t id) {
for (Turntable *tto = _firstTurntable; tto != NULL; tto = tto->_nextTurntable)
if (tto->_turntableData.id == id) return tto;
return NULL;
}
2023-08-26 02:26:01 +02:00
// Add a position
void Turntable::addPosition(uint16_t value) {
_turntablePositions.insert(value);
}
2023-08-20 11:26:04 +02:00
2023-08-26 02:26:01 +02:00
// Get value for position
uint16_t Turntable::getPositionValue(size_t position) {
TurntablePosition* currentPosition = _turntablePositions.getHead();
for (size_t i = 0; i < position && currentPosition; i++) {
currentPosition = currentPosition->next;
}
2023-08-20 11:26:04 +02:00
2023-08-26 02:26:01 +02:00
if (currentPosition) {
return currentPosition->data;
} else {
return false;
}
2023-08-20 11:26:04 +02:00
}
2023-08-29 05:38:52 +02:00
// Get the count of positions associated with the turntable
uint8_t Turntable::getPositionCount() {
TurntablePosition* currentPosition = _turntablePositions.getHead();
uint8_t count = 0;
while (currentPosition) {
count++;
currentPosition = currentPosition->next;
}
return count;
}
2023-08-20 11:26:04 +02:00
/*
* Public static functions
*/
bool Turntable::setPositionStateOnly(uint16_t id, uint8_t position) {
Turntable *tto = get(id);
if (!tto) return false;
CommandDistributor::broadcastTurntable(id, position);
#if defined(EXRAIL_ACTIVE)
// RMFT2::turntableEvent(id, position);
#endif
2023-08-22 11:30:22 +02:00
return true;
2023-08-20 11:26:04 +02:00
}
2023-08-22 11:30:22 +02:00
bool Turntable::setPosition(uint16_t id, uint8_t position, uint8_t activity) {
2023-08-20 11:26:04 +02:00
#if defined(DIAG_IO)
DIAG(F("Turntable(%d, %d)"), id, position);
#endif
Turntable *tto = Turntable::get(id);
if (!tto) return false;
2023-08-22 11:30:22 +02:00
bool ok = tto->setPositionInternal(position, activity);
2023-08-20 11:26:04 +02:00
if (ok) {
2023-08-29 05:38:52 +02:00
// Broadcast a position change only if non zero has been set, or home/calibration sent
if (position > 0 || (position == 0 && (activity == 2 || activity == 3))) {
tto->setPositionStateOnly(id, position);
tto->_turntableData.position = position;
}
2023-08-20 11:26:04 +02:00
}
return ok;
}
/*************************************************************************************
* EXTTTurntable - EX-Turntable device.
*
*************************************************************************************/
// Private constructor
2023-08-26 11:41:17 +02:00
EXTTTurntable::EXTTTurntable(uint16_t id, VPIN vpin, uint8_t i2caddress) :
2023-08-20 11:26:04 +02:00
Turntable(id, TURNTABLE_EXTT)
{
_exttTurntableData.vpin = vpin;
2023-08-26 11:41:17 +02:00
_exttTurntableData.i2caddress = i2caddress;
2023-08-20 11:26:04 +02:00
}
// Create function
2023-08-26 11:41:17 +02:00
Turntable *EXTTTurntable::create(uint16_t id, VPIN vpin, uint8_t i2caddress) {
2023-08-23 23:22:37 +02:00
#ifndef IO_NO_HAL
2023-08-20 11:26:04 +02:00
Turntable *tto = get(id);
if (tto) {
if (tto->isType(TURNTABLE_EXTT)) {
EXTTTurntable *extt = (EXTTTurntable *)tto;
extt->_exttTurntableData.vpin = vpin;
2023-08-26 11:41:17 +02:00
extt->_exttTurntableData.i2caddress = i2caddress;
2023-08-20 11:26:04 +02:00
return tto;
}
}
2023-08-26 11:41:17 +02:00
tto = (Turntable *)new EXTTTurntable(id, vpin, i2caddress);
2023-08-29 05:38:52 +02:00
DIAG(F("Turntable 0x%x size %d size %d"), tto, sizeof(Turntable), sizeof(struct TurntableData));
2023-08-20 11:26:04 +02:00
return tto;
#else
(void)id;
(void)i2caddress;
(void)vpin;
return NULL;
#endif
}
void EXTTTurntable::print(Print *stream) {
2023-08-26 11:41:17 +02:00
StringFormatter::send(stream, F("<i %d EXTURNTABLE %d %d>\n"), _turntableData.id, _exttTurntableData.vpin, _exttTurntableData.i2caddress);
2023-08-20 11:26:04 +02:00
}
// EX-Turntable specific code for moving to the specified position
bool EXTTTurntable::setPositionInternal(uint8_t position, uint8_t activity) {
#ifndef IO_NO_HAL
2023-08-29 05:38:52 +02:00
int16_t value;
if (position == 0) {
value = 0; // Position 0 is just to send activities
} else {
if (activity > 1) return false; // If sending a position update, only phase changes valid (0|1)
value = getPositionValue(position); // Get position value from position list
}
if (position > 0 && !value) return false; // Return false if it's not a valid position
2023-08-20 11:26:04 +02:00
// Set position via device driver
2023-08-28 00:36:09 +02:00
EXTurntable::writeAnalogue(_exttTurntableData.vpin, value, activity);
2023-08-20 11:26:04 +02:00
#else
(void)position;
#endif
return true;
}