ASDV-Cpp/Assignments/MP2_CalebFontenot_clion/main.cpp

176 lines
6.6 KiB
C++

2024-03-06 08:02:24 +07:00
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/main.cc to edit this template
*/
/*
* File: main.cpp
* Author: caleb
*
* Created on March 4, 2024, 7:18 PM
*/
#include <iostream>
#include <ncurses.h>
2024-03-07 10:16:43 +07:00
#include <vector>
2024-03-07 18:40:11 +07:00
#include <map>
#include <algorithm>
2024-03-06 08:02:24 +07:00
using namespace std;
#include "rockPaperScissors.h"
#include "main.h"
2024-03-07 10:16:43 +07:00
#include "2DArrayOperations.h"
2024-03-07 18:40:11 +07:00
#include "binarySearch.h"
2024-03-06 08:02:24 +07:00
int main(){
2024-03-07 10:16:43 +07:00
2024-03-07 18:40:11 +07:00
std::vector<std::vector<int>> vector;
std::vector<std::tuple<int, int>> highlightTuple; // collection of tuples to highlight
2024-03-09 23:17:44 +07:00
std::tuple result = {0, 0};
2024-03-10 00:49:58 +07:00
int currentResult;
2024-03-06 08:02:24 +07:00
int ch;
static int selection = 0;
static int * selectionPointer = &selection;
initscr();
raw();
keypad(stdscr, TRUE);
noecho();
//clear();
do {
switch(ch) {
case KEY_UP:
--selection;
break;
case KEY_DOWN:
++selection;
break;
case '\n':
getch();
endwin();
switch (selection) {
case 0:
gameLoop();
break;
case 1:
2024-03-07 18:40:11 +07:00
attrset(A_NORMAL);
endwin();
2024-03-07 10:16:43 +07:00
cout << "\033[2J\033[1;1H"; // Clear screen unicode sequence
2024-03-09 23:17:44 +07:00
highlightTuple.clear();
vector = random2DArray(10, 10);
2024-03-07 18:40:11 +07:00
std::sort(vector.begin(), vector.end());
2024-03-11 08:50:33 +07:00
//printf("2D Vector: %s \n", printVector(vector).c_str());
printf("Linear search is being used to locate the tuples to highlight!\n");
2024-03-07 10:16:43 +07:00
printf("getAverage: %i\n", getAverage(vector));
printf("getRowTotal 0: %i\n", getRowTotal(vector, 0));
printf("getColumnTotal 0: %i\n", getColumnTotal(vector, 0));
2024-03-10 00:49:58 +07:00
currentResult = getHighestInRow(vector, 0);
2024-03-11 08:50:33 +07:00
highlightTuple.emplace_back(linearSearch(vector, currentResult));
2024-03-10 00:49:58 +07:00
printf("getHighestInRow 0: %i\n", currentResult);
printf("tuple result: %i, %i\n", get<0>(highlightTuple[0]), get<1>(highlightTuple[0]));
currentResult = getHighestInColumn(vector, 0);
2024-03-11 08:50:33 +07:00
highlightTuple.emplace_back(linearSearch(vector, currentResult));
2024-03-10 00:49:58 +07:00
printf("getHighestInColumn 0: %i\n", currentResult);
printf("tuple result: %i, %i\n", get<0>(highlightTuple[1]), get<1>(highlightTuple[1]));
currentResult = getLowestInRow(vector, 3);
2024-03-11 08:50:33 +07:00
highlightTuple.emplace_back(linearSearch(vector, currentResult));
2024-03-07 10:16:43 +07:00
printf("getLowestInRow 3: %i\n", getLowestInRow(vector, 3));
2024-03-10 00:49:58 +07:00
printf("tuple result: %i, %i\n", get<0>(highlightTuple[2]), get<1>(highlightTuple[2]));
currentResult = getLowestInColumn(vector, 3);
2024-03-11 08:50:33 +07:00
highlightTuple.emplace_back(linearSearch(vector, currentResult));
2024-03-09 23:17:44 +07:00
printf("getLowestInColumn 3: %i\n", getLowestInColumn(vector, 3));
2024-03-10 00:49:58 +07:00
printf("tuple result: %i, %i\n", get<0>(highlightTuple[3]), get<1>(highlightTuple[3]));
2024-03-07 18:40:11 +07:00
printf("2D Vector: %s \n", printVector(vector, highlightTuple).c_str());
2024-03-07 10:16:43 +07:00
cout << "Press Enter to Continue";
getchar();
2024-03-07 18:40:11 +07:00
attron(A_NORMAL);
2024-03-06 08:02:24 +07:00
break;
case 2:
2024-03-07 18:40:11 +07:00
attrset(A_NORMAL);
endwin();
2024-03-07 10:16:43 +07:00
cout << "\033[2J\033[1;1H"; // Clear screen unicode sequence
2024-03-07 18:40:11 +07:00
vector = random2DArray(10, 10);
std::sort(vector.begin(), vector.end());
printf("2D Vector:\n%s\n", printVector(vector).c_str());
printf("getHighestInRow 0: %i\n", getHighestInRow(vector, 0));
2024-03-09 23:17:44 +07:00
result = binarySearch(vector, getHighestInRow(vector, 0));
2024-03-07 18:40:11 +07:00
printf("binary search for results from getHigestInARow(0): %i, %i\n", get<0>(result), get<1>(result));
2024-03-07 10:16:43 +07:00
cout << "Press Enter to Continue";
getchar();
2024-03-07 18:40:11 +07:00
attron(A_NORMAL);
2024-03-06 08:02:24 +07:00
break;
2024-03-09 23:17:44 +07:00
case 3:
attrset(A_NORMAL);
endwin();
cout << "\033[2J\033[1;1H"; // Clear screen unicode sequence
printf("Highlighting every other tuple...\n");
vector = random2DArray(10, 10);
2024-03-09 23:17:44 +07:00
std::sort(vector.begin(), vector.end());
highlightTuple = highlightEveryOther(10, 10);
2024-03-09 23:17:44 +07:00
printf("2D Vector:\n%s\n", printVector(vector, highlightTuple).c_str());
cout << "Press Enter to Continue";
getchar();
attron(A_NORMAL);
break;
2024-03-06 08:02:24 +07:00
}
break;
default:
break;
}
// Ensure selection stays within bounds
selection = (selection < 0) ? 0 : selection;
2024-03-09 23:17:44 +07:00
selection = (selection > 2) ? 3 : selection;
2024-03-06 08:02:24 +07:00
//std::system("clear");
move(0, 0);
printw("%s", printMenu(selectionPointer).c_str());
refresh();
} while ((ch = getch()) != '#');
getch();
endwin();
}
std::string printMenu(int* selection) {
2024-03-09 23:17:44 +07:00
const int ARRAY_SIZE = 4;
2024-03-06 08:02:24 +07:00
std::string outputString = "";
2024-03-09 23:17:44 +07:00
std::string cursor[ARRAY_SIZE] = {"> ", " ", " ", " "};
2024-03-11 08:50:33 +07:00
std::string menu[ARRAY_SIZE] = {"Rock Paper Scissors", "2D Arrays (demonstrates linear search, too!)", "Binary Search", "Test color highlighting"};
2024-03-06 08:02:24 +07:00
//printf("%i", *selection);
/*
if (*selection >= ARRAY_SIZE - 1) {
*selection = 0;
}
if (*selection < 0) {
*selection = ARRAY_SIZE - 1;
}
*/
std::string temp;
for (int j = 0; j < *selection; ++j) {
temp = cursor[j];
cursor[j] = cursor[j + 1];
cursor[j + 1] = temp;
}
//cursor[0] = temp;
outputString.append("Use the arrow keys to navigate the menu. Press # to exit.\n");
for (int i = 0; i < ARRAY_SIZE; ++i) {
outputString.append(cursor[i]);
outputString.append(menu[i]);
outputString.append("\n");
}
return outputString;
2024-03-07 13:25:19 +07:00
}