Source:NetHack 2.3e/version.c
Jump to navigation
Jump to search
Below is the full text to version.c from the source code of NetHack 2.3e.
Warning! This is the source code from an old release. For newer releases, see Source code
Screenshots and source code from Hack are used under the CWI license.
1. /* SCCS Id: @(#)version.c 2.3 88/02/11 2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ 3. 4. #include "hack.h" 5. #include "date.h" 6. 7. doversion(){ 8. 9. #ifdef BETA 10. pline("%s Net%s Beta Version %s - last build %s.", 11. #else 12. pline("%s Net%s Version %s - last build %s.", 13. #endif 14. #ifdef UNIX 15. "Unix" 16. #endif 17. #ifdef MSDOS 18. "PC" 19. #endif 20. #ifdef QUEST 21. , "Quest" 22. #else 23. , "Hack" 24. #endif 25. , VERSION, datestring); 26. return(0); 27. } 28. 29. #ifdef DGKMOD 30. 31. #define pg_line(x) if(page_line(x)) goto quit; 32. 33. doMSCversion() 34. { 35. char buf[BUFSZ]; 36. 37. set_pager(0); 38. sprintf(buf, "Behold mortal, the origins of %s Net%s...", 39. #ifdef UNIX 40. "Unix" 41. #endif 42. #ifdef MSDOS 43. "PC" 44. #endif 45. #ifdef QUEST 46. , "Quest"); 47. #else 48. , "Hack"); 49. #endif 50. pg_line(""); 51. pg_line(buf); pg_line(""); pg_line(""); 52. 53. pg_line("The original HACK was written by Jay Fenlason with help from"); 54. pg_line("Kenny Woodland, Mike Thome and Jon Payne."); 55. 56. pg_line(""); 57. pg_line("Andries Brouwer did a major re-write and published (at least)"); 58. pg_line("two versions (1.0.2 and 1.0.3) to the Usenet."); 59. 60. pg_line(""); 61. pg_line("PC HACK 3.51K was an MSDOS(tm) version of HACK 1.03."); 62. pg_line("The PC implementation was done in Microsoft(tm) C by Don Kneller"); 63. pg_line("and modified by Ken Arromdee."); 64. 65. pg_line(""); 66. pg_line("PC and UNIX HACK were merged by Mike Stephenson and Ken Arromdee"); 67. pg_line("incorporating many modifications and features made by the above,"); 68. pg_line("as well as the following honored hackers:"); 69. 70. pg_line(""); 71. pg_line(" Scott R. Turner Tom Almy John S. Bien"); 72. pg_line(" Gil Neiger Ralf Brown Eric S. Raymond"); 73. pg_line(" Eric Backus Roland McGrath Greg Laskin"); 74. pg_line(" Bruce Holloway Richard P. Hughey Kevin Sweet"); 75. pg_line(" Steve Linhart Bruce Mewborne Janet Walz"); 76. pg_line(" and... The Unknown Hacker"); 77. set_pager(1); 78. return(0); 79. quit: 80. set_pager(2); 81. return(0); 82. } 83. 84. #endif