IMF-Freq-Conv
A tiny tool which converts a chunk delays in the IMF (id Software Music Format) between 280Hz, 560hz and 700Hz tempo speeds.
Compiling
To compile utility you just need to use a compiler command
Linux / Mac OS X / FreeBSD
With GCC
gcc imfreqc.c -o imfreqcWith CLang
clang imfreqc.c -o imfreqcWindows
With GCC (MinGW or cygwin)
gcc imfreqc.c -o imfreqcWith CL (Visual Studio, you must open Visual Studio command environment or open cl.exe directly from it's folder)
cl imfreqc.c /link /out:imfreqc.exeUsage
------------------------------------------------------------------------------
Syntax: imfreqc <SourceFrequency> <oldfile>.imf <DestFrequency> <newfile>.imf
SourceFrequency - number 280 560 or 700
DestFrequency - number 280 560 or 700
------------------------------------------------------------------------------
Supported frequencies:
* 280Hz - Duke Nukem II
* 560Hz - Bio Menace, Commander Keen, Cosmo's Cosmic Adventures, Monster Bash
* 700Hz - Blake Stone, Major Stryker, Operation Body Count, Wolfenstein 3-D
------------------------------------------------------------------------------