< TI-Basic Z80 Programming

Menus are useful for user interaction. By using Menus, you can list several choices which the user can pick; each choice jumping to a different label.

Syntax

The basic syntax for Menu:

Menu(''"title"'',''"text1"'',''label1''[,''"text2"'',''label2'',...,''"text7"'',''label7''])
  • In place of any text string, you may substitute a string variable name (e.g., Str1)
  • title can have a max length of 16 characters
  • Each choice can have a max length of 14 characters, any additional characters are truncated
  • Menus can have a limit of 7 options. Attempting to add more options than 7 will result in an ARGUMENT error being displayed upon attempted command execution.

When a user selects an option in the Menu by pressing ENTER, the program will jump to the Lbl with the same name defined in the Menu statement.

If the Menu statement references a Lbl that does not exist, a LABEL error will be returned.

Example

To create a simple Menu with several options:

:Menu("PHYSICS","PE",A,"KE",B,"WEIGHT",C)
:Lbl A
:''statements''
:Lbl B
:''statements''
:Lbl C
:''statements''

Displays the following when executed:

PHYSICS
1:PE
2:KE
3:WEIGHT

Advanced Menus

The generic menu function allows for great use of static menus, but when more choices are needed or when more interactive, dynamic menus are needed. The following method uses getKey to achieve this.

Note: The following example uses the Text command, which draws text to the graph screen. This is covered with more detail in later chapters.

:Text(1,1,"PHYSICS")                // Draw text to graph screen
:Text(11,1,"1. POTENTIAL ENERGY")
:Text(21,1,"2. KINETIC ENERGY")
:Text(31,1,"3. APPARENT WEIGHT")
:Delvar A                           // Get user input via getKey
:Repeat A
:getKey→A
:End
:If A=92:Goto A                     // Handle user input
:If A=93:Goto B
:If A=94:Goto C
:Lbl A
:''statements''
:Lbl B
:''statements''
:Lbl C
:''statements''

You try it!

Try these examples to practice using the Menu command.

Physics Calculations

The potential energy of an object is defined by , where m is the mass in kilograms, g is the gravity (), and h is the height in meters. The kinetic energy of an object is defined by , where m is the mass in kilograms and v is the velocity in meters per second. The apparent weight of an object is defined by , where m is the mass in kilograms and g is the gravity (). Use the Menu command to write a simple program that the user can select from each of the previously defined formulas, enter known values, and receive an output.

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.