2021-08-03 23:12:25 +02:00
|
|
|
/*
|
|
|
|
* © 2020, Chris Harlow. 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 RMFT2_H
|
|
|
|
#define RMFT2_H
|
|
|
|
#include "FSH.h"
|
|
|
|
#include "IODevice.h"
|
|
|
|
|
|
|
|
// The following are the operation codes (or instructions) for a kind of virtual machine.
|
2022-01-03 13:43:06 +01:00
|
|
|
// Each instruction is normally 3 bytes long with an operation code followed by a parameter.
|
2021-08-03 23:12:25 +02:00
|
|
|
// In cases where more than one parameter is required, the first parameter is followed by one
|
|
|
|
// or more OPCODE_PAD instructions with the subsequent parameters. This wastes a byte but makes
|
|
|
|
// searching easier as a parameter can never be confused with an opcode.
|
|
|
|
//
|
|
|
|
enum OPCODE : byte {OPCODE_THROW,OPCODE_CLOSE,
|
|
|
|
OPCODE_FWD,OPCODE_REV,OPCODE_SPEED,OPCODE_INVERT_DIRECTION,
|
|
|
|
OPCODE_RESERVE,OPCODE_FREE,
|
2021-11-19 14:00:21 +01:00
|
|
|
OPCODE_AT,OPCODE_AFTER,OPCODE_AUTOSTART,
|
2022-01-03 11:15:10 +01:00
|
|
|
OPCODE_ATTIMEOUT1,OPCODE_ATTIMEOUT2,OPCODE_IFTIMEOUT,
|
2021-08-03 23:12:25 +02:00
|
|
|
OPCODE_LATCH,OPCODE_UNLATCH,OPCODE_SET,OPCODE_RESET,
|
|
|
|
OPCODE_IF,OPCODE_IFNOT,OPCODE_ENDIF,OPCODE_IFRANDOM,OPCODE_IFRESERVE,
|
2022-01-02 20:41:57 +01:00
|
|
|
OPCODE_IFCLOSED, OPCODE_IFTHROWN,OPCODE_ELSE,
|
2022-01-03 20:15:44 +01:00
|
|
|
OPCODE_DELAY,OPCODE_DELAYMINS,OPCODE_DELAYMS,OPCODE_RANDWAIT,
|
2021-09-06 13:27:21 +02:00
|
|
|
OPCODE_FON,OPCODE_FOFF,OPCODE_XFON,OPCODE_XFOFF,
|
2021-11-24 12:56:55 +01:00
|
|
|
OPCODE_RED,OPCODE_GREEN,OPCODE_AMBER,OPCODE_DRIVE,
|
2021-08-28 18:39:48 +02:00
|
|
|
OPCODE_SERVO,OPCODE_SIGNAL,OPCODE_TURNOUT,OPCODE_WAITFOR,
|
2021-08-03 23:12:25 +02:00
|
|
|
OPCODE_PAD,OPCODE_FOLLOW,OPCODE_CALL,OPCODE_RETURN,
|
|
|
|
OPCODE_JOIN,OPCODE_UNJOIN,OPCODE_READ_LOCO1,OPCODE_READ_LOCO2,OPCODE_POM,
|
2021-08-15 18:17:41 +02:00
|
|
|
OPCODE_START,OPCODE_SETLOCO,OPCODE_SENDLOCO,
|
2021-09-16 17:47:47 +02:00
|
|
|
OPCODE_PAUSE, OPCODE_RESUME,OPCODE_POWEROFF,
|
2021-08-10 17:32:23 +02:00
|
|
|
OPCODE_ONCLOSE, OPCODE_ONTHROW, OPCODE_SERVOTURNOUT, OPCODE_PINTURNOUT,
|
2021-11-22 12:10:26 +01:00
|
|
|
OPCODE_PRINT,OPCODE_DCCACTIVATE,
|
2021-11-30 14:52:22 +01:00
|
|
|
OPCODE_ONACTIVATE,OPCODE_ONDEACTIVATE,OPCODE_IFGTE,OPCODE_IFLT,
|
2021-12-26 19:24:04 +01:00
|
|
|
OPCODE_ROSTER,
|
2021-08-03 23:12:25 +02:00
|
|
|
OPCODE_ROUTE,OPCODE_AUTOMATION,OPCODE_SEQUENCE,OPCODE_ENDTASK,OPCODE_ENDEXRAIL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Flag bits for status of hardware and TPL
|
2022-01-03 13:43:06 +01:00
|
|
|
static const byte SECTION_FLAG = 0x80;
|
|
|
|
static const byte LATCH_FLAG = 0x40;
|
|
|
|
static const byte TASK_FLAG = 0x20;
|
|
|
|
static const byte SPARE_FLAG = 0x10;
|
|
|
|
static const byte COUNTER_MASK= 0x0F;
|
2021-08-03 23:12:25 +02:00
|
|
|
|
|
|
|
static const byte MAX_STACK_DEPTH=4;
|
|
|
|
|
|
|
|
static const short MAX_FLAGS=256;
|
|
|
|
#define FLAGOVERFLOW(x) x>=MAX_FLAGS
|
|
|
|
|
2021-11-18 11:42:54 +01:00
|
|
|
class LookList {
|
|
|
|
public:
|
2021-11-18 15:57:09 +01:00
|
|
|
LookList(int16_t size);
|
|
|
|
void add(int16_t lookup, int16_t result);
|
|
|
|
int16_t find(int16_t value);
|
|
|
|
private:
|
2021-11-18 11:42:54 +01:00
|
|
|
int16_t m_size;
|
|
|
|
int16_t m_loaded;
|
|
|
|
int16_t * m_lookupArray;
|
2021-11-18 15:57:09 +01:00
|
|
|
int16_t * m_resultArray;
|
2021-11-18 11:42:54 +01:00
|
|
|
};
|
|
|
|
|
2021-08-03 23:12:25 +02:00
|
|
|
class RMFT2 {
|
|
|
|
public:
|
|
|
|
static void begin();
|
|
|
|
static void loop();
|
|
|
|
RMFT2(int progCounter);
|
|
|
|
RMFT2(int route, uint16_t cab);
|
|
|
|
~RMFT2();
|
2021-08-21 14:17:14 +02:00
|
|
|
static void readLocoCallback(int16_t cv);
|
2021-08-03 23:12:25 +02:00
|
|
|
static void emitWithrottleRouteList(Print* stream);
|
|
|
|
static void createNewTask(int route, uint16_t cab);
|
2021-09-03 23:39:13 +02:00
|
|
|
static void turnoutEvent(int16_t id, bool closed);
|
2021-11-27 12:29:26 +01:00
|
|
|
static void activateEvent(int16_t addr, bool active);
|
|
|
|
static void emitTurnoutDescription(Print* stream,int16_t id);
|
2021-12-26 19:24:04 +01:00
|
|
|
static const byte rosterNameCount;
|
|
|
|
static void emitWithrottleRoster(Print * stream);
|
|
|
|
static const FSH * getRosterFunctions(int16_t cabid);
|
2021-08-03 23:12:25 +02:00
|
|
|
private:
|
2021-08-21 14:17:14 +02:00
|
|
|
static void ComandFilter(Print * stream, byte & opcode, byte & paramCount, int16_t p[]);
|
|
|
|
static bool parseSlash(Print * stream, byte & paramCount, int16_t p[]) ;
|
2021-08-03 23:12:25 +02:00
|
|
|
static void streamFlags(Print* stream);
|
|
|
|
static void setFlag(VPIN id,byte onMask, byte OffMask=0);
|
2022-01-03 13:43:06 +01:00
|
|
|
static bool getFlag(VPIN id,byte mask);
|
2021-08-21 14:17:14 +02:00
|
|
|
static int16_t progtrackLocoId;
|
2021-08-03 23:12:25 +02:00
|
|
|
static void doSignal(VPIN id,bool red, bool amber, bool green);
|
2021-08-20 20:18:30 +02:00
|
|
|
static void emitRouteDescription(Print * stream, char type, int id, const FSH * description);
|
|
|
|
static void emitWithrottleDescriptions(Print * stream);
|
|
|
|
|
2021-08-03 23:12:25 +02:00
|
|
|
static RMFT2 * loopTask;
|
|
|
|
static RMFT2 * pausingTask;
|
|
|
|
void delayMe(long millisecs);
|
|
|
|
void driveLoco(byte speedo);
|
2021-09-04 11:38:38 +02:00
|
|
|
bool readSensor(uint16_t sensorId);
|
2021-08-03 23:12:25 +02:00
|
|
|
bool skipIfBlock();
|
|
|
|
bool readLoco();
|
|
|
|
void loop2();
|
|
|
|
void kill(const FSH * reason=NULL,int operand=0);
|
2021-08-10 17:32:23 +02:00
|
|
|
void printMessage(uint16_t id); // Built by RMFTMacros.h
|
|
|
|
void printMessage2(const FSH * msg);
|
2021-11-27 12:29:26 +01:00
|
|
|
|
2021-08-03 23:12:25 +02:00
|
|
|
|
|
|
|
static bool diag;
|
|
|
|
static const FLASH byte RouteCode[];
|
2022-01-03 13:43:06 +01:00
|
|
|
static const FLASH int16_t SignalDefinitions[];
|
2021-08-03 23:12:25 +02:00
|
|
|
static byte flags[MAX_FLAGS];
|
2021-11-18 11:42:54 +01:00
|
|
|
static LookList * sequenceLookup;
|
|
|
|
static LookList * onThrowLookup;
|
|
|
|
static LookList * onCloseLookup;
|
2021-11-25 12:36:05 +01:00
|
|
|
static LookList * onActivateLookup;
|
|
|
|
static LookList * onDeactivateLookup;
|
2021-11-18 11:42:54 +01:00
|
|
|
|
2021-08-16 00:15:02 +02:00
|
|
|
// Local variables - exist for each instance/task
|
2021-08-03 23:12:25 +02:00
|
|
|
RMFT2 *next; // loop chain
|
|
|
|
int progCounter; // Byte offset of next route opcode in ROUTES table
|
|
|
|
unsigned long delayStart; // Used by opcodes that must be recalled before completing
|
|
|
|
unsigned long delayTime;
|
2022-01-03 11:15:10 +01:00
|
|
|
union {
|
|
|
|
unsigned long waitAfter; // Used by OPCODE_AFTER
|
|
|
|
unsigned long timeoutStart; // Used by OPCODE_ATTIMEOUT
|
|
|
|
};
|
|
|
|
bool timeoutFlag;
|
2021-08-16 00:15:02 +02:00
|
|
|
byte taskId;
|
|
|
|
|
2021-09-04 11:38:38 +02:00
|
|
|
uint16_t loco;
|
2021-08-03 23:12:25 +02:00
|
|
|
bool forward;
|
|
|
|
bool invert;
|
2021-09-04 11:38:38 +02:00
|
|
|
byte speedo;
|
2021-09-03 23:39:13 +02:00
|
|
|
int16_t onTurnoutId;
|
2021-11-25 12:36:05 +01:00
|
|
|
int16_t onActivateAddr;
|
2021-08-03 23:12:25 +02:00
|
|
|
byte stackDepth;
|
|
|
|
int callStack[MAX_STACK_DEPTH];
|
|
|
|
};
|
|
|
|
#endif
|