improve Detect It Easy

This commit is contained in:
Benjamin Funke 2025-05-15 16:15:56 +02:00 committed by Benjamin Funke
commit df58d2e6e9
9 changed files with 104 additions and 2 deletions

13
db/Binary/archive.DCP.sg Normal file
View file

@ -0,0 +1,13 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// Used by Wintermute Engine
init("archive", "DCP");
function detect() {
if (Binary.compare("DE AD C0 DE 4A 55 4E 4B")) {
bDetected = true;
}
return result();
}

14
db/Binary/archive.MWD.sg Normal file
View file

@ -0,0 +1,14 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// Used by Frogger
init("archive", "MWD");
function detect() {
if (Binary.compare("44 41 57 4D")) {
sName = "Medievil WAD";
bDetected = true;
}
return result();
}

11
db/Binary/archive.RVZ.sg Normal file
View file

@ -0,0 +1,11 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
init("archive", "RVZ");
function detect() {
if (Binary.compare("'RVZ'")) {
bDetected = true;
}
return result();
}

14
db/Binary/audio.TUN.sg Normal file
View file

@ -0,0 +1,14 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// Used by Lego Racers
init("audio", "TUN");
function detect() {
if (Binary.compare("41 4C 50")) {
sVersion = "ADPCM";
bDetected = true;
}
return result();
}

13
db/Binary/bin.BSP.1.sg Normal file
View file

@ -0,0 +1,13 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://developer.valvesoftware.com/wiki/BSP_(Source)
init("format", "BSP");
function detect() {
if (Binary.compare("56 42 53 50 15")) {
bDetected = true;
}
return result();
}

12
db/Binary/bin.HIV.1.sg Normal file
View file

@ -0,0 +1,12 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
init("format", "Windows Registry Hive (.HIV)");
function detect() {
if (Binary.compare("72 65 67 66")) {
bDetected = true;
}
return result();
}

13
db/Binary/bin.ITL.1.sg Normal file
View file

@ -0,0 +1,13 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://home.vollink.com/gary/playlister/ituneslib.html
init("format", "iTunes Library");
function detect() {
if (Binary.compare("68 64 66 6D")) {
bDetected = true;
}
return result();
}

12
db/Binary/font.XTT.sg Normal file
View file

@ -0,0 +1,12 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
init("font", "Xbox 360 System Font (.XTT)");
function detect() {
if (Binary.compare("78 74 74 66")) {
bDetected = true;
}
return result();
}

View file

@ -23,7 +23,7 @@ sudo apt-get install qtbase5-dev qtscript5-dev qttools5-dev-tools libqt5svg5-dev
sudo apt-get install qt5-default -y
```
- Ubuntu 21.04-22.04
- Ubuntu 21.04-25.04
```bash
sudo apt-get install qtchooser qt5-qmake -y
@ -162,4 +162,4 @@ pacman -S mingw-w64-x86_64-qt5-tools
chmod a+x configure
./configure
make -j4
```
```