/*************************************************************************** BionxControl Copyright © 2025 christoph holzheuer christoph.holzheuer@gmail.com Using: BigXionFlasher USB V 0.2.4 rev. 97 © 2011-2013 by Thomas Koenig @see www.bigxionflasher.org Bionx Bike Info © 2018 Thorsten Schmidt (tschmidt@ts-soft.de) @see www.ts-soft.de mhs_can_drv.c 3.00 © 2011 - 2015 by MHS-Elektronik GmbH & Co. KG, Germany Demlehner Klaus, info@mhs-elektronik.de @see www.mhs-elektronik.de 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 3 of the License, or (at your option) any later version. @see https://github.com/bikemike/bionx-bikeinfo ***************************************************************************/ #ifndef BCDATAITEM_H #define BCDATAITEM_H #include #include #include #include #include /* Werte haben verschiedene Längen (1,2 und 4 Byte) und werder auf unterschiedliche Art und Weise ausgelesen und geschrieben (Siehe ODO). Sin können also Wert-Typen zugeordnet werden. Ein Werttyp lässet über eine ID identifizieren, die mit der phyikalische Einheit des Wertes überschneiden kann, aber nicht muss: : Km/h, kWh, ODO ... bilden eigene Typen, SoC, Assistence Level sind auch eigene Typen, Teilen sich jedoch die Einheit '%'. Das ist natürlich annalog zu den ItemTypes: - ein Value hat einen ValueType, der bestimmt folgendes: - long or short or quad - unit (mm, km/h, odo ... ) - */ class BCAbstractTransmitter { public: // virtual uint32_t readRawValue( BCDevice::ID deviceID_, BC::ID registerID_ ) const = 0; virtual void writeRawValue( BCDevice::ID deviceID_, BC::ID registerID_, uint8_t value_ ) const = 0; }; class BCDataItem; using optDouble = std::optional; struct BCDataType { Q_GADGET public: BCDataType(); BCDataType( QString unitLabel_, double factor_= 1.0, optDouble min_=std::nullopt, optDouble max_= std::nullopt ); QString unitLabel; double factor; optDouble min; optDouble max; virtual double readValue( const BCAbstractTransmitter& transmitter ) = 0; virtual void writeValue( const BCAbstractTransmitter& transmitter ) = 0; }; struct BCDataTypeByte : public BCDataType { /* double readValue( const BCAbstractTransmitter& transmitter, const BCDA ) override { return 0; } void writeValue( const BCAbstractTransmitter& transmitter ) override; { } */ }; struct ODO : public BCDataType { double readValue( const BCAbstractTransmitter& transmitter ) override { return 0; } void writeValue( const BCAbstractTransmitter& transmitter ) override; { } }; struct Long : public BCDataType {}; struct Fitz : public BCDataType {}; struct Fatz : public BCDataType {}; using BCTypeVariant = std::variant; // really needed? //using BCDataTypeCRef = std::optional>; class BCDataItem { public: BCDataItem( const BCDataType* valueType_, BCDevice::ID deviceID_, BC::ID registerID_ ); void readRawValueX( const BCAbstractTransmitter& transmitter ) const; void writeRawValueX( const BCAbstractTransmitter& transmitter ) const; // void reset() //const BCDataType& valueType; //BCDataTypeCRef valueType; const BCDataType* valueType{}; BCDevice::ID deviceID{BCDevice::ID::Invalid}; BC::ID registerID{BC::ID::Invalid}; int rowInModel{-1}; QString label; QVariant value; QVariant defaultValue; bool inSync{false}; bool readOnly{false}; mutable std::optional rawValue; }; Q_DECLARE_METATYPE(BCDataItem*) using BCDataList = QVector; // abbreviations: // SOC = State Of Charge // LMD = Last Measured Discharge // NIP = ? /* Needed ? #include template constexpr auto to_u(E e) noexcept { return static_cast>(e); } */ #endif // BCDATAITEM_H