#define OLC_PGE_APPLICATION #include "olcPixelGameEngine.h" #include #include #include #include using namespace std; vector types = { "int", "float", "string", "bool", "void", "null" }; vector globalVariables; vector globalVariableValues; vector functions; vector> functionValues; class Parser : public olc::PixelGameEngine { public: Parser() { sAppName = "Parser"; } public: bool OnUserCreate() override { // Called once at the start return true; } bool OnUserUpdate(float fElapsedTime) override { // Called once per frame for (int x = 0; x < ScreenWidth(); x++) for (int y = 0; y < ScreenHeight(); y++) Draw(x, y, olc::Pixel(rand() % 128, rand() % 128, rand() % 128)); return true; } }; bool isNumber(const string& str) { for (char const& c : str) { if (isdigit(c) == 0 && c!='.') return false; } return true; } vector split(string str, char del) { // declaring temp string to store the curr "word" upto del string temp = ""; vector splitWords; for (int i = 0; i < (int)str.size(); i++) { // If cur char is not del, then append it to the cur "word", otherwise // you have completed the word, print it, and start a new word. if (str[i] != del) { temp += str[i]; } else { splitWords.push_back(temp); temp = ""; } } splitWords.push_back(temp); return splitWords; } int count(string str, char ch) { int cnt = 0; for (int i = 0; i < (int)str.size(); i++) if (str[i] == ch) cnt++; return cnt; } int countInVector(vector str, string ch) { int cnt = 0; for (int i = 0; i < (int)str.size(); i++) if (str[i] == ch) cnt++; return cnt; } string Vec2Str(vector str) { string outStr; for (int i = 0; i < (int)str.size(); i++) outStr += str[i] + "\n"; return outStr; } vector removeTabs(vector str, int amnt) { vector newStr; for (int i = 0; i < (int)str.size(); i++) { newStr.push_back(""); for (int c = 0; c < (int)str[i].size(); c++) { if (str[i][c] != '\t' || c >= amnt) newStr[i] += str[i][c]; } } return newStr; } string replace(string str, string strToReplace, string replaceWith) { string newStr; string savedLetters;; int sameLetters = 0; int startReplaceIndex = 0; for (int i = 0; i < (int)str.size(); i++) { if (str[i] == strToReplace[sameLetters]) { savedLetters += str[i]; if (sameLetters == 0) startReplaceIndex = i; sameLetters++; if ((int)strToReplace.size() == sameLetters) { //cout << "replaced " << "\"" << strToReplace << "\"" << startReplaceIndex << endl; newStr += replaceWith; sameLetters = 0; savedLetters = ""; } } else { newStr += savedLetters + str[i]; sameLetters = 0; savedLetters = ""; } } return newStr; } string AddItem(string variableContent, string addItem) { if (isNumber(variableContent)) { return to_string(stof(variableContent) + stof(addItem)); } else { return variableContent + addItem; } } string GetRealValue(string var, vector variables, vector variableVals) { if (!isNumber(var) && count(var, '\"') == 0) { // Checks against global vars for (int v = 0; v < (int)globalVariables.size(); v++) if (var == globalVariables[v]) { return globalVariableValues[v]; } // Checks against local vars for (int v = 0; v < (int)variables.size(); v++) if (var == variables[v]) { return variableVals[v]; } } else if (!isNumber(var) && count(var, '\"') > 0) { string withoutQuotes; for (int ch = 1; ch < (int)var.size()-1; ch++) { withoutQuotes += var[ch]; } return withoutQuotes; } return var; } bool BooleanLogic(string valA, string determinant, string valB, vector variables, vector variableVals) { string valARealValue = GetRealValue(valA, variables, variableVals); string valBRealValue = GetRealValue(valB, variables, variableVals); if (determinant == "==") { return valARealValue == valBRealValue; } if (determinant == "!=") { return valARealValue != valBRealValue; } if (determinant == ">=") { return stof(valARealValue) >= stof(valBRealValue); } if (determinant == "<=") { return stof(valARealValue) <= stof(valBRealValue); } if (determinant == ">") { return stof(valARealValue) > stof(valBRealValue); } if (determinant == "<") { return stof(valARealValue) < stof(valBRealValue); } return false; } int ProcessLine(vector> words, int l, vector variables, vector variableValues) { if (words[l][0] == "print") { cout << GetRealValue(words[l][1], variables, variableValues) << endl; return 0; } // First iterate through all types to see if line // is a variable then store it with it's value for (int t = 0; t < (int)types.size(); t++) { if (words[l][0] == types[t]) { //Checks if it is variable variables.push_back(words[l][1]); variableValues.push_back((string)words[l][3]); //cout << words[l][1] << " is " << words[l][3] << endl << endl; break; } } // Second, iterate all existing local variable names for (int v = 0; v < (int)variables.size(); v++) { if (words[l][0] == variables[v]) { if (words[l][1] == "=") variableValues[v] = words[l][2]; else if (words[l][1] == "+=") variableValues[v] = AddItem(variableValues[v], words[l][2]); else if (words[l][1] == "-=") variableValues[v] = to_string(stof(variableValues[v]) - stof(words[l][2])); else if (words[l][1] == "*=") variableValues[v] = to_string(stof(variableValues[v]) * stof(words[l][2])); else if (words[l][1] == "/=") variableValues[v] = to_string(stof(variableValues[v]) / stof(words[l][2])); //cout << words[l][1] << " is " << words[l][3] << endl << endl; break; } } // Third, iterate all existing global variable names for (int v = 0; v < (int)globalVariables.size(); v++) { if (words[l][0] == globalVariables[v]) { if (words[l][1] == "=") globalVariableValues[v] = words[l][2]; else if (words[l][1] == "+=") globalVariableValues[v] = AddItem(globalVariableValues[v], words[l][2]); else if (words[l][1] == "-=") globalVariableValues[v] = to_string(stof(globalVariableValues[v]) - stof(words[l][2])); else if (words[l][1] == "*=") globalVariableValues[v] = to_string(stof(globalVariableValues[v]) * stof(words[l][2])); else if (words[l][1] == "/=") globalVariableValues[v] = to_string(stof(globalVariableValues[v]) / stof(words[l][2])); //cout << words[l][1] << " is " << words[l][3] << endl << endl; break; } } // Gathers while loop contents if (words[l][0] == "while") { vector whileContents; vector whileParameters; for (int w = 1; w < (int)words[l].size(); w++) whileParameters.push_back(words[l][w]); int numOfBrackets = 1; for (int p = l + 2; p < (int)words.size(); p++) { numOfBrackets += countInVector(words[p], "{") - countInVector(words[p], "}"); if (numOfBrackets == 0) break; whileContents.push_back(""); for (int w = 0; w < (int)words[p].size(); w++) { whileContents[(int)whileContents.size() - 1] += words[p][w] + " "; } } whileContents = removeTabs(whileContents, 1); vector> words; for (int i = 0; i < (int)whileContents.size(); i++) words.push_back(split(whileContents[i], ' ')); while (BooleanLogic(whileParameters[0], whileParameters[1], whileParameters[2], variables, variableValues)) { //Iterate through all lines in while loop for (int l = 0; l < (int)whileContents.size(); l++) { ProcessLine(words, l, variables, variableValues); } } } // Gathers if statement contents if (words[l][0] == "if") { vector ifContents; vector ifParameters; for (int w = 1; w < (int)words[l].size(); w++) ifParameters.push_back(words[l][w]); int numOfBrackets = 1; for (int p = l + 2; p < (int)words.size(); p++) { numOfBrackets += countInVector(words[p], "{") - countInVector(words[p], "}"); if (numOfBrackets == 0) break; ifContents.push_back(""); for (int w = 0; w < (int)words[p].size(); w++) { ifContents[(int)ifContents.size() - 1] += words[p][w] + " "; } } ifContents = removeTabs(ifContents, 1); vector> words; for (int i = 0; i < (int)ifContents.size(); i++) words.push_back(split(ifContents[i], ' ')); if (BooleanLogic(ifParameters[0], ifParameters[1], ifParameters[2], variables, variableValues)) { //Iterate through all lines in while loop for (int l = 0; l < (int)ifContents.size(); l++) { ProcessLine(words, l, variables, variableValues); } } } return 0; } int ExecuteFunction(string functionName, vector inputVarVals) { vector functionLines; int functionIndex = 0; //Get index of function for (int f = 0; f < (int)functions.size(); f++) if (split(functions[f], ' ')[0] == functionName) { functionLines = functionValues[f]; functionIndex = f; break; } vector variables; vector variableValues; vector functionNameParts = split(functions[functionIndex], ' '); for (int i = 1; i < (int)functionNameParts.size(); i++) { variables.push_back(functionNameParts[i]); variableValues.push_back(inputVarVals[i - 1]); } vector> words; for (int i = 0; i < (int)functionLines.size(); i++) words.push_back(split(functionLines[i], ' ')); //Iterate through all lines in function for (int l = 0; l < (int)functionLines.size(); l++) { ProcessLine(words, l, variables, variableValues); } return 0; } int parseSlang(string script) { script = replace(script, " ", "\t"); vector lines = split(script, '\n'); vector> words; for (int i = 0; i < (int)lines.size(); i++) { words.push_back(split(lines[i], ' ')); } for (int lineNum = 0; lineNum < (int)words.size(); lineNum++) { // First go through entire script and iterate through all types to see if line is a variable // or function declaration, then store it with it's value for (int t = 0; t < (int)types.size(); t++) { if (words[lineNum][0] == types[t]) { //Checks if it is function if (words[lineNum][(int)words[lineNum].size() - 1][(int)words[lineNum][(int)words[lineNum].size() - 1].size() - 1] == ')') { vector functionContents; string functName; for (int w = 1; w < (int)words[lineNum].size(); w++) { if (w < (int)words[lineNum].size() - 1) { functName += replace(replace(words[lineNum][w], "(", " "), ")", "") + " "; } else { functName += replace(replace(words[lineNum][w], "(", " "), ")", ""); } } int numOfBrackets = 1; for (int p = lineNum + 2; p < (int)words.size(); p++) { numOfBrackets += countInVector(words[p], "{") - countInVector(words[p], "}"); if (numOfBrackets == 0) break; functionContents.push_back(""); for (int w = 0; w < (int)words[p].size(); w++) { functionContents[(int)functionContents.size() - 1] += words[p][w] + " "; } } functionContents = removeTabs(functionContents, 1); functions.push_back(functName); functionValues.push_back(functionContents); cout << functName << " is \n" << Vec2Str(functionContents) << endl << endl; } //Checks if it is variable else { globalVariables.push_back(words[lineNum][1]); globalVariableValues.push_back((string)words[lineNum][3]); cout << words[lineNum][1] << " is " << words[lineNum][3] << endl << endl; } } } } ExecuteFunction("Main", vector {"hi"}); return 0; } int main(int argc, char* argv[]) { std::ifstream t("../Slang/script.sl"); std::stringstream scriptString; scriptString << t.rdbuf(); while (true) { system("pause"); break; } parseSlang(scriptString.str()); /*if (argc >= 2) { cout << argv[1]; Parser window1; if (window1.Construct(128, 128, 2, 2)) window1.Start(); return 0; } else { return 1; }*/ return 0; }