/TheRainbowSprenkles/trunk/SLogo Developers: tobind

Login name:
tobind
Total Commits:
175 (34.2%)
Lines of Code:
4,322 (25.5%)
Most Recent Commit:
2013-12-13 16:42
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for tobind

Activity by Day of Week for tobind

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 175 (100.0%) 4322 (100.0%) 24.6
src/jturtle/ 33 (18.9%) 2009 (46.5%) 60.8
src/slogo/instruction/ 54 (30.9%) 1248 (28.9%) 23.1
src/slogo/parser/ 64 (36.6%) 775 (17.9%) 12.1
src/slogo/parser/token/ 21 (12.0%) 261 (6.0%) 12.4
src/slogo/expression/ 1 (0.6%) 28 (0.6%) 28.0
/ 1 (0.6%) 1 (0.0%) 1.0
src/jturtle/images/ 1 (0.6%) 0 (0.0%) 0.0

Activity of tobind

Most Recent Commits

tobind 2013-12-13 16:42 Rev.: 515

Added text area

25 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+25 -22)
tobind 2013-12-13 16:14 Rev.: 507

Pop up window for procedures.

568 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+568 -279)
tobind 2013-12-13 15:37 Rev.: 497

Comments and fixing toString()

109 lines of code changed in 11 files:

  • src/slogo/instruction: Bk.java (+7 -5), Clean.java (+5 -5), Cs.java (+1 -2), Equal.java (+15 -11), Fd.java (+13 -15), Greater.java (+14 -12), Heading.java (+6 -9), Home.java (+4 -3), Ht.java (+2 -2), If.java (+39 -31), Instruction.java (+3 -2)
tobind 2013-12-13 15:00 Rev.: 492

still working on pop up window.

27 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+27 -20)
tobind 2013-12-13 14:50 Rev.: 490

Uploading new popup window for procedures. #therainbowsprenkles

595 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+41 -13), TurtleField.java (+554 -280)
tobind 2013-12-12 19:41 Rev.: 418

more work on implementing the extension for the turtle image.

#therainbowsprenkles

3 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+3 -1)
tobind 2013-12-12 17:21 Rev.: 408

Fixed a casting between double and integer problem in Repeat.

#therainbowsprenkles

1 lines of code changed in 1 file:

  • src/slogo/instruction: Repeat.java (+1 -1)
tobind 2013-12-12 17:20 Rev.: 407

Committing extension for changing turtle image.
right now, just uses the "turtle.gif" originally in images.
#therainbowsprenkles

41 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+8 -7), TurtleField.java (+33 -15)
tobind 2013-12-12 02:44 Rev.: 383

Implementing GrammarElement. #therainbowsprenkles

105 lines of code changed in 26 files:

  • src/slogo/instruction: Clear.java (del), NotEqual.java (+10 -12), Print.java (+12 -13), Repeat.java (+9 -10), SetX.java (+1 -1), SetY.java (+1 -1), Towards.java (+12 -12)
  • src/slogo/parser: CleanParser.java (+2 -2), ClearParser.java (del), CsParser.java (+2 -2), HeadingParser.java (+2 -2), HomeParser.java (+2 -2), HtParser.java (+2 -2), IfParser.java (+1 -5), NotEqualParser.java (+7 -7), PdParser.java (+2 -2), PenDownPParser.java (+2 -2), PrintParser.java (+5 -6), PuParser.java (+2 -2), RepeatParser.java (+6 -6), SetXParser.java (-1), SetXYParser.java (+6 -7), SumParser.java (+9 -9), TowardsParser.java (+6 -7), XcorParser.java (+2 -2), YcorParser.java (+2 -2)
tobind 2013-12-12 01:50 Rev.: 380

More GrammarElement instead of Expression.

#TheRainbowSprenkles

