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
2026-01-08 23:35:50 -06:00
parent ab3edd6df5
commit 7b299d7d7f
228 changed files with 3174 additions and 2800 deletions

View File

@@ -9,7 +9,7 @@
| SPDX-License-Identifier: GPL-2.0-or-later |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "DetectionManager.h"
#include "ThrustmasterSolController.h"
#include "RGBController_ThrustmasterSol.h"
@@ -101,7 +101,7 @@ void DetectThrustmasterSolControllers()
ThrustmasterSolController* controller = new ThrustmasterSolController(handle, path, desc.idProduct, device_list[d].name);
RGBController_ThrustmasterSol* rgb_controller = new RGBController_ThrustmasterSol(controller);
ResourceManager::get()->RegisterRGBController(rgb_controller);
DetectionManager::get()->RegisterRGBController(rgb_controller);
break;
}
}