_TITLE "Guess Animal - QB64 Conversion of Morristown Version" 'watching LOC, see code notes at bottom L$
= CHR$(10) ' L is for line or next linePRINT L$
+ SPC(35) + "Guess Animal" + L$
+ L$
+ SPC(11) + "Originally from: CREATIVE COMPUTING MORRISTOWN, NEW JERSEY" + L$
+ L$
+ L$
PRINT " Think of an animal and the computer will try and guess it." + L$
A$
= LCASE$(npt$
(L$
+ " Are you thinking of an animal (y/n/list)")) PRINT L$
+ " Animals I already know are:" ' listing computers aimals K = 1
Q$ = A$(K)
DO 'parse question and use as prompt to get c$ Y
= INSTR(X
+ 1, Q$
, "\") K
= VAL(MID$(Q$
, X
+ 2, Y
- X
- 2)) V$
= LCASE$(npt$
(" The animal you were thinking of is a ")) X$
= npt$
(" Please type a question that would distinguish a " + V$
+ " from a " + RIGHT$(A$
(K
), LEN(A$
(K
)) - 2)) A$
= UCASE$(LEFT$(npt$
(" For a " + V$
+ " the answer would be "), 1)) A$(Z1) = A$(K)
A$(Z1 + 1) = "\A" + V$
DATA "4","\QDoes it live in water\Y2\N3\","\Afish","\Abird" FUNCTION npt$
(prompt$
) ' nice way to get more variable data into the prompt!
'===================================== Code Notes down here to watch LOC of this app =======================================
' 2020-11-10 b+ Makeover = 2nd go at Midnight Owl's great start on conversion
' note: first mod of Midnight's converstion added UCASE$ to all INPUTs solving a little user friendly problem.
' 2020-11-10 A step further was to revise PRINT prompt : INPUT A$ : UCASE$(A$) into a single function.
' Then one time call sub routines I put back into main code includeing the MAIN SUB!
' That includes: the LIST animals SUB for LIST option (which I made known in prompt).
' The SHOW QUESTION SUB and the KEEPDATA SUB.
' I also removed the ON error and used more modern check _FILEEXISTS
' savings: admittedly some of this makes understanding of code less clear
' for X, Y use INSTR to skip FOR... NEXT loops
' From this:
' T$ = "\" + C$
' FOR X = 3 TO LEN(Q$) - 1
' IF MID$(Q$, X, 2) = T$ THEN EXIT FOR
' NEXT X
' to this
' X = INSTR(3, LEFT$(Q$, LEN(Q$) - 1), "\" + C$)
' and from this
' FOR Y = X + 1 TO LEN(Q$)
' IF MID$(Q$, Y, 1) = "\" THEN EXIT FOR
' NEXT Y
' to this!
' Y = INSTR(X + 1, Q$, "\")
' I decided to get rid of all the CAPITALIZATION and make normal looking sentences. So I modified the INPUT Function
' renaming it npt$ (input$ without vowels). Now if you want all caps use: UCASE$(npt$(prompt$)), same for lower
' case. Since humans swim I changed the first question: Does it live in water? Now how would you answer that for beaver?
' I hope not yes :) Nor do beavers or rabbits hibernate, I am learning myself!
' 2020-11-10 post 64 LOC down from original 73, not bad since it is complete makeover.