summaryrefslogtreecommitdiffstats
path: root/src/commandline/cmdline.c
blob: 28632196709bc416afc210d929b14ba9571a2f3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include <console.h>
#include "etherboot.h"
#include "cmdline.h"
#include "cmdlinelib.h"
#include "cmdlist.h"


#define CMDL_DELAY (2000 * TICKS_PER_SEC) / 1000;

void cmdl_exec_cmdline();
char cmdl_spin();

void cmdl_start()
{
	unsigned int stop;
	//int spin;

	//printf("gPXE %s (GPL) etherboot.org ...  ", VERSION);
	printf("gPXE %s (GPL) etherboot.org\n", VERSION);

	stop = currticks() + CMDL_DELAY;
	
	while(currticks() < stop){
	
		/*if(spin++ % 250 == 0){
			putchar(8);
			putchar(cmdl_spin());
		}*/
		
		if(iskey()){
			if(getchar() == 2){
				putchar('\n');
				cmdl_exec_cmdline();
				break;
			}else{
				putchar('\n');
				printf("Skipping command line.\n");
				break;
			}
		}
	}
	putchar('\n');

	// empty the input buffer
	while(iskey()) {
		getchar();
	}
}

/*char cmdl_spin()
{
	static int state;*/
	//int spinner[4] = {'-', '\\', '|', '/'}; <- undefined reference to memcpy!
/*	int spinner[4];
	
	spinner[0] = '-';
	spinner[1] = '\\';
	spinner[2] = '|';
	spinner[3] = '/';

	return spinner[state++ % 4];
}*/

void cmdl_exec_cmdline(){
	cmd_line* cmd;
	cmd = cmdl_create();
	
	cmdl_setputchar(cmd, putchar);
	cmdl_setgetchar(cmd, getchar);
	cmdl_setprintf(cmd, printf);

	cmdl_setpropmt(cmd, "gPXE>");

	printf("Welcome to Etherboot\n\n");


	cmdl_enterloop(cmd);

	cmdl_free(cmd);
}