| 285 |      1 | // Core Part about an Interpreter for 
 | 
|  |      2 | // the Brainf*** language
 | 
|  |      3 | //==============================================
 | 
|  |      4 | 
 | 
|  |      5 | 
 | 
|  |      6 | object CW10a {
 | 
| 230 |      7 | 
 | 
|  |      8 | 
 | 
|  |      9 | // representation of Bf memory 
 | 
|  |     10 | 
 | 
|  |     11 | type Mem = Map[Int, Int]
 | 
|  |     12 | 
 | 
|  |     13 | 
 | 
|  |     14 | // (1) Write a function that takes a file name as argument and
 | 
| 231 |     15 | // and requests the corresponding file from disk. It Returns the
 | 
| 230 |     16 | // content of the file as a String. If the file does not exists,
 | 
| 231 |     17 | // the function should Return the empty string.
 | 
| 230 |     18 | 
 | 
|  |     19 | import io.Source
 | 
|  |     20 | import scala.util._
 | 
|  |     21 | 
 | 
|  |     22 | //def load_bff(name: String) : String = ...
 | 
|  |     23 | 
 | 
|  |     24 | 
 | 
|  |     25 | 
 | 
|  |     26 | // (2) Complete the functions for safely reading  
 | 
|  |     27 | // and writing brainf*** memory. Safely read should
 | 
|  |     28 | // Return the value stored in the Map for a given memory
 | 
|  |     29 | // pointer, provided it exists; otherwise it Returns 0. The
 | 
|  |     30 | // writing function generates a new Map with the
 | 
|  |     31 | // same data, except at the given memory pointer the
 | 
|  |     32 | // value v is stored.
 | 
|  |     33 | 
 | 
|  |     34 | 
 | 
|  |     35 | //def sread(mem: Mem, mp: Int) : Int = ...
 | 
|  |     36 | 
 | 
|  |     37 | //def write(mem: Mem, mp: Int, v: Int) : Mem = ...
 | 
|  |     38 | 
 | 
|  |     39 | 
 | 
|  |     40 | 
 | 
|  |     41 | // (3) Implement the two jumping instructions in the 
 | 
|  |     42 | // brainf*** language. In jumpRight, given a program and 
 | 
|  |     43 | // a program counter move the program counter to the right 
 | 
|  |     44 | // until after the *matching* ]-command. Similarly, 
 | 
|  |     45 | // jumpLeft implements the move to the left to just after
 | 
|  |     46 | // the *matching* [-command.
 | 
|  |     47 | 
 | 
|  |     48 | //def jumpRight(prog: String, pc: Int, level: Int) : Int = ...
 | 
|  |     49 | 
 | 
|  |     50 | //def jumpLeft(prog: String, pc: Int, level: Int) : Int = ...
 | 
|  |     51 | 
 | 
|  |     52 | 
 | 
|  |     53 | // testcases
 | 
|  |     54 | //jumpRight("""--[..+>--],>,++""", 3, 0)         // => 10
 | 
|  |     55 | //jumpLeft("""--[..+>--],>,++""", 8, 0)          // => 3
 | 
|  |     56 | //jumpRight("""--[..[+>]--],>,++""", 3, 0)       // => 12
 | 
|  |     57 | //jumpRight("""--[..[[-]+>[.]]--],>,++""", 3, 0) // => 18
 | 
|  |     58 | //jumpRight("""--[..[[-]+>[.]]--,>,++""", 3, 0)  // => 22 (outside)
 | 
|  |     59 | //jumpLeft("""[******]***""", 7, 0)              // => -1 (outside)
 | 
|  |     60 | 
 | 
|  |     61 | 
 | 
|  |     62 | 
 | 
|  |     63 | // (4) Complete the compute function that interprets (runs) a brainf***
 | 
|  |     64 | // program: the arguments are a program (represented as a string), a program 
 | 
|  |     65 | // counter, a memory counter and a brainf*** memory. It Returns the
 | 
|  |     66 | // memory at the stage when the execution of the brainf*** program
 | 
|  |     67 | // finishes. The interpretation finishes once the program counter
 | 
|  |     68 | // pc is pointing to something outside the program string.
 | 
|  |     69 | // If the pc points to a character inside the program, the pc, 
 | 
|  |     70 | // memory pointer and memory need to be updated according to 
 | 
|  |     71 | // rules of the brainf*** language. Then, recursively, the compute 
 | 
|  |     72 | // function continues with the command at the new program
 | 
|  |     73 | // counter. 
 | 
|  |     74 | //
 | 
|  |     75 | // Implement the run function that calls compute with the program
 | 
|  |     76 | // counter and memory counter set to 0.
 | 
|  |     77 | 
 | 
|  |     78 | 
 | 
|  |     79 | //def compute(prog: String, pc: Int, mp: Int, mem: Mem) : Mem = ...
 | 
|  |     80 | 
 | 
|  |     81 | //def run(prog: String, m: Mem = Map()) = ...
 | 
|  |     82 | 
 | 
|  |     83 | 
 | 
|  |     84 | /*
 | 
|  |     85 | 
 | 
|  |     86 | // some sample bf-programs collected from the Internet
 | 
|  |     87 | //=====================================================
 | 
|  |     88 | 
 | 
|  |     89 | 
 | 
|  |     90 | // first some contrived (small) programs
 | 
|  |     91 | 
 | 
|  |     92 | // clears the 0-cell
 | 
|  |     93 | run("[-]", Map(0 -> 100))    // Map will be 0 -> 0
 | 
|  |     94 | 
 | 
|  |     95 | // copies content of the 0-cell to 1-cell
 | 
|  |     96 | run("[->+<]", Map(0 -> 10))  // Map will be 0 -> 0, 1 -> 10
 | 
|  |     97 | 
 | 
|  |     98 | 
 | 
|  |     99 | // copies content of the 0-cell to 2-cell and 4-cell
 | 
|  |    100 | run("[>>+>>+<<<<-]", Map(0 -> 42))
 | 
|  |    101 | 
 | 
|  |    102 | 
 | 
|  |    103 | // prints out numbers 0 to 9
 | 
|  |    104 | run("""+++++[->++++++++++<]>--<+++[->>++++++++++<<]>>++<<----------[+>.>.<+<]""")
 | 
|  |    105 | 
 | 
|  |    106 | 
 | 
|  |    107 | // some more "useful" programs
 | 
|  |    108 | 
 | 
|  |    109 | // hello world program 1
 | 
|  |    110 | run("""++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++
 | 
|  |    111 |        ..+++.>>.<-.<.+++.------.--------.>>+.>++.""")
 | 
|  |    112 | 
 | 
|  |    113 | // hello world program 2
 | 
|  |    114 | run("""++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>+
 | 
|  |    115 |       +.<<+++++++++++++++.>.+++.------.--------.>+.>.""")
 | 
|  |    116 | 
 | 
|  |    117 | 
 | 
|  |    118 | // draws the Sierpinski triangle
 | 
|  |    119 | run("""++++++++[>+>++++<<-]>++>>+<[-[>>+<<-]+>>]>+[-<<<[
 | 
|  |    120 |       ->[+[-]+>++>>>-<<]<[<]>>++++++[<<+++++>>-]+<<++.[-]<<
 | 
|  |    121 |       ]>.>+[>>]>+]""")
 | 
|  |    122 | 
 | 
|  |    123 | run(load_bff("sierpinski.bf"))
 | 
|  |    124 | 
 | 
|  |    125 | 
 | 
|  |    126 | //fibonacci numbers below 100
 | 
|  |    127 | run("""+++++++++++
 | 
|  |    128 |       >+>>>>++++++++++++++++++++++++++++++++++++++++++++
 | 
|  |    129 |       >++++++++++++++++++++++++++++++++<<<<<<[>[>>>>>>+>
 | 
|  |    130 |       +<<<<<<<-]>>>>>>>[<<<<<<<+>>>>>>>-]<[>++++++++++[-
 | 
|  |    131 |       <-[>>+>+<<<-]>>>[<<<+>>>-]+<[>[-]<[-]]>[<<[>>>+<<<
 | 
|  |    132 |       -]>>[-]]<<]>>>[>>+>+<<<-]>>>[<<<+>>>-]+<[>[-]<[-]]
 | 
|  |    133 |       >[<<+>>[-]]<<<<<<<]>>>>>[+++++++++++++++++++++++++
 | 
|  |    134 |       +++++++++++++++++++++++.[-]]++++++++++<[->-<]>++++
 | 
|  |    135 |       ++++++++++++++++++++++++++++++++++++++++++++.[-]<<
 | 
|  |    136 |       <<<<<<<<<<[>>>+>+<<<<-]>>>>[<<<<+>>>>-]<-[>>.>.<<<
 | 
|  |    137 |       [-]]<<[>>+>+<<<-]>>>[<<<+>>>-]<<[<+>-]>[<+>-]<<<-]""")
 | 
|  |    138 | 
 | 
|  |    139 | 
 | 
|  |    140 | //outputs the square numbers up to 10000
 | 
|  |    141 | run("""++++[>+++++<-]>[<+++++>-]+<+[
 | 
|  |    142 |     >[>+>+<<-]++>>[<<+>>-]>>>[-]++>[-]+
 | 
|  |    143 |     >>>+[[-]++++++>>>]<<<[[<++++++++<++>>-]+<.<[>----<-]<]
 | 
|  |    144 |     <<[>>>>>[>>>[-]+++++++++<[>-<-]+++++++++>[-[<->-]+[<<<]]<[>+<-]>]<<-]<<-]""")
 | 
|  |    145 | 
 | 
|  |    146 | //collatz numbers (needs a number to be typed in)
 | 
|  |    147 | run(""">,[[----------[
 | 
|  |    148 |       >>>[>>>>]+[[-]+<[->>>>++>>>>+[>>>>]++[->+<<<<<]]<<<]
 | 
|  |    149 |       ++++++[>------<-]>--[>>[->>>>]+>+[<<<<]>-],<]>]>>>++>+>>[
 | 
|  |    150 |       <<[>>>>[-]+++++++++<[>-<-]+++++++++>[-[<->-]+[<<<<]]<[>+<-]>]
 | 
|  |    151 |       >[>[>>>>]+[[-]<[+[->>>>]>+<]>[<+>[<<<<]]+<<<<]>>>[->>>>]+>+[<<<<]]
 | 
|  |    152 |       >[[>+>>[<<<<+>>>>-]>]<<<<[-]>[-<<<<]]>>>>>>>
 | 
|  |    153 |       ]>>+[[-]++++++>>>>]<<<<[[<++++++++>-]<.[-]<[-]<[-]<]<,]""")
 | 
|  |    154 | 
 | 
|  |    155 | 
 | 
|  |    156 | // infinite collatz (never stops)
 | 
|  |    157 | run(""">>+>+<[[->>[>>]>>>[>>]+[<<]<<<[<<]>[>[>>]>>+>[>>]<+<[<<]<<<[<
 | 
|  |    158 |       <]>-]>[>>]>>[<<<<[<<]>+>[>>]>>-]<<<<[<<]+>>]<<[+++++[>+++++++
 | 
|  |    159 |       +<-]>.<++++++[>--------<-]+<<]>>[>>]+[>>>>[<<+>+>-]<-[>+<-]+<
 | 
|  |    160 |       [<<->>-[<<+>>[-]]]>>>[<<<+<<+>>>>>-]<<<[>>>+<<<-]<<[[-]>+>>->
 | 
|  |    161 |       [<+<[<<+>>-]<[>+<-]<[>+<-]>>>>-]<[>+<-]+<[->[>>]<<[->[<+++>-[
 | 
|  |    162 |       <+++>-[<+++>-[<[-]++>>[-]+>+<<-[<+++>-[<+++>-[<[-]+>>>+<<-[<+
 | 
|  |    163 |       ++>-[<+++>-]]]]]]]]]<[>+<-]+<<]>>>+<[->[<+>-[<+>-[<+>-[<+>-[<
 | 
|  |    164 |       +>-[<+>-[<+>-[<+>-[<+>-[<[-]>>[-]+>+<<-[<+>-]]]]]]]]]]]<[>+<-
 | 
|  |    165 |       ]+>>]<<[<<]>]<[->>[->+>]<[-[<+>-[<->>+<-[<+>-[<->>+<-[<+>-[<-
 | 
|  |    166 |       >>+<-[<+>-[<->>+<-[<+>-[<->>+<-[<+>-[<->>+<-[<+>-[<->>+<-[<+>
 | 
|  |    167 |       -[<->>+<-[<+>-[<->>+<-[<+>-]]]]]]]]]]]]]]]]]]]>[<+>-]<+<[<+++
 | 
|  |    168 |       +++++++>-]<]>>[<+>->>]<<[>+>+<<-]>[<+>-]+>[<->[-]]<[-<<-]<<[<
 | 
|  |    169 |       <]]++++++[>+++++++<-]>++.------------.[-]>[>>]<<[+++++[>+++++
 | 
|  |    170 |       +++<-]>.<++++++[>--------<-]+<<]+<]>[<+>-]<]>>>[>>]<<[>[-]<-<
 | 
|  |    171 |       <]++++++++++.[-]<<<[<<]>>>+<[->[<+>-[<+>-[<+>-[<+>-[<+>-[<+>-
 | 
|  |    172 |       [<+>-[<+>-[<+>-[<[-]>>[-]+>+<<-]]]]]]]]]]<[>+<-]+>>]<<[<<]>>]""")
 | 
|  |    173 | 
 | 
|  |    174 | 
 | 
|  |    175 | 
 | 
|  |    176 | // a Mandelbrot set generator in brainf*** written by Erik Bosman
 | 
|  |    177 | // (http://esoteric.sange.fi/brainfuck/utils/mandelbrot/)
 | 
|  |    178 | 
 | 
|  |    179 | run(load_bff("mandelbrot.bf"))
 | 
|  |    180 | 
 | 
|  |    181 | 
 | 
|  |    182 | // a benchmark program (counts down from 'Z' to 'A')
 | 
|  |    183 | val b1 = """>++[<+++++++++++++>-]<[[>+>+<<-]>[<+>-]++++++++
 | 
|  |    184 |             [>++++++++<-]>.[-]<<>++++++++++[>++++++++++[>++
 | 
|  |    185 |             ++++++++[>++++++++++[>++++++++++[>++++++++++[>+
 | 
|  |    186 |             +++++++++[-]<-]<-]<-]<-]<-]<-]<-]++++++++++."""
 | 
|  |    187 | 
 | 
|  |    188 | 
 | 
|  |    189 | def time_needed[T](n: Int, code: => T) = {
 | 
|  |    190 |   val start = System.nanoTime()
 | 
|  |    191 |   for (i <- 0 until n) code
 | 
|  |    192 |   val end = System.nanoTime()
 | 
| 231 |    193 |   (end - start)/(n * 1.0e9)
 | 
| 230 |    194 | }
 | 
|  |    195 | 
 | 
|  |    196 | time_needed(1, run(b1))
 | 
|  |    197 | */
 | 
|  |    198 | 
 | 
| 285 |    199 | }
 |