Directory src/slogo/

Directory Created:
2013-11-18 09:54
Total Files:
9
Deleted Files:
1
Lines of Code:
462

[root]/src/slogo
            directory in repo expression (12 files, 481 lines)
            directory in repo instruction (37 files, 2101 lines)
            directory in repo parser (52 files, 2192 lines)
                directory in repo token (61 files, 1188 lines)

Lines of Code

src/slogo/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 35 (100.0%) 474 (100.0%) 13.5
taylorb 24 (68.6%) 418 (88.2%) 17.4
odells 4 (11.4%) 40 (8.4%) 10.0
hardye 7 (20.0%) 16 (3.4%) 2.2

Most Recent Commits

taylorb 2013-12-13 17:31 Rev.: 521

final implementation!!!

2 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+2 -1)
taylorb 2013-12-13 13:26 Rev.: 483

changing linewidth works as intended now

13 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+13 -2)
taylorb 2013-12-13 12:57 Rev.: 477

now catches errors in loaded files( i had forgotten about those!)

17 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+17 -7)
taylorb 2013-12-13 12:33 Rev.: 471

did some refactoring. Also, repeat can now be chained with a sum command

1 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+1 -2)
taylorb 2013-12-13 11:04 Rev.: 456

trailProperties now works as intended, when user changes line color/ type only the lines drawn after that point have the changes!

8 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+8 -4)
taylorb 2013-12-12 15:47 Rev.: 393

ok so there was a slight error in right an left. Transisitioning from degrees and radians caused the degree to be off by a progressively larger amounts. heading is now saved in degrees and is handled by right and left, and turtlefield as such. Pen up and pend down are raido buttons and you run subroutines just by typeing the name ( no longer need TO)

18 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+18 -18)
taylorb 2013-12-11 13:50 Rev.: 343

equals now implemented. will add notEqual later today

12 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+12 -1)
taylorb 2013-12-11 12:25 Rev.: 339

pendown? command now implemented

3 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+3 -4)
taylorb 2013-12-11 10:38 Rev.: 327

workspace now loads variables assigned in a file

11 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+11 -3)
taylorb 2013-12-10 22:54 Rev.: 313

1 lines of code changed in 1 file:

  • src/slogo: WorkspaceMemory.java (+1 -2)
taylorb 2013-12-10 12:38 Rev.: 295

added subroutine menu

57 lines of code changed in 2 files:

  • src/slogo: LanguageProcessor.java (+25 -1), WorkspaceMemory.java (new 32)
taylorb 2013-12-09 17:49 Rev.: 285

The output is now displayed in the command window. Defining subroutines now makes a button on the gui window under the menu Subroutines. Language Processor is primed to except input from files.

91 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+91 -9)
taylorb 2013-12-06 15:35 Rev.: 259

can now write fancy subroutines that contain other mulitline commands, and nested repeats

18 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+18 -5)
taylorb 2013-12-04 22:30 Rev.: 206

now can add more mulitLineCommands(increased extensibility) in a manner similar to adding new instructions.

also the TO command is now supported(i.e. subroutines)

45 lines of code changed in 3 files:

  • src/slogo: LanguageProcessor.java (+5 -4), MultiLineCommandMap.java (new 37), multiLineCommands.txt (new 3)
taylorb 2013-12-03 20:31 Rev.: 188

fixed some kinks in the languageProcessor class, works as expected now

9 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+9 -1)
taylorb 2013-12-03 20:18 Rev.: 185

language processor can now handle multiline commands( like repeat). There is an issue with fixing mistakes on previous lines though

20 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+20 -9)
odells 2013-12-02 14:16 Rev.: 143

Added RIGHT command

0 lines of code changed in 1 file:

  • src/slogo: SamClass.java (del)
taylorb 2013-12-02 14:10 Rev.: 140

now accepts lowercase commands

1 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+1 -1)
taylorb 2013-12-02 01:34 Rev.: 115

This version has a separate window for the command line, and the enter key executes the command

1 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (+1 -2)
hardye 2013-12-01 22:55 Rev.: 110

removed unused imports

0 lines of code changed in 1 file:

  • src/slogo: TurtleContext.java (-2)
taylorb 2013-12-01 21:23 Rev.: 95

50 lines of code changed in 2 files:

  • src/slogo: Filter.java (new 33), LanguageProcessor.java (+17 -1)
taylorb 2013-11-26 16:54 Rev.: 52

I changed Forward and Forward parser to make them closer to Print and Print parser because I don't think we needed forward will need an instruction list.
Also I abstracted the handling of the user input to a languageProcessor class that takes a SLogoParser as a parameter( the myParser from TurtleField)

40 lines of code changed in 1 file:

  • src/slogo: LanguageProcessor.java (new 40)
hardye 2013-11-22 16:07 Rev.: 34

Changed MAIN_TURTLE_NAME in the TurtleField to be "harry" and in the Context class made public static final MAIN_TURTLE_NAME = TurtleField.MAIN_TURTLE_NAME

6 lines of code changed in 2 files:

  • src/slogo: Context.java (+3 -1), TurtleContext.java (+3 -4)
hardye 2013-11-22 15:31 Rev.: 32

3 lines of code changed in 2 files:

  • src/slogo: Context.java (+2), TurtleContext.java (+1)
hardye 2013-11-22 14:22 Rev.: 26



7 lines of code changed in 2 files:

  • src/slogo: Context.java (+4), TurtleContext.java (+3 -3)
odells 2013-11-20 18:11 Rev.: 21

Work from Wednesday

29 lines of code changed in 1 file:

  • src/slogo: TurtleContext.java (new 29)
odells 2013-11-20 18:11 Rev.: 20

Work from Wednesday

1 lines of code changed in 1 file:

  • src/slogo: Context.java (+1 -1)
odells 2013-11-20 12:51 Rev.: 15

New class!

10 lines of code changed in 1 file:

  • src/slogo: SamClass.java (new 10)
sprenkle 2013-11-18 09:54 Rev.: 5

First Import

86 lines of code changed in 3 files:

  • src/slogo: CharConsts.java (new 38), Context.java (new 24), GrammarElement.java (new 24)
Generated by StatSVN 0.7.0