Default.htm 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <html>
  2. <head>
  3. <title>Blitz3D Docs</title>
  4. <link rel=stylesheet href=../css/commands.css type=text/css>
  5. </head>
  6. <body>
  7. <h1>Default</h1>
  8. <h1>Parameters</h1>
  9. <table>
  10. <tr>
  11. <td>
  12. None.
  13. </td>
  14. </tr>
  15. </table>
  16. <h1>Description</h1>
  17. <table>
  18. <tr>
  19. <td>
  20. In a SELECT structure, you may wish to execute code if none of the cases you specify are met. All code after DEFAULT to END SELECT will be executed if no case is met. See SELECT, CASE, and the example for more.
  21. <br>
  22. <br>
  23. See also: <a class=small href=Select.htm>Select</a>, <a class=small href=Case.htm>Case</a>, <a class=small href=End Select.htm>End Select</a>.
  24. </td>
  25. </tr>
  26. </table>
  27. <h1><a href=../2d_examples/Default.bb>Example</a></h1>
  28. <table>
  29. <tr>
  30. <td>
  31. ; SELECT/CASE/DEFAULT/END SELECT Example <br />
  32. ; Assign a random number 1-10 <br />
  33. mission=Rnd(1,10) <br />
  34. <br />
  35. ; Start the selection process based on the value of 'mission' variable <br />
  36. Select mission <br />
  37. <br />
  38. ; Is mission = 1? <br />
  39. Case 1 <br />
  40. Print "Your mission is to get the plutonium and get out alive!" <br />
  41. <br />
  42. ; Is mission = 2? <br />
  43. Case 2 <br />
  44. Print "Your mission is to destroy all enemies!" <br />
  45. <br />
  46. ; Is mission = 3? <br />
  47. Case 3 <br />
  48. Print "Your mission is to steal the enemy building plans!" <br />
  49. <br />
  50. ; What do do if none of the cases match the value of mission <br />
  51. Default <br />
  52. Print "Missions 4-10 are not available yet!" <br />
  53. <br />
  54. ; End the selection process <br />
  55. End Select
  56. </td>
  57. </tr>
  58. </table>
  59. <br>
  60. <a target=_top href=../index.htm>Index</a><br>
  61. <br>
  62. Click <a href=http://www.blitzbasic.co.nz/b3ddocs/command.php?name=Default&ref=comments target=_blank>here</a> to view the latest version of this page online</body>
  63. </html>