Overview
Comment: | Add a man page |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2d8aa29ceb4a097b3fd7f47edeb5da04 |
User & Date: | user on 2020-12-22 08:31:13 |
Other Links: | manifest | tags |
Context
2020-12-25
| ||
06:19 | Correct the scrollbars to work like that in xterm and other programs check-in: 2c47558bbb user: user tags: trunk | |
2020-12-22
| ||
08:31 | Add a man page check-in: 2d8aa29ceb user: user tags: trunk | |
04:56 | Change class.doc to say that Image, Shape, and Shovable are now 16-bits check-in: 8d33f93627 user: user tags: trunk | |
Changes
Added man6/heromesh.6 version [51d8cd5b88].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | .TH HEROMESH 6 "December 22, 2020" .so man6/heromesh.str .SH NAME heromesh \- Free Hero Mesh (a puzzle game engine) .SH SYNOPSYS .B heromesh .RI "[" "options" "] " "basename" " [" "resources" "]" .SH DESCRIPTION Free Hero Mesh is a puzzle game engine, for turn-based grid-based puzzle games. It is fully deterministic and depends only on the sequence of inputs, not on time or randomness. Free Hero Mesh allows you to define your own classes of objects using the included programming language. .PP The "basename" above is the filename of the puzzle set without the extension. A puzzle set consists of four files. .PP The "resources" above is optional resources to override, in the X resource manager format. .SH OPTIONS .IP -C Dump all class data. .IP -H Dump the hash table. .IP -L Display all tokens being read from the class definition file. .IP -a Autotest levels, ensuring that the provided solution is valid. (Not implemented yet) .IP -c Only load classes and then terminate. This can be used to verify that the class definition file does not contain syntax errors. You can also use it with some other options to display details. .IP -e Start the level editor. .IP -n Create a new puzzle set. The class definition file and image set must already exist. .IP -r Open in read-only mode. .IP -t Enable message tracing. .IP -v More verbose error logging. .IP -x Does not start the GUI; instead, accepts SQL statements from stdin. .SH FILES A puzzle set consists of four files, with filename suffixes .BR ".class" ", " ".xclass" ", " ".level" ", and " ".solution" "." .TP .I ~/.heromeshrc The configuration file, in X resource manager format. .TP .I ~/.heromeshsession A SQLite database containing user cache data. .TP .I \*[Document_Dir]/*.doc Documentation. .SH ENVIRONMENT .TP .B HOME The home directory; used to find .heromeshrc and .heromeshsession files. .PP Any of the SDL environment variables can also be used. |
Added man6/heromesh.str version [9dd45a1e03].
> > > > > | 1 2 3 4 5 | \# The distributor of Free Hero Nesh must edit this file in order to \# specify the correct directories. These are used in the man pages of \# Free Hero Mesh to tell the user where to look for the files. Do not \# include the trailing slash in the directory names. .ds Document_Dir ~/freeheromesh |