-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNewFunctions.cpp
591 lines (460 loc) · 14.4 KB
/
NewFunctions.cpp
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
#include <iostream>
#include <windows.h>
#include <conio.h>
#include "Definitions.h"
using namespace std;
Point::Point(DrawPoint p)
{
row = (int)round(p.row);
col = (int)round(p.col);
}
// https://math.stackexchange.com/questions/39390/determining-end-coordinates-of-line-with-the-specified-length-and-angle
DrawPoint findEndPoint(DrawPoint start, int len, int angle)
{
DrawPoint end;
end.col = start.col + len * cos(degree2radian(angle));
end.row = start.row + len * sin(degree2radian(angle));
return end;
}
// Use this to draw characters into the canvas, with the option of performing animation
void drawHelper(char canvas[][MAXCOLS], Point p, char ch, bool animate)
{
// Pause time between steps (in milliseconds)
const int TIME = 50;
// Make sure point is within bounds
if (p.row >= 0 && p.row < MAXROWS && p.col >= 0 && p.col < MAXCOLS)
{
// Draw character into the canvas
canvas[p.row][p.col] = ch;
// If animation is enabled, draw to screen at same time
if (animate)
{
gotoxy(p.row, p.col);
printf("%c", ch);
Sleep(TIME);
}
}
}
// Fills gaps in a row caused by mismatch between match calculations and screen coordinates
// (i.e. the resolution of our 'canvas' isn't very good)
void drawLineFillRow(char canvas[][MAXCOLS], int col, int startRow, int endRow, char ch, bool animate)
{
// determine if we're counting up or down
if (startRow <= endRow)
for (int r = startRow; r <= endRow; r++)
{
Point point(r, col);
drawHelper(canvas, point, ch, animate);
}
else
for (int r = startRow; r >= endRow; r--)
{
Point point(r, col);
drawHelper(canvas, point, ch, animate);
}
}
// Draw a single line from start point to end point
void drawLine(char canvas[][MAXCOLS], DrawPoint start, DrawPoint end, bool animate)
{
char ch;
Point scrStart(start);
Point scrEnd(end);
// vertical line
if (scrStart.col == scrEnd.col)
{
ch = '|';
drawLineFillRow(canvas, scrStart.col, scrStart.row, scrEnd.row, ch, animate);
}
// non-vertical line
else
{
int row = -1, prevRow;
// determine the slope of the line
double slope = (start.row - end.row) / (start.col - end.col);
// choose appropriate characters based on 'steepness' and direction of slope
if (slope > 1.8) ch = '|';
else if (slope > 0.08) ch = '`';
else if (slope > -0.08) ch = '-';
else if (slope > -1.8) ch = '\'';
else ch = '|';
// determine if columns are counting up or down
if (scrStart.col <= scrEnd.col)
{
// for each column from start to end, calculate row values
for (int col = scrStart.col; col <= scrEnd.col; col++)
{
prevRow = row;
row = (int)round(slope * (col - start.col) + start.row);
// draw from previous row to current row (to fill in row gaps)
if (prevRow > -1)
{
drawLineFillRow(canvas, col, prevRow, row, ch, animate);
}
}
}
else
{
// for each column from start to end, calculate row values
for (int col = scrStart.col; col >= scrEnd.col; col--)
{
prevRow = row;
row = (int)round(slope * (col - start.col) + start.row);
// draw from previous row to current row (to fill in row gaps)
if (prevRow > -1)
{
drawLineFillRow(canvas, col, prevRow, row, ch, animate);
}
}
}
}
}
// Draws a single box around a center point
void drawBox(char canvas[][MAXCOLS], Point center, int height, bool animate)
{
int sizeHalf = height / 2;
int ratio = (int)round(MAXCOLS / (double)MAXROWS * sizeHalf);
// Calculate where the four corners of the box should be
DrawPoint points[4];
points[0] = DrawPoint(center.row - sizeHalf, center.col - ratio);
points[1] = DrawPoint(center.row - sizeHalf, center.col + ratio);
points[2] = DrawPoint(center.row + sizeHalf, center.col + ratio);
points[3] = DrawPoint(center.row + sizeHalf, center.col - ratio);
// Draw the four lines of the box
for (int x = 0; x < 3; x++)
{
drawLine(canvas, points[x], points[x + 1], animate);
}
drawLine(canvas, points[3], points[0], animate);
// Replace the corners with a better looking character
for (int x = 0; x < 4; x++)
{
drawHelper(canvas, points[x], '+', animate);
}
}
// Menu for the drawing tools
void menuTwo(Node*& current, List& undoList, List& redoList, List& clips, bool& animate)
{
char userInput = 'x';
do
{
// Getting the length of the menu for the clearline function
char menu[] = "<F>ill / <L>ine / <B>ox / <N>ested Boxes / <T>ree / <M>ain Menu: ";
int menuLen = strlen(menu);
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
clearLine(MAXROWS + 3, menuLen + 50);
clearLine(MAXROWS + 4, menuLen + 50);
// displays urrent canvas
displayCanvas(current->item);
// displays menu
displayMenu(undoList.count, redoList.count, clips.count, animate);
printf(menu);
cin >> userInput;
cin.clear();
cin.ignore();
// if input fails
while (cin.fail())
{
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
// displays menu and gets userInputs
displayMenu(undoList.count, redoList.count, clips.count, animate);
printf(menu);
cin >> userInput;
cin.clear();
cin.ignore();
}
// switch statement for menu options
switch (userInput)
{
case 'a':
case 'A':
{
animate = !(animate);
break;
}
case 'f':
case 'F':
{
Point fillPoint;
// stores backup canvas for Undo
// copyCanvas(backupCanvas, current->item);
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Type any letter to choose fill character / <ESC> to cancel";
// gets pint and position from user
char userInput = getPoint(fillPoint);
// if user input is ESC key, break out of switch statement
if (userInput == ESC)
break;
// undo state for fill function
addUndoState(undoList, redoList, current);
// calls the function to fill the section of the canvas
fillRecursive(current->item, fillPoint.row, fillPoint.col, current->item[fillPoint.row][fillPoint.col], userInput, animate);
break;
}
case 't':
case 'T':
{
Point treeStart;
DrawPoint treeDrawStart;
int height, branchAngle, trunkAngle;
// adds undo state
addUndoState(undoList, redoList, current);
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
// prompts user for input
cout << "Enter approximate tree height: ";
cin >> height;
clearLine(MAXROWS + 1, menuLen + 5);
cout << "Enter branch angle: ";
cin >> branchAngle;
// trunk angle is always 270 (North)
trunkAngle = 270;
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Type any letter to choose tree base, or <C> for bottom center / <ESC> to cancel";
// gets point from user
char treeStartChar = getPoint(treeStart);
// if user presses C
if (treeStartChar == 'C' || treeStartChar == 'c')
{
treeStart.row = MAXROWS;
treeStart.col = MAXCOLS / 2;
}
treeDrawStart.row = treeStart.row;
treeDrawStart.col = treeStart.col;
// calls function to write the tree
treeRecursive(current->item, treeDrawStart, height, trunkAngle, branchAngle, animate);
break;
}
case 'n':
case 'N':
{
int height = 0;
Point boxStartCenter;
Point center;
// stores backup canvas for Undo
// adds undo state
addUndoState(undoList, redoList, current);
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Enter size of largest box: ";
cin >> height;
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Type any letter to choose box center, or <C> for screen center / <ESC> to cancel";
// allows user to choose location
char boxStart = getPoint(boxStartCenter);
// if user presses c
if (boxStart == 'C' || boxStart == 'c')
{
center.row = MAXROWS / 2;
center.col = MAXCOLS / 2;
}
// calls function to draw recursive nested boxes
drawBoxesRecursive(current->item, center, height, animate);
break;
}
case 'L':
case 'l':
{
DrawPoint start;
DrawPoint end;
Point startPoint;
Point endPoint;
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Type any letter to choose starting point / (type ESC to cancel): ";
char startLine = getPoint(startPoint);
// breaks statement if user inputs ESC
if (startLine == ESC)
break;
// places the character they choose in the spot they chose
gotoxy(startPoint.row, startPoint.col);
cout << startLine;
// clears menu for other functions to display prompts for input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
// collects ending position from user
cout << "Type any letter to choose ending point / (type ESC to cancel): ";
char endLine = getPoint(endPoint);
// breaks statement if user inputs ESC
if (endLine == ESC)
break;
// assigning row and column based on user input
start.row = startPoint.row;
start.col = startPoint.col;
end.row = endPoint.row;
end.col = endPoint.col;
// adds undo state
addUndoState(undoList, redoList, current);
// draws line
drawLine(current->item, start, end, animate);
break;
}
case 'B':
case 'b':
{
// adds undo state for undo functionality
addUndoState(undoList, redoList, current);
int height = 0;
Point boxStart;
Point center;
// gets point from user
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Enter height: ";
cin >> height;
// gets desired height from user
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
cout << "Type any letter to choose start point, or <C> for bottom center / <ESC> to cancel";
char boxStartChar = getPoint(boxStart);
// if user presses C
if (boxStartChar == 'C' || boxStartChar == 'c')
{
center.row = MAXROWS / 2;
center.col = MAXCOLS / 2;
}
// draws box
drawBox(current->item, center, height, animate);
break;
}
case 'I':
case 'i':
{
// adds current node to linked list "clips"
addNode(clips, newCanvas(current));
break;
}
case 'P':
case 'p':
{
// clears lines for user input
clearLine(MAXROWS + 1, menuLen + 50);
clearLine(MAXROWS + 2, menuLen + 50);
// shows user the exit prompt and clip count
cout << "\nHold <ESC> to stop ";
cout << "Clips: " << clips.count;
// plays the animation
play(clips);
break;
}
case 'O':
case 'o':
{
restore(redoList, undoList, current);
break;
}
}
} while (userInput != 'M' && userInput != 'm');
}
// Get a single point from screen, with character entered at that point
char getPoint(Point& pt)
{
char input, returnCh;
int row = 0, col = 0;
// Move cursor to row,col and then get
// a single character from the keyboard
gotoxy(row, col);
input = _getch();
// ESC ends the getPoint functionality
while (input != ESC)
{
if (input == SPECIAL) // allows user to navigate canvas with arrow keys
{
input = _getch();
switch (input)
{
case LEFTARROW:
if (col > 0)
col--;
break;
case RIGHTARROW:
if (col < (MAXCOLS - 1))
col++;
break;
case UPARROW:
if (row > 0)
row--;
break;
case DOWNARROW:
if (row < (MAXCOLS - 1))
row++;
break;
default:
break;
}
// go where the user specifies with arrow key
gotoxy(row, col);
}
else if (input >= 32 && input <= 126)
{
// collect current row and column
pt.row = row;
pt.col = col;
// return the character the user presses
returnCh = input;
return returnCh;
}
else if (input == '\0')
{
input = _getch();
}
// lets user keep inputting more inputs
input = _getch();
}
return ESC;
}
// Recursively fill a section of the screen
void fillRecursive(char canvas[][MAXCOLS], int row, int col, char oldCh, char newCh, bool animate)
{
// Position must be in bounds
if ((row < MAXROWS && row >= 0) && (col < MAXCOLS && col >= 0) && (canvas[row][col] == oldCh))
{
// draws character to screen (allows us to use animate as well)
drawHelper(canvas, Point(row, col), newCh, animate);
// Recursive calls for all directions
fillRecursive(canvas, row + 1, col, oldCh, newCh, animate);
fillRecursive(canvas, row - 1, col, oldCh, newCh, animate);
fillRecursive(canvas, row, col + 1, oldCh, newCh, animate);
fillRecursive(canvas, row, col - 1, oldCh, newCh, animate);
}
}
// Recursively draw a tree
void treeRecursive(char canvas[][MAXCOLS], DrawPoint start, int height, int startAngle, int branchAngle, bool animate)
{
if (start.row >= MAXROWS || start.col >= MAXCOLS || start.row < 0 || start.col < 0)
{
return;
}
if (height > 2)
{
// making an endpoint and drawing trunk (base case)
DrawPoint endPoint = findEndPoint(start, height / 3, startAngle);
drawLine(canvas, start, endPoint, animate);
// Creates branches to left and right of last line, new branch is 2 char shorter (Recursive step)
treeRecursive(canvas, endPoint, height - 2, branchAngle + startAngle, branchAngle, animate);
treeRecursive(canvas, endPoint, height - 2, startAngle - branchAngle, branchAngle, animate);
}
}
// Recursively draw nested boxes
void drawBoxesRecursive(char canvas[][MAXCOLS], Point center, int height, bool animate)
{
if (height > 1)
{
// Draws box (base Case)
drawBox(canvas, center, height, animate);
// Makes nested boxes of 2 less height (Recursive Step)
drawBoxesRecursive(canvas, center, height - 2, animate);
}
}