/TheRainbowSprenkles/trunk/SLogo Developers: mugabej

Login name:
mugabej
Total Commits:
145 (28.4%)
Lines of Code:
2,269 (13.4%)
Most Recent Commit:
2013-12-13 19:34
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for mugabej

Activity by Day of Week for mugabej

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 145 (100.0%) 2269 (100.0%) 15.6
src/jturtle/ 34 (23.4%) 1392 (61.3%) 40.9
src/slogo/instruction/ 39 (26.9%) 420 (18.5%) 10.7
src/slogo/parser/ 45 (31.0%) 261 (11.5%) 5.8
src/slogo/parser/token/ 10 (6.9%) 100 (4.4%) 10.0
src/slogo/ 4 (2.8%) 45 (2.0%) 11.2
tests/ 9 (6.2%) 44 (1.9%) 4.8
src/slogo/expression/ 1 (0.7%) 7 (0.3%) 7.0
src/slogo/tests/ 1 (0.7%) 0 (0.0%) 0.0
src/jturtle/images/ 2 (1.4%) 0 (0.0%) 0.0

Activity of mugabej

Most Recent Commits

mugabej 2013-12-13 19:34 Rev.: 529

Changed the way we accessed the user subroutines text area so that our fields stay private and hence stay closed to modification. Also, removed some unused imports. Should be all from me. Nice job everyone! #TheRainbowSprenkles

30 lines of code changed in 5 files:

  • src/jturtle: TurtleField.java (+29 -22)
  • src/slogo/instruction: To.java (+1 -3)
  • src/slogo/parser: MinusParser.java (-1), RepeatParser.java (-1), SetYParser.java (-1)
mugabej 2013-12-13 18:36 Rev.: 526

Changed Frame names to be more descriptive. #TheRainbowSprenkles

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -2)
mugabej 2013-12-13 18:24 Rev.: 525

Committed all of the files that had been changed. The last commit hadn't committed them. #TheRainbowSprenkles

15 lines of code changed in 7 files:

  • src/jturtle: TurtleField.java (+1 -1)
  • src/slogo/expression: SubroutineFactory.java (+7 -1)
  • src/slogo/instruction: To.java (+7)
  • src/slogo/parser: IfParser.java (-1), PrintParser.java (-1), RemainderParser.java (-1)
  • src/slogo/tests: SetLocationTests.java (del)
mugabej 2013-12-13 18:21 Rev.: 524

Added the third extension to the project, namely displaying the user defined subroutines. #TheRainbowSprenkles

24 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+24 -83)
mugabej 2013-12-13 16:48 Rev.: 517

Got Rid of the unused import in the slogo.instrcuction package. #TheRainbowSprenkles

1 lines of code changed in 8 files:

  • src/slogo/instruction: Less.java (-1), Minus.java (-1), NotEqual.java (-1), Quotient.java (-1), SetX.java (+1 -1), SetXY.java (-1), SetY.java (-1), To.java (-1)
mugabej 2013-12-13 12:43 Rev.: 473

Added code to allow the user to choose a display image for the turtle. Still need to add the code that actually changes the turle's image. #TheRainbowSprenkles.

54 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+54 -5)
mugabej 2013-12-12 02:09 Rev.: 382

Fixed an error that was causing some .wav files to not be opened. Redirected error from opening an audio sound to the output textfield. Made the playMusic method non-static. #TheRainbowSprenkles

19 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+19 -10)
mugabej 2013-12-12 01:51 Rev.: 381

Added a decent .wav music file we can use to test our add a sound functionality.. #TheRainbowSprenkles

0 lines of code changed in 1 file:

  • tests: ChillingMusic.wav (new)
mugabej 2013-12-12 01:31 Rev.: 378

Added code to allow the user to choose a music file to play as background music. #TheRainbowSprenkles

60 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+60 -1)
mugabej 2013-12-11 22:02 Rev.: 367

Added code to allow the user to choose the background image from his file system. #TheRainbowSprenkles

741 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+4 -11), TurtleField.java (+737 -694)
mugabej 2013-12-11 12:52 Rev.: 341

Deleted the print statement that was making the evaluate method run twice in the execCommand method. The print was introduced as part of an debugging effort. #TheRainbowSprenkles

0 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (-2)
mugabej 2013-12-11 11:46 Rev.: 338

Changed the NotEqual? command to return 1 if num1 is NotEqual to num2, 0 otherwise. #TheRainbowSprenkles

5 lines of code changed in 1 file:

  • src/slogo/instruction: NotEqual.java (+5 -4)
mugabej 2013-12-11 11:46 Rev.: 337

Changed the Less? command to return 1 if num1 is Less than num2, 0 otherwise. #TheRainbowSprenkles

4 lines of code changed in 1 file:

  • src/slogo/instruction: Less.java (+4 -3)
mugabej 2013-12-11 11:45 Rev.: 336

Changed the Greater? command to return 1 if num1 is Greater than num2, 0 otherwise. #TheRainbowSprenkles

4 lines of code changed in 1 file:

  • src/slogo/instruction: Greater.java (+4 -3)
mugabej 2013-12-11 11:44 Rev.: 335

Changed the Equal? command to return 1 if equal, 0 otherwise. #TheRainbowSprenkles

4 lines of code changed in 1 file:

  • src/slogo/instruction: Equal.java (+4 -3)
mugabej 2013-12-11 11:20 Rev.: 334

Added the NotEqual? command. #TheRainbowSprenkles

85 lines of code changed in 4 files:

  • src/slogo/instruction: NotEqual.java (new 51)
  • src/slogo/parser: EqualParser.java (+1 -1), NotEqualParser.java (new 31), instructions.prop (+2 -1)
mugabej 2013-12-11 11:14 Rev.: 332

Added the Equal? command. #TheRainbowSprenkles

84 lines of code changed in 3 files:

  • src/slogo/instruction: Equal.java (new 51)
  • src/slogo/parser: EqualParser.java (new 31), instructions.prop (+2 -1)
mugabej 2013-12-11 11:12 Rev.: 331

Committing files that hadn't been committed when I added the Greater? command. #TheRainbowSprenkles

106 lines of code changed in 9 files:

  • src/jturtle: TurtleField.java (+15 -3)
  • src/slogo/instruction: Greater.java (new 51), Less.java (+1 -1)
  • src/slogo/parser: DifferenceParser.java (+1 -1), GreaterParser.java (new 32), InstructionParser.java (+2 -3), LessParser.java (+1 -1), SLogoParser.java (+1 -5), instructions.prop (+2 -1)
mugabej 2013-12-11 11:07 Rev.: 329

Added the Greater? num1 num2 command. #TheRainbowSprenkles

33 lines of code changed in 5 files:

  • src/slogo/parser/token: CharTokenFactory.java (+1 -1), EqualToken.java (+4 -6), GreaterToken.java (new 15), LessToken.java (+1 -1), NotEqualToken.java (new 12)
mugabej 2013-12-11 00:27 Rev.: 315

Added Less? num1 num2 command. Also, removed the sorting of aliases as it was leading to incorrect matchings. Instead, each added alias must be put at the end of the appropriate array so that the matchings will heavily depend on the positions of instructions in the respective arrays. #TheRainbowSprenkles

105 lines of code changed in 5 files:

  • src/jturtle: TurtleField.java (+5 -7)
  • src/slogo/instruction: Less.java (new 51)
  • src/slogo/parser: LessParser.java (new 32), instructions.prop (+2 -1)
  • src/slogo/parser/token: LessToken.java (new 15)

(43 more)

Generated by StatSVN 0.7.0