openMSX
|
Public Member Functions | |
DiskCommand (CommandController &commandController, DiskChanger &diskChanger) | |
void | execute (span< const TclObject > tokens, TclObject &result) override |
Execute this command. More... | |
string | help (const vector< string > &tokens) const override |
Print help for this command. More... | |
void | tabCompletion (vector< string > &tokens) const override |
Attempt tab completion for this command. More... | |
bool | needRecord (span< const TclObject > tokens) const |
![]() | |
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) |
![]() | |
CommandCompleter (const CommandCompleter &)=delete | |
CommandCompleter & | operator= (const CommandCompleter &)=delete |
CommandController & | getCommandController () const |
Interpreter & | getInterpreter () const final |
![]() | |
const std::string & | getName () const |
void | checkNumArgs (span< const TclObject > tokens, unsigned exactly, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, AtLeast atLeast, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, Between between, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, unsigned exactly, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, AtLeast atLeast, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (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) |
Additional Inherited Members | |
![]() | |
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, const 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 (const std::vector< std::string_view > &input) |
static void | setOutput (InterpreterOutput *output_) |
![]() | |
Command (CommandController &controller, std::string_view name) | |
~Command () | |
![]() | |
CommandCompleter (CommandController &controller, std::string_view name) | |
~CommandCompleter () | |
GlobalCommandController & | getGlobalCommandController () const |
CliComm & | getCliComm () const |
![]() | |
Completer (std::string_view name) | |
~Completer ()=default | |
Definition at line 36 of file DiskChanger.cc.
openmsx::DiskCommand::DiskCommand | ( | CommandController & | commandController, |
DiskChanger & | diskChanger | ||
) |
Definition at line 203 of file DiskChanger.cc.
|
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 210 of file DiskChanger.cc.
References openmsx::TclObject::addListElement(), openmsx::DiskChanger::getDiskName(), openmsx::DiskChanger::getDriveName(), openmsx::CommandCompleter::getInterpreter(), openmsx::TclObject::getListLength(), openmsx::DiskName::getResolved(), span< ElementType, Extent >::size(), and tmpStrCat().
|
overridevirtual |
Print help for this command.
Implements openmsx::Completer.
Definition at line 278 of file DiskChanger.cc.
References openmsx::DiskChanger::getDriveName(), and strCat().
Definition at line 302 of file DiskChanger.cc.
References span< ElementType, Extent >::size().
|
overridevirtual |
Attempt tab completion for this command.
Default implementation does nothing.
tokens | Tokenized command line; tokens[0] is the command itself. The last token is incomplete, this method tries to complete it. |
Reimplemented from openmsx::Command.
Definition at line 291 of file DiskChanger.cc.
References openmsx::Completer::completeFileName(), and openmsx::userFileContext().