2014-04-13 21:35:34 -04:00
|
|
|
//****************************************************************************
|
|
|
|
// Product: Transition to History Example
|
2015-12-31 14:56:37 -05:00
|
|
|
// Last Updated for Version: 5.6.0
|
|
|
|
// Date of the Last Update: 2015-12-26
|
2014-04-13 21:35:34 -04:00
|
|
|
//
|
|
|
|
// Q u a n t u m L e a P s
|
|
|
|
// ---------------------------
|
|
|
|
// innovating embedded systems
|
|
|
|
//
|
2015-12-31 14:56:37 -05:00
|
|
|
// Copyright (C) Quantum Leaps, LLC. All rights reserved.
|
2014-04-13 21:35:34 -04:00
|
|
|
//
|
|
|
|
// This program is open source 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.
|
|
|
|
//
|
|
|
|
// Alternatively, this program may be distributed and modified under the
|
|
|
|
// terms of Quantum Leaps commercial licenses, which expressly supersede
|
|
|
|
// the GNU General Public License and are specifically designed for
|
|
|
|
// licensees interested in retaining the proprietary status of their code.
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
//
|
|
|
|
// Contact information:
|
2015-12-31 14:56:37 -05:00
|
|
|
// http://www.state-machine.com
|
|
|
|
// mailto:info@state-machine.com
|
2014-04-13 21:35:34 -04:00
|
|
|
//****************************************************************************
|
|
|
|
#include "qep_port.h"
|
|
|
|
#include "qassert.h"
|
|
|
|
#include "history.h"
|
|
|
|
|
|
|
|
#include <conio.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
//............................................................................
|
|
|
|
int main() {
|
|
|
|
printf("History state pattern\nQEP version: %s\n"
|
|
|
|
"Press 'o' to OPEN the door\n"
|
|
|
|
"Press 'c' to CLOSE the door\n"
|
|
|
|
"Press 't' to start TOASTING\n"
|
|
|
|
"Press 'b' to start BAKING\n"
|
|
|
|
"Press 'f' to turn the oven OFF\n"
|
|
|
|
"Press ESC to quit...\n",
|
|
|
|
QP::QEP::getVersion());
|
|
|
|
|
|
|
|
// instantiate the ToastOven HSM and trigger the initial transition
|
|
|
|
the_oven->init();
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
uint8_t c = (uint8_t)_getch(); // read one character from the console
|
|
|
|
printf("%c: ", c);
|
|
|
|
|
|
|
|
QP::QEvt e;
|
|
|
|
switch (c) {
|
|
|
|
case 'o': e.sig = OPEN_SIG; break;
|
|
|
|
case 'c': e.sig = CLOSE_SIG; break;
|
|
|
|
case 't': e.sig = TOAST_SIG; break;
|
|
|
|
case 'b': e.sig = BAKE_SIG; break;
|
|
|
|
case 'f': e.sig = OFF_SIG; break;
|
|
|
|
case 0x1B: e.sig = TERMINATE_SIG; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// dispatch the event into the state machine
|
|
|
|
the_oven->dispatch(&e);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//............................................................................
|
2015-12-31 14:56:37 -05:00
|
|
|
extern "C" void Q_onAssert(char const * const file, int line) {
|
2014-04-13 21:35:34 -04:00
|
|
|
fprintf(stderr, "Assertion failed in %s, line %d", file, line);
|
|
|
|
_exit(-1);
|
|
|
|
}
|