Learning OutcomesAt the end of this post, you will be able to compile the source code of Tornado and create your own FLIGHT.EXE. Meaning, if you are able to edit the code within any of the *.ASM source files, then you should be able to create your own version of Tornado FLIGHT.EXE.
Steps as follow.
PRE-REQUISITES1. Here is the GoogleDrive link:
https://drive.google.com/open?id=1XzOlSB-W-RPqFtPafWvbdk6Xz0iP7C1AInside this Google Drive folder named TornadoDev, you will find these files:
a) TORNADOO.ZIP - the original 1993 Tornado simulation source code. Where 'O' stands for the word 'Original'.
b) TORNADOM.ZIP - Frankie Kam's latest modded version of the Tornado simulation source code. Where 'M' stands for the word 'Modded'.
c) TORNADO.ZIP - The Tornado 1.0E game itself. To run TORNADO, extract to C:\TORNADO and double click on the Jump Jet Harrier shortcut file. The folder C:\TORNADO\TORNADO\FLIGHT will contain a file named FLIGHT.EXE. which is also the same file found inside the TORNADOM.ZIP file.
d) Tornado Game Full Manual link is
http://vogonsdrivers.com/getfile.php?fileid=1509These are the exact same files as the ones in my Desktop PC.
You also need to download and install
DOSBox 0.74-2.
TO COMPILE AND LINK THE ORIGINAL 1993 SOURCE CODE, follow steps 2 to 9.2. Make sure you have installed DOSBox 0.74-2 installed.
If you have a D:\ drive then follow steps 3a and 4a. However, if you don't have a D:\ drive, then just use the C:\ drive and follow steps 3b. and 4b.
3a. Download and extract TORNADOO.ZIP to your D:\ drive. The folder D:\TORNADOO will be created.
4a. Add these lines to the end of dosbox-0.74-2.conf configuration file:
Related video (may be some differences between the video and this post details, but you'll get the idea.
[autoexec]
# Lines in this section will be run at startup.
# You can put your MOUNT lines here.
mount c d:\tornadoo
c:
path=c:\masm611\bin
cd tornado
3b. Download and extract TORNADOO.ZIP to your C:\ drive.
4b. Add these lines to the end of dosbox-0.74-2.conf configuration file:
[autoexec]
# Lines in this section will be run at startup.
# You can put your MOUNT lines here.
mount c c:\tornadoo
c:
path=c:\masm611\bin
cd tornado
5. Launch DOSBox.
6. In the DOSBox command prompt, you should be in the TORNADO folder.
7. To link all OBJ files and to create FLIGHT.EXE, first make sure you are inside the TORNADO folder. If yes, then type L to link all *.OBJ files. The L.BAT batch file will be executed and the file C:\TORNADO\FLIGHT\FLIGHT.EXE will be created.
8. To compile a single ASM file, for example TAB.ASM, simply type masm tab and press Enter. TAB.OBJ will be created.
9. To compile all ASM files inside a subfolder, for example TORNADO subfolder, make sure you are inside the TORNADO folder and type PAL and press Enter.
TO COMPILE AND LINK THE FRANKIE KAM'S MODDED VERSION 1993 SOURCE CODE, follow the same steps 2 to 9, with these differences:
When you download and extract TORNADOM.ZIP to your D:\ drive. The folder D:\TORNADOM will be created.
In the dosbox-0.74-2-conf file, depending on whether you have a D:\ drive or not, use
mount c c:\tornadom
-or-
mount c d:\tornadom
ENJOY.