Four software systems are used :-
1 ) AutoCAD to make the slides.
2 ) EDIT to write the order in which the slides
will be displayed.
3 ) FILM MAKER The Autodesk utility that converts a
group of slides into a flim.
4 ) AAWIN The Autodesk program that displays the film
files.
AutoCAD is a vector based system, meaning the lines arcs and
circles that make up the drawing are saved to disk as the
start and finish points of each entity. In contrast a bit
mapped image is made up from thousands of picture elements
(PIXELS) both on the screen and when saved to disk. An animation
file is a collection of bitmapped files with all common data
removed, ie adjacent frames have the difference stored not the
whole image.
AutoCAD can export many types of graphic image
All but the SLIDE format may be read by PAINT SHOP PRO and can then be converted to other bit mapped formats.
Slides must be converted to a FLI or film format this can then be viewed by the AAWIN package. AAWIN can also view .BMP files.
METHOD1) Make a series of 'SLIDES' using the MSLIDE command inside AutoCAD save all slides to drive A: or if large to the hard disk C:\AAA\ .
Important !! make a written list of the slides as you make them.
2) Use the DOS editor to make an instruction file. A simple one will look like this :-A:ONE.SLD A:TWO.SLD A:THREE.SLD Name this file A:SHOW.TXT3) Run the FLIMAKER program with the above instruction file as the first parameter and A:SHOW as the second parameter.FLIMAKER A:SHOW.TXT A:SHOW
This will make a film file named A:SHOW.FLI from the slides mentioned in the instruction file named A:SHOW.TXT.
4) To see the film, run the AAWIN program and pick your film from the A: list of FLIms. Then, using the mouse pick the solid arrow symbol.
Items 2 to 4 have been set up in a batch file named FM.BAT, short for Film Maker. To run it use the FILM MAKER shortcut in the Graphics section of WIN 95 start menu.
FM.BAT
dir /b /o:d a:*.sld > a:time-pos.txt
dir /b /o:-d a:*.sld > a:time-rev.txt
dir /b /o:n a:*.sld > a:alph-pos.txt
dir /b /o:-n a:*.sld > a:alph-rev.txt
if exist a:\show.txt goto ok
prefix a:time-pos.txt a:show.txt A:
:ok
edit a:show.txt
flimaker -v a:show.txt c:\aaa\show 55
aawin.exe c:\aaa\show.fli
The first four lines of the batch file save a different version of an
instruction file for you
The batch file will call the Edit program which in turn loads the file A:SHOW.TXT. You may edit the file of your choice (from the 4 above), but you must use SaveAs A:SHOW.TXT before you exit.
A:TIME-POS.TXT will have the A: added to each line by the program PREFIX.EXE and is then saved as A:SHOW.TXT the first time you run this batch file. A:SHOW.TXT will not be over written unless you choose to do so from EDIT.
Delete A:SHOW.TXT if you wish the batch file to work as if first time.
The last two lines of the batch file make a film from your file A:SHOW.TXT and places it onto the the hard disk, in the C:\AAA sub directory. The system then calls AAWIN and runs your movie.