-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
203 lines (179 loc) · 5.09 KB
/
app.js
File metadata and controls
203 lines (179 loc) · 5.09 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Rover Object Goes Here
// ======================
var rover = {
name: "Curiosity",
direction: 'N',
x: 0,
y: 0,
travelLog: []
};
// =======================
console.log("%cMars Rover Kata (Olga Zinoveva pre-work)", "Font-size: 12pt");
console.log("-----------------------------------");
console.log('%cCall the function "runCommand(command, rover)", passing the ' +
'following parameters: \ncommand - A string with all the commands ' +
' that the rover will follow. \nThese only can be:\n"f" (move forward), ' +
'"b" (move backward), "r" (turn right), or "l"(turn left).', "Font-size: 9pt" )
console.log("-----------------------------------");
console.log('Actual position: [' + rover.x + ',' + rover.y + ']');
// ======================
function turnLeft(rover){
console.log("turnLeft was called!");
}
function turnRight(rover){
console.log("turnRight was called!");
}
function moveForward(rover){
console.log("moveForward was called")
}
/* Takes the rover and change it's direction to turn left. */
function turnLeft(rover){
switch (rover.direction) {
case 'N':
rover.direction = 'W';
break;
case 'W':
rover.direction = 'S';
break;
case 'S':
rover.direction = 'E';
break;
case 'E':
rover.direction = 'N';
break;
}
console.log("Turned left! New rover direction: " + rover.direction);
}
/* Takes the rover and change it's direction to turn right.*/
function turnRight(rover){
switch (rover.direction) {
case "N":
rover.direction = "E";
break;
case "E":
rover.direction = "S";
break;
case "S":
rover.direction = "W";
break;
case "W":
rover.direction = "N";
break;
}
console.log("Turned right! New rover direction: " + rover.direction );
}
// Moving Forvard
function moveForward(rover){
var message = "";
switch (rover.direction) {
case 'N':
if (rover.y == 0) {
message = "Stop! you are moving out of the grid";
} else {
rover.y--;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
case 'S':
if (rover.y >= 9) {
message = "Stop! you are moving out of the grid";
} else {
rover.y++;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
case 'E':
if (rover.x >= 9) {
message = "Stop! you are moving out of the grid";
} else {
rover.x++;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
case 'W':
if (rover.x == 0){
message = "Stop! you are moving out of the grid";
} else {
rover.x--;
rover.travelLog.push([rover.x, rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
}
console.log(message);
}
// Moving Backward
function moveBackward(rover){
var message = "";
switch (rover.direction) {
case 'N':
if (rover.y >= 9) {
message = "Stop! you are moving out of the grid";
} else {
rover.y++;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
case 'S':
if (rover.y == 0) {
message = "Stop! you are moving out of the grid";
} else {
rover.y--;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
case 'E':
if (rover.x == 0) {
message = "Stop! you are moving out of the grid";
} else {
rover.x--;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
case 'W':
if (rover.x >= 9) {
message = "Stop! you are moving out of the grid";
} else {
rover.x++;
rover.travelLog.push([rover.x,rover.y]);
message = 'Moved forward! New position: [' + rover.x + ',' + rover.y + ']';
}
break;
}
console.log(message);
}
function runCommand(command, rover) {
console.log('%c\n' + rover.name + '\'s turn!', 'font-size: 12pt');
for (var i = 0; i < command.length; i++) {
switch (command[i]) {
case 'f':
moveForward(rover);
break;
case 'b':
moveBackward(rover);
break;
case 'r':
turnRight(rover);
break;
case 'l':
turnLeft(rover);
break;
default: // If the command isn't valid
console.log('The command "' + command[i] + '" is not valid! ' +
'Only possible "r", "l", "f", and "b"');
break;
}
}
console.log('%cFinish!\n', 'font-size: 12pt');
console.log('Actual position: [' + rover.x + ',' + rover.y + ']');
console.log("Travel log:" );
for (var i = 0; i < rover.travelLog.length; i++) {
console.log("[" + rover.travelLog[i] + "]");
}
}