/Skynet/trunk/SLogo Developers: taylorb

Login name:
taylorb
Total Commits:
162 (40.9%)
Lines of Code:
2,414 (28.4%)
Most Recent Commit:
2013-12-14 09:29
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for taylorb

Activity by Day of Week for taylorb

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 162 (100.0%) 2414 (100.0%) 14.9
src/slogo/instruction/ 39 (24.1%) 692 (28.7%) 17.7
src/slogo/parser/ 38 (23.5%) 550 (22.8%) 14.4
src/jturtle/ 28 (17.3%) 453 (18.8%) 16.1
src/slogo/ 24 (14.8%) 418 (17.3%) 17.4
src/slogo/parser/token/ 24 (14.8%) 197 (8.2%) 8.2
src/slogo/expression/ 2 (1.2%) 62 (2.6%) 31.0
/ 6 (3.7%) 34 (1.4%) 5.6
src/ 1 (0.6%) 8 (0.3%) 8.0

Activity of taylorb

Most Recent Commits

taylorb 2013-12-14 09:29 Rev.: 536

load and save now put into menus to make sure they can be seen on any screen size

30 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+30 -24)
taylorb 2013-12-13 17:31 Rev.: 521

final implementation!!!

2 lines of code changed in 2 files:

  • src/jturtle: TurtleField.java (-1)
  • src/slogo: LanguageProcessor.java (+2 -1)
taylorb 2013-12-13 15:23 Rev.: 495

fixed error in heading(it was trying to convert degrees to degrees) and turtle now drawn on top of the trail

3 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+2 -8)
  • src/slogo/instruction: Heading.java (+1 -1)
taylorb 2013-12-13 13:26 Rev.: 483

changing linewidth works as intended now

30 lines of code changed in 4 files:

  • src/jturtle: JTurtle.java (+2 -3), TrailProperties.java (+8 -2), TurtleField.java (+7 -24)
  • 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

49 lines of code changed in 22 files:

  • src/jturtle: JTurtle.java (+2 -1), TurtleField.java (+1 -1)
  • src/slogo: LanguageProcessor.java (+1 -2)
  • src/slogo/instruction: Back.java (+1 -1), Clean.java (+1 -1), ClearScreen.java (+1 -1), Forward.java (+4 -5), HideTurtle.java (+1 -1), Home.java (+1 -1), Left.java (+1 -1), Repeat.java (+4 -4), Right.java (+1 -3), SetHeading.java (+1 -1), SetX.java (+1 -1), SetXY.java (+1 -1), SetY.java (+1 -1), ShowTurtle.java (+1 -1), Subroutine.java (+1 -1), Sum.java (+2 -2), Towards.java (+1 -1)
  • src/slogo/parser: BackParser.java (+1 -1), RepeatParser.java (+20 -5)
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!

84 lines of code changed in 4 files:

  • src/jturtle: JTurtle.java (+54 -23), TrailProperties.java (+21)
  • src/slogo: LanguageProcessor.java (+8 -4)
  • src/slogo/parser: Parser.java (+1 -1)
taylorb 2013-12-12 16:30 Rev.: 403

turtle now draws line correctly after clean command

8 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+8 -5)
taylorb 2013-12-12 16:25 Rev.: 401

clean should work now

0 lines of code changed in 1 file:

  • src/slogo/instruction: Right.java (-3)
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)

62 lines of code changed in 8 files:

  • dash.txt (new 9), variables.txt (new 4)
  • src/jturtle: JTurtle.java (+3 -1), TurtleField.java (+9 -9)
  • src/slogo: LanguageProcessor.java (+18 -18)
  • src/slogo/instruction: Left.java (+3 -3), Right.java (+7 -3)
  • src/slogo/parser: IdentifierParser.java (+9)
taylorb 2013-12-12 00:22 Rev.: 374

ok towards works for real this time haha

4 lines of code changed in 1 file:

  • src/slogo/instruction: Towards.java (+4 -3)
taylorb 2013-12-11 17:44 Rev.: 351

towards command now implemented

137 lines of code changed in 4 files:

  • src/slogo/instruction: Towards.java (new 84)
  • src/slogo/parser: TowardsParser.java (new 36), instructions.prop (+2 -1)
  • src/slogo/parser/token: TowardsToken.java (new 15)
taylorb 2013-12-11 16:24 Rev.: 346

show and hide turtle now implemented and their respective aliases have been added

207 lines of code changed in 9 files:

  • src/jturtle: JTurtle.java (+6 -1)
  • src/slogo/instruction: HideTurtle.java (new 51), ShowTurtle.java (new 52)
  • src/slogo/parser: HideTurtleParser.java (new 32), ShowTurtleParser.java (new 32), instructions.prop (+3 -1)
  • src/slogo/parser/token: Alias.txt (+3 -1), HideTurtleToken.java (new 14), ShowTurtleToken.java (new 14)
taylorb 2013-12-11 15:49 Rev.: 345

notEqual now implemented

124 lines of code changed in 4 files:

  • src/slogo/instruction: NotEqual.java (new 52)
  • src/slogo/parser: NotEqualParser.java (new 62), instructions.prop (+2 -1)
  • src/slogo/parser/token: NotEqualToken.java (new 8)
taylorb 2013-12-11 13:50 Rev.: 343

equals now implemented. will add notEqual later today

135 lines of code changed in 5 files:

  • src/slogo: LanguageProcessor.java (+12 -1)
  • src/slogo/instruction: Equals.java (new 51)
  • src/slogo/parser: EqualsParser.java (new 60), instructions.prop (+2 -1)
  • src/slogo/parser/token: EqualsToken.java (new 10)
taylorb 2013-12-11 13:00 Rev.: 342

back and forward can now be chained with instructions ( sum,difference, etc)

50 lines of code changed in 4 files:

  • src/slogo/instruction: Back.java (+10 -4), Forward.java (+9 -3)
  • src/slogo/parser: BackParser.java (+16 -6), ForwardParser.java (+15 -5)
taylorb 2013-12-11 12:25 Rev.: 339

pendown? command now implemented

118 lines of code changed in 9 files:

  • src/jturtle: JTurtle.java (+3)
  • src/slogo: LanguageProcessor.java (+3 -4)
  • src/slogo/instruction: PenDownP.java (new 52)
  • src/slogo/parser: InstructionParser.java (+7), PenDownPParser.java (new 32), SLogoParser.java (+3 -1), instructions.prop (+2 -1)
  • src/slogo/parser/token: Alias.txt (+2 -1), PenDownPToken.java (new 14)
taylorb 2013-12-11 10:45 Rev.: 328

heading now returns degrees instead of radians

1 lines of code changed in 1 file:

  • src/slogo/instruction: Heading.java (+1 -1)
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

44 lines of code changed in 2 files:

  • src/jturtle: TurtleField.java (+43 -6)
  • src/slogo: WorkspaceMemory.java (+1 -2)

(19 more)

Generated by StatSVN 0.7.0