Based on Terminal lib from Simon Ford, some adds

Fork of TerminalPlus by Max Scordamaglia

Committer:
MaxScorda
Date:
Wed Sep 16 00:08:12 2015 +0000
Revision:
6:f8c90e147000
Parent:
5:d045e3561533
Child:
7:80096ab72764
Color functions, layout ok

Who changed what in which revision?

UserRevisionLine numberNew contents of line
simon 1:96ae39e58792 1 /* mbed Terminal Library, for ANSI/VT200 Terminals and ecape codes
simon 2:85184c13476c 2 * Copyright (c) 2007-2010, sford, http://mbed.org
MaxScorda 3:e72f2addfaf8 3 * Modified by Max Scordamaglia (c) 2015
simon 1:96ae39e58792 4 *
simon 1:96ae39e58792 5 * Permission is hereby granted, free of charge, to any person obtaining a copy
simon 1:96ae39e58792 6 * of this software and associated documentation files (the "Software"), to deal
simon 1:96ae39e58792 7 * in the Software without restriction, including without limitation the rights
simon 1:96ae39e58792 8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
simon 1:96ae39e58792 9 * copies of the Software, and to permit persons to whom the Software is
simon 1:96ae39e58792 10 * furnished to do so, subject to the following conditions:
simon 0:2bf27af3c759 11 *
simon 1:96ae39e58792 12 * The above copyright notice and this permission notice shall be included in
simon 1:96ae39e58792 13 * all copies or substantial portions of the Software.
simon 1:96ae39e58792 14 *
simon 1:96ae39e58792 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
simon 1:96ae39e58792 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
simon 1:96ae39e58792 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
simon 1:96ae39e58792 18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
simon 1:96ae39e58792 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
simon 1:96ae39e58792 20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
simon 1:96ae39e58792 21 * THE SOFTWARE.
simon 0:2bf27af3c759 22 */
simon 0:2bf27af3c759 23
simon 0:2bf27af3c759 24
simon 0:2bf27af3c759 25 #ifndef MBED_TERMINAL_H
simon 0:2bf27af3c759 26 #define MBED_TERMINAL_H
MaxScorda 6:f8c90e147000 27 #include "mbed.h"
MaxScorda 6:f8c90e147000 28 #include <string>
simon 0:2bf27af3c759 29
simon 2:85184c13476c 30 /** Control and display on an ANSI/VT100 Terminal
simon 2:85184c13476c 31 *
simon 2:85184c13476c 32 * This allows you to control an ANSI serial terminal
MaxScorda 5:d045e3561533 33 */
MaxScorda 5:d045e3561533 34 class Terminal : public Serial
MaxScorda 5:d045e3561533 35 {
simon 0:2bf27af3c759 36 public:
MaxScorda 5:d045e3561533 37 /** Create the Terminal interface
MaxScorda 5:d045e3561533 38 *
simon 1:96ae39e58792 39 * @param tx Serial transmit
simon 1:96ae39e58792 40 * @param rx Serial recieve
MaxScorda 5:d045e3561533 41 */
simon 0:2bf27af3c759 42 Terminal(PinName tx, PinName rx);
simon 0:2bf27af3c759 43
simon 1:96ae39e58792 44 #if DOXYGEN_ONLY
simon 1:96ae39e58792 45 /** Write a character to the terminal
simon 1:96ae39e58792 46 *
simon 1:96ae39e58792 47 * @param c The character to write to the display
simon 1:96ae39e58792 48 */
simon 1:96ae39e58792 49 int putc(int c);
simon 0:2bf27af3c759 50
simon 1:96ae39e58792 51 /** Write a formated string to the terminal
simon 1:96ae39e58792 52 *
simon 1:96ae39e58792 53 * @param format A printf-style format string, followed by the
simon 1:96ae39e58792 54 * variables to use in formating the string.
simon 1:96ae39e58792 55 */
simon 1:96ae39e58792 56 int printf(const char* format, ...);
MaxScorda 5:d045e3561533 57
simon 1:96ae39e58792 58 // also baud etc
simon 1:96ae39e58792 59 #endif
simon 1:96ae39e58792 60
simon 1:96ae39e58792 61 /** Locate to a screen column and row
simon 1:96ae39e58792 62 *
simon 1:96ae39e58792 63 * @param column The horizontal position from the left, indexed from 0
simon 1:96ae39e58792 64 * @param row The vertical position from the top, indexed from 0
simon 1:96ae39e58792 65 */
simon 1:96ae39e58792 66 void locate(int column, int row);
simon 1:96ae39e58792 67
simon 1:96ae39e58792 68 /** Clear the screen and locate to 0,0 */
simon 0:2bf27af3c759 69 void cls();
simon 1:96ae39e58792 70
MaxScorda 5:d045e3561533 71 /** Reset Screen */
MaxScorda 5:d045e3561533 72 void reset();
MaxScorda 5:d045e3561533 73
MaxScorda 5:d045e3561533 74 /** Erase line */
MaxScorda 5:d045e3561533 75 void eraseline();
MaxScorda 5:d045e3561533 76
simon 1:96ae39e58792 77 /** Set the foreground colour */
simon 0:2bf27af3c759 78 void foreground(int colour);
MaxScorda 6:f8c90e147000 79 void forgcol(int colour);
simon 1:96ae39e58792 80
simon 1:96ae39e58792 81 /** Set the background colour */
simon 0:2bf27af3c759 82 void background(int colour);
MaxScorda 6:f8c90e147000 83 void bckgcol(int color);
MaxScorda 5:d045e3561533 84
MaxScorda 5:d045e3561533 85 /*printf formattato con dimensione e posizione*/
MaxScorda 5:d045e3561533 86 void formatPrintf(char sstr[], int xx, int yy, int padb=0);
MaxScorda 5:d045e3561533 87
MaxScorda 5:d045e3561533 88 /**Draw box */
MaxScorda 4:ee2311717b80 89 void frame(int x, int y, int w, int h, int boxtype=1);
MaxScorda 3:e72f2addfaf8 90
MaxScorda 5:d045e3561533 91 /**Banner */
MaxScorda 5:d045e3561533 92 void banner();
MaxScorda 5:d045e3561533 93
MaxScorda 5:d045e3561533 94 /**Default input pos */
MaxScorda 5:d045e3561533 95 void readypos();
MaxScorda 6:f8c90e147000 96
MaxScorda 6:f8c90e147000 97 private:
MaxScorda 6:f8c90e147000 98 string padstr(string sttde, int maxlen, char fillchar);
MaxScorda 6:f8c90e147000 99 string addEOS(string sttde);
MaxScorda 6:f8c90e147000 100 char* string2char(string sttde);
MaxScorda 5:d045e3561533 101
simon 0:2bf27af3c759 102 };
simon 0:2bf27af3c759 103
simon 0:2bf27af3c759 104 #endif