ChangeLog 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Jan 2011 mnix@wanm.com.au
  2. * Added TargetWindow - view of target as seen from shooter.
  3. * Added a perspective checkbox to the target window. This switches
  4. between path as seen by shooter (on) and path relative to line of
  5. sight (off). For example, a bullet 1/2 way to the target will
  6. line up with a point twice as far above line of sight in the target
  7. as it actually is. ie if the bullet is 1" above line of sight at 50
  8. yds, it will be in line with a point 2" above line of sight on a
  9. target at 100 yds. The line appears to move on the target because as
  10. you move the target back (say to 200 yds) the bullet at 50 yds and
  11. 1" high will line up with a point 4" high on the target at 200 yds.
  12. * If a file name is given on the command line it is loaded at startup.
  13. No checking is done on the file name - if it does not exist,
  14. bad things may happen.
  15. * Added various target types including common NRA and ISSF targets
  16. * Added a "variance" ring around the impact point. This is 1 MOA plus
  17. a bit on the sides as alowance for spin drift (it's added to both
  18. sides and left to the viewer to decide on whether to allow for left
  19. or right twist. The amount is so small it doesn't matter much
  20. anyway (we allow a generic 0.1 MOA per 100 yards beyond 100 yards)
  21. Nov 2010 mnix#wanm.com.au
  22. * Added a drop down box to the Plot Window to select scope guides.
  23. * Changed the calculations for the scope guides to draw them more
  24. accurately.
  25. * Get Zero to float in the path plot
  26. * Clip the scope guides
  27. * Added an option for guides every 1 degree
  28. Oct 2010 mnix@wanm.com.au
  29. * Added scope guides to the path plot as a ready reference to how the
  30. trajectory compares to the field of view of the scope, in particular to
  31. one and 5 MIL marks on a MIL-DOT reticle. Included code for MOA
  32. as well, but commented it out pending GUI button to select
  33. MIL/MOA/NONE
  34. * Modified InputWindow and PlotWindow to handle plotting memory 3
  35. * Consolidated a lot of code in PlotWindow into 3 new functions.
  36. * modified InputWindow::cb_Solve() to treat zero ranges < 2 yards as a
  37. zeroangle and report the zeroangle used in the output window.
  38. This allows plotting the paths of different loads shot from the one
  39. barrel and scope alignment (eg for a two different loads in a .308
  40. without adjusting the scope, what is the elevation adjustment for
  41. each load?) Useful for hunters who might select different loads for
  42. different targets, but do not want to mess with their zero.
  43. * Allowed for larger y_range in plots.
  44. * Reduced the minimum range in the PlotWindow to 50 yds (default still
  45. 200). Useful for low power (ie .22) shooters.
  46. * Added Drop (MIL), Windage (MIL) and Target Size (MIL) columns to the
  47. RangeWindow (not all export formats have been updated yet).
  48. All useful for users of MIL-DOT reticles.
  49. Need to add a GUI box for entering the target size in inches - that
  50. way you can enter the size in inches of whatever you intend to shoot,
  51. then in the field measure your target in MIL in the scope, look that up
  52. on the range table and instantly get bullet drop and windage in MIL,
  53. no maths required.
  54. * Added metric conversions of the summary data at the top of the range
  55. table.
  56. * Cleaned up SOME of the misuse of malloc/delete/free
  57. delete calls the destructor then frees the memory. Calling free on
  58. an object after deleting it is an error, so is calling delete after
  59. calling the destructor!
  60. Also mixing new/free and malloc/delete on the same object is bad.
  61. Only use malloc with free, and only new with delete.
  62. * Re-wrote the GenTable and Export* code in RangeWindow to be data-driven.
  63. Adding a column, or modifying the layout of the load data is now
  64. done in one place and automatically appears in ALL output formats.