X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fconsole.hpp;h=83ea2fe070bdb9b1eadece012782afc993233a60;hb=ad961cb86ef28feed73e1f524fda692ed58d4e5e;hp=a128d607dbe0845188efa1cd89650ef105ac5b30;hpb=dea5a4a5f827057e10497bd98967ca0d906990f0;p=supertux.git diff --git a/src/console.hpp b/src/console.hpp index a128d607d..83ea2fe07 100644 --- a/src/console.hpp +++ b/src/console.hpp @@ -35,7 +35,7 @@ class DrawingContext; class Surface; class Font; -class Console +class Console { public: Console(); @@ -55,15 +55,12 @@ public: void draw(DrawingContext& context); /**< draw the console in a DrawingContext */ void update(float elapsed_time); - + void show(); /**< display the console */ void hide(); /**< hide the console */ void toggle(); /**< display the console if hidden, hide otherwise */ bool hasFocus(); /**< true if characters should be sent to the console instead of their normal target */ - void registerCommand(std::string command, ConsoleCommandReceiver* ccr); /**< associate command with the given CCR */ - void unregisterCommand(std::string command, ConsoleCommandReceiver* ccr); /**< dissociate command and CCR */ - void unregisterCommands(ConsoleCommandReceiver* ccr); /**< dissociate all commands of given CCR */ template static bool string_is(std::string s) { std::istringstream iss(s); @@ -89,14 +86,13 @@ private: std::list history; /**< command history. New lines get added to back. */ std::list::iterator history_position; /**< item of command history that is currently displayed */ std::list lines; /**< backbuffer of lines sent to the console. New lines get added to front. */ - std::map > commands; /**< map of console commands and a list of associated ConsoleCommandReceivers */ - + std::auto_ptr background; /**< console background image */ std::auto_ptr background2; /**< second, moving console background image */ HSQUIRRELVM vm; /**< squirrel thread for the console (with custom roottable) */ HSQOBJECT vm_object; - + int backgroundOffset; /**< current offset of scrolling background image */ float height; /**< height of the console in px */ float alpha; @@ -113,23 +109,23 @@ private: void addLines(std::string s); /**< display a string of (potentially) multiple lines in the console */ void addLine(std::string s); /**< display a line in the console */ void parse(std::string s); /**< react to a given command */ - + /** ready a virtual machine instance, creating a new thread and loading default .nut files if needed */ void ready_vm(); /** execute squirrel script and output result */ void execute_script(const std::string& s); - + bool consoleCommand(std::string command, std::vector arguments); /**< process internal command; return false if command was unknown, true otherwise */ friend class ConsoleStreamBuffer; void flush(ConsoleStreamBuffer* buffer); /**< act upon changes in a ConsoleStreamBuffer */ }; -class ConsoleStreamBuffer : public std::stringbuf +class ConsoleStreamBuffer : public std::stringbuf { public: - int sync() + int sync() { int result = std::stringbuf::sync(); if(Console::instance != NULL) @@ -138,19 +134,4 @@ class ConsoleStreamBuffer : public std::stringbuf } }; -class ConsoleCommandReceiver -{ -public: - virtual ~ConsoleCommandReceiver() - { - Console::instance->unregisterCommands(this); - } - - /** - * callback from Console; return false if command was unknown, - * true otherwise - */ - virtual bool consoleCommand(std::string command, std::vector arguments) = 0; -}; - #endif