-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
50 lines (48 loc) · 1.93 KB
/
main.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
// UNKSOTracker.cpp : Defines the entry point for the console application.
// Coded by PO1.JimAlmeida on behalf of the MWR Department in the Intelligence Corps
#include "headers.hpp"
#include "utilities.hpp"
#include "bf1.hpp"
#include "siege.hpp"
#include "coeus.hpp"
#include "interface.hpp"
int main() {
std::string name;
time_t now = time(nullptr);
char time[100];
struct tm *time_info = localtime(&now);
strftime(time, 100, "%d%b%y", time_info);
int answer;
while (true) {
std::cout
<< "========================================================================================================================"
<< '\n';
std::cout << "UNKSO Coeus Tool v0.0.1 - Engineering Prototype" << '\n';
std::cout << "UNKSO Intelligence Corps" << '\n';
std::cout << time << '\n';
std::cout << "Set the window to full screen size for better view.\n";
std::cout
<< "========================================================================================================================"
<< '\n';
std::cout << "Choose one program: " << '\n';
std::cout << "1 - Coeus Experiment" << '\n';
std::cout << "2 - Database Management" << '\n';
std::cout << "3 - BF4 API" << '\n';
std::cout << "4 - Exit" << '\n';
std::cout << "Input: ";
std::cin >> answer;
std::cin.get();
std::cout
<< "========================================================================================================================"
<< '\n';
if (answer == 1) { RaptorHeader(); }
else if (answer == 2) { utilities::API(); }
else if (answer == 3) {
std::cout << "Type it: ";
getline(std::cin, name);
std::cout << '\n';
utilities::BF1API(name);
} else if (answer == 4) { break; }
}
return 0;
}