43 lines of code changed in 6 files:

  • src/slogo/instruction: Remainder.java (+13 -17)
  • src/slogo/parser: DifferenceParser.java (+6 -6), MinusParser.java (+5 -5), ProductParser.java (+6 -6), QuotientParser.java (+7 -7), RemainderParser.java (+6 -6)
tobind 2013-12-12 01:38 Rev.: 379

Implemented GrammarElement in Minus and Quotient.
Fixed toString in Greater and Less.
#therainbowsprenkles

18 lines of code changed in 4 files:

  • src/slogo/instruction: Greater.java (+2 -5), Less.java (+2 -5), Minus.java (+6 -7), Quotient.java (+8 -10)
tobind 2013-12-12 01:12 Rev.: 376

Changed return values to doubles instead of integers.

#TheRainbowSprenkles

4 lines of code changed in 2 files:

  • src/slogo/instruction: Greater.java (+2 -2), Less.java (+2 -2)
tobind 2013-12-12 00:11 Rev.: 371

Changed Greater, GreaterParser, Less, LessParser to use GrammarElement

#theRainbowSprenkles

60 lines of code changed in 4 files:

  • src/slogo/instruction: Greater.java (+21 -15), Less.java (+20 -14)
  • src/slogo/parser: GreaterParser.java (+9 -11), LessParser.java (+10 -12)
tobind 2013-12-11 23:19 Rev.: 368

Committing the if command instruction, parser, token.

Committing the changes from Expression to GrammarElement for the Equal instruction and parser.

Committing the instructions.prop file.

174 lines of code changed in 6 files:

  • src/slogo/instruction: Equal.java (+15 -9), If.java (new 59)
  • src/slogo/parser: EqualParser.java (+6 -6), IfParser.java (new 77), instructions.prop (+2 -1)
  • src/slogo/parser/token: IfToken.java (new 15)
tobind 2013-12-11 21:34 Rev.: 366

committing the towards command the new instructions.prop file

114 lines of code changed in 4 files:

  • src/slogo/instruction: Towards.java (new 66)
  • src/slogo/parser: TowardsParser.java (new 31), instructions.prop (+2 -1)
  • src/slogo/parser/token: TowardsToken.java (new 15)
tobind 2013-12-06 13:39 Rev.: 255

Changed color of turtle and path.

#theRainbowSprenkles

5 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+5 -4)
tobind 2013-12-05 20:14 Rev.: 216

When I changed minus token from "-" to "minus" earlier, an error occurred in CharTokenFactory that made some of the commands not work such as fd sum 10 10.

1 lines of code changed in 1 file:

  • src/slogo/parser/token: CharTokenFactory.java (+1 -1)
tobind 2013-12-05 15:34 Rev.: 212

Added helper method in Jturtle for the pendownp command.

Added alias for pendownpcommand.

Added comments in PenDownP.java, PenDownPToken.java, QuotientParser.java, MinusToken.java

19 lines of code changed in 6 files:

  • src/jturtle: JTurtle.java (+12 -1), TurtleField.java (+2 -2)
  • src/slogo/instruction: PenDownP.java (+1 -2)
  • src/slogo/parser: QuotientParser.java (+1 -1)
  • src/slogo/parser/token: MinusToken.java (+2 -3), PenDownPToken.java (+1 -1)
tobind 2013-12-05 15:25 Rev.: 211

PenDownP command.

Right now, I just have it printing to the console. 1 = true, 0 = false.

At some point, we can work on the gui and having return statements print to there.

#therainbowsprenkles

85 lines of code changed in 4 files:

  • src/slogo/instruction: PenDownP.java (new 44)
  • src/slogo/parser: PenDownPParser.java (new 25), instructions.prop (+2 -1)
  • src/slogo/parser/token: PenDownPToken.java (new 14)
tobind 2013-12-05 13:22 Rev.: 210

Added "&& steps != 0" to the if statement where the current point is added to the line.
I then added code (getting the initial point to the line) to when penOn is set to true.

#TheRainbowSprenkles

3 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+3 -3)

(35 more)

Generated by StatSVN 0.7.0