home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 23 / BASIC2 / ROBOPOST.BAS
Encoding:
BASIC Source File  |  1988-01-01  |  14.0 KB  |  274 lines

  1. REM ********************
  2. REM ***** ROBOPOST *****
  3. REM ********************
  4. REM ******** BY ********
  5. REM ********************
  6. REM ** RUSSELL BOSIER **
  7. REM ********************
  8.  
  9. CLEAR:DIM d(7,6,6),hi(12),hi$(12),pt(6):CLS:SCREEN #1 GRAPHICS 640,200
  10. USER SPACE 640,200:WINDOW #1 FULL ON
  11. GRAPHICS COLOUR 2 MARKER 4 MARKER SIZE 20:OPTION DEGREES:asp=13/30
  12. FOR b=500 TO 50 STEP -50:a=a+1:hi(a)=b:hi$(a)="ROBOPOST":NEXT:hi(0)=90000
  13.  
  14. LABEL titlescreen:WINDOW #1 TITLE "ROBOPOST":SET MODE 1:CLS
  15. BOX 0;0,640,200 COLOUR 5 FILL ONLY WITH 12
  16. BOX 65;60,480,120 COLOUR 0 FILL ROUNDED:BOX 65;60,480,120 COLOUR 1 ROUNDED
  17. LINE 65;175,305;120,545;175 COLOUR 1 STYLE 6
  18. SET MODE 2 FONT 3 POINTS 36:MOVE 140;150:PRINT COLOUR (2);"R O B O P O S T"
  19. SET COLOUR 1 POINTS 18:MOVE 292;133:PRINT "By";:MOVE 240;120:PRINT "Russell Bosier"
  20. SET COLOUR 15:MOVE 195;105:PRINT "Press 'I' For Instructions"
  21. MOVE 249;90:PRINT "'D' For Demonstration"
  22. MOVE 249;75:PRINT "'P' To Play":SET MODE 1 FONT 1
  23. 100 a$=INKEY$:IF a$="i" OR a$="I" THEN GOTO instructions
  24. IF a$="p" OR a$="P" THEN dem=1:GOTO setmod
  25. IF a$="d" OR a$="D" THEN dem=0:WINDOW #1 TITLE "ROBOPOST - DEMO":slev=1:GOTO setup
  26. GOTO 100
  27.  
  28. LABEL instructions:CLS:BOX 0;0,640,200 COLOUR 5 FILL ONLY WITH 12
  29. BOX 2;168,611,31 FILL ROUNDED:BOX 8;170,599,11 COLOUR 4 FILL ROUNDED
  30. BOX 2;34,611,9 FILL ROUNDED
  31. SET MODE 2 COLOUR 6 POINTS 36 FONT 3:MOVE 140;183:PRINT "R O B O P O S T"
  32. SET POINTS 18:MOVE 189;172:PRINT "I N S T R U C T I O N S":SET POINTS 14
  33. MOVE 105;36:PRINT "P R E S S  A N Y  K E Y  T O  C O N T I N U E"
  34.  
  35. SET COLOUR 4 FONT 1:MOVE 0;158:PRINT "The object of the game is to control a robot mailing system that operates in    a five story buiding.Each floor is divided into thirty tiles arranged in a"
  36. PRINT "six by five grid.Lines are painted on the tiles for the robot to follow, but    the tiles must be rearranged using the CURSOR KEYS to move the surrounding"
  37. PRINT "tiles into the black space, where a tile is missing, to guide the robot         across the floor.As the robot moves across the tiles its power level reduces,"
  38. PRINT "and guiding the robot into the black space causes a large reduction in power    before it is turned around to go back in the direction that it came from."
  39. PRINT:PRINT "The following objects are placed on each floor :-"
  40. m=20:n=70:pt(1)=1:l=1:SET MODE 1:GOSUB envelope:SET POINTS 14 MODE 2 COLOUR 4:MOVE 80;71
  41. PRINT "ENVELOPE - Must be picked up (by guiding the robot to it) and"
  42. PRINT "delivered to the floor specified.Ten points are scored for picking it up.       When it is picked up a shredder appears in its place."
  43. WHILE INKEY$="":WEND
  44. SET MODE 1:BOX 0;44,640,123 COLOUR 5 FILL ONLY WITH 12
  45. n=154:GOSUB letterbox:SET MODE 2:MOVE 80;155
  46. PRINT "LETTERBOX - When a letter is posted in the correct letterbox points"
  47. PRINT "are scored depending on the amount of power that is left.Posting a letter on    the wrong floor deducts fifty points from the score."
  48. n=125:GOSUB shredder:MOVE 80;126:PRINT "SHREDDER - If the robot is carrying a letter and it is guided into"
  49. PRINT "a shredder the letter will be destroyed and fifty points will be deducted."
  50. n=104:GOSUB battery:SET MODE 2 POINTS 14 COLOUR 4:MOVE 80;105:PRINT "BATTERY - A battery is placed on each floor and may be picked up"
  51. PRINT "when the robot is not carrying a letter.Each battery may only be used once      but restores the robots power level."
  52. MOVE 0;76:PRINT "If a letter is picked up and then destroyed, another letter can be found on     another floor.If the robot returns to that floor a new letter will be waiting   to be collected."
  53. WHILE INKEY$="":WEND
  54. SET MODE 1:BOX 0;44,640,123 COLOUR 5 FILL ONLY WITH 12:SET MODE 2
  55. MOVE 0;158:PRINT "To change to another floor, the robot must be guided to the required floor      number on the left hand side of the grid.That number then changes from brown"
  56. PRINT "to purple which indicates that the lift has been set to that floor.If the       wrong floor is set the robot may be guided to another number"
  57. PRINT:PRINT "The lift is situated on the right hand side of the grid and guiding the robot   to it once a floor has been set will change the floor"
  58. PRINT:PRINT "The five floors are represented on the right hand side of the screen by         rectangles in the same order as the lift nubers.To the left of these an arrow"
  59. PRINT "points to the floor that the robot is on under 'PRESENT'.When a letter is       picked up an envelope is displayed to the right of this under 'DELIVERY' to     indicate the floor that the letter must be delivered on."
  60. WHILE INKEY$="":WEND
  61. SET MODE 1:BOX 0;44,640,123 COLOUR 5 FILL ONLY WITH 12:SET MODE 2
  62. MOVE 0;158:PRINT "At the begining of the game the robot will start from the top left corner of    the grid and on a random floor."
  63. PRINT:PRINT "Before playing the NUM LOCK key must be in the ON position"
  64. PRINT:PRINT "When in the demonstration mode, press any key to return to the title screen."
  65. WHILE INKEY$="":WEND:GOTO titlescreen
  66.  
  67. LABEL shape1:BOX a;b,59,25 COLOUR 4 FILL:LINE a+30;b,a+30;b+26 WIDTH 7:LINE a;b+13,a+60;b+13 WIDTH 7:RETURN
  68.  
  69. LABEL shape2:BOX a;b,59,25 COLOUR 4 FILL:ELLIPSE a+60;b,30,asp PART 90,180 WIDTH 7:ELLIPSE a;b+26,30,asp PART 270,0 WIDTH 7:RETURN
  70.  
  71. LABEL shape3:BOX a;b,59,25 COLOUR 4 FILL:ELLIPSE a;b,30,asp PART 0,90 WIDTH 7:ELLIPSE a+60;b+26,30,asp PART 180,270 WIDTH 7:RETURN
  72.  
  73. LABEL shape4:BOX a;b,59,25 COLOUR 1 FILL:SET MODE 3:RETURN
  74.  
  75. LABEL setmod:BOX 0;0,640,200 COLOUR 5 FILL ONLY WITH 12:BOX 2;175,610,20 FILL ROUNDED:SET MODE 2 FONT 3 POINTS 20
  76. MOVE 200;180:PRINT COLOUR (6);"S E T  M O D E";:SET POINTS 18 COLOUR 7
  77. MOVE 30;160:PRINT "MODE 1 - Blocks surrounding space move in direction of key";:MOVE 132;150:PRINT " pressed.";
  78. MOVE 30;135:PRINT "MODE 2 - Space moves in direction of key pressed.";
  79. 110 MOVE 210;120:INPUT "Enter mode (1/2)  ";mo
  80. IF mo<>1 AND mo<>2 THEN SET MODE 1:BOX 0;115,640,15 COLOUR 5 FILL ONLY WITH 12:SET MODE 2:GOTO 110
  81. IF mo=1 THEN k1=50:k2=52:k3=54:k4=56 ELSE k1=56:k2=54:k3=52:k4=50
  82. BOX 2;90,610,20 FILL ROUNDED:SET POINTS 20
  83. MOVE 195;95:PRINT COLOUR (6);"S E T  S P E E D";:SET POINTS 18 COLOUR 7
  84. 120 MOVE 30;65:INPUT "Enter speed level 1 - 6 (1 Fast / 6 Slow)  ";slev
  85. IF slev<1 OR slev>6 THEN SET MODE 1:BOX 0;60,640,15 COLOUR 5 FILL ONLY WITH 12:SET MODE 2:GOTO 120
  86. SET FONT 1 MODE 1
  87.  
  88. LABEL setup:BOX 0;0,640,200 COLOUR 5 FILL ONLY WITH 12:FOR l=1 TO 5
  89. FOR x=1 TO 6:d(x,0,l)=0:d(x,6,l)=0:FOR y=1 TO 5:c=RND(3):d(x,y,l)=c:NEXT:NEXT
  90. 130 a=RND(6):b=RND(5):IF a=1 AND b=5 OR a=6 AND b=3 THEN 130
  91. d(a,b,l)=4:NEXT
  92.  
  93. REM position letter and set delivery floor
  94. FOR l=1 TO 6:pt(l)=0:NEXT:FOR l=1 TO 5:a=RND(6):b=(RND(2)-1)*6
  95. 140 c=RND(5):cc=0:FOR e=1 TO 5:IF pt(e)=c THEN cc=1
  96. NEXT:IF cc=1 THEN 140
  97. pt(l)=c:d(a,b,l)=1:NEXT
  98.  
  99. REM position letterboxes
  100. FOR l=1 TO 5
  101. 150 a=RND(6):b=(RND(2)-1)*6::IF d(a,b,l)=0 THEN d(a,b,l)=2 ELSE 150
  102. NEXT
  103.  
  104. REM position shredders
  105. FOR l=1 TO 5:FOR e=1 TO 5
  106. 160 a=RND(6):b=(RND(2)-1)*6:IF d(a,b,l)=0 THEN d(a,b,l)=3 ELSE 160
  107. NEXT:NEXT
  108.  
  109. REM position batteries
  110. FOR l=1 TO 5
  111. 170 a=RND(6):b=(RND(2)-1)*6:IF d(a,b,l)=0 THEN d(a,b,l)=4 ELSE 170
  112. NEXT
  113.  
  114. ELLIPSE 535;85,40,0.4 COLOUR 7 FILL:d=9:FOR c=120 TO 160 STEP 10
  115. SHAPE 490;c,530;c,580;c+10,540;c+10 COLOUR d FILL WITH 34
  116. d=d+1:IF d=11 THEN d=9
  117. NEXT:BOX 438;118,28,9 COLOUR 1:BOX 439;119,26,7 COLOUR 6 FILL
  118. BOX 438;106,28,13 COLOUR 1 FILL WITH 0:LINE 452;106,452;118 COLOUR 1
  119. SET MODE 2 POINTS 8:MOVE 440;120:PRINT "LIFT"
  120. SET POINTS 36 COLOUR 4:MOVE 510;37:PRINT "000":SET POINTS 14
  121. MOVE 515;105:PRINT "Power"
  122. MOVE 515;183:PRINT "Floor":MOVE 515;56:PRINT "Score":SET POINTS 8
  123. MOVE 470;175:PRINT "PRESENT":MOVE 560;175:PRINT "DELIVERY"
  124. f=60:g=169:ff=30/(slev+4):gg=0:h=0:i=5:lett=0:sc=0
  125. BOX 60;52,360,130 COLOUR 4 FILL:FOR c=90 TO 390 STEP 60
  126. ELLIPSE c;185,8,0.4 FILL:ELLIPSE c;185,8,0.4 COLOUR 3
  127. ELLIPSE c;49,8,0.4 FILL:ELLIPSE c;49,8,0.4 COLOUR 3:NEXT
  128. FOR c=65 TO 179 STEP 26:ELLIPSE 52;c,8,0.4 FILL
  129. ELLIPSE 52;c,8,0.4 COLOUR 3:ELLIPSE 428;c,8,0.4 FILL
  130. ELLIPSE 428;c,8,0.4 COLOUR 3:NEXT:lift=RND(5):t=0
  131.  
  132. LABEL begin:FOR a=52 TO 182 STEP 26:LINE 60;a,420;a COLOUR 3:NEXT
  133. FOR a=60 TO 420 STEP 60:LINE a;52,a;182 COLOUR 3:NEXT
  134. SET MODE 2 POINTS 20 COLOUR 14:FOR y=1 TO 5:FOR x=1 TO 6
  135. a=x*60+1:b=y*26+27:c=d(x,y,lift):ON c GOSUB shape1,shape2,shape3,shape4
  136. IF c=4 THEN aa=x:bb=y:SET MODE 2
  137. NEXT:MOVE 10;y*26+31:PRINT y:NEXT:l=lift*10+110
  138. LINE 468;l,486;l END 1 WIDTH 3 COLOUR 1:a=aa*60+1:b=bb*26+27:l=lift:lift=0
  139.  
  140. SET MODE 1:FOR z=1 TO 6:m=60*z+5:n=36:FOR ob=1 TO 7 STEP 6
  141. ON d(z,ob-1,l) GOSUB envelope,letterbox,shredder,battery:n=189:NEXT
  142. NEXT:IF h>0 THEN RETURN
  143. GOSUB vertical:SET MODE 3:ON dem GOTO mainloop
  144.  
  145. LABEL demo:FOR dem=1 TO lo:PLOT f;g:PLOT f;g:f=f+ff:g=g+gg
  146. ON RND(8) GOSUB dn,le,ri,up:IF INKEY$<>"" THEN dem=lo:t=360
  147. NEXT:r=ROUND(f/60,2):IF r=h OR r=h+1 THEN GOSUB vertical ELSE GOSUB horizontal
  148. SET MODE 3:IF t<360 THEN GOTO demo
  149. sc=0:GOTO theend
  150.  
  151. LABEL mainloop:FOR ml=1 TO lo:PLOT f;g:PLOT f;g:f=f+ff:g=g+gg:k=INKEY:IF k=k1 THEN GOSUB dn
  152. IF k=k2 THEN GOSUB le
  153. IF k=k3 THEN GOSUB ri
  154. IF k=k4 THEN GOSUB up
  155. NEXT:r=ROUND(f/60,2):IF r=h OR r=h+1 THEN GOSUB vertical ELSE GOSUB horizontal
  156. SET MODE 3:IF t<360 THEN GOTO mainloop
  157. GOTO theend
  158.  
  159. LABEL dn:IF bb=5 THEN RETURN
  160. SET MODE 1:bb=bb+1:c=d(aa,bb,l):ON c GOSUB shape1,shape2,shape3:IF i=bb AND h=aa THEN i=i-1:g=g-26
  161. b=b+26:d(aa,bb-1,l)=c:d(aa,bb,l)=4:GOTO shape4
  162.  
  163. LABEL le:IF aa=6 THEN RETURN
  164. SET MODE 1:aa=aa+1:c=d(aa,bb,l):ON c GOSUB shape1,shape2,shape3:IF h=aa AND i=bb THEN h=h-1:f=f-60
  165. a=a+60:d(aa-1,bb,l)=c:d(aa,bb,l)=4:GOTO shape4
  166.  
  167. LABEL ri:IF aa=1 THEN RETURN
  168. SET MODE 1:aa=aa-1:c=d(aa,bb,l):ON c GOSUB shape1,shape2,shape3:IF h=aa AND i=bb THEN h=h+1:f=f+60
  169. a=a-60:d(aa+1,bb,l)=c:d(aa,bb,l)=4:GOTO shape4
  170.  
  171. LABEL up:IF bb=1 THEN RETURN
  172. SET MODE 1:bb=bb-1:c=d(aa,bb,l):ON c GOSUB shape1,shape2,shape3:IF i=bb AND h=aa THEN i=i+1:g=g+26
  173. b=b-26:d(aa,bb+1,l)=c:d(aa,bb,l)=4:GOTO shape4
  174.  
  175. LABEL vertical:GOSUB timeleft:IF ff>1 THEN h=h+1 ELSE h=h-1
  176. k=d(h,i,l):IF h=0 OR h=7 THEN GOTO vedge
  177. IF k=4 THEN GOTO vloselife
  178. IF k=1 THEN gg=0:lo=(slev+4)*2:RETURN
  179. lo=slev+4:IF k=2 AND ff>1 OR k=3 AND ff<1 THEN gg=13/lo ELSE gg=-13/lo
  180. RETURN
  181.  
  182. LABEL horizontal:GOSUB timeleft:IF gg>1 THEN i=i+1 ELSE i=i-1
  183. k=d(h,i,l):IF i=0 OR i=6 THEN GOTO hedge
  184. IF k=4 THEN GOTO hloselife
  185. IF k=1 THEN ff=0:lo=(slev+4)*2:RETURN
  186. lo=slev+4:IF k=2 AND gg>1 OR k=3 AND gg<1 THEN ff=30/lo ELSE ff=-30/lo
  187. RETURN
  188.  
  189. LABEL vedge:IF h=0 THEN GOSUB setfloor
  190. IF h=7 AND i=3 AND lift>0 THEN GOSUB lift
  191. IF ff>1 THEN h=h-1 ELSE h=h+1
  192. gg=-gg:ff=-ff:RETURN
  193.  
  194. LABEL setfloor:SET POINTS 20 MODE 2:IF lift>0 THEN MOVE 10;lift*26+31:PRINT COLOUR (14);lift
  195. lift=i:MOVE 10;i*26+31:PRINT COLOUR (15);i:RETURN
  196.  
  197. LABEL hedge:IF i=0 OR i=6 THEN GOSUB tbedge
  198. IF gg>1 THEN i=i-1 ELSE i=i+1
  199. gg=-gg:ff=-ff:RETURN
  200.  
  201. LABEL tbedge:SET MODE 1:ON k GOTO getlet,postlet,destlet,newbat:RETURN
  202.  
  203. LABEL getlet:IF lett<>0 THEN RETURN
  204. lett=pt(l):d(h,i,l)=3:m=h*60+5:IF i=0 THEN n=36 ELSE n=189
  205. BOX 588;lett*10+118,15,5 COLOUR 1 FILL WITH 0:BOX m+5;n,42,10 COLOUR 5 FILL ONLY WITH 12:GOSUB shredder:fl=1:sc=sc+10:GOTO score
  206.  
  207. LABEL destlet:IF lett=0 THEN RETURN
  208. BOX 588;lett*10+118,15,5 COLOUR 5 FILL ONLY WITH 12:lett=0:sc=sc-50:GOTO score
  209.  
  210. LABEL postlet:IF lett=0 THEN RETURN
  211. IF lett=l THEN sc=sc+(360-t) ELSE sc=sc-50
  212. BOX 588;lett*10+118,15,5 COLOUR 5 FILL ONLY WITH 12:lett=0:GOTO score
  213.  
  214. LABEL newbat:IF lett<>0 THEN RETURN
  215. t=0:ELLIPSE 535;85,40,0.4 COLOUR 7 FILL:m=h*60+5:IF i=0 THEN n=36 ELSE n=189
  216. BOX m+5;n,40,10 COLOUR 5 FILL ONLY WITH 12:d(h,i,l)=0:RETURN
  217.  
  218. LABEL score:BOX 492;37,144,18 COLOUR 5 FILL ONLY WITH 12:SET MODE 2 POINTS 36:MOVE 492;37:PRINT COLOUR (4);sc:RETURN
  219.  
  220. LABEL timeleft:SET MODE 1:IF t<360 THEN t=t+3
  221. ELLIPSE 535;85,40,0.4 PART t-3,t FILL COLOUR 1:RETURN
  222.  
  223. LABEL vloselife:GOSUB vedge:FOR u=1 TO 8:GOSUB timeleft:NEXT:RETURN
  224.  
  225. LABEL hloselife:GOSUB hedge:FOR u=1 TO 8:GOSUB timeleft:NEXT:RETURN
  226.  
  227. LABEL lift:FOR u=1 TO 135 STEP 5:BOX 60;52,360,u FILL ONLY WITH 9:NEXT
  228. d(6,3,lift)=d(6,3,l):BOX 60;34,360,12 COLOUR 5 FILL ONLY WITH 12
  229. BOX 60;189,360,12 COLOUR 5 FILL ONLY WITH 12
  230. BOX 466;l*10+105,21,10 COLOUR 5 FILL ONLY WITH 12
  231. IF fl=0 THEN GOSUB begin:RETURN
  232. 180 y=RND(6):z=RND(2)-1:IF z=1 THEN z=6
  233. IF d(y,z,l)=2 OR d(y,z,l)=4 THEN 180
  234. d(y,z,l)=1:pt(l)=RND(5):fl=0:GOSUB begin:RETURN
  235.  
  236. LABEL shredder:BOX m;n,51,10 COLOUR 10 FILL ROUNDED:SHAPE m+10;n+2,m+15;n+4,m+20;n+2,m+25;n+4,m+30;n+2,m+35;n+4,m+40;n+2,m+40;n+7,m+35;n+5,m+30;n+7,m+25;n+5,m+20;n+7,m+15;n+5,m+10;n+7 COLOUR 6 FILL:RETURN
  237.  
  238. LABEL envelope:BOX m+5;n,40,10 COLOUR 1 FILL WITH 0
  239. LINE m+5;n+9,m+25;n+5,m+45;n+9 COLOUR 1:SET MODE 2 POINTS 8 COLOUR 1
  240. MOVE m+30;n+2:PRINT pt(l):MOVE m+1;n+2:PRINT pt(l):SET MODE 1:RETURN
  241.  
  242. LABEL letterbox:BOX m;n,51,10 FILL:BOX m+6;n+2,39,6 FILL WITH 0 ROUNDED:RETURN
  243.  
  244. LABEL battery:BOX m+5;n,19,10 FILL:BOX m+24;n,20,10 COLOUR 1 FILL
  245. SET POINTS 10 MODE 2 COLOUR 0:MOVE m+11;n+2:PRINT "+";:MOVE m+30;n+2:PRINT "-";:SET MODE 1:RETURN
  246.  
  247. LABEL theend:a=51:b=411:c=167:d=57:SET POINTS 36 MODE 3
  248. FOR y=1 TO 20:FOR z=1 TO 2:GOSUB prend:NEXT:a=a+12:b=b-12:c=c-4:d=d+4:NEXT
  249. GOSUB prend:GOTO hiscore
  250.  
  251. LABEL prend:MOVE a;c:PRINT "D":MOVE 231;c:PRINT "N":MOVE b;c:PRINT "E"
  252. MOVE a;d:PRINT "E":MOVE 231;d:PRINT "H":MOVE b;d:PRINT "T":RETURN
  253.  
  254. LABEL hiscore:FOR a=1 TO 260:a$=INKEY$:NEXT:IF sc<hi(10) THEN GOTO hitable
  255. SET POINTS 36 MODE 2 FONT 3 COLOUR 6:BOX 0;0,640,200 COLOUR 2 FILL
  256. BOX 30;46,555,131 COLOUR 12 FILL ROUNDED
  257. MOVE 140;181:PRINT "R O B O P O S T";
  258. MOVE 165;150:SET POINTS 18:PRINT "Your Score Is In The Top Ten";
  259. MOVE 195;120:PRINT "Please Enter Your Name";
  260. SET FONT 1 MODE 4 POINTS 20:MOVE 238;80:PRINT "        ";
  261. SET MODE 2 COLOUR 12:MOVE 222;80:INPUT n$:n$=UPPER$(n$):n$=LEFT$(n$,8)
  262. a=10:WHILE sc>hi(a):hi(a)=hi(a-1):hi$(a)=hi$(a-1):a=a-1:WEND
  263. hi(a+1)=sc:hi$(a+1)=n$
  264.  
  265. LABEL hitable:SET MODE 2 FONT 3 POINTS 36 COLOUR 6:BOX 0;0,640,200 FILL
  266. BOX 30;46,555,131 COLOUR 12 FILL ROUNDED
  267. MOVE 72;181:PRINT "~~ HI SCORE TABLE ~~"
  268. SET POINTS 18:b=12.8:FOR a=1 TO 10:MOVE 110;b*13:PRINT hi$(a);
  269. MOVE 260;b*13:PRINT ". . . . . . . . . . . . . . . . .";
  270. MOVE 450;b*13:PRINT hi(a);:b=b-1:NEXT:SET POINTS 10
  271. MOVE 180;36:PRINT "P R E S S  A N Y  K E Y  T O  C O N T I N U E"
  272. FOR a=1 TO 260:a$=INKEY$:NEXT
  273. WHILE INKEY$="":WEND:GOTO titlescreen
  274.