work on main app

This commit is contained in:
2025-03-17 12:39:58 -05:00
parent a7290edcb9
commit ec2ee018fe
7 changed files with 109 additions and 41 deletions

View File

@@ -32,6 +32,7 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
*.cpp \ *.cpp \
-Wall \
-o $name -o $name
''; '';
@@ -54,9 +55,10 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/TestMenu/src/*.cpp src/App.cpp \ modules/TestMenu/src/**.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src \ -I src \
-Wall \
-o $name -o $name
''; '';
@@ -79,9 +81,10 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/Print/src/*.cpp src/App.cpp \ modules/Print/src/**.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src -I include \ -I src -I include \
-Wall \
-o $name -o $name
''; '';
@@ -109,10 +112,11 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/Window/src/*.cpp modules/Window/src/WindowImpl/GLFW/*.cpp src/App.cpp \ modules/Window/src/**.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src -I include \ -I src -I include \
-lGL -lglfw -lGLEW \ -lGL -lglfw -lGLEW \
-Wall \
-o $name -o $name
''; '';
@@ -137,9 +141,10 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/MainGUI/src/*.cpp src/App.cpp \ modules/MainGUI/src/**.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src -I include \ -I src -I include \
-Wall \
-o $name -o $name
''; '';

View File

@@ -4,13 +4,21 @@ WindowModule::WindowModule(void* h, App& a) : Module(h, a) {
name = "Window"; name = "Window";
} }
WindowModule::~WindowModule() {} WindowModule::~WindowModule() {
delete window;
delete renderer;
}
void WindowModule::onLoad() {
window = new Window();
renderer = new Renderer();
}
void WindowModule::run() { void WindowModule::run() {
if(window.shouldClose()) { if(window->shouldClose()) {
app.stopModule(self); app.end();
} }
window.doFrame(); window->doFrame();
} }

View File

@@ -11,11 +11,13 @@ class WindowModule : public Module {
void run(); void run();
void onLoad();
private: private:
Window window; Window* window;
Renderer renderer; Renderer* renderer;
}; };

View File

@@ -28,31 +28,15 @@ App::~App() {
} }
} }
void App::run() {
std::cout << "\nTesting...\n";
// Main loop bool App::load(std::string lib, std::list<std::string> blacklist = {}) {
while (!done && !modules.empty()) {
for(auto it = modules.begin(); it != modules.end(); it++) {
(*it)->run();
}
for(auto it = toClose.begin(); it != toClose.end(); it++) {
unload(it);
}
toClose.clear();
}
}
void App::load(std::string lib) {
void* h = dlopen(lib.c_str(), RTLD_NOW); void* h = dlopen(lib.c_str(), RTLD_NOW);
if(!h) { if(!h) {
std::cout << "could not open lib: \"" << lib.c_str() << "\"\nError: " << dlerror() << std::endl; std::cout << "could not open lib at: \"" << lib.c_str() << "\"\nError: " << dlerror() << std::endl;
return; return false;
} }
Module::create_t* create = (Module::create_t*) dlsym(h, "create"); Module::create_t* create = (Module::create_t*) dlsym(h, "create");
@@ -63,33 +47,60 @@ void App::load(std::string lib) {
Module* m = create(h, App::Get()); Module* m = create(h, App::Get());
for(auto it = modules.begin(); it != modules.end(); it++) { for(std::string s : blacklist) {
if(s == m->getName()) {
if((*it)->getName() == m->getName()) { std::cout << "Module \"" << s << "\" is already loaded!\n";
std::cout << "Module \"" << m->getName() << "\" is already loaded!\n"; delete m;
return; dlclose(h);
return false;
} }
} }
blacklist.push_back(m->getName());
bool skip = false;
for(auto it = m->deps.begin(); it != m->deps.end(); it++) {
for(std::string s : blacklist) {
if(it->first == s)
skip = true;
}
if(skip) {
skip = false;
continue;
} else {
load(it->second, blacklist);
}
}
modules.push_back(m); modules.push_back(m);
m->setSelf(--modules.end()); m->setSelf(--modules.end());
modules.end()++; modules.end()++;
return true;
} }
void App::unload(std::list<Module*>::iterator it) { void App::unload(std::list<Module*>::iterator it) {
void* h = (*it)->getHandle();
Module* m = *it;
delete *it; void* h = m->getHandle();
modules.erase(m->self);
delete m;
dlclose(h); dlclose(h);
modules.erase((*it)->self);
} }
void App::stopModule(std::list<Module*>::iterator it) { void App::stopModule(std::list<Module*>::iterator it) {
toClose.push_back(*it); toClose.push_back(*it);
} }
void App::startModule(std::string lib) {
toOpen.push_back(lib);
}
void App::handleArgs(const int& argc, char* argv[]) { void App::handleArgs(const int& argc, char* argv[]) {
int i = 1; int i = 1;
@@ -120,3 +131,30 @@ void App::handleArgs(const int& argc, char* argv[]) {
void App::printHelp() { void App::printHelp() {
std::cout << "archimedes [ -h | --help ] /path/to/some/library.so\n"; std::cout << "archimedes [ -h | --help ] /path/to/some/library.so\n";
} }
void App::run() {
std::cout << "\nTesting...\n";
for(auto* m : modules)
m->onLoad();
// Main loop
while (!done && !modules.empty()) {
for(auto* m : modules) {
m->run();
}
for(auto it = toClose.begin(); it != toClose.end(); it++) {
unload(it);
}
toClose.clear();
for(std::string s : toOpen) {
load(s, getBlacklist());
}
toOpen.clear();
}
}

View File

@@ -14,14 +14,22 @@ class App {
std::list<Module*> modules; std::list<Module*> modules;
std::list<Module*> toClose; std::list<Module*> toClose;
std::list<std::string> toOpen;
void load(std::string); bool load(std::string, std::list<std::string>);
void unload(std::list<Module*>::iterator); void unload(std::list<Module*>::iterator);
void handleArgs(const int&, char*[]); void handleArgs(const int&, char*[]);
void printHelp(); void printHelp();
std::list<std::string> getBlacklist() {
std::list<std::string> l;
for(Module* m : modules)
l.push_back(m->getName());
return l;
}
public: public:
App(const int&, char*[]); App(const int&, char*[]);
~App(); ~App();
@@ -32,6 +40,8 @@ class App {
void stopModule(std::list<Module*>::iterator); void stopModule(std::list<Module*>::iterator);
void startModule(std::string);
void end() { done = true; } void end() { done = true; }
}; };

View File

@@ -11,11 +11,12 @@ class Module {
public: public:
typedef Module* create_t(void*, App&); typedef Module* create_t(void*, App&);
typedef void* destroy_t(Module*);
Module(void* h, App& a) : handle(h), app(a) {}; Module(void* h, App& a) : handle(h), app(a) {};
virtual ~Module() {} virtual ~Module() {}
virtual void run() = 0; virtual void run() = 0;
virtual void onLoad() = 0;
std::string getName() const { return name; } std::string getName() const { return name; }
void* getHandle() { return handle; } void* getHandle() { return handle; }
@@ -28,6 +29,7 @@ class Module {
App& app; App& app;
std::unordered_map<std::string, std::string> deps;
}; };
#endif #endif

View File

@@ -4,8 +4,11 @@
#include <iostream> #include <iostream>
#include <cstring> #include <cstring>
#include <list> #include <list>
#include <array>
#include <vector>
#include <unordered_map>
#include <optional>
//#include <chrono> //#include <chrono>
//#include <thread> //#include <thread>