still working on automatic mode

This commit is contained in:
Jakob 2018-07-06 16:29:40 +02:00
parent 0b3e8e8523
commit 4712b448be
19 changed files with 353 additions and 544 deletions

View file

@ -1,4 +1,5 @@
using System.IO;
using System;
using System.IO;
namespace h_encore_auto
{
@ -31,5 +32,27 @@ namespace h_encore_auto
"sound\\voice\\",
"text\\01\\"
};
public static bool isSecondGuide = false;
public static bool isQcmaConfigFound = false;
public static readonly string ProgramFilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
public static readonly string ProgramFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
public static string longAID = null;
public static string shortAID = null;
public static readonly string path7z = tempDir + "7za.exe";
public static readonly string pathPsvimg = tempDir + "psvimgtools.zip";
public static readonly string pathPkg = tempDir + "pkg2zip.zip";
public static readonly string pathEnc = tempDir + "h-encore.zip";
public static readonly string pathEntry = tempDir + "entryPoint.pkg";
public static readonly string pathQcma = tempDir + "qcma.zip";
public static readonly string pathQcmaExtracted = tempDir + "Qcma\\";
public static readonly string pathBackupReg = tempDir + "backup.reg";
public static readonly string pathImportReg = tempDir + "qcma.reg";
public static readonly string pathQcmaRes = tempDir + "QcmaRes\\";
public static bool areFilesKept = false;
public static bool isRegModified = false;
}
}