当前位置: 首页>>代码示例>>C++>>正文


C++ Console::GetCommand方法代码示例

本文整理汇总了C++中Console::GetCommand方法的典型用法代码示例。如果您正苦于以下问题:C++ Console::GetCommand方法的具体用法?C++ Console::GetCommand怎么用?C++ Console::GetCommand使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Console的用法示例。


在下文中一共展示了Console::GetCommand方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: cmd_read

//! read command
void cmd_read() {

	//! get pathname
	char path[32];
	DebugPrintf("\n\rex: \"file.txt\", \"a:\\file.txt\", \"a:\\folder\\file.txt\"\n\rFilename> ");
	console.GetCommand(path, 30);

	//! open file
	FILE file = volOpenFile(path);

	//! test for invalid file
	if (file.flags == FS_INVALID) {

		DebugPrintf("\n\rUnable to open file");
		return;
	}

	//! cant display directories
	if ((file.flags & FS_DIRECTORY) == FS_DIRECTORY) {

		DebugPrintf("\n\rUnable to display contents of directory.");
		return;
	}

	//! top line
	DebugPrintf("\n\n\r-------[%s]-------\n\r", file.name);

	//! display file contents
	while (file.eof != 1) {

		//! read cluster
		unsigned char buf[512];
		volReadFile(&file, buf, 512);

		//! display file
		for (int i = 0; i<512; i++)
			DebugPutc(buf[i]);

		//! wait for input to continue if not EOF
		if (file.eof != 1) {
			DebugPrintf("\n\r------[Press a key to continue]------");
			console.GetChar();
			DebugPrintf("\r"); //clear last line
		}
	}

	//! done :)
	DebugPrintf("\n\n\r--------[EOF]--------");
}
开发者ID:pdpdds,项目名称:OrangeOS,代码行数:50,代码来源:ConsoleManager.cpp

示例2: cmd_proc

// proc (process) command
void cmd_proc() {

	int ret = 0;
	char name[32];

	DebugPrintf("\n\rProgram file: ");
	console.GetCommand(name, 30);

	Process* pProcess = ProcessManager::GetInstance()->CreateProcess(name, PROCESS_USER);
	if (pProcess == 0)
	{
		DebugPrintf("\n\rError creating process");
	}
	else
		ProcessManager::GetInstance()->ExecuteProcess(pProcess);
}
开发者ID:pdpdds,项目名称:OrangeOS,代码行数:17,代码来源:ConsoleManager.cpp


注:本文中的Console::GetCommand方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。