[4838] | 1 | /*! |
---|
[5068] | 2 | * @file shell.h |
---|
| 3 | * Definition of a on-screen-shell |
---|
[3245] | 4 | */ |
---|
[1853] | 5 | |
---|
[5068] | 6 | #ifndef _SHELL_H |
---|
| 7 | #define _SHELL_H |
---|
[1853] | 8 | |
---|
[5068] | 9 | #include "element_2d.h" |
---|
[5069] | 10 | #include "event_listener.h" |
---|
[1853] | 11 | |
---|
[5068] | 12 | #include <stdarg.h> |
---|
| 13 | |
---|
[5127] | 14 | #define SHELL_BUFFER_SIZE 16384 //!< The Size of the input-buffers (should be large enough to carry any kind of input) |
---|
| 15 | |
---|
[4838] | 16 | // FORWARD DECLARATION |
---|
[5068] | 17 | class Text; |
---|
[5141] | 18 | class ShellCommandBase; |
---|
[5068] | 19 | template<class T> class tList; |
---|
[5118] | 20 | template<class T> class tIterator; |
---|
[3543] | 21 | |
---|
[5068] | 22 | //! A class that is able to redirect all output to a openGL-Shell, and that one can use to input some commands |
---|
| 23 | /** |
---|
| 24 | * the major idea is, that all the Output can be redirected to the Shell, |
---|
| 25 | * and does not have to be displayed to the opening Shell, this is good, |
---|
| 26 | * for developers using Windows, where all output is otherwise redirected |
---|
| 27 | * to stdout.txt |
---|
| 28 | * |
---|
| 29 | * Furthermore the Shell should enable us, to input some simple commands |
---|
| 30 | * Each Class can tell check itself in to the Shell, and listen for commands. |
---|
| 31 | * |
---|
| 32 | * @todo implement what is written above :/ |
---|
| 33 | */ |
---|
[5069] | 34 | class Shell : public Element2D, public EventListener { |
---|
[3543] | 35 | |
---|
[5068] | 36 | public: |
---|
| 37 | virtual ~Shell(); |
---|
| 38 | /** @returns a Pointer to the only object of this Class */ |
---|
[5072] | 39 | inline static Shell* getInstance() { if (!Shell::singletonRef) Shell::singletonRef = new Shell(); return Shell::singletonRef; }; |
---|
[2036] | 40 | |
---|
[5145] | 41 | void testI (int i); |
---|
| 42 | void testS (const char* s); |
---|
| 43 | |
---|
[5113] | 44 | void activate(); |
---|
| 45 | void deactivate(); |
---|
[1853] | 46 | |
---|
[5113] | 47 | void setTextSize(unsigned int textSize, unsigned int lineSpacing = 1); |
---|
| 48 | void rebuildText(); |
---|
[3245] | 49 | |
---|
[5068] | 50 | // BUFFER // |
---|
[5113] | 51 | void setBufferSize(unsigned int bufferSize) { this->bufferSize = bufferSize; }; |
---|
| 52 | void setBufferDisplaySize(unsigned int bufferDisplaySize); |
---|
[5068] | 53 | void flushBuffers(); |
---|
[5075] | 54 | static bool addBufferLineStatic(const char* line, ...); |
---|
| 55 | void addBufferLine(const char* line, va_list arg); |
---|
[5118] | 56 | void printToDisplayBuffer(const char* text); |
---|
[5068] | 57 | void moveBuffer(int lineCount); |
---|
| 58 | const char* getBufferLine(unsigned int lineNumber); |
---|
[3245] | 59 | |
---|
[5069] | 60 | // InputLine |
---|
[5068] | 61 | void flushInputLine(); |
---|
| 62 | void addCharacter(char character); |
---|
| 63 | void addCharacters(const char* characters); |
---|
| 64 | void removeCharacters(unsigned int characterCount = 1); |
---|
[5096] | 65 | bool executeCommand(); |
---|
[5068] | 66 | |
---|
[5130] | 67 | void clear(); |
---|
| 68 | |
---|
[5097] | 69 | void setRepeatDelay(float repeatDelay, float repeatRate); |
---|
[5068] | 70 | |
---|
[5069] | 71 | // EventListener |
---|
| 72 | virtual void process(const Event &event); |
---|
| 73 | |
---|
[5068] | 74 | // Element2D-functions |
---|
[5095] | 75 | void tick(float dt); |
---|
[5068] | 76 | virtual void draw() const; |
---|
| 77 | |
---|
[5119] | 78 | void help() const; |
---|
[5068] | 79 | void debug() const; |
---|
| 80 | |
---|
| 81 | private: |
---|
| 82 | bool autoComplete(); |
---|
[5113] | 83 | bool classComplete(const char* classBegin); |
---|
| 84 | bool objectComplete(const char* objectBegin, long classID); |
---|
| 85 | bool functionComplete(const char* functionBegin); |
---|
[5068] | 86 | |
---|
[5113] | 87 | bool generalComplete(const tList<const char>* stringList, const char* begin, const char* displayAs = "%s", const char* addBack = NULL, const char* addFront = NULL); |
---|
[5068] | 88 | |
---|
[5129] | 89 | const tList<const char>* createCompleteList(const tList<const char>* inputList, const char* classNameBegin); |
---|
| 90 | const tList<const char>* createCompleteList(const tList<BaseObject>* inputList, const char* classNameBegin); |
---|
[5141] | 91 | const tList<const char>* createCompleteList(const tList<ShellCommandBase>* inputList, const char* classNameBegin); |
---|
[5113] | 92 | |
---|
[5120] | 93 | // helpers // |
---|
| 94 | Vector calculateLinePosition(unsigned int lineNumber); |
---|
[5113] | 95 | |
---|
[5120] | 96 | |
---|
[5068] | 97 | private: |
---|
| 98 | Shell(); |
---|
[5129] | 99 | static Shell* singletonRef; //!< The singleton-reference to the only memeber of this class. |
---|
[5068] | 100 | |
---|
[5129] | 101 | unsigned int bufferSize; //!< The Size of the buffer |
---|
| 102 | unsigned int bufferDisplaySize; //!< The Size of the Display-buffer, in lines (not in characters) |
---|
[5068] | 103 | |
---|
[5129] | 104 | Text* inputLineText; //!< The inputLine of the Shell |
---|
| 105 | char* inputLine; //!< the Char-Array of the Buffer |
---|
| 106 | float repeatRate; //!< The Repeat-Delay. |
---|
| 107 | float repeatDelay; //!< The delay of the first Character of a given Character. |
---|
| 108 | float delayed; //!< how much of the delay is remaining. |
---|
| 109 | int pressedKey; //!< the pressed key that will be repeated. |
---|
[5068] | 110 | |
---|
[5129] | 111 | tList<char>* buffer; //!< A list of stored char-arrays(strings) to store the history |
---|
| 112 | tIterator<char>* bufferIterator; //!< An iterator for the Shells main buffer. |
---|
[5068] | 113 | |
---|
[5129] | 114 | tList<char>* inputHistory; //!< The history of given commands. |
---|
[5075] | 115 | |
---|
[5129] | 116 | Text** bufferText; //!< A list of stored bufferTexts for the display of the buffer |
---|
| 117 | unsigned int textSize; //!< The size of the text. |
---|
| 118 | unsigned int lineSpacing; //!< The Spacing between lines. |
---|
| 119 | unsigned int shellHeight; //!< The hight of the Shell in Pixels |
---|
| 120 | bool bActive; //!< if the shell is active; |
---|
[5113] | 121 | |
---|
[5129] | 122 | char bufferArray[SHELL_BUFFER_SIZE]; //!< a BUFFER for fast writing |
---|
| 123 | char keepBufferArray[SHELL_BUFFER_SIZE]; //!< a BUFFER to have multi-non-newLine commands be copied into the shell. |
---|
| 124 | bool keepBuffer; |
---|
| 125 | |
---|
[5113] | 126 | // completion |
---|
[5129] | 127 | tList<const char>* completionList; //!< A list of completions, that are io. |
---|
[1853] | 128 | }; |
---|
| 129 | |
---|
[5068] | 130 | #endif /* _SHELL_H */ |
---|