Split out detection system from ResourceManager into DetectionManager

* Split detection system out into its own class, DetectionManager
    * Clean up ResourceManger's many callbacks into just two, one for detection and one general purpose
This commit is contained in:
Adam Honse committed 2026-07-07 01:35:34 -05:00
1 parent b92a8996e9
commit 30e35eb44c
232 files changed
+3185 -2812

No files matched your search

@@ -10,7 +10,7 @@
\*---------------------------------------------------------*/
#include <hidapi.h>
#include "Detector.h"
#include "DetectionManager.h"
#include "IntelArcA770LEController.h"
#include "RGBController_IntelArcA770LE.h"
@@ -33,7 +33,7 @@ void DetectIntelArcA770LEControllers(hid_device_info* info, const std::string&)
IntelArcA770LEController* controller = new IntelArcA770LEController(dev, info->path);
RGBController_IntelArcA770LE* rgb_controller = new RGBController_IntelArcA770LE(controller);
// Constructor sets the name
ResourceManager::get()->RegisterRGBController(rgb_controller);
DetectionManager::get()->RegisterRGBController(rgb_controller);
}
}