Pickler MVP is complete. Testing For Pickler is done. changed gitignore

This commit is contained in:
2025-01-24 10:59:05 -08:00
parent 5cd483c356
commit d22837fcb0
7 changed files with 212 additions and 12 deletions

View File

@@ -1,9 +1,9 @@
set( CMAKE_STATIC_LIBRARY_PREFIX "")
set( CMAKE_STATIC_LIBRARY_SUFFIX "Lib")
#set( CMAKE_STATIC_LIBRARY_SUFFIX "Lib")
set(SOURCE_FILES
Pickler.cpp
)
include_directories(BEFORE "../includes/")
add_library(${PROJECT_NAME} STATIC ${SOURCE_FILES})
target_include_directories(${PROJECT_NAME} BEFORE PUBLIC "../includes/")

View File

@@ -1,2 +1,96 @@
#include <iostream>
#include "Pickler.h"
struct pickle_jar __pickle_add_jar(pickle_jar* jar, pickle p, const char* pname) {
auto tmp = new pickle[jar->functionCount + 1];
for (int i = 0; i < jar->functionCount; i++) {
tmp[i] = jar->functions[i];
}
p.name = pname;
tmp[jar->functionCount] = p;
jar->functions = tmp;
jar->functionCount++;
return *jar;
}
struct pickle_shelf __pickle_jar_add_to_shelf(pickle_shelf* shelf, pickle_jar jar) {
struct pickle_jar* tmps = new pickle_jar[shelf->pickle_jarCount + 1];
for(int i = 0; i < shelf->pickle_jarCount; i++) {
tmps[i] = shelf->pickle_jars[i];
}
tmps[shelf->pickle_jarCount] = jar;
shelf->pickle_jars = tmps;
shelf->pickle_jarCount++;
return *shelf;
}
void printoutShelf(pickle_shelf shelf) {
std::cout << "\033[1;92mPICKLER\033[1;39;49m There are \033[1;92m-[" << shelf.pickle_jarCount << "]-\033[1;39;49m Pickle Jars on the shelf\n";
}
void printoutShelfEnd(pickle_shelf shelf) {
std::cout << "[====Pickle Shelf====]\n";
if(shelf.passed) {
std::cout << "\033[1;92m[==Pickle Shelf Good=]\033[1;39;49m\n";
}else {
std::cout << "\033[1;31m[==Pickle Shelf Fell=]\033[1;39;49m\n";
}
}
void printoutJar(pickle_jar jar) {
std::cout << "There are \033[1;92m-["<< jar.functionCount <<"]- Pickles \033[1;39;49min \033[1;94;49m"<< jar.name <<"\033[1;39;49m Pickle Jar\n";
}
void printoutJarEnd(pickle_jar jar) {
std::cout << "[=====Pickle Jar=====]\n";
if(jar.passed) {
std::cout << "\033[1;92m[===Pickles In Jar===]\033[1;39;49m\n";
} else {
std::cout << "\033[1;31m[==Pickle Jar Broke==]\033[1;39;49m Broken Jar at \033[1;33m" << jar.name << "\033[1;39;49m\n";
}
}
void printoutPickle(pickle p) {
std::cout << "[======Pickling======] \033[1;92m" << p.name << "\033[1;39;49m Running \n";
if(p.passed) {
std::cout << "\033[1;92m[=======Pickled======]\n";
}else {
std::cout << "\033[1;31m[==Droped the Pickle=]" << p.message<<"\n";
}
std::cout << "[========DONE========]\033[1;39;49m\n";
}
int __pickle_shelf_run(pickle_shelf * shelf) {
int status = 0;
printoutShelf(*shelf);
shelf->passed = true;
for(int i = 0; i < shelf->pickle_jarCount; i++) {
printoutJar(shelf->pickle_jars[i]);
shelf->pickle_jars[i].passed = true;
for(int j = 0; j < shelf->pickle_jars[i].functionCount; j++) {
printoutPickle(shelf->pickle_jars[i].functions[j]);
if(!shelf->pickle_jars[i].functions[j].passed) {
shelf->pickle_jars[i].passed = false;
shelf->passed = false;
status--;
}
}
printoutJarEnd(shelf->pickle_jars[i]);
}
printoutShelfEnd(*shelf);
return status;
}