About: Source:Hack 1.0/hack.Decl.c   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

Below is the full text to hack.Decl.c from the source code of Hack 1.0. To link to a particular line, write [[Hack 1.0/hack.Decl.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code

AttributesValues
rdfs:label
  • Source:Hack 1.0/hack.Decl.c
rdfs:comment
  • Below is the full text to hack.Decl.c from the source code of Hack 1.0. To link to a particular line, write [[Hack 1.0/hack.Decl.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code
dcterms:subject
dbkwik:nethack/pro...iPageUsesTemplate
abstract
  • Below is the full text to hack.Decl.c from the source code of Hack 1.0. To link to a particular line, write [[Hack 1.0/hack.Decl.c#line123]], for example. Warning! This is the source code from an old release. For the latest release, see Source code 1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1984. */ 2. 3. #include "hack.h" 4. char nul[40]; /* contains zeros */ 5. char plname[PL_NSIZ] = "player";/* player name */ 6. char lock[32] = "1lock"; /* long enough for login name */ 7. 8. #ifdef WIZARD 9. boolean wizard; /* TRUE when called as hack -w */ 10. #endif WIZARD 11. 12. struct rm levl[COLNO][ROWNO]; /* level map */ 13. #ifndef QUEST 14. struct mkroom rooms[MAXNROFROOMS+1]; 15. coord doors[DOORMAX]; 16. #endif QUEST 17. struct monst *fmon = 0; 18. struct gen *fgold = 0, *ftrap = 0; 19. struct obj *fobj = 0, *fcobj = 0, *invent = 0, *uwep = 0, *uarm = 0, 20. *uarm2 = 0, *uarmh = 0, *uarms = 0, *uarmg = 0, *uright = 0, 21. *uleft = 0, *uchain = 0, *uball = 0; 22. struct flag flags; 23. struct you u; 24. 25. xchar dlevel = 1; 26. xchar xupstair, yupstair, xdnstair, ydnstair; 27. char *save_cm = 0, *killer, *nomovemsg; 28. 29. long moves = 1; 30. long wailmsg = 0; 31. 32. int multi = 0; 33. char genocided[60]; 34. char fut_geno[60]; 35. 36. xchar curx,cury; 37. xchar seelx, seehx, seely, seehy; /* corners of lit room */ 38. 39. coord bhitpos;
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software