mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Intellipap & FP Icon autoscanner Detect() functions
This commit is contained in:
parent
a155efa878
commit
22a9736598
@ -20,6 +20,8 @@
|
||||
|
||||
extern QProgressBar *qprogress;
|
||||
|
||||
const QString FPHCARE = "FPHCARE";
|
||||
|
||||
FPIcon::FPIcon(Profile *p, MachineID id)
|
||||
: CPAP(p, id)
|
||||
{
|
||||
@ -39,6 +41,28 @@ FPIconLoader::~FPIconLoader()
|
||||
{
|
||||
}
|
||||
|
||||
bool FPIconLoader::Detect(const QString & givenpath)
|
||||
{
|
||||
QDir dir(givenpath);
|
||||
|
||||
if (!dir.exists()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// F&P Icon have a folder called FPHCARE in the root directory
|
||||
if (!dir.exists(FPHCARE)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// CHECKME: I can't access F&P ICON data right now
|
||||
if (!dir.exists("FPCARE/ICON")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
int FPIconLoader::Open(QString &path, Profile *profile)
|
||||
{
|
||||
QString newpath;
|
||||
@ -49,12 +73,10 @@ int FPIconLoader::Open(QString &path, Profile *profile)
|
||||
path.chop(1);
|
||||
}
|
||||
|
||||
QString dirtag = "FPHCARE";
|
||||
|
||||
if (path.endsWith("/" + dirtag)) {
|
||||
if (path.endsWith("/" + FPHCARE)) {
|
||||
newpath = path;
|
||||
} else {
|
||||
newpath = path + "/" + dirtag;
|
||||
newpath = path + "/" + FPHCARE;
|
||||
}
|
||||
|
||||
newpath += "/ICON/";
|
||||
@ -899,12 +921,6 @@ Machine *FPIconLoader::CreateMachine(QString serial, Profile *profile)
|
||||
return m;
|
||||
}
|
||||
|
||||
bool FPIconLoader::Detect(const QString & path)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
bool fpicon_initialized = false;
|
||||
void FPIconLoader::Register()
|
||||
{
|
||||
|
@ -36,9 +36,25 @@ IntellipapLoader::~IntellipapLoader()
|
||||
{
|
||||
}
|
||||
|
||||
bool IntellipapLoader::Detect(const QString & path)
|
||||
bool IntellipapLoader::Detect(const QString & givenpath)
|
||||
{
|
||||
return false;
|
||||
QDir dir(givenpath);
|
||||
|
||||
if (!dir.exists()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Intellipap has a folder called SL in the root directory
|
||||
if (!dir.cd("SL")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Check for the settings file inside the SL folder
|
||||
if (!dir.exists("SET1")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
int IntellipapLoader::Open(QString &path, Profile *profile)
|
||||
|
Loading…
Reference in New Issue
Block a user