GrainOS/GrainOS.ino
dangrain d0429a9bc7 Added calc command that does math.
Added `calc` command - usage `calc <number> <operand> <number>`
2025-03-25 13:00:45 +01:00

167 lines
5.4 KiB
C++

struct File {
String name;
String content;
bool used;
};
const int MAX_FILES = 10; //file limit
File files[MAX_FILES];
void clearScreen() {
for (int i = 0; i < 50; i++) {
Serial.println(); //function that clears your screen (again this is stupid)
}
}
void listFiles() {
Serial.println("Files:");
for (int i = 0; i < MAX_FILES; i++) {
if (files[i].used) { //FUNCTION THAT MAKES LS WORK
Serial.println("- " + files[i].name);
}
}
}
void writeFile(String name, String content) {
for (int i = 0; i < MAX_FILES; i++) {
if (!files[i].used) {
files[i].name = name; //function that writes to file
files[i].content = content;
files[i].used = true;
Serial.println("File written: " + name);
return;
}
}
Serial.println("Error: No space left in RAM!");
}
void readFile(String name) {
for (int i = 0; i < MAX_FILES; i++) {
if (files[i].used && files[i].name == name) {
Serial.println("Content of " + name + ": " + files[i].content); //function that reads written files
return;
}
}
Serial.println("Error: File not found!");
}
void deleteFile(String name) {
for (int i = 0; i < MAX_FILES; i++) {
if (files[i].used && files[i].name == name) {
files[i].used = false; // Marks files as deleted
Serial.println("Deleted file: " + name);
return;
}
}
Serial.println("Error: File not found!"); // WAH WAH WAH
}
void showHelp() { //I think this is fairly self explanatory, but still, making sure. It's just the guts of the `help` command
Serial.println("Available commands:");
Serial.println(" clear - Clears the screen");
Serial.println(" echo <message> - Prints the message");
Serial.println(" format(\"text,text,text\") - Formats input");
Serial.println(" write <filename> <content> - Writes content to a file");
Serial.println(" read <filename> - Reads and prints the content of a file");
Serial.println(" delete <filename> - Deletes a file");
Serial.println(" ls - Lists all files");
Serial.println(" help - Displays this help message");
Serial.println(" calc <number> <operator> <number> - calculates command");
}
void calculate(String input) {
int firstSpace = input.indexOf(' ');
int secondSpace = input.indexOf(' ', firstSpace + 1); // this is likely not the best way to do this as It takes up a *lot* of space, but hey. It works. I'll see If I keep It.
if (firstSpace == -1 || secondSpace == -1) {
Serial.println("Usage: calc <number> <operator> <number>");
return;
}
String num1Str = input.substring(0, firstSpace);
String op = input.substring(firstSpace + 1, secondSpace);
String num2Str = input.substring(secondSpace + 1);
float num1 = num1Str.toFloat();
float num2 = num2Str.toFloat();
float result;
if (op == "+") {
result = num1 + num2;
}
else if (op == "-") {
result = num1 - num2;
}
else if (op == "*") {
result = num1 * num2;
}
else if (op == "/") {
if (num2 == 0) {
Serial.println("Error: Division by zero");
return;
}
result = num1 / num2;
}
else {
Serial.println("Error: Unknown operator. Use +, -, *, or /");
return;
}
Serial.println(String(result));
}
void setup() {
Serial.begin(9600);
}
void loop() {
if (Serial.available()) {
String input = Serial.readStringUntil('\n');
input.trim();
if (input == "clear") {
clearScreen(); //clears screen (very scuffed)
}
else if (input.startsWith("echo ")) {
String message = input.substring(5); // It's just echo with less functionality
message.trim();
Serial.println(message);
}
else if (input.startsWith("format(") && input.endsWith(")")) {
input = input.substring(7, input.length() - 1);
input.replace("\"", ""); //Formatting for Yasmina :)
input.replace(",", " ");
Serial.println(input);
}
else if (input.startsWith("write ")) {
int space = input.indexOf(' ', 6);
if (space != -1) {
String name = input.substring(6, space); // writes to files, I didn't know what to call this command so just write, fuck It
String content = input.substring(space + 1);
writeFile(name, content);
} else {
Serial.println("Usage: write <filename> <content>");
}
}
else if (input.startsWith("read ")) {
String name = input.substring(5); // This is your cat, but this was simpler to write, fuck it
readFile(name);
}
else if (input.startsWith("delete ")) {
String name = input.substring(7); //deletes files (has no flags)
deleteFile(name);
}
else if (input == "ls") { //list files (currently directories don't exist (and let's be real probably won't))
listFiles();
}
else if (input == "help") { // help command
showHelp();
}
else if (input.startsWith("calc ")) {
calculate(input.substring(5));
}
else {
Serial.println("Unknown command. Use 'help' to get a list of commands");
}
}
}