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

245 lines
6.4 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/>.
*/
#ifndef TURNTABLES_H
#define TURNTABLES_H
#include <Arduino.h>
#include "IODevice.h"
#include "StringFormatter.h"
2023-08-29 11:04:45 +02:00
// No turntable support without HAL
#ifndef IO_NO_HAL
2023-08-20 11:26:04 +02:00
// Turntable type definitions
// EXTT = EX-Turntable
// DCC = DCC accessory turntables - to be added later
enum {
2023-08-30 00:45:11 +02:00
TURNTABLE_EXTT = 0,
TURNTABLE_DCC = 1,
2023-08-20 11:26:04 +02:00
};
2023-08-30 11:48:30 +02:00
// Callback needs to return a bool: 1 = moving, 0 = stopped
typedef void (*EXTT_CALLBACK)(bool moving);
2023-08-26 02:26:01 +02:00
/*************************************************************************************
* Turntable positions.
*
*************************************************************************************/
struct TurntablePosition {
2023-08-30 00:45:11 +02:00
uint8_t index;
2023-08-26 02:26:01 +02:00
uint16_t data;
TurntablePosition* next;
2023-08-30 00:45:11 +02:00
TurntablePosition(uint8_t idx, uint16_t value) : index(idx), data(value), next(nullptr) {}
2023-08-26 02:26:01 +02:00
};
class TurntablePositionList {
public:
2023-09-05 23:59:43 +02:00
TurntablePositionList() : head(nullptr) {}
2023-08-26 02:26:01 +02:00
2023-09-05 23:59:43 +02:00
void insert(uint8_t idx, uint16_t value) {
TurntablePosition* newPosition = new TurntablePosition(idx, value);
2023-08-26 02:26:01 +02:00
if(!head) {
head = newPosition;
} else {
newPosition->next = head;
head = newPosition;
}
}
TurntablePosition* getHead() {
return head;
}
private:
TurntablePosition* head;
};
2023-08-20 11:26:04 +02:00
/*************************************************************************************
* Turntable - Base class for turntables.
*
*************************************************************************************/
class Turntable {
protected:
/*
* Object data
*/
// Data common to all turntable types
struct TurntableData {
union {
struct {
bool hidden : 1;
2023-08-30 00:45:11 +02:00
bool turntableType : 1;
uint8_t position : 6; // Allows up to 63 positions including 0/home
2023-08-20 11:26:04 +02:00
};
uint8_t flags;
};
uint16_t id;
} _turntableData;
// Pointer to next turntable object
Turntable *_nextTurntable = 0;
2023-08-26 02:26:01 +02:00
// Linked list for positions
TurntablePositionList _turntablePositions;
2023-09-03 10:54:56 +02:00
// Store the previous position to allow checking for changes
uint8_t _previousPosition = 0;
2023-08-26 02:26:01 +02:00
2023-09-03 23:38:26 +02:00
// Store the current state of the turntable
bool _isMoving = false;
2023-08-20 11:26:04 +02:00
/*
* Constructor
*/
Turntable(uint16_t id, uint8_t turntableType) {
_turntableData.id = id;
_turntableData.turntableType = turntableType;
_turntableData.hidden = false;
2023-08-26 02:26:01 +02:00
_turntableData.position = 0;
2023-08-20 11:26:04 +02:00
add(this);
}
/*
* Static data
*/
static Turntable *_firstTurntable;
static int _turntablelistHash;
/*
* Virtual functions
*/
virtual bool setPositionInternal(uint8_t position, uint8_t activity) = 0;
/*
* Static functions
*/
static void add(Turntable *tto);
public:
static Turntable *get(uint16_t id);
static Turntable *getByVpin(VPIN vpin);
2023-08-20 11:26:04 +02:00
/*
* Static data
*/
static int turntablelistHash;
/*
* Public base class functions
*/
inline uint8_t getPosition() { return _turntableData.position; }
inline bool isHidden() { return _turntableData.hidden; }
inline void setHidden(bool h) {_turntableData.hidden=h; }
inline bool isType(uint8_t type) { return _turntableData.turntableType == type; }
inline bool isEXTT() const { return _turntableData.turntableType == TURNTABLE_EXTT; }
2023-08-20 11:26:04 +02:00
inline uint16_t getId() { return _turntableData.id; }
inline Turntable *next() { return _nextTurntable; }
void printState(Print *stream);
2023-09-05 23:59:43 +02:00
void addPosition(uint8_t idx, uint16_t value);
2023-08-30 00:45:11 +02:00
uint16_t getPositionValue(uint8_t position);
2023-08-29 05:38:52 +02:00
uint8_t getPositionCount();
2023-09-03 23:38:26 +02:00
bool isMoving() { return _isMoving; }
void setMoving(bool moving) { _isMoving=moving; }
2023-08-20 11:26:04 +02:00
/*
* Virtual functions
*/
virtual void print(Print *stream) {
(void)stream; // suppress compiler warnings
}
virtual ~Turntable() {} // Destructor
2023-08-22 11:30:22 +02:00
2023-08-20 11:26:04 +02:00
/*
* Public static functions
*/
inline static bool exists(uint16_t id) { return get(id) != 0; }
2023-08-22 11:30:22 +02:00
static bool setPosition(uint16_t id, uint8_t position, uint8_t activity=0);
2023-09-02 00:29:49 +02:00
static uint8_t getPosition(uint16_t id);
2023-09-06 23:58:19 +02:00
static bool ttMoving(uint16_t id);
2023-08-20 11:26:04 +02:00
inline static Turntable *first() { return _firstTurntable; }
static bool printAll(Print *stream) {
bool gotOne = false;
for (Turntable *tto = _firstTurntable; tto != 0; tto = tto->_nextTurntable)
if (!tto->isHidden()) {
gotOne = true;
StringFormatter::send(stream, F("<i %d %d>\n"), tto->getId(), tto->getPosition());
}
return gotOne;
}
};
/*************************************************************************************
* EXTTTurntable - EX-Turntable device.
*
*************************************************************************************/
class EXTTTurntable : public Turntable {
private:
// EXTTTurntableData contains device specific data
struct EXTTTurntableData {
VPIN vpin;
} _exttTurntableData;
// Constructor
EXTTTurntable(uint16_t id, VPIN vpin);
2023-08-20 11:26:04 +02:00
public:
// Create function
static Turntable *create(uint16_t id, VPIN vpin);
2023-08-20 11:26:04 +02:00
void print(Print *stream) override;
VPIN getVpin() const { return _exttTurntableData.vpin; }
2023-08-20 11:26:04 +02:00
protected:
// EX-Turntable specific code for setting position
bool setPositionInternal(uint8_t position, uint8_t activity) override;
};
/*************************************************************************************
* DCCTurntable - DCC accessory Turntable device.
*
*************************************************************************************/
class DCCTurntable : public Turntable {
private:
// Constructor
DCCTurntable(uint16_t id);
public:
// Create function
static Turntable *create(uint16_t id);
void print(Print *stream) override;
protected:
// DCC specific code for setting position
bool setPositionInternal(uint8_t position, uint8_t activity=0) override;
};
2023-08-20 11:26:04 +02:00
#endif
2023-08-29 11:04:45 +02:00
#endif