'BF translation.bas for QB64 fork (B+=MGA) 2017-07-23
' BF in QB.bas for SmallBASIC 0.12.9 (B+=MGA) 2017-07-22
' I just translated some QB code from Rosetta to SmallBASIC
' and tested a couple of programs Hello World, Goodbye World
' count down also found at Rosetta Code
'======================================================================
' QB64 has excellent Help wiki, thanks to all who put that together!
'======================================================================
_TITLE "Brainf***, Rosetta Code - Quick Basic translation to SB then to QB64 (fork)" 'for directory stuff
memsize% = 20000
instChars$ = "+-<>.,[]" 'valid characters
loadDirList "bf*.txt"
ptr% = 0 'memory pointer
source$ = ""
PRINT "Sorry, no bf*.txt files found." PRINT:
INPUT "Enter line number of BF Filename you desire "; ln%
filename$ = dirList$(ln%)
source$ = source$ + FLINE$
PRINT "No source code to BF."
'let's clean the code up, check bracket balance
bktCnt% = 0
code$ = ""
char$
= MID$(source$
, i%
, 1) 'check to see if this is a valid instruction character
code$ = code$ + char$
'count brackets
IF char$
= "[" THEN bktCnt%
= bktCnt%
+ 1 IF char$
= "]" THEN bktCnt%
= bktCnt%
- 1
IF bktCnt%
THEN 'mismatched brackets 'clear last if any
inLine$ = "" 'input buffer
FOR i%
= 1 TO LEN(code$
) 'loop through the code instruction$
= MID$(code$
, i%
, 1) 'get the instruction we're on memory%(ptr%) = memory%(ptr%) + 1
memory%(ptr%) = memory%(ptr%) - 1
inChar$
= LEFT$(inLine$
, 1) 'take the first char off the buffer inLine$
= MID$(inLine$
, 2) 'delete it from the buffer memory%
(ptr%
) = ASC(inChar$
) 'use it ptr% = ptr% + 1
PRINT "Memory pointer out of range" ptr% = ptr% - 1
PRINT "Memory pointer out of range" bktCnt% = 1 'count the bracket we're on
i% = i% + 1 'move the code pointer to the next char
'count nested loops till we find the matching one
IF MID$(code$
, i%
, 1) = "]" THEN bktCnt%
= bktCnt%
- 1 IF MID$(code$
, i%
, 1) = "[" THEN bktCnt%
= bktCnt%
+ 1 i% = i% + 1 'search forward
bktCnt% = -1 'count the bracket we're on
i% = i% - 1 'move the code pointer back a char
'count nested loops till we fine the matching one
IF MID$(code$
, i%
, 1) = "]" THEN bktCnt%
= bktCnt%
- 1 IF MID$(code$
, i%
, 1) = "[" THEN bktCnt%
= bktCnt%
+ 1 i% = i% - 1 'search backwards
' modified function from Help files
CONST TmpFile$
= "DIR$INF0.INF" IF NOT Ready%
THEN REDIM dirList$
(ListMAX%
): Ready%
= -1 'DIM array first use IF spec$
> "" THEN 'get file names when a spec is given Index%
= 0: dirList$
(Index%
) = "": ff%
= FREEFILE Index% = Index% + 1
DIRCount% = Index% 'SHARED variable can return the file count
ELSE IF Index%
> 0 THEN Index%
= Index%
- 1 'no spec sends next file name