/TurtleAnimationTaskForce/trunk/SLogo Developers: eutomo

Login name:
eutomo
Total Commits:
77 (20.5%)
Lines of Code:
681 (9.5%)
Most Recent Commit:
2013-12-12 21:39
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for eutomo

Activity by Day of Week for eutomo

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 77 (100.0%) 681 (100.0%) 8.8
src/slogo/parser/ 36 (46.8%) 296 (43.5%) 8.2
src/slogo/instruction/ 9 (11.7%) 168 (24.7%) 18.6
src/slogo/parser/token/ 25 (32.5%) 167 (24.5%) 6.6
src/jturtle/ 6 (7.8%) 49 (7.2%) 8.1
src/slogo/ 1 (1.3%) 1 (0.1%) 1.0

Activity of eutomo

Most Recent Commits

eutomo 2013-12-12 21:39 Rev.: 428

trying to get assignment to work. eutomo

17 lines of code changed in 3 files:

  • src/jturtle: TurtleField.java (+5)
  • src/slogo/parser: AssignmentParser.java (+10 -5)
  • src/slogo/parser/token: AssignmentToken.java (+2 -2)
eutomo 2013-12-08 23:22 Rev.: 282

the boolean parsers weren't showing up so i'm recomitting my code. eutomo

8 lines of code changed in 4 files:

  • src/slogo/instruction: Print.java (+2 -2)
  • src/slogo/parser: PrintParser.java (+1 -4), RepeatParser.java (+1 -6), instructions.prop (+4 -1)
eutomo 2013-12-08 23:20 Rev.: 281

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -2)
eutomo 2013-12-08 14:44 Rev.: 275

now aliases (including those with ? in their names). for commands that /require/ ?, we should consider whether we want to accept with /without/ ?. eutomo

12 lines of code changed in 4 files:

  • src/jturtle: TurtleField.java (+7)
  • src/slogo/parser: InstructionNames.java (+3 -2)
  • src/slogo/parser/token: CharTokenFactory.java (+1), TokenFactory.java (+1 -11)
eutomo 2013-12-08 14:08 Rev.: 273

Aliases work! At this point though (Dec8, 2PM), we don't have all of the instructions implemented yet, so obviously not all of the aliases work. But all aliases work for the instructions we have implemented; and once we implement every instruction, there's nothing we need to change for the alias map.

37 lines of code changed in 4 files:

  • src/slogo/parser: Aliases (+14 -14), InstructionNames.java (+4 -2), InstructionParser.java (+1 -1)
  • src/slogo/parser/token: TokenFactory.java (+18 -16)
eutomo 2013-12-08 12:21 Rev.: 272

69 lines of code changed in 12 files:

  • src/slogo/instruction: Less.java (+1 -2)
  • src/slogo/parser: Aliases (+5 -1), GreaterParser.java (+1 -1), InstructionNames.java (+27 -1), InstructionParser.java (+17 -1), LessParser.java (-1), SumParser.java (-1), XCorParser.java (-1), YCorParser.java (-1)
  • src/slogo/parser/token: GreaterToken.java (+1 -1), LessToken.java (+1 -1), TokenFactory.java (+16 -14)
eutomo 2013-12-08 09:50 Rev.: 271

eutomo. Four Boolean commands work. Changed EQUAL the = to EQUALSIGN everywhere it was needed so that EQUAL can be a Boolean command.

205 lines of code changed in 25 files:

  • src/jturtle: TurtleField.java (+2 -2)
  • src/slogo: CharConsts.java (+1 -1)
  • src/slogo/instruction: Back.java (-1), Equal.java (new 40), Forward.java (-1), Greater.java (new 38), Less.java (+8 -9), Notequal.java (new 39)
  • src/slogo/parser: AssignmentParser.java (+1 -1), EqualParser.java (new 27), EqualQParser.java (del), GreaterParser.java (+5 -9), Instructions.prop (del), LessParser.java (+4 -6), NotequalParser.java (+6 -9), SLogoParser.java (-1), instructions.prop (+5 -1)
  • src/slogo/parser/token: AssignmentToken.java (+1 -1), CharTokenFactory.java (+1 -1), EqualQToken.java (del), EqualToken.java (+7 -8), EqualsignToken.java (new 15), GreaterToken.java (+2 -2), LessToken.java (+1 -1), NotequalToken.java (+2 -2)
eutomo 2013-12-05 22:41 Rev.: 241

earlier I put code in the wrong place to chop off the ?. but now it works.

8 lines of code changed in 2 files:

  • src/slogo/parser: InstructionNames.java (+7 -1), InstructionParser.java (+1 -10)
eutomo 2013-12-05 22:22 Rev.: 239

2 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+2 -2)
eutomo 2013-12-05 22:09

0 lines of code changed in 2 files:

  • src/slogo/parser: InstructionParser.java (-2)
  • src/slogo/parser/token: TokenFactory.java (-1)
eutomo 2013-12-05 22:02

251 lines of code changed in 12 files:

  • src/slogo/instruction: Less.java (new 40)
  • src/slogo/parser: Aliases (new 10), EqualQParser.java (new 30), GreaterParser.java (new 30), Instructions.prop (new 11), LessParser.java (new 31), NotequalParser.java (new 26)
  • src/slogo/parser/token: EqualQToken.java (new 14), GreaterToken.java (new 14), LessToken.java (new 15), NotequalToken.java (new 15), QuestionToken.java (new 15)
eutomo 2013-12-05 21:58 Rev.: 225

for handling instructions that have question marks in the name eutomo

9 lines of code changed in 1 file:

  • src/slogo/parser/token: TokenFactory.java (+9 -6)
eutomo 2013-12-05 21:58 Rev.: 224

for handling question marks in instructions eutomo

12 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+12 -1)
eutomo 2013-12-02 12:45 Rev.: 133

6 lines of code changed in 2 files:

  • src/jturtle: TurtleField.java (+2 -1)
  • src/slogo/parser/token: TokenFactory.java (+4 -1)
eutomo 2013-12-01 21:56

12 lines of code changed in 2 files:

  • src/slogo/parser/token: TokenFactory.java (+11 -1)
eutomo 2013-11-21 22:35 Rev.: 22

This is the stuff we did Nov 21 at night. A lot of thoughts on paper, very productive, Happy Thanksgiving. Just 2 changes but a lot of thought out on paper.

31 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+31 -2)
Generated by StatSVN 0.7.0