The following debugging information was generated by Atom Beautify on Sat Apr 15 2017 12:49:31 GMT-0700 (PDT).
Platform: darwin
Atom Version: 1.16.0
Atom Beautify Version: 0.29.20
Original File Path: /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS/main.cpp
Original File Grammar: C++
Original File Language: C++
Language namespace: cpp
Supported Beautifiers: Uncrustify, clang-format
Selected Beautifier: Uncrustify
#include <iostream>
#include <cstring>
#include <string>
#include <chrono>
#include <thread>
#include <fstream>
#include <algorithm>
using namespace std::this_thread; // sleep_for, sleep_until
using namespace std::chrono; // nanoseconds, system_clock, seconds
using namespace std;
string getFileContents(ifstream&);
bool wantRun = true;
float randomNumber;
int rerun = 0;
int ad = 0;
int lives = 3;
int sleepTime = 0;
int percentage = 0;
int loadReRun = 0;
bool reRunned = false;
bool adWare = false;
bool malWare = false;
int main(int argc, char* argv[])
{
while (wantRun == true) {
wantRun = false;
cout << "Welcome to: " << endl;
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("title.txt"); //Open file
string Art = getFileContents(Reader); //Get file
cout << Art << endl; //Print it to the screen
Reader.close(); //Close file
sleep_until(system_clock::now() + seconds(1));
cout << "(Unoriginal Game Simulator)" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Loading..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
bool menuOn = false;
while (menuOn == false) {
cout << string(100, '\n');
menuOn = true;
lives = 3;
ifstream Reader("title.txt"); //Open file
string Art = getFileContents(Reader); //Get file
cout << Art << endl; //Print it to the screen
Reader.close(); //Close file
cout << "(Unoriginal Game Simulator)" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "No (C) 2017" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Choose an option: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Play" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Help" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Quit" << endl;
string mode;
sleep_until(system_clock::now() + seconds(1));
cout << "I choose: ";
cin >> mode;
transform(mode.begin(), mode.end(), mode.begin(), ::tolower);
if (mode == "play") {
cout << "You chose Play, correct? ";
string sure;
cin >> sure;
transform(sure.begin(), sure.end(), sure.begin(), ::tolower);
if (sure == "yes") {
cout << "Loading..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
bool easyDone = false;
bool quizRan = false;
bool hackSimRan = false;
int questionsCorrect = 0;
while (easyDone == false) {
easyDone = true;
quizRan = true;
cout << "Please pass the quiz to log-in: " << endl;
cout << "What is the prize for answering correctly? "
<< "A. Money "
<< "B. Mercy "
<< "C. New Car "
<< "D. More Questions" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "The prize is: ";
string prize;
while (rerun != 2) {
getline (cin, prize);
transform(prize.begin(), prize.end(), prize.begin(), ::tolower);
rerun = rerun + 1;
reRunned = true;
}
rerun = 0;
if (prize == "d" or prize == "more questions") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "What is the king's name? "
<< "A. Lord Fluffybuns "
<< "B. Fuzzy Pushover "
<< "C. Asgore Dreemurr "
<< "D. Doctor Friendship" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "The king's name is: ";
string kingname;
getline (cin, kingname);
transform(kingname.begin(), kingname.end(), kingname.begin(), ::tolower);
rerun = 0;
if (kingname == "asgore dreemurr" or kingname == "c") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "What are robots made of? "
<< "A. Hopes and Dreams "
<< "B. Metal and Magic "
<< "C. Snips and Snails "
<< "D. Sugar and Spice" << endl;
sleep_until(system_clock::now() + seconds(1));
string robots;
cout << "Robots are made of: ";
getline (cin, robots);
transform(robots.begin(), robots.end(), robots.begin(), ::tolower);
rerun = 0;
if (robots == "metal and magic" or robots == "b") {
questionsCorrect = questionsCorrect + 1;
cout << "Corect!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
cout << "Two trains, Train A and Train B, simultaneously depart Station A and Station B. Station A and Station B are 252.5 miles apart from each other. Train A is moving at 124.7mph towards Station B, and Train B is moving at 253.5mph towards Station A. If both trains departed at 10:00AM and it is now 10:08, how much longer until both trains pass each other? "
<< "A. 31.054 minutes "
<< "B. 16.232 minutes "
<< "C. 32.049 minutes "
<< "D. 32.058 minutes" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "They will meet in: ";
string iliketrains;
getline (cin, iliketrains);
transform(iliketrains.begin(), iliketrains.end(), iliketrains.begin(), ::tolower);
rerun = 0;
if (iliketrains == "32.058 minutes" or iliketrains == "d" or iliketrains == "32.058") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
cout << "Would you smooch a ghost? "
<< "A. Heck Yeah "
<< "B. Heck Yeah "
<< "C. Heck Yeah "
<< "D. Heck Yeah" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "I would: ";
string ghost;
getline (cin, ghost);
transform(ghost.begin(), ghost.end(), ghost.begin(), ::tolower);
if (ghost == "heck yeah" or ghost == "a" or ghost == "b" or ghost == "c" or ghost == "d") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "...Really?...Just...Honestly...every single one was correct..." << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
if (questionsCorrect == 5) {
cout << "Passcode Correct...";
}
else {
cout << "Passcode Correct(Enough)...";
}
cout << "Press ENTER to continue...";
cin.get();
easyDone = false;
bool connectedToWifi = false;
bool dogeMode = false;
bool reRanHack = false;
bool bitesDone = false;
int timesReRan = 0;
hackSimRan = true;
cout << "DogeOS, booting up..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
easyDone = false;
bool malwareBites = false;
cout << "DogeOS online..." << endl;
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
cout << "Listing applications..." << endl;
sleep_until(system_clock::now() + seconds(1));
bool applicationSelected = false;
while (applicationSelected == false) {
applicationSelected = true;
timesReRan = timesReRan + 1;
if (timesReRan == 2) {
reRanHack = true;
}
if (malwareBites == true) {
cout << "You have 5 applications..." << endl;
}
if (malwareBites != true && malWare != true) {
cout << "You have 4 applications..." << endl;
}
if (malWare == true) {
bool iznobRerun = true;
while (iznobRerun == true) {
iznobRerun = false;
cout << "▼ Hi, I'm IZNOB. Let's learn about the INTERWEBS." << endl;
ifstream Reader("iznob.txt");
string aiznob = getFileContents(Reader);
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(1));
cout << "YES or YES: ";
string iznob;
cin >> iznob;
transform(iznob.begin(), iznob.end(), iznob.begin(), ::tolower);
if (iznob == "yes") {
cout << "▼ Installing interweb drivers..." << endl;
ifstream Reader("iznob.txt");
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(1));
sleep_until(system_clock::now() + seconds(4));
cout << "▼ Great! We're ready!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's visit my home!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to getiznobbubby.com" << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's download some cool stuff!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Downloading Cool Stuff..." << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "▼ Cool Stuff installed!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Going to CoolCrap.com..." << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ This is my friend...COOLCRAP!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to CoolCrap.com. We highly recommend installing Windows Media Player and Internet Explorer and revisiting this page." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Wait...one moment..." << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Installing Windows Suite for Linux..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Great!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's go back to CoolCrap.com!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to CoolCrap.com!" << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "Free Email?!" << endl;
cout << "YES or YES: ";
string email;
cin >> email;
cout << "Installing FreeEmail..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "FATAL ERROR: EXECUTABLE NOT FOUND: kernel_task" << endl;
cout << "Shutting down..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Rebooting..." << endl;
cout << "\r"
<< "Running System Applications... " << flush;
sleep_until(system_clock::now() + seconds(2));
cout << "\r"
<< "Stiching Quantum Loopholes... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "\r"
<< "Loading Doge... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "\r"
<< "Starting kernel_task... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "Fatal error..." << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "Booting into BIOS..." << endl;
sleep_until(system_clock::now() + seconds(5));
cout << "BIOS UTILITY: " << endl;
cout << "1:Reinstall OS" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "3🐶FATAL ERROR" << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "4🕒" << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "I choose: ";
sleep_until(system_clock::now() + seconds(2));
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
sleep_until(system_clock::now() + seconds(5));
cout << "Shutting down..." << endl;
sleep_until(system_clock::now() + seconds(3));
bool booted = false;
while (booted == false) {
booted = true;
cout << "Choose a partion to boot into: " << endl;
cout << "1🍶" << endl;
sleep_until(system_clock::now() + seconds(1));
if (malwareBites == true) {
cout << "2:MalwareBites Recovery Partion" << endl;
sleep_until(system_clock::now() + seconds(1));
}
string partion;
if (malwareBites == true) {
cout << "Boot into Partion #";
cin >> partion;
}
if (malwareBites == false or partion == "1") {
cout << "Booting into Partion 🍶..." << endl;
cout << "ERROR: CANNOT BOOT...LOADING..." << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "ALL DATA CORRU🇩🇪📅" << endl;
sleep_until(system_clock::now() + seconds(2));
terminate();
}
if (malwareBites == true && partion == "2") {
while (bitesDone == false) {
bitesDone = true;
cout << "Welcome to the MalwareBites Recovery Partion!" << endl;
cout << "Choose an option: 1:Scan or 2:Quit" << endl;
cout << "I choose: ";
string biteoption;
cin >> biteoption;
transform(biteoption.begin(), biteoption.end(), biteoption.begin(), ::tolower);
if (biteoption == "scan" or biteoption == "1" or biteoption == "1:scan") {
cout << "Scanning..." << endl;
sleep_until(system_clock::now() + seconds(3));
if (adWare != true && malWare != true) {
cout << "Nothing found..." << endl;
bitesDone = false;
}
if (adWare == true) {
cout << "Found AdWare at byte 0x5e." << endl;
cout << "Marking as overwiteable..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
adWare = false;
bitesDone = false;
}
if (malWare == true) {
cout << "Found MalWare at byte 0x3e." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
malWare = false;
bitesDone = false;
}
}
if (biteoption == "quit" or biteoption == "2:quit" or biteoption == "2") {
if (malWare == true) {
cout << "ERROR...PARTION:🍶 CORRUPTED." << endl;
terminate();
}
cout << "Quiting..." << endl;
}
if (biteoption != "quit" && biteoption != "scan" && biteoption != "1" && biteoption != "2" && biteoption != "1:scan" && biteoption != "2:quit") {
cout << "Invalid Option..." << endl;
bitesDone = false;
}
}
}
}
}
else {
cout << "▼ Invalid Response..." << endl;
cout << aiznob << endl;
Reader.close();
iznobRerun = true;
}
}
}
sleep_until(system_clock::now() + seconds(1));
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "APP 1. Loogle Mhrome" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "APP 2. DogeOS Media Player High Quality Hi-Fi" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "APP 3. Terminal" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "APP 4. Settings" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
if (malwareBites == true) {
cout << "APP 5. Malware Bites" << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "Choose an application: ";
string application;
if (reRanHack == false) {
getline (cin, application);
transform(application.begin(), application.end(), application.begin(), ::tolower);
}
else {
getline (cin, application);
getline (cin, application);
transform(application.begin(), application.end(), application.begin(), ::tolower);
}
if (malwareBites == true) {
if (application == "5" or application == "app 5" or application == "malware bites") {
while (bitesDone == false) {
bitesDone = true;
cout << "Welcome to MalwareBites!" << endl;
cout << "Choose an option: 1:Scan or 2:Quit" << endl;
cout << "I choose: ";
string biteoption;
cin >> biteoption;
transform(biteoption.begin(), biteoption.end(), biteoption.begin(), ::tolower);
if (biteoption == "scan" or biteoption == "1" or biteoption == "1:scan") {
cout << "Scanning..." << endl;
sleep_until(system_clock::now() + seconds(3));
if (adWare == true) {
cout << "Found AdWare at byte 0x5e." << endl;
cout << "Marking as overwiteable..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
adWare = false;
bitesDone = false;
}
else {
cout << "Nothing found..." << endl;
bitesDone = false;
}
}
if (biteoption == "quit" or biteoption == "2:quit" or biteoption == "2") {
cout << "Quiting..." << endl;
applicationSelected = false;
}
if (biteoption != "quit" && biteoption != "scan" && biteoption != "1" && biteoption != "2" && biteoption != "1:scan" && biteoption != "2:quit") {
cout << "Invalid Option..." << endl;
bitesDone = false;
}
}
}
}
if (application == "4" or application == "app 4" or application == "settings") {
cout << "Welcome to Settings!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
bool settingsOptionSelected = false;
while (settingsOptionSelected == false) {
settingsOptionSelected = true;
cout << "Choose a preference pane: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Option 1. WIFI" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Option 2. Doge Mode" << endl;
sleep_until(system_clock::now() + seconds(1));
string settingsoption;
cout << "I choose: ";
cin >> settingsoption;
transform(settingsoption.begin(), settingsoption.end(), settingsoption.begin(), ::tolower);
if (settingsoption == "wifi" or settingsoption == "1" or settingsoption == "option 1") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (connectedToWifi == true) {
cout << "Disconnecting from \"The man in the white van\"..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Disconnected!" << endl;
}
cout << "Choose from the following list of WIFI networks: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 1. The man in the white van" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 2. The man in the white van" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 3. The man in the white van" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "I choose: ";
string wifi;
cin >> wifi;
cout << "Connecting to network \"The man in the white van\"..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Connected!" << endl;
applicationSelected = false;
settingsOptionSelected = true;
connectedToWifi = true;
}
if (settingsoption == "doge mode" or settingsoption == "2" or settingsoption == "option 2") {
cout << "Choose an option: " << endl;
cout << "Option 1. Enable Doge Mode " << endl;
if (dogeMode == true) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Option 2. Disable Doge Mode " << endl;
}
string dogemodeoptions;
cout << "I choose: ";
cin >> dogemodeoptions;
if (dogemodeoptions == "2" or dogemodeoptions == "disable doge mode" or dogemodeoptions == "option 2") {
cout << "Doge Sad...):" << endl;
dogeMode = false;
}
else {
cout << "Enabling Doge Mode..." << endl;
dogeMode = true;
}
applicationSelected = false;
settingsOptionSelected = true;
}
if (settingsoption != "wifi" && settingsoption != "doge mode" && settingsoption != "1" && settingsoption != "2" && settingsoption != "option 1" && settingsoption != "option 2") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Invalid Option!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
settingsOptionSelected = false;
}
}
}
if (application == "loogle mhrome" or application == "app 1" or application == "1") {
if (connectedToWifi == false) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "NO INTERNET CONNECTION..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
else {
cout << "Welcome to Loogle Mrome." << endl;
cout << "Your bookmarks are: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "1. http://malware.com" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "2. http://cool.com" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "3. https://malwarebites.com" << endl;
sleep_until(system_clock::now() + seconds(1));
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Type in a URL: ";
string url;
cin >> url;
transform(url.begin(), url.end(), url.begin(), ::tolower);
if (url == "https://malware.com" or url == "http://malware.com" or url == "malware.com") {
cout << "Welcome to Malware.Com, your source for good malware!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Recieving download..." << endl;
cout << "Downloading Iznob Buddy..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Downloaded and Installed!" << endl;
malWare = true;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (url == "https://cool.com" or url == "http://cool.com" or url == "cool.com") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Welcome to Cool.Com. Because you're not cool!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Downloading Cool.com adware..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Installed Cool.com program!" << endl;
adWare = true;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (url == "malwarebites.com" or url == "http://malwarebites.com" or url == "https://malwarebites.com") {
cout << "Welcome to Malware Bites. Downloading Anti - AdWare/Malware/Spyware...You know..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Downloaded and Installed!" << endl;
malwareBites = true;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (application != "https://malware.com" && url != "http://malware.com" && url != "malware.com" && url != "https://cool.com" && url != "http://cool.com" && url != "cool.com" && url != "malwarebites.com" && url != "http://malwarebites.com" && url != "https://malwarebites.com") {
cout << "INVALID URL..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
}
}
if (application == "dogeos media player" or application == "dogeos media player high quality hi-fi" or application == "app 2" or application == "2") {
cout << "Welcome to DogeOS Media Player High Quality Hi-Fi." << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
applicationSelected = false;
}
if (application == "terminal" or application == "app 3" or application == "3") {
if (connectedToWifi == false) {
cout << "NO INTERNET CONNECTION..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
else {
cout << "Welcome to Terminal." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
bool pingRan = false;
bool commandExecuted = true;
while (commandExecuted == true) {
commandExecuted = false;
cout << "DogeSystem:~ HaxIsCool$ ";
string terminal;
getline (cin, terminal);
transform(terminal.begin(), terminal.end(), terminal.begin(), ::tolower);
if (terminal == "help") {
sleep_until(system_clock::now() + seconds(1));
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: hack (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
commandExecuted = true;
}
if (terminal == "doge") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = true;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
}
if (terminal == "ping") {
pingRan = true;
cout << "Enter an IP: ";
string pip1;
cin >> pip1;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Pinging IP: " << pip1 << "..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Waiting for response..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "ERROR: No Open Ports" << endl;
commandExecuted = true;
}
if (terminal == "mettaton") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("mettaton.txt"); //Open file
string mettaton = getFileContents(Reader); //Get file
cout << mettaton << endl; //Print it to the screen
Reader.close(); //Close file
commandExecuted = true;
}
if (terminal == "you're gonna have a bad time") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Easter Egg Unlocked!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Skipping the game..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "10% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "20% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "30% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "40% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "50% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "60% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "70% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "80% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "90% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "100% complete. " << flush;
cout << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Game Skipped!" << endl;
commandExecuted = false;
}
if (terminal != "help" && terminal != "doge" && terminal != "ping" && terminal != "hack" && terminal != "mettaton" && terminal != "you're gonna have a bad time") {
cout << "Invalid Command!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = true;
}
if (terminal == "hack") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Werid Hack Command (C) 2983" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Connecting stuff..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Online!" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Looking through IP history..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "IP History: EMPTY" << endl;
sleep_until(system_clock::now() + seconds(1));
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Enter an IP adress: ";
string ip;
cin >> ip;
cout << "Connecting to IP " << ip << "." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "ERROR: No Open Ports!" << endl;
bool hackCommandExecuted = true;
bool ipConnected = false;
while (hackCommandExecuted == true) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "DogeSystem:~ HaxIsCool$ ";
string hackcommand;
cin >> hackcommand;
transform(hackcommand.begin(), hackcommand.end(), hackcommand.begin(), ::tolower);
if (hackcommand == "help") {
sleep_until(system_clock::now() + seconds(1));
if (ipConnected == false) {
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " ERRORS " << endl;
cout << "Hack (Not Responding..)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
}
else {
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: hack (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
}
hackCommandExecuted = true;
}
if (hackcommand == "hack") {
if (ipConnected == false) {
cout << "ERROR: COMMAND NOT RESPONDING...Closing Process..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "Closed!" << endl;
hackCommandExecuted = true;
}
if (ipConnected == true) {
sleep_until(system_clock::now() + seconds(1));
cout << "Werid Hack Command (C) 2983" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Connecting stuff..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Online!" << endl;
cout << "Looking through IP history..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Found IP at byte 0xe2" << endl;
cout << "Connecting..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "10% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "20% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "30% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "40% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "50% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "60% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "70% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "80% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "90% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "100% complete. " << flush;
cout << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Connected!" << endl;
bool attackTypeSelected = false;
while (attackTypeSelected == false) {
attackTypeSelected = true;
cout << "Choose a attack: " << endl;
cout << "1. DDos attack" << endl;
cout << "2. Conventional Attack" << endl;
cout << "I choose: ";
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
string attacktype;
cin >> attacktype;
transform(attacktype.begin(), attacktype.end(), attacktype.begin(), ::tolower);
if (attacktype == "1" or attacktype == "ddos attack" or attacktype == "ddos") {
cout << "Pinging..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Recieved 50 replies within 500ms" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Attack Complete!" << endl;
commandExecuted = false;
hackCommandExecuted = false;
}
if (attacktype == "2" or attacktype == "conventional attack" or attacktype == "conventional") {
cout << "Connected!" << endl;
cout << "Installing Ransomware from http://completelynotmalwareandransomware.com..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Installed!" << endl;
cout << "Choose the amount you would like to recieve: ";
string munsforcolleg;
cin >> munsforcolleg;
transform(munsforcolleg.begin(), munsforcolleg.end(), munsforcolleg.begin(), ::tolower);
cout << "Amount of pay set to: $" << munsforcolleg << "." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = false;
hackCommandExecuted = false;
}
if (attacktype != "1" && attacktype != "2" && attacktype != "conventional attack" && attacktype != "ddos attack" && attacktype != "ddos" && attacktype != "conventional") {
cout << "Invalid Attack!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
attackTypeSelected = false;
}
}
}
}
if (hackcommand == "mettaton") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("mettaton.txt"); //Open file
string mettaton = getFileContents(Reader); //Get file
cout << mettaton << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
if (hackcommand == "ping") {
cout << "Enter an IP: ";
string pip;
cin >> pip;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Pinging IP: " << pip << "..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Waiting for response..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pong! Recieved reply within 34ms" << endl;
cout << "Writing IP to byte 0xe2..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Written!" << endl;
cout << "Command: Hack, Now Responding..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
ipConnected = true;
hackCommandExecuted = true;
}
if (hackcommand == "doge") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
if (hackcommand != "help" && hackcommand != "ping" && hackcommand != "doge" && hackcommand != "mettaton" && hackcommand != "hack") {
cout << "Invalid Command!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
}
}
}
}
}
if (malwareBites == false) {
if (application != "loogle mhrome" && application != "app 1" && application != "1" && application != "dogeos media player" && application != "dogeos media player high quality hi-fi" && application != "app 2" && application != "2" && application != "terminal" && application != "app 3" && application != "3" && application != "4" && application != "app 4" && application != "settings") {
cout << "Invalid Application..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
applicationSelected = false;
}
}
else {
if (application != "loogle mhrome" && application != "app 1" && application != "1" && application != "dogeos media player" && application != "dogeos media player high quality hi-fi" && application != "app 2" && application != "2" && application != "terminal" && application != "app 3" && application != "3" && application != "4" && application != "app 4" && application != "settings" && application != "malwarebites" && application != "5" && application != "app 5") {
cout << "Invalid Application..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
applicationSelected = false;
}
}
}
bool selectionDone = false;
while (selectionDone == false) {
selectionDone = true;
cout << "You have completed the game!" << endl;
cout << "Choose an option: " << endl;
cout << "1. Return to the Menu" << endl;
cout << "2. End the Game" << endl;
string doneoption;
cout << "I choose: ";
cin >> doneoption;
transform(doneoption.begin(), doneoption.end(), doneoption.begin(), ::tolower);
if (doneoption == "1" or doneoption == "return to the menu") {
easyDone = true;
menuOn = false;
}
if (doneoption == "2" or doneoption == "end the game") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Quiting..." << endl;
terminate();
}
if (doneoption != "1" && doneoption != "2" && doneoption != "return to the menu" && doneoption != "end the game") {
cout << "Invalid Option...Try again..." << endl;
selectionDone = false;
}
}
}
}
else {
cout << "Restarting..." << endl;
menuOn = false;
}
}
if (mode == "help") {
cout << "Type in your answer into things...and ummmmm...have fun!" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Press ENTER to continue...";
cin.get();
cin.get();
cout << "Returning to menu..." << endl;
sleep_until(system_clock::now() + seconds(1));
menuOn = false;
}
if (mode == "quit") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Quiting..." << endl;
terminate();
}
if (mode != "help" && mode != "orignal" && mode != "quit") {
cout << "Invalid mode! Restarting..." << endl;
menuOn = false;
}
}
}
}
string getFileContents(ifstream& File)
{
string Lines = ""; //All lines
if (File) //Check if everything is good
{
while (File.good()) {
string TempLine; //Temp line
getline(File, TempLine); //Get temp line
TempLine += "\n"; //Add newline character
Lines += TempLine; //Add newline
}
return Lines;
}
else //Return error
{
return "ERROR: File text file not found. Please make sure you have the 4 .txt files in the same folder as the script. If so, please create a issue on GitHub.";
}
}
The raw package settings options
{
"cpp": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"general": {
"_analyticsUserId": "70013ca8-2e3c-40df-9dd2-48eca6324aad",
"analytics": true,
"loggerLevel": "warn",
"beautifyEntireFileOnSave": true,
"muteUnsupportedLanguageErrors": false,
"muteAllErrors": false,
"showLoadingView": true
},
"apex": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"arduino": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"bash": {
"indent_size": 2,
"disabled": false,
"default_beautifier": "beautysh",
"beautify_on_save": false
},
"cs": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"c": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"clj": {
"disabled": false,
"default_beautifier": "cljfmt",
"beautify_on_save": false
},
"coffeescript": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "coffee-fmt",
"beautify_on_save": false
},
"cfml": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"crystal": {
"disabled": false,
"default_beautifier": "Crystal",
"beautify_on_save": false
},
"css": {
"indent_size": 4,
"indent_char": " ",
"selector_separator_newline": false,
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"end_with_newline": false,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"configPath": "",
"predefinedConfig": "csscomb",
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"csv": {
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"d": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"ejs": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 250,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"indent_inner_html": false,
"indent_scripts": "normal",
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"elm": {
"disabled": false,
"default_beautifier": "elm-format",
"beautify_on_save": false
},
"erb": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"erlang": {
"disabled": false,
"default_beautifier": "erl_tidy",
"beautify_on_save": false
},
"gherkin": {
"indent_size": 4,
"indent_char": " ",
"disabled": false,
"default_beautifier": "Gherkin formatter",
"beautify_on_save": false
},
"glsl": {
"configPath": "",
"disabled": false,
"default_beautifier": "clang-format",
"beautify_on_save": false
},
"go": {
"disabled": false,
"default_beautifier": "gofmt",
"beautify_on_save": false
},
"gohtml": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"fortran": {
"emacs_path": "",
"emacs_script_path": "",
"disabled": false,
"default_beautifier": "Fortran Beautifier",
"beautify_on_save": false
},
"handlebars": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"haskell": {
"disabled": false,
"default_beautifier": "stylish-haskell",
"beautify_on_save": false
},
"html": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"jade": {
"indent_size": 4,
"indent_char": " ",
"disabled": false,
"default_beautifier": "Pug Beautify",
"beautify_on_save": false
},
"java": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"js": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"json": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"jsx": {
"e4x": true,
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"latex": {
"indent_char": " ",
"indent_with_tabs": true,
"indent_preamble": false,
"always_look_for_split_braces": true,
"always_look_for_split_brackets": false,
"remove_trailing_whitespace": false,
"align_columns_in_environments": [
"tabular",
"matrix",
"bmatrix",
"pmatrix"
],
"disabled": false,
"default_beautifier": "Latex Beautify",
"beautify_on_save": false
},
"less": {
"indent_size": 4,
"indent_char": " ",
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"configPath": "",
"predefinedConfig": "csscomb",
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"lua": {
"disabled": false,
"default_beautifier": "Lua beautifier",
"beautify_on_save": false
},
"markdown": {
"gfm": true,
"yaml": true,
"commonmark": false,
"disabled": false,
"default_beautifier": "Tidy Markdown",
"beautify_on_save": false
},
"marko": {
"indent_size": 4,
"indent_char": " ",
"syntax": "html",
"indent_inner_html": false,
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "Marko Beautifier",
"beautify_on_save": false
},
"mustache": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"nginx": {
"indent_size": 4,
"indent_char": " ",
"indent_with_tabs": false,
"dontJoinCurlyBracet": true,
"disabled": false,
"default_beautifier": "Nginx Beautify",
"beautify_on_save": false
},
"nunjucks": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"objectivec": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"ocaml": {
"disabled": false,
"default_beautifier": "ocp-indent",
"beautify_on_save": false
},
"pawn": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"perl": {
"perltidy_profile": "",
"disabled": false,
"default_beautifier": "Perltidy",
"beautify_on_save": false
},
"php": {
"cs_fixer_path": "",
"rules": "",
"phpcbf_path": "",
"standard": "",
"disabled": false,
"default_beautifier": "PHP-CS-Fixer",
"beautify_on_save": false
},
"puppet": {
"disabled": false,
"default_beautifier": "puppet-lint",
"beautify_on_save": false
},
"python": {
"max_line_length": 79,
"indent_size": 4,
"ignore": [
"E24"
],
"formater": "autopep8",
"style_config": "pep8",
"sort_imports": false,
"multi_line_output": "Hanging Grid Grouped",
"disabled": false,
"default_beautifier": "autopep8",
"beautify_on_save": false
},
"r": {
"indent_size": 4,
"disabled": false,
"default_beautifier": "formatR",
"beautify_on_save": false
},
"riot": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"ruby": {
"indent_size": 4,
"rubocop_path": "",
"indent_char": " ",
"disabled": false,
"default_beautifier": "Rubocop",
"beautify_on_save": false
},
"rust": {
"rustfmt_path": "",
"disabled": false,
"default_beautifier": "rustfmt",
"beautify_on_save": false
},
"sass": {
"disabled": false,
"default_beautifier": "SassConvert",
"beautify_on_save": false
},
"scss": {
"indent_size": 4,
"indent_char": " ",
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"configPath": "",
"predefinedConfig": "csscomb",
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"spacebars": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"sql": {
"indent_size": 4,
"keywords": "upper",
"identifiers": "unchanged",
"disabled": false,
"default_beautifier": "sqlformat",
"beautify_on_save": false
},
"svg": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"swig": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"tss": {
"indent_size": 4,
"indent_char": " ",
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"twig": {
"indent_size": 4,
"indent_char": " ",
"indent_with_tabs": false,
"preserve_newlines": true,
"space_in_paren": false,
"space_after_anon_function": false,
"break_chained_methods": false,
"wrap_line_length": 250,
"end_with_comma": false,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"typescript": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "TypeScript Formatter",
"beautify_on_save": false
},
"ux": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"vala": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"vue": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 250,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"indent_inner_html": false,
"indent_scripts": "normal",
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "Vue Beautifier",
"beautify_on_save": false
},
"visualforce": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"xml": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"xtemplate": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
}
}Editor Options: Options from Atom Editor settings
{
"_default": {
"indent_size": 2,
"indent_char": " ",
"indent_with_tabs": false
}
}Config Options: Options from Atom Beautify package settings
{
"apex": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"arduino": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"bash": {
"indent_size": 2,
"disabled": false,
"default_beautifier": "beautysh",
"beautify_on_save": false
},
"cs": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"c": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"clj": {
"disabled": false,
"default_beautifier": "cljfmt",
"beautify_on_save": false
},
"coffeescript": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "coffee-fmt",
"beautify_on_save": false
},
"cfml": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"cpp": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"crystal": {
"disabled": false,
"default_beautifier": "Crystal",
"beautify_on_save": false
},
"css": {
"indent_size": 4,
"indent_char": " ",
"selector_separator_newline": false,
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"end_with_newline": false,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"configPath": "",
"predefinedConfig": "csscomb",
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"csv": {
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"d": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"ejs": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 250,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"indent_inner_html": false,
"indent_scripts": "normal",
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"elm": {
"disabled": false,
"default_beautifier": "elm-format",
"beautify_on_save": false
},
"erb": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"erlang": {
"disabled": false,
"default_beautifier": "erl_tidy",
"beautify_on_save": false
},
"gherkin": {
"indent_size": 4,
"indent_char": " ",
"disabled": false,
"default_beautifier": "Gherkin formatter",
"beautify_on_save": false
},
"glsl": {
"configPath": "",
"disabled": false,
"default_beautifier": "clang-format",
"beautify_on_save": false
},
"go": {
"disabled": false,
"default_beautifier": "gofmt",
"beautify_on_save": false
},
"gohtml": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"fortran": {
"emacs_path": "",
"emacs_script_path": "",
"disabled": false,
"default_beautifier": "Fortran Beautifier",
"beautify_on_save": false
},
"handlebars": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"haskell": {
"disabled": false,
"default_beautifier": "stylish-haskell",
"beautify_on_save": false
},
"html": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"jade": {
"indent_size": 4,
"indent_char": " ",
"disabled": false,
"default_beautifier": "Pug Beautify",
"beautify_on_save": false
},
"java": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"js": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"json": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"jsx": {
"e4x": true,
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"latex": {
"indent_char": " ",
"indent_with_tabs": true,
"indent_preamble": false,
"always_look_for_split_braces": true,
"always_look_for_split_brackets": false,
"remove_trailing_whitespace": false,
"align_columns_in_environments": [
"tabular",
"matrix",
"bmatrix",
"pmatrix"
],
"disabled": false,
"default_beautifier": "Latex Beautify",
"beautify_on_save": false
},
"less": {
"indent_size": 4,
"indent_char": " ",
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"configPath": "",
"predefinedConfig": "csscomb",
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"lua": {
"disabled": false,
"default_beautifier": "Lua beautifier",
"beautify_on_save": false
},
"markdown": {
"gfm": true,
"yaml": true,
"commonmark": false,
"disabled": false,
"default_beautifier": "Tidy Markdown",
"beautify_on_save": false
},
"marko": {
"indent_size": 4,
"indent_char": " ",
"syntax": "html",
"indent_inner_html": false,
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "Marko Beautifier",
"beautify_on_save": false
},
"mustache": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "JS Beautify",
"beautify_on_save": false
},
"nginx": {
"indent_size": 4,
"indent_char": " ",
"indent_with_tabs": false,
"dontJoinCurlyBracet": true,
"disabled": false,
"default_beautifier": "Nginx Beautify",
"beautify_on_save": false
},
"nunjucks": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"objectivec": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"ocaml": {
"disabled": false,
"default_beautifier": "ocp-indent",
"beautify_on_save": false
},
"pawn": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"perl": {
"perltidy_profile": "",
"disabled": false,
"default_beautifier": "Perltidy",
"beautify_on_save": false
},
"php": {
"cs_fixer_path": "",
"rules": "",
"phpcbf_path": "",
"standard": "",
"disabled": false,
"default_beautifier": "PHP-CS-Fixer",
"beautify_on_save": false
},
"puppet": {
"disabled": false,
"default_beautifier": "puppet-lint",
"beautify_on_save": false
},
"python": {
"max_line_length": 79,
"indent_size": 4,
"ignore": [
"E24"
],
"formater": "autopep8",
"style_config": "pep8",
"sort_imports": false,
"multi_line_output": "Hanging Grid Grouped",
"disabled": false,
"default_beautifier": "autopep8",
"beautify_on_save": false
},
"r": {
"indent_size": 4,
"disabled": false,
"default_beautifier": "formatR",
"beautify_on_save": false
},
"riot": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"ruby": {
"indent_size": 4,
"rubocop_path": "",
"indent_char": " ",
"disabled": false,
"default_beautifier": "Rubocop",
"beautify_on_save": false
},
"rust": {
"rustfmt_path": "",
"disabled": false,
"default_beautifier": "rustfmt",
"beautify_on_save": false
},
"sass": {
"disabled": false,
"default_beautifier": "SassConvert",
"beautify_on_save": false
},
"scss": {
"indent_size": 4,
"indent_char": " ",
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"configPath": "",
"predefinedConfig": "csscomb",
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"spacebars": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"sql": {
"indent_size": 4,
"keywords": "upper",
"identifiers": "unchanged",
"disabled": false,
"default_beautifier": "sqlformat",
"beautify_on_save": false
},
"svg": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"swig": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"tss": {
"indent_size": 4,
"indent_char": " ",
"newline_between_rules": true,
"preserve_newlines": false,
"wrap_line_length": 0,
"indent_comments": true,
"force_indentation": false,
"convert_quotes": "none",
"align_assignments": false,
"no_lead_zero": false,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"twig": {
"indent_size": 4,
"indent_char": " ",
"indent_with_tabs": false,
"preserve_newlines": true,
"space_in_paren": false,
"space_after_anon_function": false,
"break_chained_methods": false,
"wrap_line_length": 250,
"end_with_comma": false,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"typescript": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"disabled": false,
"default_beautifier": "TypeScript Formatter",
"beautify_on_save": false
},
"ux": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"vala": {
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
},
"vue": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"space_in_paren": false,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 250,
"end_with_newline": false,
"end_with_comma": false,
"end_of_line": "System Default",
"indent_inner_html": false,
"indent_scripts": "normal",
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "Vue Beautifier",
"beautify_on_save": false
},
"visualforce": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"xml": {
"indent_inner_html": false,
"indent_size": 4,
"indent_char": " ",
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 250,
"wrap_attributes": "auto",
"wrap_attributes_indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"unformatted": [
"a",
"abbr",
"area",
"audio",
"b",
"bdi",
"bdo",
"br",
"button",
"canvas",
"cite",
"code",
"data",
"datalist",
"del",
"dfn",
"em",
"embed",
"i",
"iframe",
"img",
"input",
"ins",
"kbd",
"keygen",
"label",
"map",
"mark",
"math",
"meter",
"noscript",
"object",
"output",
"progress",
"q",
"ruby",
"s",
"samp",
"select",
"small",
"span",
"strong",
"sub",
"sup",
"svg",
"template",
"textarea",
"time",
"u",
"var",
"video",
"wbr",
"text",
"acronym",
"address",
"big",
"dt",
"ins",
"small",
"strike",
"tt",
"pre",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"end_with_newline": false,
"extra_liners": [
"head",
"body",
"/html"
],
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
},
"xtemplate": {
"indent_size": 4,
"indent_char": " ",
"wrap_line_length": 250,
"preserve_newlines": true,
"disabled": false,
"default_beautifier": "Pretty Diff",
"beautify_on_save": false
}
}Home Options:
Options from /Users/AtomicOwner/.jsbeautifyrc
{
"_default": {}
}EditorConfig Options: Options from EditorConfig file
{
"_default": {}
}Project Options:
Options from .jsbeautifyrc files starting from directory /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS and going up to root
[
{
"_default": {}
},
{
"_default": {}
},
{
"_default": {}
},
{
"_default": {}
},
{
"_default": {}
},
{
"_default": {}
},
{
"_default": {}
}
]Pre-Transformed Options: Combined options before transforming them given a beautifier's specifications
{
"indent_size": 2,
"indent_char": " ",
"indent_with_tabs": false,
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
}Final combined and transformed options that are used
{
"indent_size": 2,
"indent_char": " ",
"indent_with_tabs": false,
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
}Beautified File Contents:
#include <iostream>
#include <cstring>
#include <string>
#include <chrono>
#include <thread>
#include <fstream>
#include <algorithm>
using namespace std::this_thread; // sleep_for, sleep_until
using namespace std::chrono; // nanoseconds, system_clock, seconds
using namespace std;
string getFileContents(ifstream&);
bool wantRun = true;
float randomNumber;
int rerun = 0;
int ad = 0;
int lives = 3;
int sleepTime = 0;
int percentage = 0;
int loadReRun = 0;
bool reRunned = false;
bool adWare = false;
bool malWare = false;
int main(int argc, char* argv[])
{
while (wantRun == true) {
wantRun = false;
cout << "Welcome to: " << endl;
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("title.txt"); //Open file
string Art = getFileContents(Reader); //Get file
cout << Art << endl; //Print it to the screen
Reader.close(); //Close file
sleep_until(system_clock::now() + seconds(1));
cout << "(Unoriginal Game Simulator)" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Loading..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
bool menuOn = false;
while (menuOn == false) {
cout << string(100, '\n');
menuOn = true;
lives = 3;
ifstream Reader("title.txt"); //Open file
string Art = getFileContents(Reader); //Get file
cout << Art << endl; //Print it to the screen
Reader.close(); //Close file
cout << "(Unoriginal Game Simulator)" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "No (C) 2017" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Choose an option: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Play" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Help" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Quit" << endl;
string mode;
sleep_until(system_clock::now() + seconds(1));
cout << "I choose: ";
cin >> mode;
transform(mode.begin(), mode.end(), mode.begin(), ::tolower);
if (mode == "play") {
cout << "You chose Play, correct? ";
string sure;
cin >> sure;
transform(sure.begin(), sure.end(), sure.begin(), ::tolower);
if (sure == "yes") {
cout << "Loading..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
bool easyDone = false;
bool quizRan = false;
bool hackSimRan = false;
int questionsCorrect = 0;
while (easyDone == false) {
easyDone = true;
quizRan = true;
cout << "Please pass the quiz to log-in: " << endl;
cout << "What is the prize for answering correctly? "
<< "A. Money "
<< "B. Mercy "
<< "C. New Car "
<< "D. More Questions" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "The prize is: ";
string prize;
while (rerun != 2) {
getline (cin, prize);
transform(prize.begin(), prize.end(), prize.begin(), ::tolower);
rerun = rerun + 1;
reRunned = true;
}
rerun = 0;
if (prize == "d" or prize == "more questions") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "What is the king's name? "
<< "A. Lord Fluffybuns "
<< "B. Fuzzy Pushover "
<< "C. Asgore Dreemurr "
<< "D. Doctor Friendship" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "The king's name is: ";
string kingname;
getline (cin, kingname);
transform(kingname.begin(), kingname.end(), kingname.begin(), ::tolower);
rerun = 0;
if (kingname == "asgore dreemurr" or kingname == "c") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "What are robots made of? "
<< "A. Hopes and Dreams "
<< "B. Metal and Magic "
<< "C. Snips and Snails "
<< "D. Sugar and Spice" << endl;
sleep_until(system_clock::now() + seconds(1));
string robots;
cout << "Robots are made of: ";
getline (cin, robots);
transform(robots.begin(), robots.end(), robots.begin(), ::tolower);
rerun = 0;
if (robots == "metal and magic" or robots == "b") {
questionsCorrect = questionsCorrect + 1;
cout << "Corect!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
cout << "Two trains, Train A and Train B, simultaneously depart Station A and Station B. Station A and Station B are 252.5 miles apart from each other. Train A is moving at 124.7mph towards Station B, and Train B is moving at 253.5mph towards Station A. If both trains departed at 10:00AM and it is now 10:08, how much longer until both trains pass each other? "
<< "A. 31.054 minutes "
<< "B. 16.232 minutes "
<< "C. 32.049 minutes "
<< "D. 32.058 minutes" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "They will meet in: ";
string iliketrains;
getline (cin, iliketrains);
transform(iliketrains.begin(), iliketrains.end(), iliketrains.begin(), ::tolower);
rerun = 0;
if (iliketrains == "32.058 minutes" or iliketrains == "d" or iliketrains == "32.058") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
cout << "Would you smooch a ghost? "
<< "A. Heck Yeah "
<< "B. Heck Yeah "
<< "C. Heck Yeah "
<< "D. Heck Yeah" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "I would: ";
string ghost;
getline (cin, ghost);
transform(ghost.begin(), ghost.end(), ghost.begin(), ::tolower);
if (ghost == "heck yeah" or ghost == "a" or ghost == "b" or ghost == "c" or ghost == "d") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "...Really?...Just...Honestly...every single one was correct..." << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
if (questionsCorrect == 5) {
cout << "Passcode Correct...";
}
else {
cout << "Passcode Correct(Enough)...";
}
cout << "Press ENTER to continue...";
cin.get();
easyDone = false;
bool connectedToWifi = false;
bool dogeMode = false;
bool reRanHack = false;
bool bitesDone = false;
int timesReRan = 0;
hackSimRan = true;
cout << "DogeOS, booting up..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
easyDone = false;
bool malwareBites = false;
cout << "DogeOS online..." << endl;
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
cout << "Listing applications..." << endl;
sleep_until(system_clock::now() + seconds(1));
bool applicationSelected = false;
while (applicationSelected == false) {
applicationSelected = true;
timesReRan = timesReRan + 1;
if (timesReRan == 2) {
reRanHack = true;
}
if (malwareBites == true) {
cout << "You have 5 applications..." << endl;
}
if (malwareBites != true && malWare != true) {
cout << "You have 4 applications..." << endl;
}
if (malWare == true) {
bool iznobRerun = true;
while (iznobRerun == true) {
iznobRerun = false;
cout << "▼ Hi, I'm IZNOB. Let's learn about the INTERWEBS." << endl;
ifstream Reader("iznob.txt");
string aiznob = getFileContents(Reader);
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(1));
cout << "YES or YES: ";
string iznob;
cin >> iznob;
transform(iznob.begin(), iznob.end(), iznob.begin(), ::tolower);
if (iznob == "yes") {
cout << "▼ Installing interweb drivers..." << endl;
ifstream Reader("iznob.txt");
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(1));
sleep_until(system_clock::now() + seconds(4));
cout << "▼ Great! We're ready!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's visit my home!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to getiznobbubby.com" << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's download some cool stuff!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Downloading Cool Stuff..." << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "▼ Cool Stuff installed!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Going to CoolCrap.com..." << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ This is my friend...COOLCRAP!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to CoolCrap.com. We highly recommend installing Windows Media Player and Internet Explorer and revisiting this page." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Wait...one moment..." << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Installing Windows Suite for Linux..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Great!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's go back to CoolCrap.com!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to CoolCrap.com!" << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "Free Email?!" << endl;
cout << "YES or YES: ";
string email;
cin >> email;
cout << "Installing FreeEmail..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "FATAL ERROR: EXECUTABLE NOT FOUND: kernel_task" << endl;
cout << "Shutting down..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Rebooting..." << endl;
cout << "\r"
<< "Running System Applications... " << flush;
sleep_until(system_clock::now() + seconds(2));
cout << "\r"
<< "Stiching Quantum Loopholes... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "\r"
<< "Loading Doge... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "\r"
<< "Starting kernel_task... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "Fatal error..." << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "Booting into BIOS..." << endl;
sleep_until(system_clock::now() + seconds(5));
cout << "BIOS UTILITY: " << endl;
cout << "1:Reinstall OS" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "3🐶FATAL ERROR" << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "4🕒" << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "I choose: ";
sleep_until(system_clock::now() + seconds(2));
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
sleep_until(system_clock::now() + seconds(5));
cout << "Shutting down..." << endl;
sleep_until(system_clock::now() + seconds(3));
bool booted = false;
while (booted == false) {
booted = true;
cout << "Choose a partion to boot into: " << endl;
cout << "1🍶" << endl;
sleep_until(system_clock::now() + seconds(1));
if (malwareBites == true) {
cout << "2:MalwareBites Recovery Partion" << endl;
sleep_until(system_clock::now() + seconds(1));
}
string partion;
if (malwareBites == true) {
cout << "Boot into Partion #";
cin >> partion;
}
if (malwareBites == false or partion == "1") {
cout << "Booting into Partion 🍶..." << endl;
cout << "ERROR: CANNOT BOOT...LOADING..." << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "ALL DATA CORRU🇩🇪📅" << endl;
sleep_until(system_clock::now() + seconds(2));
terminate();
}
if (malwareBites == true && partion == "2") {
while (bitesDone == false) {
bitesDone = true;
cout << "Welcome to the MalwareBites Recovery Partion!" << endl;
cout << "Choose an option: 1:Scan or 2:Quit" << endl;
cout << "I choose: ";
string biteoption;
cin >> biteoption;
transform(biteoption.begin(), biteoption.end(), biteoption.begin(), ::tolower);
if (biteoption == "scan" or biteoption == "1" or biteoption == "1:scan") {
cout << "Scanning..." << endl;
sleep_until(system_clock::now() + seconds(3));
if (adWare != true && malWare != true) {
cout << "Nothing found..." << endl;
bitesDone = false;
}
if (adWare == true) {
cout << "Found AdWare at byte 0x5e." << endl;
cout << "Marking as overwiteable..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
adWare = false;
bitesDone = false;
}
if (malWare == true) {
cout << "Found MalWare at byte 0x3e." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
malWare = false;
bitesDone = false;
}
}
if (biteoption == "quit" or biteoption == "2:quit" or biteoption == "2") {
if (malWare == true) {
cout << "ERROR...PARTION:🍶 CORRUPTED." << endl;
terminate();
}
cout << "Quiting..." << endl;
}
if (biteoption != "quit" && biteoption != "scan" && biteoption != "1" && biteoption != "2" && biteoption != "1:scan" && biteoption != "2:quit") {
cout << "Invalid Option..." << endl;
bitesDone = false;
}
}
}
}
}
else {
cout << "▼ Invalid Response..." << endl;
cout << aiznob << endl;
Reader.close();
iznobRerun = true;
}
}
}
sleep_until(system_clock::now() + seconds(1));
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "APP 1. Loogle Mhrome" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "APP 2. DogeOS Media Player High Quality Hi-Fi" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "APP 3. Terminal" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "APP 4. Settings" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
if (malwareBites == true) {
cout << "APP 5. Malware Bites" << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "Choose an application: ";
string application;
if (reRanHack == false) {
getline (cin, application);
transform(application.begin(), application.end(), application.begin(), ::tolower);
}
else {
getline (cin, application);
getline (cin, application);
transform(application.begin(), application.end(), application.begin(), ::tolower);
}
if (malwareBites == true) {
if (application == "5" or application == "app 5" or application == "malware bites") {
while (bitesDone == false) {
bitesDone = true;
cout << "Welcome to MalwareBites!" << endl;
cout << "Choose an option: 1:Scan or 2:Quit" << endl;
cout << "I choose: ";
string biteoption;
cin >> biteoption;
transform(biteoption.begin(), biteoption.end(), biteoption.begin(), ::tolower);
if (biteoption == "scan" or biteoption == "1" or biteoption == "1:scan") {
cout << "Scanning..." << endl;
sleep_until(system_clock::now() + seconds(3));
if (adWare == true) {
cout << "Found AdWare at byte 0x5e." << endl;
cout << "Marking as overwiteable..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
adWare = false;
bitesDone = false;
}
else {
cout << "Nothing found..." << endl;
bitesDone = false;
}
}
if (biteoption == "quit" or biteoption == "2:quit" or biteoption == "2") {
cout << "Quiting..." << endl;
applicationSelected = false;
}
if (biteoption != "quit" && biteoption != "scan" && biteoption != "1" && biteoption != "2" && biteoption != "1:scan" && biteoption != "2:quit") {
cout << "Invalid Option..." << endl;
bitesDone = false;
}
}
}
}
if (application == "4" or application == "app 4" or application == "settings") {
cout << "Welcome to Settings!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
bool settingsOptionSelected = false;
while (settingsOptionSelected == false) {
settingsOptionSelected = true;
cout << "Choose a preference pane: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Option 1. WIFI" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Option 2. Doge Mode" << endl;
sleep_until(system_clock::now() + seconds(1));
string settingsoption;
cout << "I choose: ";
cin >> settingsoption;
transform(settingsoption.begin(), settingsoption.end(), settingsoption.begin(), ::tolower);
if (settingsoption == "wifi" or settingsoption == "1" or settingsoption == "option 1") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (connectedToWifi == true) {
cout << "Disconnecting from \"The man in the white van\"..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Disconnected!" << endl;
}
cout << "Choose from the following list of WIFI networks: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 1. The man in the white van" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 2. The man in the white van" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 3. The man in the white van" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "I choose: ";
string wifi;
cin >> wifi;
cout << "Connecting to network \"The man in the white van\"..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Connected!" << endl;
applicationSelected = false;
settingsOptionSelected = true;
connectedToWifi = true;
}
if (settingsoption == "doge mode" or settingsoption == "2" or settingsoption == "option 2") {
cout << "Choose an option: " << endl;
cout << "Option 1. Enable Doge Mode " << endl;
if (dogeMode == true) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Option 2. Disable Doge Mode " << endl;
}
string dogemodeoptions;
cout << "I choose: ";
cin >> dogemodeoptions;
if (dogemodeoptions == "2" or dogemodeoptions == "disable doge mode" or dogemodeoptions == "option 2") {
cout << "Doge Sad...):" << endl;
dogeMode = false;
}
else {
cout << "Enabling Doge Mode..." << endl;
dogeMode = true;
}
applicationSelected = false;
settingsOptionSelected = true;
}
if (settingsoption != "wifi" && settingsoption != "doge mode" && settingsoption != "1" && settingsoption != "2" && settingsoption != "option 1" && settingsoption != "option 2") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Invalid Option!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
settingsOptionSelected = false;
}
}
}
if (application == "loogle mhrome" or application == "app 1" or application == "1") {
if (connectedToWifi == false) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "NO INTERNET CONNECTION..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
else {
cout << "Welcome to Loogle Mrome." << endl;
cout << "Your bookmarks are: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "1. http://malware.com" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "2. http://cool.com" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "3. https://malwarebites.com" << endl;
sleep_until(system_clock::now() + seconds(1));
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Type in a URL: ";
string url;
cin >> url;
transform(url.begin(), url.end(), url.begin(), ::tolower);
if (url == "https://malware.com" or url == "http://malware.com" or url == "malware.com") {
cout << "Welcome to Malware.Com, your source for good malware!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Recieving download..." << endl;
cout << "Downloading Iznob Buddy..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Downloaded and Installed!" << endl;
malWare = true;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (url == "https://cool.com" or url == "http://cool.com" or url == "cool.com") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Welcome to Cool.Com. Because you're not cool!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Downloading Cool.com adware..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Installed Cool.com program!" << endl;
adWare = true;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (url == "malwarebites.com" or url == "http://malwarebites.com" or url == "https://malwarebites.com") {
cout << "Welcome to Malware Bites. Downloading Anti - AdWare/Malware/Spyware...You know..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Downloaded and Installed!" << endl;
malwareBites = true;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (application != "https://malware.com" && url != "http://malware.com" && url != "malware.com" && url != "https://cool.com" && url != "http://cool.com" && url != "cool.com" && url != "malwarebites.com" && url != "http://malwarebites.com" && url != "https://malwarebites.com") {
cout << "INVALID URL..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
}
}
if (application == "dogeos media player" or application == "dogeos media player high quality hi-fi" or application == "app 2" or application == "2") {
cout << "Welcome to DogeOS Media Player High Quality Hi-Fi." << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
applicationSelected = false;
}
if (application == "terminal" or application == "app 3" or application == "3") {
if (connectedToWifi == false) {
cout << "NO INTERNET CONNECTION..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
else {
cout << "Welcome to Terminal." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
bool pingRan = false;
bool commandExecuted = true;
while (commandExecuted == true) {
commandExecuted = false;
cout << "DogeSystem:~ HaxIsCool$ ";
string terminal;
getline (cin, terminal);
transform(terminal.begin(), terminal.end(), terminal.begin(), ::tolower);
if (terminal == "help") {
sleep_until(system_clock::now() + seconds(1));
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: hack (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
commandExecuted = true;
}
if (terminal == "doge") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = true;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
}
if (terminal == "ping") {
pingRan = true;
cout << "Enter an IP: ";
string pip1;
cin >> pip1;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Pinging IP: " << pip1 << "..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Waiting for response..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "ERROR: No Open Ports" << endl;
commandExecuted = true;
}
if (terminal == "mettaton") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("mettaton.txt"); //Open file
string mettaton = getFileContents(Reader); //Get file
cout << mettaton << endl; //Print it to the screen
Reader.close(); //Close file
commandExecuted = true;
}
if (terminal == "you're gonna have a bad time") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Easter Egg Unlocked!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Skipping the game..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "10% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "20% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "30% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "40% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "50% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "60% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "70% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "80% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "90% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "100% complete. " << flush;
cout << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Game Skipped!" << endl;
commandExecuted = false;
}
if (terminal != "help" && terminal != "doge" && terminal != "ping" && terminal != "hack" && terminal != "mettaton" && terminal != "you're gonna have a bad time") {
cout << "Invalid Command!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = true;
}
if (terminal == "hack") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Werid Hack Command (C) 2983" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Connecting stuff..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Online!" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Looking through IP history..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "IP History: EMPTY" << endl;
sleep_until(system_clock::now() + seconds(1));
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Enter an IP adress: ";
string ip;
cin >> ip;
cout << "Connecting to IP " << ip << "." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "ERROR: No Open Ports!" << endl;
bool hackCommandExecuted = true;
bool ipConnected = false;
while (hackCommandExecuted == true) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "DogeSystem:~ HaxIsCool$ ";
string hackcommand;
cin >> hackcommand;
transform(hackcommand.begin(), hackcommand.end(), hackcommand.begin(), ::tolower);
if (hackcommand == "help") {
sleep_until(system_clock::now() + seconds(1));
if (ipConnected == false) {
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " ERRORS " << endl;
cout << "Hack (Not Responding..)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
}
else {
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: hack (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
}
hackCommandExecuted = true;
}
if (hackcommand == "hack") {
if (ipConnected == false) {
cout << "ERROR: COMMAND NOT RESPONDING...Closing Process..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "Closed!" << endl;
hackCommandExecuted = true;
}
if (ipConnected == true) {
sleep_until(system_clock::now() + seconds(1));
cout << "Werid Hack Command (C) 2983" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Connecting stuff..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Online!" << endl;
cout << "Looking through IP history..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Found IP at byte 0xe2" << endl;
cout << "Connecting..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "10% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "20% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "30% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "40% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "50% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "60% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "70% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "80% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "90% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "100% complete. " << flush;
cout << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Connected!" << endl;
bool attackTypeSelected = false;
while (attackTypeSelected == false) {
attackTypeSelected = true;
cout << "Choose a attack: " << endl;
cout << "1. DDos attack" << endl;
cout << "2. Conventional Attack" << endl;
cout << "I choose: ";
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
string attacktype;
cin >> attacktype;
transform(attacktype.begin(), attacktype.end(), attacktype.begin(), ::tolower);
if (attacktype == "1" or attacktype == "ddos attack" or attacktype == "ddos") {
cout << "Pinging..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Recieved 50 replies within 500ms" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Attack Complete!" << endl;
commandExecuted = false;
hackCommandExecuted = false;
}
if (attacktype == "2" or attacktype == "conventional attack" or attacktype == "conventional") {
cout << "Connected!" << endl;
cout << "Installing Ransomware from http://completelynotmalwareandransomware.com..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Installed!" << endl;
cout << "Choose the amount you would like to recieve: ";
string munsforcolleg;
cin >> munsforcolleg;
transform(munsforcolleg.begin(), munsforcolleg.end(), munsforcolleg.begin(), ::tolower);
cout << "Amount of pay set to: $" << munsforcolleg << "." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = false;
hackCommandExecuted = false;
}
if (attacktype != "1" && attacktype != "2" && attacktype != "conventional attack" && attacktype != "ddos attack" && attacktype != "ddos" && attacktype != "conventional") {
cout << "Invalid Attack!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
attackTypeSelected = false;
}
}
}
}
if (hackcommand == "mettaton") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("mettaton.txt"); //Open file
string mettaton = getFileContents(Reader); //Get file
cout << mettaton << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
if (hackcommand == "ping") {
cout << "Enter an IP: ";
string pip;
cin >> pip;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Pinging IP: " << pip << "..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Waiting for response..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pong! Recieved reply within 34ms" << endl;
cout << "Writing IP to byte 0xe2..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Written!" << endl;
cout << "Command: Hack, Now Responding..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
ipConnected = true;
hackCommandExecuted = true;
}
if (hackcommand == "doge") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
if (hackcommand != "help" && hackcommand != "ping" && hackcommand != "doge" && hackcommand != "mettaton" && hackcommand != "hack") {
cout << "Invalid Command!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
}
}
}
}
}
if (malwareBites == false) {
if (application != "loogle mhrome" && application != "app 1" && application != "1" && application != "dogeos media player" && application != "dogeos media player high quality hi-fi" && application != "app 2" && application != "2" && application != "terminal" && application != "app 3" && application != "3" && application != "4" && application != "app 4" && application != "settings") {
cout << "Invalid Application..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
applicationSelected = false;
}
}
else {
if (application != "loogle mhrome" && application != "app 1" && application != "1" && application != "dogeos media player" && application != "dogeos media player high quality hi-fi" && application != "app 2" && application != "2" && application != "terminal" && application != "app 3" && application != "3" && application != "4" && application != "app 4" && application != "settings" && application != "malwarebites" && application != "5" && application != "app 5") {
cout << "Invalid Application..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
applicationSelected = false;
}
}
}
bool selectionDone = false;
while (selectionDone == false) {
selectionDone = true;
cout << "You have completed the game!" << endl;
cout << "Choose an option: " << endl;
cout << "1. Return to the Menu" << endl;
cout << "2. End the Game" << endl;
string doneoption;
cout << "I choose: ";
cin >> doneoption;
transform(doneoption.begin(), doneoption.end(), doneoption.begin(), ::tolower);
if (doneoption == "1" or doneoption == "return to the menu") {
easyDone = true;
menuOn = false;
}
if (doneoption == "2" or doneoption == "end the game") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Quiting..." << endl;
terminate();
}
if (doneoption != "1" && doneoption != "2" && doneoption != "return to the menu" && doneoption != "end the game") {
cout << "Invalid Option...Try again..." << endl;
selectionDone = false;
}
}
}
}
else {
cout << "Restarting..." << endl;
menuOn = false;
}
}
if (mode == "help") {
cout << "Type in your answer into things...and ummmmm...have fun!" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Press ENTER to continue...";
cin.get();
cin.get();
cout << "Returning to menu..." << endl;
sleep_until(system_clock::now() + seconds(1));
menuOn = false;
}
if (mode == "quit") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Quiting..." << endl;
terminate();
}
if (mode != "help" && mode != "orignal" && mode != "quit") {
cout << "Invalid mode! Restarting..." << endl;
menuOn = false;
}
}
}
}
string getFileContents(ifstream& File)
{
string Lines = ""; //All lines
if (File) //Check if everything is good
{
while (File.good()) {
string TempLine; //Temp line
getline(File, TempLine); //Get temp line
TempLine += "\n"; //Add newline character
Lines += TempLine; //Add newline
}
return Lines;
}
else //Return error
{
return "ERROR: File text file not found. Please make sure you have the 4 .txt files in the same folder as the script. If so, please create a issue on GitHub.";
}
}
Original vs. Beautified Diff:
Index: /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS/main.cpp
===================================================================
--- /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS/main.cpp original
+++ /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS/main.cpp beautified
2017-04-15T19:49:31.271Z - info: [beautifiers/index.coffee] beautify #include <iostream>
#include <cstring>
#include <string>
#include <chrono>
#include <thread>
#include <fstream>
#include <algorithm>
using namespace std::this_thread; // sleep_for, sleep_until
using namespace std::chrono; // nanoseconds, system_clock, seconds
using namespace std;
string getFileContents(ifstream&);
bool wantRun = true;
float randomNumber;
int rerun = 0;
int ad = 0;
int lives = 3;
int sleepTime = 0;
int percentage = 0;
int loadReRun = 0;
bool reRunned = false;
bool adWare = false;
bool malWare = false;
int main(int argc, char* argv[])
{
while (wantRun == true) {
wantRun = false;
cout << "Welcome to: " << endl;
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("title.txt"); //Open file
string Art = getFileContents(Reader); //Get file
cout << Art << endl; //Print it to the screen
Reader.close(); //Close file
sleep_until(system_clock::now() + seconds(1));
cout << "(Unoriginal Game Simulator)" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Loading..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
bool menuOn = false;
while (menuOn == false) {
cout << string(100, '\n');
menuOn = true;
lives = 3;
ifstream Reader("title.txt"); //Open file
string Art = getFileContents(Reader); //Get file
cout << Art << endl; //Print it to the screen
Reader.close(); //Close file
cout << "(Unoriginal Game Simulator)" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "No (C) 2017" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Choose an option: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Play" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Help" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Quit" << endl;
string mode;
sleep_until(system_clock::now() + seconds(1));
cout << "I choose: ";
cin >> mode;
transform(mode.begin(), mode.end(), mode.begin(), ::tolower);
if (mode == "play") {
cout << "You chose Play, correct? ";
string sure;
cin >> sure;
transform(sure.begin(), sure.end(), sure.begin(), ::tolower);
if (sure == "yes") {
cout << "Loading..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
bool easyDone = false;
bool quizRan = false;
bool hackSimRan = false;
int questionsCorrect = 0;
while (easyDone == false) {
easyDone = true;
quizRan = true;
cout << "Please pass the quiz to log-in: " << endl;
cout << "What is the prize for answering correctly? "
<< "A. Money "
<< "B. Mercy "
<< "C. New Car "
<< "D. More Questions" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "The prize is: ";
string prize;
while (rerun != 2) {
getline (cin, prize);
transform(prize.begin(), prize.end(), prize.begin(), ::tolower);
rerun = rerun + 1;
reRunned = true;
}
rerun = 0;
if (prize == "d" or prize == "more questions") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "What is the king's name? "
<< "A. Lord Fluffybuns "
<< "B. Fuzzy Pushover "
<< "C. Asgore Dreemurr "
<< "D. Doctor Friendship" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "The king's name is: ";
string kingname;
getline (cin, kingname);
transform(kingname.begin(), kingname.end(), kingname.begin(), ::tolower);
rerun = 0;
if (kingname == "asgore dreemurr" or kingname == "c") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "What are robots made of? "
<< "A. Hopes and Dreams "
<< "B. Metal and Magic "
<< "C. Snips and Snails "
<< "D. Sugar and Spice" << endl;
sleep_until(system_clock::now() + seconds(1));
string robots;
cout << "Robots are made of: ";
getline (cin, robots);
transform(robots.begin(), robots.end(), robots.begin(), ::tolower);
rerun = 0;
if (robots == "metal and magic" or robots == "b") {
questionsCorrect = questionsCorrect + 1;
cout << "Corect!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
cout << "Two trains, Train A and Train B, simultaneously depart Station A and Station B. Station A and Station B are 252.5 miles apart from each other. Train A is moving at 124.7mph towards Station B, and Train B is moving at 253.5mph towards Station A. If both trains departed at 10:00AM and it is now 10:08, how much longer until both trains pass each other? "
<< "A. 31.054 minutes "
<< "B. 16.232 minutes "
<< "C. 32.049 minutes "
<< "D. 32.058 minutes" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "They will meet in: ";
string iliketrains;
getline (cin, iliketrains);
transform(iliketrains.begin(), iliketrains.end(), iliketrains.begin(), ::tolower);
rerun = 0;
if (iliketrains == "32.058 minutes" or iliketrains == "d" or iliketrains == "32.058") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "Incorrect!" << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
cout << "Would you smooch a ghost? "
<< "A. Heck Yeah "
<< "B. Heck Yeah "
<< "C. Heck Yeah "
<< "D. Heck Yeah" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "I would: ";
string ghost;
getline (cin, ghost);
transform(ghost.begin(), ghost.end(), ghost.begin(), ::tolower);
if (ghost == "heck yeah" or ghost == "a" or ghost == "b" or ghost == "c" or ghost == "d") {
questionsCorrect = questionsCorrect + 1;
cout << "Correct!" << endl;
}
else {
lives = lives - 1;
cout << "...Really?...Just...Honestly...every single one was correct..." << endl;
cout << "You have " << lives << " lives left." << endl;
sleep_until(system_clock::now() + seconds(1));
if (lives == 0) {
cout << "Game Over..." << endl;
cout << "Press ENTER to continue...";
cin.get();
cout << "Ending..." << endl;
terminate();
}
}
if (questionsCorrect == 5) {
cout << "Passcode Correct...";
}
else {
cout << "Passcode Correct(Enough)...";
}
cout << "Press ENTER to continue...";
cin.get();
easyDone = false;
bool connectedToWifi = false;
bool dogeMode = false;
bool reRanHack = false;
bool bitesDone = false;
int timesReRan = 0;
hackSimRan = true;
cout << "DogeOS, booting up..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
easyDone = false;
bool malwareBites = false;
cout << "DogeOS online..." << endl;
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
cout << "Listing applications..." << endl;
sleep_until(system_clock::now() + seconds(1));
bool applicationSelected = false;
while (applicationSelected == false) {
applicationSelected = true;
timesReRan = timesReRan + 1;
if (timesReRan == 2) {
reRanHack = true;
}
if (malwareBites == true) {
cout << "You have 5 applications..." << endl;
}
if (malwareBites != true && malWare != true) {
cout << "You have 4 applications..." << endl;
}
if (malWare == true) {
bool iznobRerun = true;
while (iznobRerun == true) {
iznobRerun = false;
cout << "▼ Hi, I'm IZNOB. Let's learn about the INTERWEBS." << endl;
ifstream Reader("iznob.txt");
string aiznob = getFileContents(Reader);
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(1));
cout << "YES or YES: ";
string iznob;
cin >> iznob;
transform(iznob.begin(), iznob.end(), iznob.begin(), ::tolower);
if (iznob == "yes") {
cout << "▼ Installing interweb drivers..." << endl;
ifstream Reader("iznob.txt");
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(1));
sleep_until(system_clock::now() + seconds(4));
cout << "▼ Great! We're ready!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's visit my home!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to getiznobbubby.com" << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's download some cool stuff!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Downloading Cool Stuff..." << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "▼ Cool Stuff installed!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Going to CoolCrap.com..." << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ This is my friend...COOLCRAP!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to CoolCrap.com. We highly recommend installing Windows Media Player and Internet Explorer and revisiting this page." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Wait...one moment..." << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Installing Windows Suite for Linux..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Great!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "▼ Let's go back to CoolCrap.com!" << endl;
cout << aiznob << endl;
Reader.close();
sleep_until(system_clock::now() + seconds(3));
cout << "Welcome to CoolCrap.com!" << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "Free Email?!" << endl;
cout << "YES or YES: ";
string email;
cin >> email;
cout << "Installing FreeEmail..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
cout << "FREE CRAP FOR FREE! AT FREECRAP.COM!" << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "FATAL ERROR: EXECUTABLE NOT FOUND: kernel_task" << endl;
cout << "Shutting down..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Rebooting..." << endl;
cout << "\r"
<< "Running System Applications... " << flush;
sleep_until(system_clock::now() + seconds(2));
cout << "\r"
<< "Stiching Quantum Loopholes... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "\r"
<< "Loading Doge... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "\r"
<< "Starting kernel_task... " << flush;
sleep_until(system_clock::now() + seconds(3));
cout << "Fatal error..." << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "Booting into BIOS..." << endl;
sleep_until(system_clock::now() + seconds(5));
cout << "BIOS UTILITY: " << endl;
cout << "1:Reinstall OS" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "3🐶FATAL ERROR" << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "4🕒" << endl;
sleep_until(system_clock::now() + seconds(4));
cout << "I choose: ";
sleep_until(system_clock::now() + seconds(2));
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl; cout << "2:😭(Please Have Emojis)" << endl;
cout << "3🐶(ERRROERAS)" << endl;
cout << "4🕒" << endl;
sleep_until(system_clock::now() + seconds(5));
cout << "Shutting down..." << endl;
sleep_until(system_clock::now() + seconds(3));
bool booted = false;
while (booted == false) {
booted = true;
cout << "Choose a partion to boot into: " << endl;
cout << "1🍶" << endl;
sleep_until(system_clock::now() + seconds(1));
if (malwareBites == true) {
cout << "2:MalwareBites Recovery Partion" << endl;
sleep_until(system_clock::now() + seconds(1));
}
string partion;
if (malwareBites == true) {
cout << "Boot into Partion #";
cin >> partion;
}
if (malwareBites == false or partion == "1") {
cout << "Booting into Partion 🍶..." << endl;
cout << "ERROR: CANNOT BOOT...LOADING..." << endl;
sleep_until(system_clock::now() + seconds(2));
cout << "ALL DATA CORRU🇩🇪📅" << endl;
sleep_until(system_clock::now() + seconds(2));
terminate();
}
if (malwareBites == true && partion == "2") {
while (bitesDone == false) {
bitesDone = true;
cout << "Welcome to the MalwareBites Recovery Partion!" << endl;
cout << "Choose an option: 1:Scan or 2:Quit" << endl;
cout << "I choose: ";
string biteoption;
cin >> biteoption;
transform(biteoption.begin(), biteoption.end(), biteoption.begin(), ::tolower);
if (biteoption == "scan" or biteoption == "1" or biteoption == "1:scan") {
cout << "Scanning..." << endl;
sleep_until(system_clock::now() + seconds(3));
if (adWare != true && malWare != true) {
cout << "Nothing found..." << endl;
bitesDone = false;
}
if (adWare == true) {
cout << "Found AdWare at byte 0x5e." << endl;
cout << "Marking as overwiteable..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
adWare = false;
bitesDone = false;
}
if (malWare == true) {
cout << "Found MalWare at byte 0x3e." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
malWare = false;
bitesDone = false;
}
}
if (biteoption == "quit" or biteoption == "2:quit" or biteoption == "2") {
if (malWare == true) {
cout << "ERROR...PARTION:🍶 CORRUPTED." << endl;
terminate();
}
cout << "Quiting..." << endl;
}
if (biteoption != "quit" && biteoption != "scan" && biteoption != "1" && biteoption != "2" && biteoption != "1:scan" && biteoption != "2:quit") {
cout << "Invalid Option..." << endl;
bitesDone = false;
}
}
}
}
}
else {
cout << "▼ Invalid Response..." << endl;
cout << aiznob << endl;
Reader.close();
iznobRerun = true;
}
}
}
sleep_until(system_clock::now() + seconds(1));
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "APP 1. Loogle Mhrome" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "APP 2. DogeOS Media Player High Quality Hi-Fi" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "APP 3. Terminal" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "APP 4. Settings" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
if (malwareBites == true) {
cout << "APP 5. Malware Bites" << endl;
sleep_until(system_clock::now() + seconds(1));
}
cout << "Choose an application: ";
string application;
if (reRanHack == false) {
getline (cin, application);
transform(application.begin(), application.end(), application.begin(), ::tolower);
}
else {
getline (cin, application);
getline (cin, application);
transform(application.begin(), application.end(), application.begin(), ::tolower);
}
if (malwareBites == true) {
if (application == "5" or application == "app 5" or application == "malware bites") {
while (bitesDone == false) {
bitesDone = true;
cout << "Welcome to MalwareBites!" << endl;
cout << "Choose an option: 1:Scan or 2:Quit" << endl;
cout << "I choose: ";
string biteoption;
cin >> biteoption;
transform(biteoption.begin(), biteoption.end(), biteoption.begin(), ::tolower);
if (biteoption == "scan" or biteoption == "1" or biteoption == "1:scan") {
cout << "Scanning..." << endl;
sleep_until(system_clock::now() + seconds(3));
if (adWare == true) {
cout << "Found AdWare at byte 0x5e." << endl;
cout << "Marking as overwiteable..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Marked!" << endl;
adWare = false;
bitesDone = false;
}
else {
cout << "Nothing found..." << endl;
bitesDone = false;
}
}
if (biteoption == "quit" or biteoption == "2:quit" or biteoption == "2") {
cout << "Quiting..." << endl;
applicationSelected = false;
}
if (biteoption != "quit" && biteoption != "scan" && biteoption != "1" && biteoption != "2" && biteoption != "1:scan" && biteoption != "2:quit") {
cout << "Invalid Option..." << endl;
bitesDone = false;
}
}
}
}
if (application == "4" or application == "app 4" or application == "settings") {
cout << "Welcome to Settings!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
bool settingsOptionSelected = false;
while (settingsOptionSelected == false) {
settingsOptionSelected = true;
cout << "Choose a preference pane: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Option 1. WIFI" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Option 2. Doge Mode" << endl;
sleep_until(system_clock::now() + seconds(1));
string settingsoption;
cout << "I choose: ";
cin >> settingsoption;
transform(settingsoption.begin(), settingsoption.end(), settingsoption.begin(), ::tolower);
if (settingsoption == "wifi" or settingsoption == "1" or settingsoption == "option 1") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (connectedToWifi == true) {
cout << "Disconnecting from \"The man in the white van\"..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Disconnected!" << endl;
}
cout << "Choose from the following list of WIFI networks: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 1. The man in the white van" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 2. The man in the white van" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Network 3. The man in the white van" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "I choose: ";
string wifi;
cin >> wifi;
cout << "Connecting to network \"The man in the white van\"..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Connected!" << endl;
applicationSelected = false;
settingsOptionSelected = true;
connectedToWifi = true;
}
if (settingsoption == "doge mode" or settingsoption == "2" or settingsoption == "option 2") {
cout << "Choose an option: " << endl;
cout << "Option 1. Enable Doge Mode " << endl;
if (dogeMode == true) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Option 2. Disable Doge Mode " << endl;
}
string dogemodeoptions;
cout << "I choose: ";
cin >> dogemodeoptions;
if (dogemodeoptions == "2" or dogemodeoptions == "disable doge mode" or dogemodeoptions == "option 2") {
cout << "Doge Sad...):" << endl;
dogeMode = false;
}
else {
cout << "Enabling Doge Mode..." << endl;
dogeMode = true;
}
applicationSelected = false;
settingsOptionSelected = true;
}
if (settingsoption != "wifi" && settingsoption != "doge mode" && settingsoption != "1" && settingsoption != "2" && settingsoption != "option 1" && settingsoption != "option 2") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Invalid Option!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
settingsOptionSelected = false;
}
}
}
if (application == "loogle mhrome" or application == "app 1" or application == "1") {
if (connectedToWifi == false) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "NO INTERNET CONNECTION..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
else {
cout << "Welcome to Loogle Mrome." << endl;
cout << "Your bookmarks are: " << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "1. http://malware.com" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "2. http://cool.com" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "3. https://malwarebites.com" << endl;
sleep_until(system_clock::now() + seconds(1));
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Type in a URL: ";
string url;
cin >> url;
transform(url.begin(), url.end(), url.begin(), ::tolower);
if (url == "https://malware.com" or url == "http://malware.com" or url == "malware.com") {
cout << "Welcome to Malware.Com, your source for good malware!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Recieving download..." << endl;
cout << "Downloading Iznob Buddy..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Downloaded and Installed!" << endl;
malWare = true;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (url == "https://cool.com" or url == "http://cool.com" or url == "cool.com") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Welcome to Cool.Com. Because you're not cool!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Downloading Cool.com adware..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Installed Cool.com program!" << endl;
adWare = true;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (url == "malwarebites.com" or url == "http://malwarebites.com" or url == "https://malwarebites.com") {
cout << "Welcome to Malware Bites. Downloading Anti - AdWare/Malware/Spyware...You know..." << endl;
sleep_until(system_clock::now() + seconds(3));
cout << "Downloaded and Installed!" << endl;
malwareBites = true;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
if (application != "https://malware.com" && url != "http://malware.com" && url != "malware.com" && url != "https://cool.com" && url != "http://cool.com" && url != "cool.com" && url != "malwarebites.com" && url != "http://malwarebites.com" && url != "https://malwarebites.com") {
cout << "INVALID URL..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Closing application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
}
}
if (application == "dogeos media player" or application == "dogeos media player high quality hi-fi" or application == "app 2" or application == "2") {
cout << "Welcome to DogeOS Media Player High Quality Hi-Fi." << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
applicationSelected = false;
}
if (application == "terminal" or application == "app 3" or application == "3") {
if (connectedToWifi == false) {
cout << "NO INTERNET CONNECTION..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "AN ERROR OCCURED IN THE APPLICATION" << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Closing Application..." << endl;
sleep_until(system_clock::now() + seconds(1));
applicationSelected = false;
}
else {
cout << "Welcome to Terminal." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
bool pingRan = false;
bool commandExecuted = true;
while (commandExecuted == true) {
commandExecuted = false;
cout << "DogeSystem:~ HaxIsCool$ ";
string terminal;
getline (cin, terminal);
transform(terminal.begin(), terminal.end(), terminal.begin(), ::tolower);
if (terminal == "help") {
sleep_until(system_clock::now() + seconds(1));
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: hack (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
commandExecuted = true;
}
if (terminal == "doge") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = true;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
}
if (terminal == "ping") {
pingRan = true;
cout << "Enter an IP: ";
string pip1;
cin >> pip1;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Pinging IP: " << pip1 << "..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Waiting for response..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "ERROR: No Open Ports" << endl;
commandExecuted = true;
}
if (terminal == "mettaton") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("mettaton.txt"); //Open file
string mettaton = getFileContents(Reader); //Get file
cout << mettaton << endl; //Print it to the screen
Reader.close(); //Close file
commandExecuted = true;
}
if (terminal == "you're gonna have a bad time") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Easter Egg Unlocked!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Skipping the game..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "10% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "20% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "30% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "40% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "50% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "60% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "70% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "80% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "90% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "100% complete. " << flush;
cout << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Game Skipped!" << endl;
commandExecuted = false;
}
if (terminal != "help" && terminal != "doge" && terminal != "ping" && terminal != "hack" && terminal != "mettaton" && terminal != "you're gonna have a bad time") {
cout << "Invalid Command!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = true;
}
if (terminal == "hack") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Werid Hack Command (C) 2983" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Connecting stuff..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Online!" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Looking through IP history..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "IP History: EMPTY" << endl;
sleep_until(system_clock::now() + seconds(1));
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Enter an IP adress: ";
string ip;
cin >> ip;
cout << "Connecting to IP " << ip << "." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "ERROR: No Open Ports!" << endl;
bool hackCommandExecuted = true;
bool ipConnected = false;
while (hackCommandExecuted == true) {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "DogeSystem:~ HaxIsCool$ ";
string hackcommand;
cin >> hackcommand;
transform(hackcommand.begin(), hackcommand.end(), hackcommand.begin(), ::tolower);
if (hackcommand == "help") {
sleep_until(system_clock::now() + seconds(1));
if (ipConnected == false) {
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " ERRORS " << endl;
cout << "Hack (Not Responding..)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
}
else {
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
cout << " HELP " << endl;
cout << "Command: hack (because)" << endl;
cout << "Command: doge (because)" << endl;
cout << "Command: ping (because)" << endl;
cout << "Command: help (duh....)" << endl;
cout << "Command: mettaton (...)" << endl;
cout << "-_-_-_-_-_-_-_-_-_-_-_-" << endl;
}
hackCommandExecuted = true;
}
if (hackcommand == "hack") {
if (ipConnected == false) {
cout << "ERROR: COMMAND NOT RESPONDING...Closing Process..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "Closed!" << endl;
hackCommandExecuted = true;
}
if (ipConnected == true) {
sleep_until(system_clock::now() + seconds(1));
cout << "Werid Hack Command (C) 2983" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Connecting stuff..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Online!" << endl;
cout << "Looking through IP history..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Found IP at byte 0xe2" << endl;
cout << "Connecting..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "10% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "20% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "30% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "40% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "50% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "60% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "70% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "80% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "90% complete. " << flush;
sleep_until(system_clock::now() + seconds(1));
cout << "\r"
<< "100% complete. " << flush;
cout << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Connected!" << endl;
bool attackTypeSelected = false;
while (attackTypeSelected == false) {
attackTypeSelected = true;
cout << "Choose a attack: " << endl;
cout << "1. DDos attack" << endl;
cout << "2. Conventional Attack" << endl;
cout << "I choose: ";
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
string attacktype;
cin >> attacktype;
transform(attacktype.begin(), attacktype.end(), attacktype.begin(), ::tolower);
if (attacktype == "1" or attacktype == "ddos attack" or attacktype == "ddos") {
cout << "Pinging..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
cout << "Pinging..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Recieved 50 replies within 500ms" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Attack Complete!" << endl;
commandExecuted = false;
hackCommandExecuted = false;
}
if (attacktype == "2" or attacktype == "conventional attack" or attacktype == "conventional") {
cout << "Connected!" << endl;
cout << "Installing Ransomware from http://completelynotmalwareandransomware.com..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Installed!" << endl;
cout << "Choose the amount you would like to recieve: ";
string munsforcolleg;
cin >> munsforcolleg;
transform(munsforcolleg.begin(), munsforcolleg.end(), munsforcolleg.begin(), ::tolower);
cout << "Amount of pay set to: $" << munsforcolleg << "." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
commandExecuted = false;
hackCommandExecuted = false;
}
if (attacktype != "1" && attacktype != "2" && attacktype != "conventional attack" && attacktype != "ddos attack" && attacktype != "ddos" && attacktype != "conventional") {
cout << "Invalid Attack!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
attackTypeSelected = false;
}
}
}
}
if (hackcommand == "mettaton") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("mettaton.txt"); //Open file
string mettaton = getFileContents(Reader); //Get file
cout << mettaton << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
if (hackcommand == "ping") {
cout << "Enter an IP: ";
string pip;
cin >> pip;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
cout << "Pinging IP: " << pip << "..." << endl;
while (loadReRun != 100) {
percentage = percentage + 1;
sleepTime = rand() % 200000000 + 90000000;
sleep_for(nanoseconds(sleepTime));
cout << "\r"
<< percentage << "% complete. " << flush;
loadReRun = loadReRun + 1;
}
cout << endl;
loadReRun = 0;
percentage = 0;
cout << "Waiting for response..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Pong! Recieved reply within 34ms" << endl;
cout << "Writing IP to byte 0xe2..." << endl;
sleep_until(system_clock::now() + seconds(1));
cout << "Written!" << endl;
cout << "Command: Hack, Now Responding..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
ipConnected = true;
hackCommandExecuted = true;
}
if (hackcommand == "doge") {
sleep_until(system_clock::now() + seconds(1));
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
if (hackcommand != "help" && hackcommand != "ping" && hackcommand != "doge" && hackcommand != "mettaton" && hackcommand != "hack") {
cout << "Invalid Command!" << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
hackCommandExecuted = true;
}
}
}
}
}
}
if (malwareBites == false) {
if (application != "loogle mhrome" && application != "app 1" && application != "1" && application != "dogeos media player" && application != "dogeos media player high quality hi-fi" && application != "app 2" && application != "2" && application != "terminal" && application != "app 3" && application != "3" && application != "4" && application != "app 4" && application != "settings") {
cout << "Invalid Application..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
applicationSelected = false;
}
}
else {
if (application != "loogle mhrome" && application != "app 1" && application != "1" && application != "dogeos media player" && application != "dogeos media player high quality hi-fi" && application != "app 2" && application != "2" && application != "terminal" && application != "app 3" && application != "3" && application != "4" && application != "app 4" && application != "settings" && application != "malwarebites" && application != "5" && application != "app 5") {
cout << "Invalid Application..." << endl;
if (dogeMode == true) {
ifstream Reader("doge.txt"); //Open file
string doge = getFileContents(Reader); //Get file
cout << doge << endl; //Print it to the screen
Reader.close(); //Close file
}
applicationSelected = false;
}
}
}
bool selectionDone = false;
while (selectionDone == false) {
selectionDone = true;
cout << "You have completed the game!" << endl;
cout << "Choose an option: " << endl;
cout << "1. Return to the Menu" << endl;
cout << "2. End the Game" << endl;
string doneoption;
cout << "I choose: ";
cin >> doneoption;
transform(doneoption.begin(), doneoption.end(), doneoption.begin(), ::tolower);
if (doneoption == "1" or doneoption == "return to the menu") {
easyDone = true;
menuOn = false;
}
if (doneoption == "2" or doneoption == "end the game") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Quiting..." << endl;
terminate();
}
if (doneoption != "1" && doneoption != "2" && doneoption != "return to the menu" && doneoption != "end the game") {
cout << "Invalid Option...Try again..." << endl;
selectionDone = false;
}
}
}
}
else {
cout << "Restarting..." << endl;
menuOn = false;
}
}
if (mode == "help") {
cout << "Type in your answer into things...and ummmmm...have fun!" << endl;
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
sleep_until(system_clock::now() + seconds(1));
cout << "Press ENTER to continue...";
cin.get();
cin.get();
cout << "Returning to menu..." << endl;
sleep_until(system_clock::now() + seconds(1));
menuOn = false;
}
if (mode == "quit") {
if (adWare == true) {
ad = rand() % 3 + 1;
if (ad == 1) {
cout << "Cool Crap! For FREE! GET IT TODAY AT COOLCRAP.COM!" << endl;
}
if (ad == 2) {
cout << "STUPID STUFF! (YOU WANT IT) GO TO STUPIDSTUFF.COM!" << endl;
}
if (ad == 3) {
cout << "COOL.COM ADWARE. YOUR BEST FRIEND!" << endl;
}
}
cout << "Quiting..." << endl;
terminate();
}
if (mode != "help" && mode != "orignal" && mode != "quit") {
cout << "Invalid mode! Restarting..." << endl;
menuOn = false;
}
}
}
}
string getFileContents(ifstream& File)
{
string Lines = ""; //All lines
if (File) //Check if everything is good
{
while (File.good()) {
string TempLine; //Temp line
getline(File, TempLine); //Get temp line
TempLine += "\n"; //Add newline character
Lines += TempLine; //Add newline
}
return Lines;
}
else //Return error
{
return "ERROR: File text file not found. Please make sure you have the 4 .txt files in the same folder as the script. If so, please create a issue on GitHub.";
}
}
[ { _default: { indent_size: 2, indent_char: ' ', indent_with_tabs: false } },
{ apex:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
arduino:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
bash:
{ indent_size: 2,
disabled: false,
default_beautifier: 'beautysh',
beautify_on_save: false },
cs:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
c:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
clj:
{ disabled: false,
default_beautifier: 'cljfmt',
beautify_on_save: false },
coffeescript:
{ indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 0,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
disabled: false,
default_beautifier: 'coffee-fmt',
beautify_on_save: false },
cfml:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
cpp:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
crystal:
{ disabled: false,
default_beautifier: 'Crystal',
beautify_on_save: false },
css:
{ indent_size: 4,
indent_char: ' ',
selector_separator_newline: false,
newline_between_rules: true,
preserve_newlines: false,
wrap_line_length: 0,
end_with_newline: false,
indent_comments: true,
force_indentation: false,
convert_quotes: 'none',
align_assignments: false,
no_lead_zero: false,
configPath: '',
predefinedConfig: 'csscomb',
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
csv:
{ disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
d:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
ejs:
{ indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 250,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
indent_inner_html: false,
indent_scripts: 'normal',
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
unformatted: [Object],
extra_liners: [Object],
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
elm:
{ disabled: false,
default_beautifier: 'elm-format',
beautify_on_save: false },
erb:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
erlang:
{ disabled: false,
default_beautifier: 'erl_tidy',
beautify_on_save: false },
gherkin:
{ indent_size: 4,
indent_char: ' ',
disabled: false,
default_beautifier: 'Gherkin formatter',
beautify_on_save: false },
glsl:
{ configPath: '',
disabled: false,
default_beautifier: 'clang-format',
beautify_on_save: false },
go:
{ disabled: false,
default_beautifier: 'gofmt',
beautify_on_save: false },
gohtml:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
fortran:
{ emacs_path: '',
emacs_script_path: '',
disabled: false,
default_beautifier: 'Fortran Beautifier',
beautify_on_save: false },
handlebars:
{ indent_inner_html: false,
indent_size: 4,
indent_char: ' ',
brace_style: 'collapse',
indent_scripts: 'normal',
wrap_line_length: 250,
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
preserve_newlines: true,
max_preserve_newlines: 10,
unformatted: [Object],
end_with_newline: false,
extra_liners: [Object],
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
haskell:
{ disabled: false,
default_beautifier: 'stylish-haskell',
beautify_on_save: false },
html:
{ indent_inner_html: false,
indent_size: 4,
indent_char: ' ',
brace_style: 'collapse',
indent_scripts: 'normal',
wrap_line_length: 250,
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
preserve_newlines: true,
max_preserve_newlines: 10,
unformatted: [Object],
end_with_newline: false,
extra_liners: [Object],
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
jade:
{ indent_size: 4,
indent_char: ' ',
disabled: false,
default_beautifier: 'Pug Beautify',
beautify_on_save: false },
java:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
js:
{ indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 0,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
json:
{ indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 0,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
jsx:
{ e4x: true,
indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 0,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
latex:
{ indent_char: ' ',
indent_with_tabs: true,
indent_preamble: false,
always_look_for_split_braces: true,
always_look_for_split_brackets: false,
remove_trailing_whitespace: false,
align_columns_in_environments: [Object],
disabled: false,
default_beautifier: 'Latex Beautify',
beautify_on_save: false },
less:
{ indent_size: 4,
indent_char: ' ',
newline_between_rules: true,
preserve_newlines: false,
wrap_line_length: 0,
indent_comments: true,
force_indentation: false,
convert_quotes: 'none',
align_assignments: false,
no_lead_zero: false,
configPath: '',
predefinedConfig: 'csscomb',
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
lua:
{ disabled: false,
default_beautifier: 'Lua beautifier',
beautify_on_save: false },
markdown:
{ gfm: true,
yaml: true,
commonmark: false,
disabled: false,
default_beautifier: 'Tidy Markdown',
beautify_on_save: false },
marko:
{ indent_size: 4,
indent_char: ' ',
syntax: 'html',
indent_inner_html: false,
brace_style: 'collapse',
indent_scripts: 'normal',
wrap_line_length: 250,
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
preserve_newlines: true,
max_preserve_newlines: 10,
unformatted: [Object],
end_with_newline: false,
extra_liners: [Object],
disabled: false,
default_beautifier: 'Marko Beautifier',
beautify_on_save: false },
mustache:
{ indent_inner_html: false,
indent_size: 4,
indent_char: ' ',
brace_style: 'collapse',
indent_scripts: 'normal',
wrap_line_length: 250,
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
preserve_newlines: true,
max_preserve_newlines: 10,
unformatted: [Object],
end_with_newline: false,
extra_liners: [Object],
disabled: false,
default_beautifier: 'JS Beautify',
beautify_on_save: false },
nginx:
{ indent_size: 4,
indent_char: ' ',
indent_with_tabs: false,
dontJoinCurlyBracet: true,
disabled: false,
default_beautifier: 'Nginx Beautify',
beautify_on_save: false },
nunjucks:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
objectivec:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
ocaml:
{ disabled: false,
default_beautifier: 'ocp-indent',
beautify_on_save: false },
pawn:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
perl:
{ perltidy_profile: '',
disabled: false,
default_beautifier: 'Perltidy',
beautify_on_save: false },
php:
{ cs_fixer_path: '',
rules: '',
phpcbf_path: '',
standard: '',
disabled: false,
default_beautifier: 'PHP-CS-Fixer',
beautify_on_save: false },
puppet:
{ disabled: false,
default_beautifier: 'puppet-lint',
beautify_on_save: false },
python:
{ max_line_length: 79,
indent_size: 4,
ignore: [Object],
formater: 'autopep8',
style_config: 'pep8',
sort_imports: false,
multi_line_output: 'Hanging Grid Grouped',
disabled: false,
default_beautifier: 'autopep8',
beautify_on_save: false },
r:
{ indent_size: 4,
disabled: false,
default_beautifier: 'formatR',
beautify_on_save: false },
riot:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
ruby:
{ indent_size: 4,
rubocop_path: '',
indent_char: ' ',
disabled: false,
default_beautifier: 'Rubocop',
beautify_on_save: false },
rust:
{ rustfmt_path: '',
disabled: false,
default_beautifier: 'rustfmt',
beautify_on_save: false },
sass:
{ disabled: false,
default_beautifier: 'SassConvert',
beautify_on_save: false },
scss:
{ indent_size: 4,
indent_char: ' ',
newline_between_rules: true,
preserve_newlines: false,
wrap_line_length: 0,
indent_comments: true,
force_indentation: false,
convert_quotes: 'none',
align_assignments: false,
no_lead_zero: false,
configPath: '',
predefinedConfig: 'csscomb',
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
spacebars:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
sql:
{ indent_size: 4,
keywords: 'upper',
identifiers: 'unchanged',
disabled: false,
default_beautifier: 'sqlformat',
beautify_on_save: false },
svg:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
swig:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
tss:
{ indent_size: 4,
indent_char: ' ',
newline_between_rules: true,
preserve_newlines: false,
wrap_line_length: 0,
indent_comments: true,
force_indentation: false,
convert_quotes: 'none',
align_assignments: false,
no_lead_zero: false,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
twig:
{ indent_size: 4,
indent_char: ' ',
indent_with_tabs: false,
preserve_newlines: true,
space_in_paren: false,
space_after_anon_function: false,
break_chained_methods: false,
wrap_line_length: 250,
end_with_comma: false,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
typescript:
{ indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 0,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
disabled: false,
default_beautifier: 'TypeScript Formatter',
beautify_on_save: false },
ux:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
vala:
{ configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false },
vue:
{ indent_size: 4,
indent_char: ' ',
indent_level: 0,
indent_with_tabs: false,
preserve_newlines: true,
max_preserve_newlines: 10,
space_in_paren: false,
jslint_happy: false,
space_after_anon_function: false,
brace_style: 'collapse',
break_chained_methods: false,
keep_array_indentation: false,
keep_function_indentation: false,
space_before_conditional: true,
eval_code: false,
unescape_strings: false,
wrap_line_length: 250,
end_with_newline: false,
end_with_comma: false,
end_of_line: 'System Default',
indent_inner_html: false,
indent_scripts: 'normal',
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
unformatted: [Object],
extra_liners: [Object],
disabled: false,
default_beautifier: 'Vue Beautifier',
beautify_on_save: false },
visualforce:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
xml:
{ indent_inner_html: false,
indent_size: 4,
indent_char: ' ',
brace_style: 'collapse',
indent_scripts: 'normal',
wrap_line_length: 250,
wrap_attributes: 'auto',
wrap_attributes_indent_size: 4,
preserve_newlines: true,
max_preserve_newlines: 10,
unformatted: [Object],
end_with_newline: false,
extra_liners: [Object],
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false },
xtemplate:
{ indent_size: 4,
indent_char: ' ',
wrap_line_length: 250,
preserve_newlines: true,
disabled: false,
default_beautifier: 'Pretty Diff',
beautify_on_save: false } },
{ _default: {} },
{ _default: {} },
{ _default: {} },
{ _default: {} },
{ _default: {} },
{ _default: {} },
{ _default: {} },
{ _default: {} },
{ _default: {} } ] C++ /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS/main.cpp
2017-04-15T19:49:31.275Z - verbose: [beautifiers/index.coffee] indent_size=2, indent_char= , indent_with_tabs=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, e4x=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, dontJoinCurlyBracet=true, disabled=false, default_beautifier=Nginx Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, rules=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], formater=autopep8, style_config=pep8, sort_imports=false, multi_line_output=Hanging Grid Grouped, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, , , , , , , , ,
2017-04-15T19:49:31.280Z - verbose: [beautifiers/index.coffee] [ { name: 'C++',
namespace: 'cpp',
grammars: [ 'C++' ],
extensions:
[ 'h',
'hh',
'cc',
'cpp',
'cxx',
'C',
'cu',
'c++',
'hpp',
'hxx',
'h++',
'cuh' ],
options: { configPath: [Object] } } ] 'C++' 'cpp'
2017-04-15T19:49:31.280Z - verbose: [beautifiers/index.coffee] Language C++ supported
2017-04-15T19:49:31.280Z - verbose: [beautifiers/index.coffee] getOptions selections [ 'cpp' ] indent_size=2, indent_char= , indent_with_tabs=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, e4x=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, dontJoinCurlyBracet=true, disabled=false, default_beautifier=Nginx Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, rules=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], formater=autopep8, style_config=pep8, sort_imports=false, multi_line_output=Hanging Grid Grouped, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, , , , , , , , ,
2017-04-15T19:49:31.282Z - verbose: [beautifiers/index.coffee] true indent_size=2, indent_char= , indent_with_tabs=false
2017-04-15T19:49:31.282Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.283Z - verbose: [beautifiers/index.coffee] options cpp indent_size=2, indent_char= , indent_with_tabs=false
2017-04-15T19:49:31.283Z - verbose: [beautifiers/index.coffee] true configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, e4x=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, dontJoinCurlyBracet=true, disabled=false, default_beautifier=Nginx Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, rules=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], formater=autopep8, style_config=pep8, sort_imports=false, multi_line_output=Hanging Grid Grouped, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false
2017-04-15T19:49:31.285Z - verbose: [beautifiers/index.coffee] options cpp configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.286Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] true
2017-04-15T19:49:31.287Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.288Z - verbose: [beautifiers/index.coffee] options cpp
2017-04-15T19:49:31.288Z - verbose: [beautifiers/index.coffee] C++ name=C++, namespace=cpp, grammars=[C++], extensions=[h, hh, cc, cpp, cxx, C, cu, c++, hpp, hxx, h++, cuh], title=Config Path, type=string, default=, description=Path to uncrustify config file. i.e. uncrustify.cfg
2017-04-15T19:49:31.289Z - verbose: [beautifiers/index.coffee] language options: {
"indent_size": 2,
"indent_char": " ",
"indent_with_tabs": false,
"configPath": "",
"disabled": false,
"default_beautifier": "Uncrustify",
"beautify_on_save": false
}
2017-04-15T19:49:31.289Z - verbose: [beautifiers/index.coffee] C++ /Users/AtomicOwner/Documents/Graphical and Media Assets/Code/C++/UGS/main.cpp { indent_size: 2,
indent_char: ' ',
indent_with_tabs: false,
configPath: '',
disabled: false,
default_beautifier: 'Uncrustify',
beautify_on_save: false } indent_size=2, indent_char= , indent_with_tabs=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, e4x=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, dontJoinCurlyBracet=true, disabled=false, default_beautifier=Nginx Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, rules=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], formater=autopep8, style_config=pep8, sort_imports=false, multi_line_output=Hanging Grid Grouped, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, end_of_line=System Default, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, end_of_line=System Default, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, , , , , , , , ,
2017-04-15T19:49:31.291Z - verbose: [beautifiers/index.coffee] beautifiers 0=Uncrustify, 1=clang-format
2017-04-15T19:49:31.292Z - verbose: [beautifiers/index.coffee] beautifier Uncrustify
2017-04-15T19:49:31.372Z - debug: [beautifiers/beautifier.coffee] tempFile input null path=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/input117315-5722-1ptdtzf.5bkxn1m7vi, fd=30
2017-04-15T19:49:31.374Z - debug: [beautifiers/beautifier.coffee] tempFile output null path=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/output117315-5722-n33vso.n0v5z5mi, fd=39
2017-04-15T19:49:31.386Z - debug: [beautifiers/beautifier.coffee] exeName, args: uncrustify 0=-c, 1=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/117315-5722-1u2iw1z.dczcnxw29.cfg, 2=-f, 3=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/input117315-5722-1ptdtzf.5bkxn1m7vi, 4=-o, 5=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/output117315-5722-n33vso.n0v5z5mi, 6=-l, 7=CPP
2017-04-15T19:49:32.276Z - debug: [beautifiers/beautifier.coffee] exePath, env: /usr/local/bin/uncrustify rvm_bin_path=/Users/AtomicOwner/.rvm/bin, GEM_HOME=/Users/AtomicOwner/.rvm/gems/ruby-2.3.1, SHELL=/bin/bash, CLICOLOR=1, TMPDIR=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/, IRBRC=/Users/AtomicOwner/.rvm/rubies/ruby-2.3.1/.irbrc, Apple_PubSub_Socket_Render=/private/tmp/com.apple.launchd.0UuRd0xAkF/Render, MY_RUBY_HOME=/Users/AtomicOwner/.rvm/rubies/ruby-2.3.1, ATOM_HOME=/Users/AtomicOwner/.atom, USER=AtomicOwner, _system_type=Darwin, rvm_path=/Users/AtomicOwner/.rvm, SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.pL773U47qd/Listeners, __CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0, LSCOLORS=ExFxBxDxCxegedabagacad, GOOGLE_API_KEY=AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q, rvm_prefix=/Users/AtomicOwner, PATH=/Library/Frameworks/Python.framework/Versions/3.6/bin:/opt/local/bin:/opt/local/sbin:/Users/AtomicOwner/anaconda3/bin:/Users/AtomicOwner/.rvm/gems/ruby-2.3.1/bin:/Users/AtomicOwner/.rvm/gems/ruby-2.3.1@global/bin:/Users/AtomicOwner/.rvm/rubies/ruby-2.3.1/bin:/Users/AtomicOwner/anaconda/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Library/Frameworks/Python.framework/Versions/3.6/bin:/opt/local/bin:/opt/local/sbin:/Users/AtomicOwner/anaconda3/bin:/Users/AtomicOwner/.rvm/gems/ruby-2.3.1/bin:/Users/AtomicOwner/.rvm/gems/ruby-2.3.1@global/bin:/Users/AtomicOwner/.rvm/rubies/ruby-2.3.1/bin:/Users/AtomicOwner/anaconda/bin:/Users/AtomicOwner/.rvm/bin, PWD=/, NODE_PATH=/Applications/Atom.app/Contents/Resources/app.asar/exports, _system_arch=x86_64, XPC_FLAGS=0x0, PS1=\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]$ , NODE_ENV=production, _system_version=10.12, XPC_SERVICE_NAME=0, rvm_version=1.29.1 (master), HOME=/Users/AtomicOwner, SHLVL=2, LOGNAME=AtomicOwner, GEM_PATH=/Users/AtomicOwner/.rvm/gems/ruby-2.3.1:/Users/AtomicOwner/.rvm/gems/ruby-2.3.1@global, DISPLAY=/private/tmp/com.apple.launchd.W8LPZuJ77r/org.macosforge.xquartz:0, RUBY_VERSION=ruby-2.3.1, _system_name=OSX, _=/usr/bin/env
2017-04-15T19:49:32.279Z - debug: [beautifiers/beautifier.coffee] args 0=-c, 1=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/117315-5722-1u2iw1z.dczcnxw29.cfg, 2=-f, 3=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/input117315-5722-1ptdtzf.5bkxn1m7vi, 4=-o, 5=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/output117315-5722-n33vso.n0v5z5mi, 6=-l, 7=CPP
2017-04-15T19:49:32.280Z - debug: [beautifiers/beautifier.coffee] spawn /usr/local/bin/uncrustify 0=-c, 1=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/117315-5722-1u2iw1z.dczcnxw29.cfg, 2=-f, 3=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/input117315-5722-1ptdtzf.5bkxn1m7vi, 4=-o, 5=/var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/output117315-5722-n33vso.n0v5z5mi, 6=-l, 7=CPP
2017-04-15T19:49:32.541Z - debug: [beautifiers/beautifier.coffee] spawn done 0 Parsing: /var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/input117315-5722-1ptdtzf.5bkxn1m7vi as language CPP
2017-04-15T19:49:32.541Z - verbose: [beautifiers/beautifier.coffee] spawn result 0 Parsing: /var/folders/gk/vzmxs4mj3_v538q051hfw6r00000gn/T/input117315-5722-1ptdtzf.5bkxn1m7vi as language CPP