basic101 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +2 -0
- data/.simplecov +1 -0
- data/.yardopts +7 -0
- data/Changelog.md +3 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +75 -0
- data/LICENSE.md +9 -0
- data/README.md +193 -0
- data/Rakefile +14 -0
- data/VERSION +1 -0
- data/bin/basic101 +10 -0
- data/lib/basic101/abs_function.rb +19 -0
- data/lib/basic101/argument_checker.rb +61 -0
- data/lib/basic101/arguments.rb +32 -0
- data/lib/basic101/array_reference.rb +52 -0
- data/lib/basic101/asc_function.rb +17 -0
- data/lib/basic101/basic_array.rb +69 -0
- data/lib/basic101/basic_comparisons.rb +20 -0
- data/lib/basic101/basic_float.rb +48 -0
- data/lib/basic101/basic_integer.rb +48 -0
- data/lib/basic101/basic_math.rb +22 -0
- data/lib/basic101/basic_numeric.rb +96 -0
- data/lib/basic101/basic_object.rb +35 -0
- data/lib/basic101/basic_string.rb +85 -0
- data/lib/basic101/binary_operation.rb +32 -0
- data/lib/basic101/binary_operations.rb +26 -0
- data/lib/basic101/built_in_functions.rb +31 -0
- data/lib/basic101/chr_function.rb +17 -0
- data/lib/basic101/cos_function.rb +17 -0
- data/lib/basic101/data_statement.rb +24 -0
- data/lib/basic101/define_function_statement.rb +23 -0
- data/lib/basic101/dim_statement.rb +25 -0
- data/lib/basic101/else_statement.rb +22 -0
- data/lib/basic101/end_statement.rb +13 -0
- data/lib/basic101/endif_statement.rb +19 -0
- data/lib/basic101/errors.rb +50 -0
- data/lib/basic101/exp_function.rb +17 -0
- data/lib/basic101/for_stack.rb +48 -0
- data/lib/basic101/for_statement.rb +57 -0
- data/lib/basic101/function.rb +11 -0
- data/lib/basic101/function_call.rb +32 -0
- data/lib/basic101/function_identifier.rb +8 -0
- data/lib/basic101/functions.rb +39 -0
- data/lib/basic101/gosub_statement.rb +23 -0
- data/lib/basic101/goto_statement.rb +23 -0
- data/lib/basic101/identifier.rb +23 -0
- data/lib/basic101/identity.rb +18 -0
- data/lib/basic101/if_statement.rb +31 -0
- data/lib/basic101/input.rb +44 -0
- data/lib/basic101/input_reader.rb +55 -0
- data/lib/basic101/input_statement.rb +46 -0
- data/lib/basic101/int_function.rb +17 -0
- data/lib/basic101/left_function.rb +19 -0
- data/lib/basic101/len_function.rb +18 -0
- data/lib/basic101/let_statement.rb +24 -0
- data/lib/basic101/line.rb +32 -0
- data/lib/basic101/log_function.rb +17 -0
- data/lib/basic101/main.rb +24 -0
- data/lib/basic101/mid_function.rb +20 -0
- data/lib/basic101/negate_operation.rb +21 -0
- data/lib/basic101/next_statement.rb +34 -0
- data/lib/basic101/not_operation.rb +23 -0
- data/lib/basic101/null_prompt_delimeter.rb +12 -0
- data/lib/basic101/null_transcript.rb +20 -0
- data/lib/basic101/numeric_identifier.rb +16 -0
- data/lib/basic101/on_goto_statement.rb +29 -0
- data/lib/basic101/output.rb +73 -0
- data/lib/basic101/parser.rb +457 -0
- data/lib/basic101/power_operation.rb +24 -0
- data/lib/basic101/print_comma.rb +20 -0
- data/lib/basic101/print_semicolon.rb +19 -0
- data/lib/basic101/print_statement.rb +33 -0
- data/lib/basic101/program.rb +100 -0
- data/lib/basic101/program_counter.rb +52 -0
- data/lib/basic101/prompt_delimeter.rb +13 -0
- data/lib/basic101/randomize_statement.rb +13 -0
- data/lib/basic101/read_statement.rb +25 -0
- data/lib/basic101/reference.rb +25 -0
- data/lib/basic101/remark_statement.rb +12 -0
- data/lib/basic101/restore_statement.rb +23 -0
- data/lib/basic101/return_statement.rb +16 -0
- data/lib/basic101/right_function.rb +19 -0
- data/lib/basic101/rnd_function.rb +24 -0
- data/lib/basic101/runtime.rb +132 -0
- data/lib/basic101/scalar_reference.rb +19 -0
- data/lib/basic101/sgn_function.rb +17 -0
- data/lib/basic101/sin_function.rb +17 -0
- data/lib/basic101/sqr_function.rb +17 -0
- data/lib/basic101/statement.rb +36 -0
- data/lib/basic101/stop_statement.rb +14 -0
- data/lib/basic101/str_function.rb +16 -0
- data/lib/basic101/string_identifier.rb +16 -0
- data/lib/basic101/tab.rb +18 -0
- data/lib/basic101/tab_function.rb +17 -0
- data/lib/basic101/tan_function.rb +17 -0
- data/lib/basic101/transcript.rb +37 -0
- data/lib/basic101/transform.rb +264 -0
- data/lib/basic101/user_defined_function.rb +54 -0
- data/lib/basic101/val_function.rb +16 -0
- data/lib/basic101.rb +93 -0
- data/rake_tasks/default.rake +1 -0
- data/rake_tasks/integration.rake +8 -0
- data/rake_tasks/jeweler.rake +28 -0
- data/rake_tasks/spec.rake +8 -0
- data/rake_tasks/test.rake +2 -0
- data/rake_tasks/yard.rake +3 -0
- data/test/integration/arguments.rb +25 -0
- data/test/integration/errors.rb +7 -0
- data/test/integration/integration_test.rb +28 -0
- data/test/integration/main.rb +49 -0
- data/test/integration/output_file.rb +40 -0
- data/test/integration/test.rb +135 -0
- data/test/integration/tests/basic_computer_games/23-match.bas +64 -0
- data/test/integration/tests/basic_computer_games/23-match.input +1 -0
- data/test/integration/tests/basic_computer_games/23-match.output +29 -0
- data/test/integration/tests/basic_computer_games/3dplot.bas +17 -0
- data/test/integration/tests/basic_computer_games/3dplot.input +0 -0
- data/test/integration/tests/basic_computer_games/3dplot.output +47 -0
- data/test/integration/tests/basic_computer_games/aceyducy.bas +100 -0
- data/test/integration/tests/basic_computer_games/aceyducy.input +8 -0
- data/test/integration/tests/basic_computer_games/aceyducy.output +78 -0
- data/test/integration/tests/basic_computer_games/amazing.bas +138 -0
- data/test/integration/tests/basic_computer_games/amazing.input +1 -0
- data/test/integration/tests/basic_computer_games/amazing.output +32 -0
- data/test/integration/tests/basic_computer_games/animal.bas +71 -0
- data/test/integration/tests/basic_computer_games/animal.input +17 -0
- data/test/integration/tests/basic_computer_games/animal.output +38 -0
- data/test/integration/tests/basic_computer_games/awari.bas +70 -0
- data/test/integration/tests/basic_computer_games/awari.input +11 -0
- data/test/integration/tests/basic_computer_games/awari.output +117 -0
- data/test/integration/tests/basic_computer_games/bagels.bas +81 -0
- data/test/integration/tests/basic_computer_games/bagels.input +12 -0
- data/test/integration/tests/basic_computer_games/bagels.output +42 -0
- data/test/integration/tests/basic_computer_games/banner.bas +94 -0
- data/test/integration/tests/basic_computer_games/banner.input +6 -0
- data/test/integration/tests/basic_computer_games/banner.output +135 -0
- data/test/integration/tests/basic_computer_games/basketbl.bas +196 -0
- data/test/integration/tests/basic_computer_games/basketbl.input +46 -0
- data/test/integration/tests/basic_computer_games/basketbl.output +509 -0
- data/test/integration/tests/basic_computer_games/batnum.bas +90 -0
- data/test/integration/tests/basic_computer_games/batnum.input +14 -0
- data/test/integration/tests/basic_computer_games/batnum.output +67 -0
- data/test/integration/tests/basic_computer_games/battle.bas +196 -0
- data/test/integration/tests/basic_computer_games/battle.input +21 -0
- data/test/integration/tests/basic_computer_games/battle.output +118 -0
- data/test/integration/tests/basic_computer_games/blackjck.bas +321 -0
- data/test/integration/tests/basic_computer_games/blackjck.input +26 -0
- data/test/integration/tests/basic_computer_games/blackjck.output +144 -0
- data/test/integration/tests/basic_computer_games/bombard.bas +93 -0
- data/test/integration/tests/basic_computer_games/bombard.input +20 -0
- data/test/integration/tests/basic_computer_games/bombard.output +175 -0
- data/test/integration/tests/basic_computer_games/bounce.bas +53 -0
- data/test/integration/tests/basic_computer_games/bounce.input +0 -0
- data/test/integration/tests/basic_computer_games/bounce.output +15 -0
- data/test/integration/tests/basic_computer_games/bowling.bas +101 -0
- data/test/integration/tests/basic_computer_games/bowling.input +23 -0
- data/test/integration/tests/basic_computer_games/bowling.output +229 -0
- data/test/integration/tests/basic_computer_games/boxing.bas +142 -0
- data/test/integration/tests/basic_computer_games/boxing.input +8 -0
- data/test/integration/tests/basic_computer_games/boxing.output +47 -0
- data/test/integration/tests/basic_computer_games/bug.bas +256 -0
- data/test/integration/tests/basic_computer_games/bug.input +17 -0
- data/test/integration/tests/basic_computer_games/bug.output +847 -0
- data/test/integration/tests/basic_computer_games/bullfght.bas +193 -0
- data/test/integration/tests/basic_computer_games/bullfght.input +4 -0
- data/test/integration/tests/basic_computer_games/bullfght.output +60 -0
- data/test/integration/tests/basic_computer_games/bullseye.bas +37 -0
- data/test/integration/tests/basic_computer_games/bullseye.input +10 -0
- data/test/integration/tests/basic_computer_games/bullseye.output +79 -0
- data/test/integration/tests/basic_computer_games/bunny.bas +40 -0
- data/test/integration/tests/basic_computer_games/bunny.input +0 -0
- data/test/integration/tests/basic_computer_games/bunny.output +67 -0
- data/test/integration/tests/basic_computer_games/buzzword.bas +25 -0
- data/test/integration/tests/basic_computer_games/buzzword.input +4 -0
- data/test/integration/tests/basic_computer_games/buzzword.output +25 -0
- data/test/integration/tests/basic_computer_games/calendar.bas +58 -0
- data/test/integration/tests/basic_computer_games/calendar.input +0 -0
- data/test/integration/tests/basic_computer_games/calendar.output +213 -0
- data/test/integration/tests/basic_computer_games/change.bas +51 -0
- data/test/integration/tests/basic_computer_games/change.input +4 -0
- data/test/integration/tests/basic_computer_games/change.output +28 -0
- data/test/integration/tests/basic_computer_games/checkers.bas +82 -0
- data/test/integration/tests/basic_computer_games/checkers.input +74 -0
- data/test/integration/tests/basic_computer_games/checkers.output +673 -0
- data/test/integration/tests/basic_computer_games/chemist.bas +27 -0
- data/test/integration/tests/basic_computer_games/chemist.input +11 -0
- data/test/integration/tests/basic_computer_games/chemist.output +54 -0
- data/test/integration/tests/basic_computer_games/chief.bas +51 -0
- data/test/integration/tests/basic_computer_games/chief.input +5 -0
- data/test/integration/tests/basic_computer_games/chief.output +19 -0
- data/test/integration/tests/basic_computer_games/chomp.bas +104 -0
- data/test/integration/tests/basic_computer_games/chomp.input +15 -0
- data/test/integration/tests/basic_computer_games/chomp.output +159 -0
- data/test/integration/tests/basic_computer_games/combat.bas +124 -0
- data/test/integration/tests/basic_computer_games/combat.input +7 -0
- data/test/integration/tests/basic_computer_games/combat.output +33 -0
- data/test/integration/tests/basic_computer_games/craps.bas +82 -0
- data/test/integration/tests/basic_computer_games/craps.input +9 -0
- data/test/integration/tests/basic_computer_games/craps.output +51 -0
- data/test/integration/tests/basic_computer_games/cube.bas +161 -0
- data/test/integration/tests/basic_computer_games/cube.input +25 -0
- data/test/integration/tests/basic_computer_games/cube.output +72 -0
- data/test/integration/tests/basic_computer_games/depthchg.bas +33 -0
- data/test/integration/tests/basic_computer_games/depthchg.input +16 -0
- data/test/integration/tests/basic_computer_games/depthchg.output +83 -0
- data/test/integration/tests/basic_computer_games/diamond.bas +27 -0
- data/test/integration/tests/basic_computer_games/diamond.input +1 -0
- data/test/integration/tests/basic_computer_games/diamond.output +65 -0
- data/test/integration/tests/basic_computer_games/dice.bas +31 -0
- data/test/integration/tests/basic_computer_games/dice.input +4 -0
- data/test/integration/tests/basic_computer_games/dice.output +46 -0
- data/test/integration/tests/basic_computer_games/digits.bas +78 -0
- data/test/integration/tests/basic_computer_games/digits.input +5 -0
- data/test/integration/tests/basic_computer_games/digits.output +70 -0
- data/test/integration/tests/basic_computer_games/evenwin1.bas +128 -0
- data/test/integration/tests/basic_computer_games/evenwin1.input +13 -0
- data/test/integration/tests/basic_computer_games/evenwin1.output +116 -0
- data/test/integration/tests/basic_computer_games/evenwin2.bas +70 -0
- data/test/integration/tests/basic_computer_games/evenwin2.input +14 -0
- data/test/integration/tests/basic_computer_games/evenwin2.output +56 -0
- data/test/integration/tests/basic_computer_games/flipflop.bas +79 -0
- data/test/integration/tests/basic_computer_games/flipflop.input +8 -0
- data/test/integration/tests/basic_computer_games/flipflop.output +45 -0
- data/test/integration/tests/basic_computer_games/footbal1.bas +298 -0
- data/test/integration/tests/basic_computer_games/footbal1.input +13 -0
- data/test/integration/tests/basic_computer_games/footbal1.output +315 -0
- data/test/integration/tests/basic_computer_games/footbal2.bas +181 -0
- data/test/integration/tests/basic_computer_games/footbal2.input +23 -0
- data/test/integration/tests/basic_computer_games/footbal2.output +318 -0
- data/test/integration/tests/basic_computer_games/furtradr.bas +170 -0
- data/test/integration/tests/basic_computer_games/furtradr.input +20 -0
- data/test/integration/tests/basic_computer_games/furtradr.output +133 -0
- data/test/integration/tests/basic_computer_games/golf.bas +244 -0
- data/test/integration/tests/basic_computer_games/golf.input +11 -0
- data/test/integration/tests/basic_computer_games/golf.output +69 -0
- data/test/integration/tests/basic_computer_games/gomoko.bas +54 -0
- data/test/integration/tests/basic_computer_games/gomoko.input +6 -0
- data/test/integration/tests/basic_computer_games/gomoko.output +66 -0
- data/test/integration/tests/basic_computer_games/guess.bas +40 -0
- data/test/integration/tests/basic_computer_games/guess.input +8 -0
- data/test/integration/tests/basic_computer_games/guess.output +37 -0
- data/test/integration/tests/basic_computer_games/gunner.bas +52 -0
- data/test/integration/tests/basic_computer_games/gunner.input +18 -0
- data/test/integration/tests/basic_computer_games/gunner.output +91 -0
- data/test/integration/tests/basic_computer_games/hamurabi.bas +119 -0
- data/test/integration/tests/basic_computer_games/hamurabi.input +7 -0
- data/test/integration/tests/basic_computer_games/hamurabi.output +51 -0
- data/test/integration/tests/basic_computer_games/hangman.bas +81 -0
- data/test/integration/tests/basic_computer_games/hangman.input +69 -0
- data/test/integration/tests/basic_computer_games/hangman.output +889 -0
- data/test/integration/tests/basic_computer_games/hello.bas +83 -0
- data/test/integration/tests/basic_computer_games/hello.input +7 -0
- data/test/integration/tests/basic_computer_games/hello.output +46 -0
- data/test/integration/tests/basic_computer_games/hexapawn.bas +174 -0
- data/test/integration/tests/basic_computer_games/hexapawn.input +38 -0
- data/test/integration/tests/basic_computer_games/hexapawn.output +521 -0
- data/test/integration/tests/basic_computer_games/hi-q.bas +135 -0
- data/test/integration/tests/basic_computer_games/hi-q.input +14 -0
- data/test/integration/tests/basic_computer_games/hi-q.output +115 -0
- data/test/integration/tests/basic_computer_games/hilo.bas +29 -0
- data/test/integration/tests/basic_computer_games/hilo.input +20 -0
- data/test/integration/tests/basic_computer_games/hilo.output +76 -0
- data/test/integration/tests/basic_computer_games/hockey.bas +210 -0
- data/test/integration/tests/basic_computer_games/hockey.input +59 -0
- data/test/integration/tests/basic_computer_games/hockey.output +243 -0
- data/test/integration/tests/basic_computer_games/horsrace.bas +130 -0
- data/test/integration/tests/basic_computer_games/horsrace.input +11 -0
- data/test/integration/tests/basic_computer_games/horsrace.output +517 -0
- data/test/integration/tests/basic_computer_games/hurkle.bas +51 -0
- data/test/integration/tests/basic_computer_games/hurkle.input +16 -0
- data/test/integration/tests/basic_computer_games/hurkle.output +81 -0
- data/test/integration/tests/basic_computer_games/kinema.bas +34 -0
- data/test/integration/tests/basic_computer_games/kinema.input +9 -0
- data/test/integration/tests/basic_computer_games/kinema.output +64 -0
- data/test/integration/tests/basic_computer_games/king.bas +268 -0
- data/test/integration/tests/basic_computer_games/king.input +7 -0
- data/test/integration/tests/basic_computer_games/king.output +57 -0
- data/test/integration/tests/basic_computer_games/lem.bas +246 -0
- data/test/integration/tests/basic_computer_games/lem.input +4 -0
- data/test/integration/tests/basic_computer_games/lem.output +68 -0
- data/test/integration/tests/basic_computer_games/letter.bas +26 -0
- data/test/integration/tests/basic_computer_games/letter.input +24 -0
- data/test/integration/tests/basic_computer_games/letter.output +123 -0
- data/test/integration/tests/basic_computer_games/life.bas +66 -0
- data/test/integration/tests/basic_computer_games/life.input +4 -0
- data/test/integration/tests/basic_computer_games/life.options +1 -0
- data/test/integration/tests/basic_computer_games/life.output +200 -0
- data/test/integration/tests/basic_computer_games/life2.bas +83 -0
- data/test/integration/tests/basic_computer_games/life2.input +17 -0
- data/test/integration/tests/basic_computer_games/life2.output +113 -0
- data/test/integration/tests/basic_computer_games/litquiz.bas +49 -0
- data/test/integration/tests/basic_computer_games/litquiz.input +4 -0
- data/test/integration/tests/basic_computer_games/litquiz.output +36 -0
- data/test/integration/tests/basic_computer_games/love.bas +34 -0
- data/test/integration/tests/basic_computer_games/love.input +1 -0
- data/test/integration/tests/basic_computer_games/love.output +67 -0
- data/test/integration/tests/basic_computer_games/lunar.bas +48 -0
- data/test/integration/tests/basic_computer_games/lunar.input +87 -0
- data/test/integration/tests/basic_computer_games/lunar.output +195 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.bas +232 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.input +18 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.output +67 -0
- data/test/integration/tests/basic_computer_games/mathdice.bas +60 -0
- data/test/integration/tests/basic_computer_games/mathdice.input +4 -0
- data/test/integration/tests/basic_computer_games/mathdice.output +86 -0
- data/test/integration/tests/basic_computer_games/mugwump.bas +56 -0
- data/test/integration/tests/basic_computer_games/mugwump.input +16 -0
- data/test/integration/tests/basic_computer_games/mugwump.output +139 -0
- data/test/integration/tests/basic_computer_games/name.bas +25 -0
- data/test/integration/tests/basic_computer_games/name.input +2 -0
- data/test/integration/tests/basic_computer_games/name.output +22 -0
- data/test/integration/tests/basic_computer_games/nicoma.bas +34 -0
- data/test/integration/tests/basic_computer_games/nicoma.input +8 -0
- data/test/integration/tests/basic_computer_games/nicoma.output +36 -0
- data/test/integration/tests/basic_computer_games/nim.bas +156 -0
- data/test/integration/tests/basic_computer_games/nim.input +8 -0
- data/test/integration/tests/basic_computer_games/nim.output +30 -0
- data/test/integration/tests/basic_computer_games/number.bas +37 -0
- data/test/integration/tests/basic_computer_games/number.input +19 -0
- data/test/integration/tests/basic_computer_games/number.output +73 -0
- data/test/integration/tests/basic_computer_games/onecheck.bas +86 -0
- data/test/integration/tests/basic_computer_games/onecheck.input +6 -0
- data/test/integration/tests/basic_computer_games/onecheck.output +77 -0
- data/test/integration/tests/basic_computer_games/orbit.bas +96 -0
- data/test/integration/tests/basic_computer_games/orbit.input +10 -0
- data/test/integration/tests/basic_computer_games/orbit.output +113 -0
- data/test/integration/tests/basic_computer_games/pizza.bas +68 -0
- data/test/integration/tests/basic_computer_games/pizza.input +10 -0
- data/test/integration/tests/basic_computer_games/pizza.output +93 -0
- data/test/integration/tests/basic_computer_games/poetry.bas +42 -0
- data/test/integration/tests/basic_computer_games/poetry.input +0 -0
- data/test/integration/tests/basic_computer_games/poetry.options +1 -0
- data/test/integration/tests/basic_computer_games/poetry.output +50 -0
- data/test/integration/tests/basic_computer_games/poker.bas +416 -0
- data/test/integration/tests/basic_computer_games/poker.input +34 -0
- data/test/integration/tests/basic_computer_games/poker.output +197 -0
- data/test/integration/tests/basic_computer_games/queen.bas +168 -0
- data/test/integration/tests/basic_computer_games/queen.input +10 -0
- data/test/integration/tests/basic_computer_games/queen.output +133 -0
- data/test/integration/tests/basic_computer_games/reverse.bas +62 -0
- data/test/integration/tests/basic_computer_games/reverse.input +12 -0
- data/test/integration/tests/basic_computer_games/reverse.output +79 -0
- data/test/integration/tests/basic_computer_games/rocket.bas +71 -0
- data/test/integration/tests/basic_computer_games/rocket.input +42 -0
- data/test/integration/tests/basic_computer_games/rocket.output +149 -0
- data/test/integration/tests/basic_computer_games/rocksp.bas +33 -0
- data/test/integration/tests/basic_computer_games/rocksp.input +9 -0
- data/test/integration/tests/basic_computer_games/rocksp.output +69 -0
- data/test/integration/tests/basic_computer_games/roulette.bas +239 -0
- data/test/integration/tests/basic_computer_games/roulette.input +9 -0
- data/test/integration/tests/basic_computer_games/roulette.output +98 -0
- data/test/integration/tests/basic_computer_games/rusrou.bas +26 -0
- data/test/integration/tests/basic_computer_games/rusrou.input +9 -0
- data/test/integration/tests/basic_computer_games/rusrou.output +50 -0
- data/test/integration/tests/basic_computer_games/salvo.bas +329 -0
- data/test/integration/tests/basic_computer_games/salvo.input +21 -0
- data/test/integration/tests/basic_computer_games/salvo.output +49 -0
- data/test/integration/tests/basic_computer_games/sinewave.bas +17 -0
- data/test/integration/tests/basic_computer_games/sinewave.input +0 -0
- data/test/integration/tests/basic_computer_games/sinewave.output +168 -0
- data/test/integration/tests/basic_computer_games/slalom.bas +165 -0
- data/test/integration/tests/basic_computer_games/slalom.input +20 -0
- data/test/integration/tests/basic_computer_games/slalom.output +122 -0
- data/test/integration/tests/basic_computer_games/slots.bas +134 -0
- data/test/integration/tests/basic_computer_games/slots.input +2 -0
- data/test/integration/tests/basic_computer_games/slots.output +20 -0
- data/test/integration/tests/basic_computer_games/splat.bas +128 -0
- data/test/integration/tests/basic_computer_games/splat.input +9 -0
- data/test/integration/tests/basic_computer_games/splat.output +61 -0
- data/test/integration/tests/basic_computer_games/stars.bas +54 -0
- data/test/integration/tests/basic_computer_games/stars.input +15 -0
- data/test/integration/tests/basic_computer_games/stars.output +70 -0
- data/test/integration/tests/basic_computer_games/stock.bas +232 -0
- data/test/integration/tests/basic_computer_games/stock.input +30 -0
- data/test/integration/tests/basic_computer_games/stock.output +156 -0
- data/test/integration/tests/basic_computer_games/superstartrek.bas +425 -0
- data/test/integration/tests/basic_computer_games/superstartrek.input +21 -0
- data/test/integration/tests/basic_computer_games/superstartrek.output +151 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.bas +127 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.input +1 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.output +134 -0
- data/test/integration/tests/basic_computer_games/synonym.bas +53 -0
- data/test/integration/tests/basic_computer_games/synonym.input +13 -0
- data/test/integration/tests/basic_computer_games/synonym.output +57 -0
- data/test/integration/tests/basic_computer_games/target.bas +51 -0
- data/test/integration/tests/basic_computer_games/target.input +2 -0
- data/test/integration/tests/basic_computer_games/target.output +39 -0
- data/test/integration/tests/basic_computer_games/tictac1.bas +69 -0
- data/test/integration/tests/basic_computer_games/tictac1.input +10 -0
- data/test/integration/tests/basic_computer_games/tictac1.output +49 -0
- data/test/integration/tests/basic_computer_games/tictac2.bas +114 -0
- data/test/integration/tests/basic_computer_games/tictac2.input +6 -0
- data/test/integration/tests/basic_computer_games/tictac2.output +104 -0
- data/test/integration/tests/basic_computer_games/towers.bas +125 -0
- data/test/integration/tests/basic_computer_games/towers.input +9 -0
- data/test/integration/tests/basic_computer_games/towers.output +70 -0
- data/test/integration/tests/basic_computer_games/train.bas +24 -0
- data/test/integration/tests/basic_computer_games/train.input +4 -0
- data/test/integration/tests/basic_computer_games/train.output +23 -0
- data/test/integration/tests/basic_computer_games/trap.bas +49 -0
- data/test/integration/tests/basic_computer_games/trap.input +7 -0
- data/test/integration/tests/basic_computer_games/trap.output +40 -0
- data/test/integration/tests/basic_computer_games/war.bas +68 -0
- data/test/integration/tests/basic_computer_games/war.input +11 -0
- data/test/integration/tests/basic_computer_games/war.output +54 -0
- data/test/integration/tests/basic_computer_games/weekday.bas +150 -0
- data/test/integration/tests/basic_computer_games/weekday.input +2 -0
- data/test/integration/tests/basic_computer_games/weekday.output +28 -0
- data/test/integration/tests/basic_computer_games/word.bas +65 -0
- data/test/integration/tests/basic_computer_games/word.input +6 -0
- data/test/integration/tests/basic_computer_games/word.output +0 -0
- data/test/integration/tests/fast/abs.bas +5 -0
- data/test/integration/tests/fast/abs.input +0 -0
- data/test/integration/tests/fast/abs.output +5 -0
- data/test/integration/tests/fast/add.bas +5 -0
- data/test/integration/tests/fast/add.input +0 -0
- data/test/integration/tests/fast/add.output +5 -0
- data/test/integration/tests/fast/and.bas +5 -0
- data/test/integration/tests/fast/and.input +0 -0
- data/test/integration/tests/fast/and.output +5 -0
- data/test/integration/tests/fast/array.bas +11 -0
- data/test/integration/tests/fast/array.input +0 -0
- data/test/integration/tests/fast/array.output +6 -0
- data/test/integration/tests/fast/asc.bas +1 -0
- data/test/integration/tests/fast/asc.input +0 -0
- data/test/integration/tests/fast/asc.output +1 -0
- data/test/integration/tests/fast/chr.bas +1 -0
- data/test/integration/tests/fast/chr.input +0 -0
- data/test/integration/tests/fast/chr.output +1 -0
- data/test/integration/tests/fast/cos.bas +1 -0
- data/test/integration/tests/fast/cos.input +0 -0
- data/test/integration/tests/fast/cos.output +1 -0
- data/test/integration/tests/fast/def_fn.bas +9 -0
- data/test/integration/tests/fast/def_fn.input +0 -0
- data/test/integration/tests/fast/def_fn.output +5 -0
- data/test/integration/tests/fast/divide.bas +5 -0
- data/test/integration/tests/fast/divide.input +0 -0
- data/test/integration/tests/fast/divide.output +5 -0
- data/test/integration/tests/fast/end.bas +3 -0
- data/test/integration/tests/fast/end.input +0 -0
- data/test/integration/tests/fast/end.output +1 -0
- data/test/integration/tests/fast/eq.bas +3 -0
- data/test/integration/tests/fast/eq.input +0 -0
- data/test/integration/tests/fast/eq.output +3 -0
- data/test/integration/tests/fast/exp.bas +2 -0
- data/test/integration/tests/fast/exp.input +0 -0
- data/test/integration/tests/fast/exp.output +2 -0
- data/test/integration/tests/fast/float.bas +3 -0
- data/test/integration/tests/fast/float.input +0 -0
- data/test/integration/tests/fast/float.output +2 -0
- data/test/integration/tests/fast/for_next.bas +61 -0
- data/test/integration/tests/fast/for_next.input +0 -0
- data/test/integration/tests/fast/for_next.output +46 -0
- data/test/integration/tests/fast/ge.bas +3 -0
- data/test/integration/tests/fast/ge.input +0 -0
- data/test/integration/tests/fast/ge.output +3 -0
- data/test/integration/tests/fast/gosub_return.bas +10 -0
- data/test/integration/tests/fast/gosub_return.input +0 -0
- data/test/integration/tests/fast/gosub_return.output +4 -0
- data/test/integration/tests/fast/goto.bas +3 -0
- data/test/integration/tests/fast/goto.input +0 -0
- data/test/integration/tests/fast/goto.output +1 -0
- data/test/integration/tests/fast/gt.bas +3 -0
- data/test/integration/tests/fast/gt.input +0 -0
- data/test/integration/tests/fast/gt.output +3 -0
- data/test/integration/tests/fast/if.bas +25 -0
- data/test/integration/tests/fast/if.input +0 -0
- data/test/integration/tests/fast/if.output +8 -0
- data/test/integration/tests/fast/input.bas +24 -0
- data/test/integration/tests/fast/input.input +10 -0
- data/test/integration/tests/fast/input.output +28 -0
- data/test/integration/tests/fast/int.bas +5 -0
- data/test/integration/tests/fast/int.input +0 -0
- data/test/integration/tests/fast/int.output +5 -0
- data/test/integration/tests/fast/integer_plus_string.bas +1 -0
- data/test/integration/tests/fast/integer_plus_string.input +0 -0
- data/test/integration/tests/fast/integer_plus_string.output +1 -0
- data/test/integration/tests/fast/invalid_argument.bas +1 -0
- data/test/integration/tests/fast/invalid_argument.input +0 -0
- data/test/integration/tests/fast/invalid_argument.output +1 -0
- data/test/integration/tests/fast/le.bas +3 -0
- data/test/integration/tests/fast/le.input +0 -0
- data/test/integration/tests/fast/le.output +3 -0
- data/test/integration/tests/fast/left.bas +1 -0
- data/test/integration/tests/fast/left.input +0 -0
- data/test/integration/tests/fast/left.output +1 -0
- data/test/integration/tests/fast/len.bas +2 -0
- data/test/integration/tests/fast/len.input +0 -0
- data/test/integration/tests/fast/len.output +2 -0
- data/test/integration/tests/fast/let.bas +6 -0
- data/test/integration/tests/fast/let.input +0 -0
- data/test/integration/tests/fast/let.output +4 -0
- data/test/integration/tests/fast/log.bas +1 -0
- data/test/integration/tests/fast/log.input +0 -0
- data/test/integration/tests/fast/log.output +1 -0
- data/test/integration/tests/fast/lt.bas +3 -0
- data/test/integration/tests/fast/lt.input +0 -0
- data/test/integration/tests/fast/lt.output +3 -0
- data/test/integration/tests/fast/math.output +0 -0
- data/test/integration/tests/fast/mid.bas +2 -0
- data/test/integration/tests/fast/mid.input +0 -0
- data/test/integration/tests/fast/mid.output +2 -0
- data/test/integration/tests/fast/multiply.bas +5 -0
- data/test/integration/tests/fast/multiply.input +0 -0
- data/test/integration/tests/fast/multiply.output +5 -0
- data/test/integration/tests/fast/ne.bas +3 -0
- data/test/integration/tests/fast/ne.input +0 -0
- data/test/integration/tests/fast/ne.output +3 -0
- data/test/integration/tests/fast/negate.bas +4 -0
- data/test/integration/tests/fast/negate.input +0 -0
- data/test/integration/tests/fast/negate.output +3 -0
- data/test/integration/tests/fast/not.bas +4 -0
- data/test/integration/tests/fast/not.input +0 -0
- data/test/integration/tests/fast/not.output +4 -0
- data/test/integration/tests/fast/on_goto.bas +6 -0
- data/test/integration/tests/fast/on_goto.input +0 -0
- data/test/integration/tests/fast/on_goto.output +2 -0
- data/test/integration/tests/fast/or.bas +5 -0
- data/test/integration/tests/fast/or.input +0 -0
- data/test/integration/tests/fast/or.output +5 -0
- data/test/integration/tests/fast/parentheses.bas +1 -0
- data/test/integration/tests/fast/parentheses.input +0 -0
- data/test/integration/tests/fast/parentheses.output +1 -0
- data/test/integration/tests/fast/power.bas +4 -0
- data/test/integration/tests/fast/power.input +0 -0
- data/test/integration/tests/fast/power.output +4 -0
- data/test/integration/tests/fast/print.bas +6 -0
- data/test/integration/tests/fast/print.input +0 -0
- data/test/integration/tests/fast/print.output +4 -0
- data/test/integration/tests/fast/read_data.bas +15 -0
- data/test/integration/tests/fast/read_data.input +0 -0
- data/test/integration/tests/fast/read_data.output +4 -0
- data/test/integration/tests/fast/rem.bas +1 -0
- data/test/integration/tests/fast/rem.input +0 -0
- data/test/integration/tests/fast/rem.output +0 -0
- data/test/integration/tests/fast/right.bas +1 -0
- data/test/integration/tests/fast/right.input +0 -0
- data/test/integration/tests/fast/right.output +1 -0
- data/test/integration/tests/fast/rnd.bas +5 -0
- data/test/integration/tests/fast/rnd.input +0 -0
- data/test/integration/tests/fast/rnd.output +5 -0
- data/test/integration/tests/fast/sgn.bas +5 -0
- data/test/integration/tests/fast/sgn.input +0 -0
- data/test/integration/tests/fast/sgn.output +5 -0
- data/test/integration/tests/fast/sin.bas +1 -0
- data/test/integration/tests/fast/sin.input +0 -0
- data/test/integration/tests/fast/sin.output +1 -0
- data/test/integration/tests/fast/sqr.bas +2 -0
- data/test/integration/tests/fast/sqr.input +0 -0
- data/test/integration/tests/fast/sqr.output +2 -0
- data/test/integration/tests/fast/stop.bas +3 -0
- data/test/integration/tests/fast/stop.input +0 -0
- data/test/integration/tests/fast/stop.output +2 -0
- data/test/integration/tests/fast/str.bas +3 -0
- data/test/integration/tests/fast/str.input +0 -0
- data/test/integration/tests/fast/str.output +3 -0
- data/test/integration/tests/fast/string_addition.bas +1 -0
- data/test/integration/tests/fast/string_addition.input +0 -0
- data/test/integration/tests/fast/string_addition.output +1 -0
- data/test/integration/tests/fast/string_comparisons.bas +7 -0
- data/test/integration/tests/fast/string_comparisons.input +0 -0
- data/test/integration/tests/fast/string_comparisons.output +4 -0
- data/test/integration/tests/fast/string_plus_integer.bas +1 -0
- data/test/integration/tests/fast/string_plus_integer.input +0 -0
- data/test/integration/tests/fast/string_plus_integer.output +1 -0
- data/test/integration/tests/fast/subtract.bas +5 -0
- data/test/integration/tests/fast/subtract.input +0 -0
- data/test/integration/tests/fast/subtract.output +5 -0
- data/test/integration/tests/fast/tab.bas +4 -0
- data/test/integration/tests/fast/tab.input +0 -0
- data/test/integration/tests/fast/tab.output +3 -0
- data/test/integration/tests/fast/tan.bas +1 -0
- data/test/integration/tests/fast/tan.input +0 -0
- data/test/integration/tests/fast/tan.output +1 -0
- data/test/integration/tests/fast/val.bas +3 -0
- data/test/integration/tests/fast/val.input +0 -0
- data/test/integration/tests/fast/val.output +3 -0
- data/test/spec/argument_checker_spec.rb +128 -0
- data/test/spec/basic_array_spec.rb +100 -0
- data/test/spec/basic_float_spec.rb +168 -0
- data/test/spec/basic_integer_spec.rb +270 -0
- data/test/spec/basic_numeric_spec.rb +16 -0
- data/test/spec/basic_object_spec.rb +22 -0
- data/test/spec/basic_string_spec.rb +259 -0
- data/test/spec/for_stack_spec.rb +70 -0
- data/test/spec/input_reader_spec.rb +143 -0
- data/test/spec/input_spec.rb +102 -0
- data/test/spec/line_spec.rb +18 -0
- data/test/spec/output_spec.rb +153 -0
- data/test/spec/parser_spec.rb +562 -0
- data/test/spec/program_spec.rb +45 -0
- data/test/spec/spec_helper.rb +15 -0
- data/test/spec/support/basic_numeric_helpers.rb +327 -0
- data/test/spec/support/basic_object_helpers.rb +22 -0
- data/test/spec/transcript_spec.rb +37 -0
- data/test/spec/transform_spec.rb +513 -0
- metadata +742 -0
@@ -0,0 +1,37 @@
|
|
1
|
+
module Basic101
|
2
|
+
|
3
|
+
class Transcript
|
4
|
+
|
5
|
+
def self.make(source_path)
|
6
|
+
base_path = source_path.chomp('.bas')
|
7
|
+
input_file = File.open(base_path + '.input', 'w')
|
8
|
+
output_file = File.open(base_path + '.output', 'w')
|
9
|
+
new(input_file, output_file)
|
10
|
+
end
|
11
|
+
|
12
|
+
def initialize(input_file, output_file)
|
13
|
+
@input_file = input_file
|
14
|
+
@output_file = output_file
|
15
|
+
end
|
16
|
+
|
17
|
+
def save_input(s)
|
18
|
+
@input_file.print s
|
19
|
+
end
|
20
|
+
|
21
|
+
def save_output(s)
|
22
|
+
@output_file.print s
|
23
|
+
end
|
24
|
+
|
25
|
+
def save_output_lines(*lines)
|
26
|
+
lines.flatten.each do |line|
|
27
|
+
save_output "#{line}\n"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def echo?
|
32
|
+
true
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,264 @@
|
|
1
|
+
require_relative 'remark_statement'
|
2
|
+
require_relative 'print_statement'
|
3
|
+
|
4
|
+
module Basic101
|
5
|
+
|
6
|
+
class Transform < Parslet::Transform
|
7
|
+
|
8
|
+
rule(:integer => simple(:i)) do
|
9
|
+
BasicInteger.new(i.to_i)
|
10
|
+
end
|
11
|
+
|
12
|
+
rule(:float => simple(:s)) do
|
13
|
+
BasicFloat.from_s(s)
|
14
|
+
end
|
15
|
+
|
16
|
+
rule(:string => simple(:s)) do
|
17
|
+
BasicString.new(s)
|
18
|
+
end
|
19
|
+
|
20
|
+
rule(:function_identifier => simple(:name)) do
|
21
|
+
FunctionIdentifier.new(name)
|
22
|
+
end
|
23
|
+
|
24
|
+
rule(:numeric_identifier => simple(:name)) do
|
25
|
+
NumericIdentifier.new(name)
|
26
|
+
end
|
27
|
+
|
28
|
+
rule(:string_identifier => simple(:name)) do
|
29
|
+
StringIdentifier.new(name)
|
30
|
+
end
|
31
|
+
|
32
|
+
rule(:function_identifier => simple(:identifier),
|
33
|
+
:argument_list => subtree(:arguments)) do
|
34
|
+
FunctionCall.new(identifier, Array(arguments))
|
35
|
+
end
|
36
|
+
|
37
|
+
rule(:subscript_base => simple(:identifier),
|
38
|
+
:argument_list => subtree(:args)) do
|
39
|
+
ArrayReference.new(identifier, Array(args))
|
40
|
+
end
|
41
|
+
|
42
|
+
rule(:scalar_reference => simple(:identifier)) do
|
43
|
+
ScalarReference.new(identifier)
|
44
|
+
end
|
45
|
+
|
46
|
+
rule(:negation => simple(:expression)) do
|
47
|
+
NegateOperation.new(expression)
|
48
|
+
end
|
49
|
+
|
50
|
+
rule(:multiply => simple(:_)) do
|
51
|
+
:*
|
52
|
+
end
|
53
|
+
|
54
|
+
rule(:divide => simple(:_)) do
|
55
|
+
:/
|
56
|
+
end
|
57
|
+
|
58
|
+
rule(:add => simple(:_)) do
|
59
|
+
:+
|
60
|
+
end
|
61
|
+
|
62
|
+
rule(:subtract => simple(:_)) do
|
63
|
+
:-
|
64
|
+
end
|
65
|
+
|
66
|
+
rule(:eq => simple(:_)) do
|
67
|
+
:eq
|
68
|
+
end
|
69
|
+
|
70
|
+
rule(:ne => simple(:_)) do
|
71
|
+
:ne
|
72
|
+
end
|
73
|
+
|
74
|
+
rule(:lt => simple(:_)) do
|
75
|
+
:lt
|
76
|
+
end
|
77
|
+
|
78
|
+
rule(:le => simple(:_)) do
|
79
|
+
:le
|
80
|
+
end
|
81
|
+
|
82
|
+
rule(:gt => simple(:_)) do
|
83
|
+
:gt
|
84
|
+
end
|
85
|
+
|
86
|
+
rule(:ge => simple(:_)) do
|
87
|
+
:ge
|
88
|
+
end
|
89
|
+
|
90
|
+
rule(:and => simple(:_)) do
|
91
|
+
:and
|
92
|
+
end
|
93
|
+
|
94
|
+
rule(:or => simple(:_)) do
|
95
|
+
:or
|
96
|
+
end
|
97
|
+
|
98
|
+
rule(:operator => simple(:operator),
|
99
|
+
:right => simple(:right)) do
|
100
|
+
BinaryOperation.new(operator, right)
|
101
|
+
end
|
102
|
+
|
103
|
+
rule(:left => simple(:left),
|
104
|
+
:operations => sequence(:operations)) do
|
105
|
+
BinaryOperations.new(left, operations)
|
106
|
+
end
|
107
|
+
|
108
|
+
rule(:left => simple(:left)) do
|
109
|
+
left
|
110
|
+
end
|
111
|
+
|
112
|
+
rule(:left => subtree(:left),
|
113
|
+
:power => simple(:_),
|
114
|
+
:right => subtree(:right)) do
|
115
|
+
PowerOperation.new(left, right)
|
116
|
+
end
|
117
|
+
|
118
|
+
rule(:not => simple(:expression)) do
|
119
|
+
NotOperation.new(expression)
|
120
|
+
end
|
121
|
+
|
122
|
+
rule(:remark => simple(:_)) do
|
123
|
+
RemarkStatement.new
|
124
|
+
end
|
125
|
+
|
126
|
+
rule(:print_separator => ';') do
|
127
|
+
PrintSemicolon.new
|
128
|
+
end
|
129
|
+
|
130
|
+
rule(:print_separator => ',') do
|
131
|
+
PrintComma.new
|
132
|
+
end
|
133
|
+
|
134
|
+
rule(:print => simple(:_),
|
135
|
+
:print_arguments => subtree(:args)) do
|
136
|
+
PrintStatement.new(Array(args))
|
137
|
+
end
|
138
|
+
|
139
|
+
rule(:lvalue => simple(:lvalue), :rvalue => simple(:rvalue)) do
|
140
|
+
LetStatement.new(lvalue, rvalue)
|
141
|
+
end
|
142
|
+
|
143
|
+
rule(:goto => simple(:_), :integer => simple(:line_number)) do
|
144
|
+
GotoStatement.new(line_number.to_i)
|
145
|
+
end
|
146
|
+
|
147
|
+
rule(:randomize => simple(:_)) do
|
148
|
+
RandomizeStatement.new
|
149
|
+
end
|
150
|
+
|
151
|
+
rule(:end => simple(:_)) do
|
152
|
+
EndStatement.new
|
153
|
+
end
|
154
|
+
|
155
|
+
rule(:prompt_delimeter => simple(:_)) do
|
156
|
+
PromptDelimeter.new
|
157
|
+
end
|
158
|
+
|
159
|
+
rule(:null_prompt_delimeter => simple(:_)) do
|
160
|
+
NullPromptDelimeter.new
|
161
|
+
end
|
162
|
+
|
163
|
+
rule(:input => simple(:_),
|
164
|
+
:references => subtree(:references)) do
|
165
|
+
InputStatement.new(nil, PromptDelimeter.new, Array(references))
|
166
|
+
end
|
167
|
+
|
168
|
+
rule(:input => simple(:_),
|
169
|
+
:prompt => simple(:prompt),
|
170
|
+
:prompt_delimeter => simple(:prompt_delimeter),
|
171
|
+
:references => subtree(:references)) do
|
172
|
+
InputStatement.new(prompt, prompt_delimeter, Array(references))
|
173
|
+
end
|
174
|
+
|
175
|
+
rule(:dim => simple(:_),
|
176
|
+
:references => subtree(:references)) do
|
177
|
+
DimStatement.new(Array(references))
|
178
|
+
end
|
179
|
+
|
180
|
+
rule(:reference => simple(:reference),
|
181
|
+
:from => simple(:from),
|
182
|
+
:to => simple(:to),
|
183
|
+
:step => simple(:step)) do
|
184
|
+
ForStatement.new(reference, from, to, step)
|
185
|
+
end
|
186
|
+
|
187
|
+
rule(:next => simple(:_),
|
188
|
+
:references => subtree(:references)) do
|
189
|
+
Array(references || [nil]).map do |reference|
|
190
|
+
NextStatement.new(reference)
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
rule(:on_goto => simple(:_),
|
195
|
+
:expression => simple(:expression),
|
196
|
+
:line_numbers => subtree(:line_numbers)) do
|
197
|
+
OnGotoStatement.new(expression, Array(line_numbers))
|
198
|
+
end
|
199
|
+
|
200
|
+
rule(:data_items => subtree(:data_items)) do
|
201
|
+
DataStatement.new(Array(data_items))
|
202
|
+
end
|
203
|
+
|
204
|
+
rule(:read => simple(:_),
|
205
|
+
:references => subtree(:references)) do
|
206
|
+
ReadStatement.new(Array(references))
|
207
|
+
end
|
208
|
+
|
209
|
+
rule(:if_line_number => simple(:line_number)) do
|
210
|
+
GotoStatement.new(line_number.to_i)
|
211
|
+
end
|
212
|
+
|
213
|
+
rule(:if => simple(:_),
|
214
|
+
:condition => simple(:condition),
|
215
|
+
:then_block => subtree(:then_block),
|
216
|
+
:else_block => subtree(:else_block)) do
|
217
|
+
[
|
218
|
+
IfStatement.new(condition),
|
219
|
+
then_block,
|
220
|
+
ElseStatement.new,
|
221
|
+
else_block,
|
222
|
+
EndifStatement.new,
|
223
|
+
].flatten.compact
|
224
|
+
end
|
225
|
+
|
226
|
+
rule(:integer => simple(:line_number),
|
227
|
+
:statements => subtree(:statements)) do
|
228
|
+
Line.new(line_number.to_i, Array(statements).flatten)
|
229
|
+
end
|
230
|
+
|
231
|
+
rule(:gosub => simple(:_),
|
232
|
+
:line_number => simple(:line_number)) do
|
233
|
+
GosubStatement.new(line_number.to_i)
|
234
|
+
end
|
235
|
+
|
236
|
+
rule(:stop => simple(:_)) do
|
237
|
+
StopStatement.new
|
238
|
+
end
|
239
|
+
|
240
|
+
rule(:return => simple(:_)) do
|
241
|
+
ReturnStatement.new
|
242
|
+
end
|
243
|
+
|
244
|
+
rule(:restore => simple(:_),
|
245
|
+
:line_number => simple(:line_number)) do
|
246
|
+
RestoreStatement.new(line_number)
|
247
|
+
end
|
248
|
+
|
249
|
+
rule(:def => simple(:x),
|
250
|
+
:identifier => simple(:identifier),
|
251
|
+
:parameters => subtree(:parameters),
|
252
|
+
:expression => simple(:expression)) do
|
253
|
+
DefineFunctionStatement.new(identifier,
|
254
|
+
Array(parameters),
|
255
|
+
expression)
|
256
|
+
end
|
257
|
+
|
258
|
+
rule(:program => subtree(:lines)) do
|
259
|
+
Program.new(Array(lines))
|
260
|
+
end
|
261
|
+
|
262
|
+
end
|
263
|
+
|
264
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module Basic101
|
2
|
+
|
3
|
+
class UserDefinedFunction < Function
|
4
|
+
|
5
|
+
include Identity
|
6
|
+
|
7
|
+
def initialize(identifier, parameters, expression)
|
8
|
+
@identifier = identifier
|
9
|
+
@parameters = parameters
|
10
|
+
@expression = expression
|
11
|
+
end
|
12
|
+
|
13
|
+
def name
|
14
|
+
@identifier.to_s
|
15
|
+
end
|
16
|
+
|
17
|
+
def call(runtime, args)
|
18
|
+
raise InvalidArgumentError unless args.size == @parameters.size
|
19
|
+
save_parameters(runtime)
|
20
|
+
bind_arguments(runtime, args)
|
21
|
+
result = @expression.eval(runtime)
|
22
|
+
restore_parameters(runtime)
|
23
|
+
result
|
24
|
+
end
|
25
|
+
|
26
|
+
protected
|
27
|
+
|
28
|
+
def state
|
29
|
+
[@identifier, @parameters, @expression]
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
def save_parameters(runtime)
|
35
|
+
@original_parameter_values = @parameters.map do |parameter|
|
36
|
+
parameter.eval(runtime)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def bind_arguments(runtime, args)
|
41
|
+
@parameters.zip(args).each do |parameter, arg|
|
42
|
+
parameter.assign(runtime, arg.eval(runtime))
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def restore_parameters(runtime)
|
47
|
+
@parameters.zip(@original_parameter_values) do |parameter, value|
|
48
|
+
parameter.assign(runtime, value)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
data/lib/basic101.rb
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
require 'csv'
|
2
|
+
require 'optparse'
|
3
|
+
require 'pp'
|
4
|
+
|
5
|
+
require 'parslet'
|
6
|
+
|
7
|
+
require_relative 'basic101/abs_function'
|
8
|
+
require_relative 'basic101/argument_checker'
|
9
|
+
require_relative 'basic101/arguments'
|
10
|
+
require_relative 'basic101/array_reference'
|
11
|
+
require_relative 'basic101/asc_function'
|
12
|
+
require_relative 'basic101/basic_array'
|
13
|
+
require_relative 'basic101/basic_comparisons'
|
14
|
+
require_relative 'basic101/basic_float'
|
15
|
+
require_relative 'basic101/basic_integer'
|
16
|
+
require_relative 'basic101/basic_math'
|
17
|
+
require_relative 'basic101/basic_numeric'
|
18
|
+
require_relative 'basic101/basic_object'
|
19
|
+
require_relative 'basic101/basic_string'
|
20
|
+
require_relative 'basic101/binary_operation'
|
21
|
+
require_relative 'basic101/binary_operations'
|
22
|
+
require_relative 'basic101/built_in_functions'
|
23
|
+
require_relative 'basic101/chr_function'
|
24
|
+
require_relative 'basic101/cos_function'
|
25
|
+
require_relative 'basic101/data_statement'
|
26
|
+
require_relative 'basic101/define_function_statement'
|
27
|
+
require_relative 'basic101/dim_statement'
|
28
|
+
require_relative 'basic101/else_statement'
|
29
|
+
require_relative 'basic101/end_statement'
|
30
|
+
require_relative 'basic101/endif_statement'
|
31
|
+
require_relative 'basic101/errors'
|
32
|
+
require_relative 'basic101/exp_function'
|
33
|
+
require_relative 'basic101/for_stack'
|
34
|
+
require_relative 'basic101/for_statement'
|
35
|
+
require_relative 'basic101/function'
|
36
|
+
require_relative 'basic101/function_call'
|
37
|
+
require_relative 'basic101/function_identifier'
|
38
|
+
require_relative 'basic101/functions'
|
39
|
+
require_relative 'basic101/gosub_statement'
|
40
|
+
require_relative 'basic101/goto_statement'
|
41
|
+
require_relative 'basic101/identifier'
|
42
|
+
require_relative 'basic101/identity'
|
43
|
+
require_relative 'basic101/if_statement'
|
44
|
+
require_relative 'basic101/input'
|
45
|
+
require_relative 'basic101/input_reader'
|
46
|
+
require_relative 'basic101/input_statement'
|
47
|
+
require_relative 'basic101/int_function'
|
48
|
+
require_relative 'basic101/left_function'
|
49
|
+
require_relative 'basic101/len_function'
|
50
|
+
require_relative 'basic101/let_statement'
|
51
|
+
require_relative 'basic101/line'
|
52
|
+
require_relative 'basic101/log_function'
|
53
|
+
require_relative 'basic101/main'
|
54
|
+
require_relative 'basic101/mid_function'
|
55
|
+
require_relative 'basic101/negate_operation'
|
56
|
+
require_relative 'basic101/next_statement'
|
57
|
+
require_relative 'basic101/not_operation'
|
58
|
+
require_relative 'basic101/null_prompt_delimeter'
|
59
|
+
require_relative 'basic101/null_transcript'
|
60
|
+
require_relative 'basic101/numeric_identifier'
|
61
|
+
require_relative 'basic101/on_goto_statement'
|
62
|
+
require_relative 'basic101/output'
|
63
|
+
require_relative 'basic101/parser'
|
64
|
+
require_relative 'basic101/power_operation'
|
65
|
+
require_relative 'basic101/print_comma'
|
66
|
+
require_relative 'basic101/print_semicolon'
|
67
|
+
require_relative 'basic101/print_statement'
|
68
|
+
require_relative 'basic101/program'
|
69
|
+
require_relative 'basic101/program_counter'
|
70
|
+
require_relative 'basic101/prompt_delimeter'
|
71
|
+
require_relative 'basic101/randomize_statement'
|
72
|
+
require_relative 'basic101/read_statement'
|
73
|
+
require_relative 'basic101/reference'
|
74
|
+
require_relative 'basic101/remark_statement'
|
75
|
+
require_relative 'basic101/restore_statement'
|
76
|
+
require_relative 'basic101/return_statement'
|
77
|
+
require_relative 'basic101/right_function'
|
78
|
+
require_relative 'basic101/rnd_function'
|
79
|
+
require_relative 'basic101/runtime'
|
80
|
+
require_relative 'basic101/scalar_reference'
|
81
|
+
require_relative 'basic101/sgn_function'
|
82
|
+
require_relative 'basic101/sin_function'
|
83
|
+
require_relative 'basic101/sqr_function'
|
84
|
+
require_relative 'basic101/statement'
|
85
|
+
require_relative 'basic101/stop_statement'
|
86
|
+
require_relative 'basic101/str_function'
|
87
|
+
require_relative 'basic101/string_identifier'
|
88
|
+
require_relative 'basic101/tab'
|
89
|
+
require_relative 'basic101/tab_function'
|
90
|
+
require_relative 'basic101/tan_function'
|
91
|
+
require_relative 'basic101/transcript'
|
92
|
+
require_relative 'basic101/transform'
|
93
|
+
require_relative 'basic101/user_defined_function'
|
@@ -0,0 +1 @@
|
|
1
|
+
task :default => [:test]
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'jeweler'
|
4
|
+
|
5
|
+
README_PATH = File.expand_path('../README.md', File.dirname(__FILE__))
|
6
|
+
|
7
|
+
def extract_description_from_readme
|
8
|
+
readme = File.open(README_PATH, 'r', &:read)
|
9
|
+
s = readme[/^# basic101.*\n+((?:.*\n)+?)\n*##/i, 1]
|
10
|
+
unless s
|
11
|
+
raise 'Unable to extract description from readme'
|
12
|
+
end
|
13
|
+
s.gsub(/\n/, ' ').strip
|
14
|
+
end
|
15
|
+
|
16
|
+
Jeweler::Tasks.new do |gem|
|
17
|
+
# gem is a Gem::Specification... see
|
18
|
+
# http://docs.rubygems.org/read/chapter/20 for more options
|
19
|
+
gem.name = 'basic101'
|
20
|
+
gem.homepage = 'http://github.com/wconrad/basic101'
|
21
|
+
gem.license = 'MIT'
|
22
|
+
gem.summary = %Q{Circa 1980 basic intepreter}
|
23
|
+
gem.description = extract_description_from_readme
|
24
|
+
gem.email = 'wconrad@yagni.com'
|
25
|
+
gem.authors = ['Wayne Conrad']
|
26
|
+
# dependencies defined in Gemfile
|
27
|
+
end
|
28
|
+
Jeweler::RubygemsDotOrgTasks.new
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module Integration
|
2
|
+
|
3
|
+
class Arguments
|
4
|
+
|
5
|
+
attr_reader :patterns
|
6
|
+
attr_reader :train
|
7
|
+
|
8
|
+
def initialize(argv)
|
9
|
+
@train = false
|
10
|
+
@patterns = []
|
11
|
+
OptionParser.new do |opts|
|
12
|
+
opts.banner << " [patterns]"
|
13
|
+
opts.on('-t', '--train', 'Train tests') do |v|
|
14
|
+
@train = v
|
15
|
+
end
|
16
|
+
end.parse!(argv)
|
17
|
+
@patterns = argv
|
18
|
+
rescue OptionParser::ParseError => e
|
19
|
+
$stderr.puts e
|
20
|
+
exit 1
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Must come first
|
4
|
+
require 'simplecov'
|
5
|
+
SimpleCov.command_name 'Integration'
|
6
|
+
|
7
|
+
lib_path = File.expand_path('../../lib', __dir__)
|
8
|
+
unless $LOAD_PATH.include?(lib_path)
|
9
|
+
$:.unshift lib_path
|
10
|
+
end
|
11
|
+
|
12
|
+
require 'fileutils'
|
13
|
+
require 'forwardable'
|
14
|
+
require 'optparse'
|
15
|
+
require 'pathname'
|
16
|
+
require 'stringio'
|
17
|
+
require 'tempfile'
|
18
|
+
require 'yaml'
|
19
|
+
|
20
|
+
require 'basic101'
|
21
|
+
|
22
|
+
require_relative 'arguments'
|
23
|
+
require_relative 'errors'
|
24
|
+
require_relative 'main'
|
25
|
+
require_relative 'output_file'
|
26
|
+
require_relative 'test'
|
27
|
+
|
28
|
+
Integration::Main.new(ARGV).run if $0 == __FILE__
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module Integration
|
2
|
+
|
3
|
+
class Main
|
4
|
+
|
5
|
+
def initialize(argv)
|
6
|
+
@args = Arguments.new(argv)
|
7
|
+
end
|
8
|
+
|
9
|
+
def run
|
10
|
+
tests = load_tests
|
11
|
+
tests.each do |test|
|
12
|
+
test.run
|
13
|
+
test.print_progress
|
14
|
+
end
|
15
|
+
puts
|
16
|
+
if @args.train
|
17
|
+
tests.each(&:train)
|
18
|
+
else
|
19
|
+
tests.each(&:print_failure)
|
20
|
+
end
|
21
|
+
exit exitcode(tests)
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def load_tests
|
27
|
+
glob = File.join(test_dir, '**', '*' + Test::BASIC_EXTENSION)
|
28
|
+
Dir[glob].map do |basic_path|
|
29
|
+
Test.new(basic_path)
|
30
|
+
end.select do |test|
|
31
|
+
test.matches_patterns?(@args.patterns)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_dir
|
36
|
+
File.expand_path('tests', __dir__)
|
37
|
+
end
|
38
|
+
|
39
|
+
def exitcode(tests)
|
40
|
+
if tests.all?(&:passed?)
|
41
|
+
0
|
42
|
+
else
|
43
|
+
1
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
module Integration
|
2
|
+
|
3
|
+
class OutputFile
|
4
|
+
|
5
|
+
extend Forwardable
|
6
|
+
|
7
|
+
attr_accessor :max_lines
|
8
|
+
|
9
|
+
def initialize
|
10
|
+
@out = StringIO.new
|
11
|
+
@total_lines = 0
|
12
|
+
@max_lines = nil
|
13
|
+
end
|
14
|
+
|
15
|
+
def print(*s)
|
16
|
+
raise_if_too_many_lines(s)
|
17
|
+
@out.print(*s)
|
18
|
+
end
|
19
|
+
|
20
|
+
def puts(*s)
|
21
|
+
raise_if_too_many_lines(s)
|
22
|
+
puts_unchecked(*s)
|
23
|
+
end
|
24
|
+
|
25
|
+
def_delegator :@out, :isatty
|
26
|
+
def_delegator :@out, :flush
|
27
|
+
def_delegator :@out, :string
|
28
|
+
def_delegator :@out, :puts, :puts_unchecked
|
29
|
+
|
30
|
+
def raise_if_too_many_lines(*s)
|
31
|
+
num_lines = s.join.scan(/\n/).size
|
32
|
+
@total_lines += num_lines
|
33
|
+
if max_lines && @total_lines >= max_lines
|
34
|
+
raise MaxOutputLines, "Maximum output lines reached"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|