I'm in the process of creating a mini-game using batch and one of the useful tool ideas was to have an interactive notepad so that users could store information throughout the game and refer back to it later. So far I have created the option to goto a notepad within an In-game pause menu but wasn't sure if it was possible to save results without outputting to new file on the desktop
:PauseMenu
cls
echo.
echo %Alias%
echo.
echo Notepad
echo Stats
echo Untitled2
echo Untitled3
echo Untitled4
echo Untitled5
echo Untitled6
set/p PauseMenu="N, S"
IF ["%PauseMenu%"]==["N"] goto Notepad
IF ["%PauseMenu%"]==["S"] goto Stats
IF ["%PauseMenu%"]==["N"] goto
IF ["%PauseMenu%"]==["N"] goto
IF ["%PauseMenu%"]==["N"] goto
IF ["%PauseMenu%"]==["N"] goto
IF ["%PauseMenu%"]==["N"] goto
Any help would be appreciated, thanks.
PS is it possible to go back to the previous page from a menu?
Simplicity itself.
First, some renaming may be in order.
notepad
is a supplied utility andpausemenu
is being used both as a variable and as a label. This is not invalid, but can be a little confusing.Further, if you are choosing between a set of keys, I'd suggest you investigate
choice
.choice
has a number of advantages, like it only accepts one character, noenter
is required and it's not necessary to analyse the entry.So: revising your code:
Here, a menu with a number of unimplemented options is presented and the
choice
command (seechoice /?
from the prompt for more options) waits for a choice to be made.errorlevel
is set according to the choice made - but sinceif errorlevel n
meansif errorlevel is n OR GREATER THAN n
you need to processerrorlevel
in reverse order.Then each selection is processed.
n
will start anotepad
instance and load thealias.txt
file from the game directory, then present the menu again as it returns topausemenu
.s
will show the stats (idk what you need for that) and then return top_pausemenu
which will pause and then proceed to show the menu when the user signals to do so.