'$INCLUDE:'FrameLibrary.BI'
CONST FileName$
= "tt.txt"
SearchTerms(0) = "TRICK": SearchTerms(1) = "TREAT"
SCREEN _NEWIMAGE(1280, 720, 32) '720p HD just cause I like it as a standard
LeftFrame
= NewTextArea
(0, 0, 400, _HEIGHT - 1, False
)ColorTextArea LeftFrame
, _RGB32(255, 255, 255), _RGB32(0, 0, 128)DrawTextArea LeftFrame
ColorTextArea RightFrame
, _RGB32(255, 255, 255), _RGB32(0, 0, 0)DrawTextArea RightFrame
LoadWordGrid
MakeDirectional
ShowGrid
FindWords
SetPrintStyleX RightFrame, CenterJustify
SetPrintUpdate RightFrame, NewLine
SetTextForeground RightFrame
, _RGB32(255, 255, 0) PrintOut RightFrame, "SEARCHING FOR " + SearchTerms(j)
SetTextForeground RightFrame
, _RGB32(255, 255, 255) PrintOut RightFrame, ""
PrintOut RightFrame, "Finding Left to Right Matches"
SetPrintStyleX RightFrame, NoJustify
SetPrintUpdate RightFrame, NoNewLine
foundone = 0
foundone
= INSTR(foundone
+ 1, YLines
(1, i
), SearchTerms
(j
)) PrintOut RightFrame
, "(Line" + STR$(i
) + ", Position" + STR$(foundone
) + "), " tc = tc + 1
SetPrintStyleX RightFrame, CenterJustify
SetPrintUpdate RightFrame, NewLine
PrintOut RightFrame, ""
PrintOut RightFrame, ""
PrintOut RightFrame, "Finding Right to Left Matches"
SetPrintUpdate RightFrame, NoNewLine
SetPrintStyleX RightFrame, NoJustify
foundone = 0
foundone
= INSTR(foundone
+ 1, YLines
(2, i
), SearchTerms
(j
)) PrintOut RightFrame
, "(Line" + STR$(i
) + ", Position" + STR$(X
- foundone
+ 1) + "), " tc = tc + 1
SetPrintStyleX RightFrame, CenterJustify
SetPrintUpdate RightFrame, NewLine
PrintOut RightFrame, ""
PrintOut RightFrame, ""
PrintOut RightFrame, "Finding Up to Down Matches"
SetPrintUpdate RightFrame, NoNewLine
SetPrintStyleX RightFrame, NoJustify
foundone = 0
foundone
= INSTR(foundone
+ 1, XLines
(1, i
), SearchTerms
(j
)) PrintOut RightFrame
, "(Line" + STR$(foundone
) + ", Position" + STR$(i
) + "), " tc = tc + 1
SetPrintStyleX RightFrame, CenterJustify
SetPrintUpdate RightFrame, NewLine
PrintOut RightFrame, ""
PrintOut RightFrame, ""
PrintOut RightFrame, "Finding Down to Up Matches"
SetPrintUpdate RightFrame, NoNewLine
SetPrintStyleX RightFrame, NoJustify
foundone = 0
foundone
= INSTR(foundone
+ 1, XLines
(2, i
), SearchTerms
(j
)) PrintOut RightFrame
, "(Line" + STR$(foundone
) + ", Position" + STR$(i
) + "), " tc = tc + 1
SetPrintUpdate RightFrame, NewLine
PrintOut RightFrame, ""
PrintOut RightFrame, ""
PrintOut RightFrame
, STR$(tc
) + " total matches found." PrintOut RightFrame, ""
PrintOut RightFrame, ""
tc = 0
'Print the words in the grid
SetTextColor LeftFrame
, _RGB32(255, 255, 0), 0 PrintOut LeftFrame, ""
PrintOut LeftFrame, " WORD GRID"
PrintOut LeftFrame, ""
SetTextColor LeftFrame
, _RGB32(255, 255, 255), 0 PrintOut LeftFrame, " " + YLines(1, i)
Y = Y + 1
WordGrid
(j
, i
) = MID$(junk$
, j
) 'Fill in the grid with the letters
YLines(1, i) = YLines(1, i) + WordGrid(j, i) 'Left to Right Lines
YLines(2, i) = YLines(2, i) + WordGrid(j, i) 'Right to Left Lines
XLines(1, i) = XLines(1, i) + WordGrid(j, i) 'Up to Down Lines
XLines(2, i) = XLines(1, i) + WordGrid(j, i) 'Right to Left Lines
'$INCLUDE:'FrameLibrary.BM'