openMSX
|
#include <AfterCommand.hh>
Public Types | |
using | Index = uint32_t |
Public Member Functions | |
AfterCommand (Reactor &reactor, EventDistributor &eventDistributor, CommandController &commandController) | |
~AfterCommand () | |
void | execute (std::span< const TclObject > tokens, TclObject &result) override |
Execute this command. | |
std::string | help (std::span< const TclObject > tokens) const override |
Print help for this command. | |
void | tabCompletion (std::vector< std::string > &tokens) const override |
Attempt tab completion for this command. | |
Public Member Functions inherited from openmsx::Command | |
void | tabCompletion (std::vector< std::string > &tokens) const override |
Attempt tab completion for this command. | |
void | setAllowedInEmptyMachine (bool value) |
bool | isAllowedInEmptyMachine () const |
void | setToken (void *token_) |
void * | getToken () const |
template<typename... Args> | |
void | executeSubCommand (std::string_view subCmd, Args &&... args) |
Public Member Functions inherited from openmsx::CommandCompleter | |
CommandCompleter (const CommandCompleter &)=delete | |
CommandCompleter (CommandCompleter &&)=delete | |
CommandCompleter & | operator= (const CommandCompleter &)=delete |
CommandCompleter & | operator= (CommandCompleter &&)=delete |
CommandController & | getCommandController () const |
Interpreter & | getInterpreter () const final |
Public Member Functions inherited from openmsx::Completer | |
Completer (const Completer &)=delete | |
Completer (Completer &&)=delete | |
Completer & | operator= (const Completer &)=delete |
Completer & | operator= (Completer &&)=delete |
const std::string & | getName () const |
void | checkNumArgs (std::span< const TclObject > tokens, unsigned exactly, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, AtLeast atLeast, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, Between between, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, unsigned exactly, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, AtLeast atLeast, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (std::span< const TclObject > tokens, Between between, Prefix prefix, const char *errMessage) const |
template<typename ITER > | |
NEVER_INLINE std::vector< std::string_view > | filter (std::string_view str, ITER begin, ITER end, bool caseSensitive) |
Friends | |
class | AfterCmd |
class | AfterTimedCmd |
class | AfterRealTimeCmd |
Additional Inherited Members | |
Static Public Member Functions inherited from openmsx::Completer | |
template<typename ITER > | |
static void | completeString (std::vector< std::string > &tokens, ITER begin, ITER end, bool caseSensitive=true) |
template<typename RANGE > | |
static void | completeString (std::vector< std::string > &tokens, RANGE &&possibleValues, bool caseSensitive=true) |
template<typename RANGE > | |
static void | completeFileName (std::vector< std::string > &tokens, const FileContext &context, const RANGE &extra) |
static void | completeFileName (std::vector< std::string > &tokens, const FileContext &context) |
static std::vector< std::string > | formatListInColumns (std::span< const std::string_view > input) |
static void | setOutput (InterpreterOutput *output_) |
Protected Member Functions inherited from openmsx::Command | |
Command (CommandController &controller, std::string_view name) | |
~Command () | |
Protected Member Functions inherited from openmsx::CommandCompleter | |
CommandCompleter (CommandController &controller, std::string_view name) | |
~CommandCompleter () | |
GlobalCommandController & | getGlobalCommandController () const |
CliComm & | getCliComm () const |
Protected Member Functions inherited from openmsx::Completer | |
template<typename String > requires (!std::same_as<Completer, std::remove_cvref_t<String>>) | |
Completer (String &&name_) | |
~Completer ()=default | |
Definition at line 17 of file AfterCommand.hh.
using openmsx::AfterCommand::Index = uint32_t |
Definition at line 20 of file AfterCommand.hh.
openmsx::AfterCommand::AfterCommand | ( | Reactor & | reactor, |
EventDistributor & | eventDistributor, | ||
CommandController & | commandController | ||
) |
Definition at line 122 of file AfterCommand.cc.
References openmsx::AFTER_TIMED, openmsx::BOOT, openmsx::BREAK, openmsx::FINISH_FRAME, openmsx::JOY_AXIS_MOTION, openmsx::JOY_BUTTON_DOWN, openmsx::JOY_BUTTON_UP, openmsx::JOY_HAT, openmsx::KEY_DOWN, openmsx::KEY_UP, openmsx::MACHINE_LOADED, openmsx::MOUSE_BUTTON_DOWN, openmsx::MOUSE_BUTTON_UP, openmsx::MOUSE_MOTION, openmsx::MOUSE_WHEEL, openmsx::QUIT, and openmsx::EventDistributor::registerEventListener().
openmsx::AfterCommand::~AfterCommand | ( | ) |
Definition at line 140 of file AfterCommand.cc.
References openmsx::AFTER_TIMED, openmsx::BOOT, openmsx::BREAK, openmsx::FINISH_FRAME, openmsx::JOY_AXIS_MOTION, openmsx::JOY_BUTTON_DOWN, openmsx::JOY_BUTTON_UP, openmsx::JOY_HAT, openmsx::KEY_DOWN, openmsx::KEY_UP, openmsx::MACHINE_LOADED, openmsx::MOUSE_BUTTON_DOWN, openmsx::MOUSE_BUTTON_UP, openmsx::MOUSE_MOTION, openmsx::MOUSE_WHEEL, openmsx::QUIT, and openmsx::EventDistributor::unregisterEventListener().
|
overridevirtual |
Execute this command.
tokens | Tokenized command line; tokens[0] is the command itself. |
result | The result of the command must be assigned to this parameter. |
CommandException | Thrown when there was an error while executing this command. |
Implements openmsx::Command.
Definition at line 155 of file AfterCommand.cc.
References openmsx::BOOT, openmsx::BREAK, openmsx::InputEventFactory::createInputEvent(), openmsx::FINISH_FRAME, openmsx::CommandCompleter::getInterpreter(), openmsx::MACHINE_LOADED, and openmsx::QUIT.
|
overridevirtual |
Print help for this command.
Implements openmsx::Completer.
Definition at line 344 of file AfterCommand.cc.
|
overridevirtual |
Attempt tab completion for this command.
tokens | Tokenized command line; tokens[0] is the command itself. The last token is incomplete, this method tries to complete it. |
Implements openmsx::Completer.
Definition at line 357 of file AfterCommand.cc.
References openmsx::Completer::completeString().
|
friend |
Definition at line 54 of file AfterCommand.hh.
|
friend |
Definition at line 56 of file AfterCommand.hh.
|
friend |
Definition at line 55 of file AfterCommand.hh.