home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / programs / graphics / easyanim / !EasyAnim / Resources / Format < prev    next >
Encoding:
Text File  |  1996-08-06  |  1.1 KB  |  39 lines

  1.  
  2. File format
  3. -----------
  4. Version 105
  5.  
  6. The file ‘Options’ within an animation holds all the details of the
  7. animation:
  8.  
  9.         Byte    Description
  10.          0      File version number (105)
  11.          1      Speed in centiseconds between frames
  12.          2      Number of frames (maximum 768)
  13.          3      Scale (%)
  14.          4      Grid size (pixels)
  15.          5+     Animation title
  16.  
  17. If the version number is not equal to the current version number, then an
  18. error should be produced. I will attempt to avoid changing the file version
  19. number or if there is a very major change then I might provide backwards
  20. compatibility.
  21.  
  22. A frame ‘n’ is stored in ‘Frames.n DIV 10.n’. So frame 23 would be stored in
  23. ‘Frames.2.23’.
  24.  
  25. All frames are simply LZW-compressed sprite files with one 150x150 mode 13
  26. sprite named ‘frame’ which is plotted with OS_SpriteOp 52.
  27.  
  28. Previous version numbers are:
  29.  
  30. Version
  31.   100           Options stored in ‘0’ file
  32.   101           Renamed ‘0’ to ‘Options’
  33.   102           Added file version number
  34.   103           Included grid size & scale
  35.   104           Extended max. frames from 76 to 768
  36.   105           Moved ‘Options’ out of ‘Frames’
  37.  
  38. :-)
  39.