mirror of
https://github.com/retro100/dosbox-wii.git
synced 2024-11-04 17:35:10 +01:00
148 lines
3.9 KiB
C++
148 lines
3.9 KiB
C++
/*
|
|
* Copyright (C) 2002-2019 The DOSBox Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
|
|
#ifndef DOSBOX_SHELL_H
|
|
#define DOSBOX_SHELL_H
|
|
|
|
#include <ctype.h>
|
|
#ifndef DOSBOX_DOSBOX_H
|
|
#include "dosbox.h"
|
|
#endif
|
|
#ifndef DOSBOX_PROGRAMS_H
|
|
#include "programs.h"
|
|
#endif
|
|
|
|
#include <string>
|
|
#include <list>
|
|
|
|
#define CMD_MAXLINE 4096
|
|
#define CMD_MAXCMDS 20
|
|
#define CMD_OLDSIZE 4096
|
|
extern Bitu call_shellstop;
|
|
class DOS_Shell;
|
|
|
|
/* first_shell is used to add and delete stuff from the shell env
|
|
* by "external" programs. (config) */
|
|
extern DOS_Shell * first_shell;
|
|
|
|
|
|
class BatchFile {
|
|
public:
|
|
BatchFile(DOS_Shell * host,char const* const resolved_name,char const* const entered_name, char const * const cmd_line);
|
|
virtual ~BatchFile();
|
|
virtual bool ReadLine(char * line);
|
|
bool Goto(char * where);
|
|
void Shift(void);
|
|
Bit16u file_handle;
|
|
Bit32u location;
|
|
bool echo;
|
|
DOS_Shell * shell;
|
|
BatchFile * prev;
|
|
CommandLine * cmd;
|
|
std::string filename;
|
|
};
|
|
|
|
class AutoexecEditor;
|
|
class DOS_Shell : public Program {
|
|
private:
|
|
friend class AutoexecEditor;
|
|
std::list<std::string> l_history, l_completion;
|
|
|
|
char *completion_start;
|
|
Bit16u completion_index;
|
|
|
|
public:
|
|
|
|
DOS_Shell();
|
|
|
|
void Run(void);
|
|
void RunInternal(void); //for command /C
|
|
/* A load of subfunctions */
|
|
void ParseLine(char * line);
|
|
Bitu GetRedirection(char *s, char **ifn, char **ofn,bool * append);
|
|
void InputCommand(char * line);
|
|
void ShowPrompt();
|
|
void DoCommand(char * cmd);
|
|
bool Execute(char * name,char * args);
|
|
/* Checks if it matches a hardware-property */
|
|
bool CheckConfig(char* cmd_in,char*line);
|
|
/* Some internal used functions */
|
|
char * Which(char * name);
|
|
/* Some supported commands */
|
|
void CMD_HELP(char * args);
|
|
void CMD_CLS(char * args);
|
|
void CMD_COPY(char * args);
|
|
void CMD_DATE(char * args);
|
|
void CMD_TIME(char * args);
|
|
void CMD_DIR(char * args);
|
|
void CMD_DELETE(char * args);
|
|
void CMD_ECHO(char * args);
|
|
void CMD_EXIT(char * args);
|
|
void CMD_MKDIR(char * args);
|
|
void CMD_CHDIR(char * args);
|
|
void CMD_RMDIR(char * args);
|
|
void CMD_SET(char * args);
|
|
void CMD_IF(char * args);
|
|
void CMD_GOTO(char * args);
|
|
void CMD_TYPE(char * args);
|
|
void CMD_REM(char * args);
|
|
void CMD_RENAME(char * args);
|
|
void CMD_CALL(char * args);
|
|
void SyntaxError(void);
|
|
void CMD_PAUSE(char * args);
|
|
void CMD_SUBST(char* args);
|
|
void CMD_LOADHIGH(char* args);
|
|
void CMD_CHOICE(char * args);
|
|
void CMD_ATTRIB(char * args);
|
|
void CMD_PATH(char * args);
|
|
void CMD_SHIFT(char * args);
|
|
void CMD_VER(char * args);
|
|
/* The shell's variables */
|
|
Bit16u input_handle;
|
|
BatchFile * bf;
|
|
bool echo;
|
|
bool exit;
|
|
bool call;
|
|
};
|
|
|
|
struct SHELL_Cmd {
|
|
const char * name; /* Command name*/
|
|
Bit32u flags; /* Flags about the command */
|
|
void (DOS_Shell::*handler)(char * args); /* Handler for this command */
|
|
const char * help; /* String with command help */
|
|
};
|
|
|
|
/* Object to manage lines in the autoexec.bat The lines get removed from
|
|
* the file if the object gets destroyed. The environment is updated
|
|
* as well if the line set a a variable */
|
|
class AutoexecObject{
|
|
private:
|
|
bool installed;
|
|
std::string buf;
|
|
public:
|
|
AutoexecObject():installed(false){ };
|
|
void Install(std::string const &in);
|
|
void InstallBefore(std::string const &in);
|
|
~AutoexecObject();
|
|
private:
|
|
void CreateAutoexec(void);
|
|
};
|
|
|
|
#endif
|