Two new options
Add "travel" boolean option to enable/disable travel command. Add "mouse_support" wincap option to enable/disable mouse. - When running the win32 tty version full-screen, some people complained about the square mouse cursor. Newsgroups: rec.games.roguelike.nethack Subject: Re: Getting rid of the cursor? <email deleted> <email deleted> Followup-To: On Thu, 04 Apr 2002 00:20:06 <email deleted> wrote: > Ok, let me be more specific: when playing the windows non-GUI version, is > there a way to get rid of the large rectangular white cursor? > > <email deleted> wrote in message > <email deleted> >> Can you get rid of the cursor in the windows version? I really hate that >> thing. >> <email deleted> >Newsgroups: rec.games.roguelike.nethack >Subject: Disabling Mouse Input > >I purchased an older P120 laptop to be able to play Nethack at the hotel. >I find that I rest my thumbs on the mouse touch pad all too often and my >@ moves unexpectedly at times. I took a peruse through defaults.nh, but >came up empty. > >Anyone know if mouse input can be disabled? > >MRSisson
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
.ds vr "NetHack 3.4
|
||||
.ds f0 "\*(vr
|
||||
.ds f1
|
||||
.ds f2 "March 20, 2002
|
||||
.ds f2 "April 3, 2002
|
||||
.mt
|
||||
A Guide to the Mazes of Menace
|
||||
(Guidebook for NetHack)
|
||||
@@ -2036,6 +2036,8 @@ pit, spiked pit, hole, trap door, teleportation trap, level teleporter,
|
||||
magic portal, web, statue trap, magic trap, anti-magic field, polymorph trap.
|
||||
|
||||
Cannot be set with the `O' command.
|
||||
.lp travel
|
||||
Allow the travel command (default on).
|
||||
.lp verbose
|
||||
Provide more commentary during the game (default on).
|
||||
.lp videocolors
|
||||
@@ -2113,6 +2115,8 @@ with tiles, generally displays a heart symbol near pets.
|
||||
NetHack should use a large font.
|
||||
.lp map_mode
|
||||
NetHack should display the map in the manner specified.
|
||||
.lp mouse_support
|
||||
Allow use of the mouse for input and travel.
|
||||
.lp player_selection
|
||||
NetHack should pop up dialog boxes, or use prompts for character selection.
|
||||
.lp popup_dialog
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
\begin{document}
|
||||
%
|
||||
% input file: guidebook.mn
|
||||
% $Revision: 1.38 $ $Date: 2002/03/31 06:27:18 $
|
||||
% $Revision: 1.39 $ $Date: 2002/03/31 07:19:43 $
|
||||
%
|
||||
%.ds h0 "
|
||||
%.ds h1 %.ds h2 \%
|
||||
@@ -40,7 +40,7 @@
|
||||
%.au
|
||||
\author{Eric S. Raymond\\
|
||||
(Extensively edited and expanded for 3.4)}
|
||||
\date{March 20, 2002}
|
||||
\date{April 3, 2002}
|
||||
|
||||
\maketitle
|
||||
|
||||
@@ -2496,6 +2496,9 @@ magic portal, web, statue trap, magic trap, anti-magic field, polymorph trap.
|
||||
|
||||
Cannot be set with the `{\tt O}' command.
|
||||
%.lp
|
||||
\item[\ib{travel}]
|
||||
Allow the travel command (default on).
|
||||
%.lp
|
||||
\item[\ib{verbose}]
|
||||
Provide more commentary during the game (default on).
|
||||
%.lp
|
||||
@@ -2601,6 +2604,9 @@ NetHack should use a large font.
|
||||
\item[\ib{map\_mode}]
|
||||
NetHack should display the map in the manner specified.
|
||||
%.lp
|
||||
\item[\ib{mouse\_support}]
|
||||
Allow use of the mouse for input and travel.
|
||||
%.lp
|
||||
\item[\ib{player\_selection}]
|
||||
NetHack should pop up dialog boxes or use prompts for character selection.
|
||||
%.lp
|
||||
|
||||
@@ -69,3 +69,5 @@ General New Features
|
||||
--------------------
|
||||
lootabc option
|
||||
showrace option
|
||||
travel option
|
||||
mouse_support wincap option
|
||||
|
||||
@@ -499,6 +499,7 @@ to support:
|
||||
| | | wc_backgrnd_status |char * |
|
||||
| | | wc_foregrnd_text |char * |
|
||||
| | | wc_backgrnd_text |char * |
|
||||
| mouse | WC_MOUSE_SUPPORT | wc_mouse_support |boolean |
|
||||
+--------------------+--------------------+--------------------+--------+
|
||||
|
||||
align_message -- where to place message window (top, bottom, left, right)
|
||||
@@ -541,6 +542,7 @@ windowcolors
|
||||
-- port should use these colors for window foreground/background
|
||||
colors. Syntax:
|
||||
menu fore/back message fore/back status fore/back text fore/back
|
||||
mouse_support -- port should enable mouse support if possible
|
||||
|
||||
Whenever one of these settings is adjusted, the port is notified of a change
|
||||
to the setting by calling the port's preference_update() routine. The port
|
||||
@@ -578,10 +580,11 @@ To add a new wincap option, please follow all these steps:
|
||||
2. Add the description to the paragraph below the chart.
|
||||
3. Add the WC_ to the bit list in include/winprocs.h (if there is room).
|
||||
4. Add the wc_ field(s) to the iflags structure in flag.h.
|
||||
5. Add an appropriate parser to parseoptions() in options.c.
|
||||
6. Add code to display current value to get_compopt_value() in options.c.
|
||||
7. Document the option in Guidebook.mn and Guidebook.tex.
|
||||
8. Add the bit name to the OR'd values in your window port's winprocs struct
|
||||
5. Add the name and value to wc_options[] in options.c
|
||||
6. Add an appropriate parser to parseoptions() in options.c.
|
||||
7. Add code to display current value to get_compopt_value() in options.c.
|
||||
8. Document the option in Guidebook.mn and Guidebook.tex.
|
||||
9. Add the bit name to the OR'd values in your window port's winprocs struct
|
||||
wincap mask if your port supports the option.
|
||||
|
||||
V. New or respecified common, high level routines
|
||||
|
||||
Reference in New Issue
Block a user