home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / dmorf012.zip / WHATSNEW.DMO < prev   
Text File  |  1992-12-27  |  8KB  |  145 lines

  1. DMORF Revision History
  2.  
  3. Rel 0.12, 12/26/92 -
  4.   o  Okay, I messed up.  Too much "holiday cheer" I guess.
  5.      Anyway, in 0.11 I did fix the bugs mentioned below, but
  6.      added several others while I was at it.  Fixed.
  7.   o  Added buttons on the zoom screens for switching between
  8.      zooms.
  9.   o  Changed the way keyboard control works... if you press a
  10.      letter it'll activate the screen control in question instead
  11.      of just selecting it.
  12. Rel 0.11, 12/24/92 -
  13.   o  Fixed some bugs: (1) there was some garbage in the headers
  14.      of TGA files because of uninitialized variables.
  15.      (2) Dmorf wasn't able to read mesh files from 0.09 and earlier
  16.      which were saved when the meshes were "locked".
  17.   o  Fiddled with mouse stuff so it behaves more smoothly in
  18.      protected mode.
  19. Rel 0.10, 12/21/92 -
  20.   o  Changed the name of the program to Dmorf (short for "Dave's
  21.      Morphing program" ... it seems that "Morph" was already taken
  22.      by a Macintosh commercial morphing program).
  23.   o  Fiddled with the UI some more.  You can now click on a number
  24.      field and type the number in instead of using the arrows to
  25.      increment and decrement them.
  26.   o  Added a "swap" button... it swaps meshes between the two
  27.      pictures.
  28.   o  Added "copy 1->2" and "copy 2->1" buttons... which make
  29.      duplicate the mesh from one window in the other.
  30.      These are replacements for the old "locked" setting.
  31.   o  Dmorf no long exits to DOS when it's done morphing.  It just
  32.      returns to edit mode.  Use the "quit" button or the <Esc> key
  33.      to exit the program.
  34.      If you press the ESC key while a morph is in progress,
  35.      it returns you to edit mode.
  36.   o  Dmorf doesn't need to load a whole picture into RAM just
  37.      do display it anymore... so you can display pictures and edit
  38.      meshes even with the real mode version (DMORF.EXE), and that
  39.      means you can use the SVGA mode (with the /S option) which
  40.      still doesn't work in protected mode.
  41.      For large pictures (or actually, anything but TINY pictures)
  42.      you'll need to use the protected mode version to do the
  43.      actual morphing.
  44.   o  You can now select UI controls with the tab key and space bar
  45.      instead of the mouse.  You can't control meshes with the
  46.      keyboard, but any other screen items should work fine.
  47.      Also, you can select a control by typing the letter that's
  48.      highlighted in its label... for instance, the G in the Go
  49.      button is highlighted.  If you press the G key, the Go
  50.      button will be selected... then just press the space bar
  51.      to actually select the button.
  52.   o  Got rid of "Spline intervals" option.  It almost always
  53.      produces "pixel rot" (thanks to Eric Kachelhofer for coming
  54.      up with that term), and the results were hardly ever
  55.      any better than without.
  56.   o  Dmorf now displays the intermediate meshes while it warps.
  57. Rel 0.09, 12/09/92 -
  58.   o  Added /C command-line parameter, which lets you preload a
  59.      mesh/control file.  "morph before.tga after.tga /cbla.msh"
  60.      preloads a control file called "bla.msh".
  61.   o  The maximum value for the "last frame" control wasn't
  62.      getting reset properly when Morph read in a control file.
  63.      Fixed.
  64.   o  Added /S command-line parameter, which tells MORPH to use
  65.      SVGA (640*480*256) instead of VGA (640*480*16).
  66.      Unfortunately, this only works in the real mode version,
  67.      because the SVGA256.BGI driver dies in protected mode,
  68.      so you'll only be able to use it on tiny pictures.
  69.      Hopefully this'll be corrected in a future version.
  70. Rel 0.08, 12/06/92 -
  71.   o  Fixed two more bugs which in some circumstances caused
  72.      runtime errors.
  73.   o  Changed some of the on/off-type controls to checkboxes.
  74.   o  Added controls to change the color of the mesh... sometimes
  75.      the default red color doesn't stand out too well.
  76.   o  Some of the on/off-type control values weren't getting saved
  77.      in the control file correctly.  Fixed.
  78.   o  Cleaned up the line-adding code... now Morph only pays attention
  79.      to the right button if the cursor is in a picture border.
  80.      In fact, if you try to use the right button anywhere else, it
  81.      lets off an irritating sound.  It also sounds a tone if you
  82.      try to add a line where there already is one.
  83.   o  Morph now pays attention to the escape key in zoom mode.
  84. Rel 0.07, 12/03/92 -
  85.   o  Fixed another memory allocation problem, which was sometimes
  86.      generating page-fault errors (runtime error 216).
  87. Rel 0.06, 12/01/92 -
  88.   o  MORPH wasn't deallocating some memory correctly, resulting
  89.      in out of memory errors after a while.
  90. Rel 0.05, 11/30/92 -
  91.   o  You can halt MORPH at pretty much any time with the <Esc> key.
  92.   o  the Warp 1/2 and Fade 1/2 controls weren't working right... no
  93.      matter what value was selected, MORPH would use the 50% for Warp
  94.      and 75% for Fade.  Fixed.
  95.   o  got rid of all the EMS/XMS/virtual memory stuff... there are
  96.      now two versions of the program: MORPH, which runs in real mode
  97.      and should work on pictures that are 320x240 or less; and
  98.      MORPHX, which runs in 286 Protected mode and should work on
  99.      pictures that are up to around 2000*2000 (if you've got 16MB
  100.      of memory... even if you've got more than 16M, MORPH can't access
  101.      any more.)
  102.      I will rework this so it stores only one channel at a time
  103.      (red, green, blue, alpha) and can work with pictures four
  104.      times larger. This'll make it slower, but I think that's a
  105.      fair trade.
  106.      Or maybe I'll rework MORPH so it operates on chunks instead
  107.      of a whole picture.
  108.      Note: to get the protected mode version working, you must have
  109.      a copy of RTM.EXE and DPMI16BI.OVL (and maybe DPMIINST.EXE if
  110.      you've got an unrecognized 286 processor).  These files are
  111.      available in another archive, DTAMEM.ZIP.  They're in a separate
  112.      archive so you won't have to redownload them each time MORPH
  113.      (or my other programs, DTA and PDOTS) gets updated.
  114.   o  MORPH now updates the screen as it's performing a morph.
  115.      In each pass of the warping process, for each picture, it
  116.      updates the picture in question with the interim results.
  117.      It then updates both screens with the actual merged morph
  118.      frame.
  119.   o  I discovered that the cause of a lot of streaking on the screen,
  120.      (and probably some crashes) was caused by a routine I was trying
  121.      out for figuring out the resampling intervals between mesh
  122.      curves using splines.
  123.      An earlier version of the routine, which uses linear
  124.      interpolation method, is stabler and faster.  The linear
  125.      method is now the default.  You can still switch back to
  126.      the spline method if you want (sometimes it produces more
  127.      convincing results).  This option is called "Spline intervals".
  128.   o  MORPH will no longer abort if you start it up without a
  129.      mouse driver loaded.  Instead, it will allow you to type a
  130.      few keystrokes.  The keystrokes it recognizes are <Esc>
  131.      or "A" to abort, "L" for load mesh file, and "G" for "Go".
  132. Rel 0.04, 11/26/92 -
  133.   o  Fixed another bug with upside-down TGAs (in zoom mode)
  134.   o  Fixed a minor interface bug.
  135.   o  Linked the bgi driver into the executable... so there
  136.      shouldn't be "initgraph" errors when you don't have
  137.      "egavga.bgi" in the morph directory.
  138. Rel 0.03, 11/23/92 -
  139.   o  Fixed run-time error that was all that you got from
  140.      pressing the Zoom buttons.
  141.   o  When dealing with upside-down TGAs (first line
  142.      at the bottom), MORPH flipped the picture upside down but didn't
  143.      flip the control mesh along with it.  Oops.
  144.   o  Copied a bit of interface gunk from PDOTS.
  145.