home *** CD-ROM | disk | FTP | other *** search
/ 100 af Verdens Bedste Spil / 100Spil.iso / dos / wolf3d / source / wolfsrc.1 / README / RELEASE.TXT < prev   
Text File  |  1995-07-21  |  2KB  |  54 lines

  1. We are releasing this code for the entertainment of the 
  2. user community.  We don't guarentee that anything even 
  3. builds in here.  Projects just seem to rot when you leave 
  4. them alone for long periods of time.
  5.  
  6. This is all the source we have relating to the original 
  7. PC wolfenstein 3D project.  We haven't looked at this 
  8. stuff in years, and I would probably be horribly embarassed 
  9. to dig through my old code, so please don't ask any questions 
  10. about it. The original project was built in borland c++ 3.0.  
  11. I think some minor changes were required for later versions.
  12.  
  13. You will need the data from a released version of wolf or spear 
  14. to use the exe built from this code.  You can just use a 
  15. shareware version if you are really cheap.
  16.  
  17.  
  18. Some coding comments in retrospect:
  19.  
  20. The ray casting refresh architecture is still reasonably 
  21. appropriate for the game.  A BSP based texture mapper could 
  22. go faster, but ray casting was a lot simpler to do at the time.
  23.  
  24. The dynamically compiled scaling routines are now a Bad Thing.  
  25. On uncached machines (the original target) they are the fastest 
  26. possible way to scale walls, but on modern processors you just 
  27. wind up thrashing the code cash and wrecking performance.  
  28. A simple looping texture mapper would be faster on 486+ machines.
  29.  
  30. The whole page manager caching scheme is unecessarily complex.
  31.  
  32. Way too many #ifdefs in the code!
  33.  
  34.  
  35. Some project ideas with this code:
  36.  
  37. Add new monsters or weapons.
  38.  
  39. Add taller walls and vertical motion.   This should only be 
  40. done if the texture mapper is rewritten.
  41.  
  42. Convert to a 32 bit compiler.  This would be a fair amount 
  43. of work, but I would hate to even mess with crusty old 16 
  44. bit code.  The code would get a LOT smaller.
  45.  
  46. Make a multi-player game that runs on DOOM sersetup / ipxsetup drivers.
  47.  
  48.  
  49. Have fun...
  50.  
  51. John Carmack
  52. Technical Director
  53. Id Software
  54.