/Skynet/trunk/SLogo Developers: odells

Login name:
odells
Total Commits:
127 (32.1%)
Lines of Code:
2,538 (29.9%)
Most Recent Commit:
2013-12-12 23:29
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for odells

Activity by Day of Week for odells

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 127 (100.0%) 2538 (100.0%) 19.9
src/slogo/instruction/ 34 (26.8%) 1205 (47.5%) 35.4
src/slogo/parser/ 46 (36.2%) 920 (36.2%) 20.0
src/slogo/parser/token/ 36 (28.3%) 351 (13.8%) 9.7
src/slogo/ 4 (3.1%) 40 (1.6%) 10.0
src/jturtle/ 5 (3.9%) 21 (0.8%) 4.2
/ 2 (1.6%) 1 (0.0%) 0.5

Activity of odells

Most Recent Commits

odells 2013-12-12 23:29 Rev.: 443

Added alias for CLEARSCREEN

2 lines of code changed in 1 file:

  • src/slogo/parser/token: Alias.txt (+2 -1)
odells 2013-12-12 14:16 Rev.: 389

Added stub of CLEARSCREEN instruction as well as parser and token; does what HOME does but still need to figure out how to do "CLEAN" appropriately and at that to this instruction as well. (Final instruction will be a combo of CLEAN and HOME.)

Added Clean and ClearScreen to instructions.prop

102 lines of code changed in 4 files:

  • src/slogo/instruction: ClearScreen.java (new 55)
  • src/slogo/parser: ClearScreenParser.java (new 32), instructions.prop (+1)
  • src/slogo/parser/token: ClearScreenToken.java (new 14)
odells 2013-12-12 14:07 Rev.: 388

Working on CLEAN ... added Instruction/Parser/Token and made some changes to JTurtle but not quite functional yet

110 lines of code changed in 5 files:

  • src/jturtle: JTurtle.java (+12)
  • src/slogo/instruction: Clean.java (new 51)
  • src/slogo/parser: CleanParser.java (new 32), instructions.prop (+1)
  • src/slogo/parser/token: CleanToken.java (new 14)
odells 2013-12-12 13:02 Rev.: 385

Got rid of "purple" as a color option and replaced it with cyan; purple was not a valid color choice (returned ColorNull and did not draw)

1 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+1 -1)
odells 2013-12-10 19:49 Rev.: 305

0 lines of code changed in 1 file:

  • runTest.txt (del)
odells 2013-12-10 12:51 Rev.: 298

Added HEADING

101 lines of code changed in 5 files:

  • src/slogo/instruction: Heading.java (new 51), Home.java (+3 -4)
  • src/slogo/parser: HeadingParser.java (new 32), instructions.prop (+1)
  • src/slogo/parser/token: HeadingToken.java (new 14)
odells 2013-12-10 12:44 Rev.: 296

added XCOR and YCOR instructions

202 lines of code changed in 7 files:

  • src/slogo/instruction: Xcor.java (new 53), Ycor.java (new 53)
  • src/slogo/parser: XcorParser.java (new 33), YcorParser.java (new 33), instructions.prop (+2)
  • src/slogo/parser/token: XcorToken.java (new 14), YcorToken.java (new 14)
odells 2013-12-10 12:33 Rev.: 294

Added MINUS (returns negative of number)

105 lines of code changed in 5 files:

  • src/slogo/instruction: Minus.java (new 52)
  • src/slogo/parser: MinusParser.java (new 37), instructions.prop (+1)
  • src/slogo/parser/token: MinusToken.java (+1 -1), MinusToken2.java (new 14)
odells 2013-12-10 12:13 Rev.: 293

Small edits to comments in math operations
Added REMAINDER

111 lines of code changed in 9 files:

  • src/slogo/instruction: Difference.java (-1), Product.java (-1), Quotient.java (-1), Remainder.java (new 57), Sum.java (-1)
  • src/slogo/parser: QuotientParser.java (+2 -2), RemainderParser.java (new 37), instructions.prop (+1)
  • src/slogo/parser/token: RemainderToken.java (new 14)
odells 2013-12-10 12:00 Rev.: 292

Added PRODUCT and QUOTIENT

220 lines of code changed in 7 files:

  • src/slogo/instruction: Product.java (new 58), Quotient.java (new 58)
  • src/slogo/parser: ProductParser.java (new 37), QuotientParser.java (new 37), instructions.prop (+2)
  • src/slogo/parser/token: ProductToken.java (new 14), QuotientToken.java (new 14)
odells 2013-12-09 21:09 Rev.: 289

Minor changes to Difference

0 lines of code changed in 1 file:

  • src/slogo/instruction: Difference.java (-1)
odells 2013-12-09 18:33 Rev.: 288

1 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+1)
odells 2013-12-09 18:32 Rev.: 287

Added DIFFERENCE instruction

117 lines of code changed in 5 files:

  • src/slogo/instruction: Difference.java (new 59), Sum.java (+5 -3)
  • src/slogo/parser: DifferenceParser.java (new 37), SumParser.java (+2 -2)
  • src/slogo/parser/token: DifferenceToken.java (new 14)
odells 2013-12-09 18:16 Rev.: 286

Prints to screen! -- Courtesy of Brandon but on Sam's log

4 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+4 -4)
odells 2013-12-09 17:48 Rev.: 284

1 lines of code changed in 1 file:

  • src/slogo/parser/token: NegationToken.java (+1)
odells 2013-12-08 19:56 Rev.: 279

Can now negate numbers/variables

52 lines of code changed in 3 files:

  • src/jturtle: TurtleField.java (+2 -2)
  • src/slogo/parser: NegationParser.java (new 35)
  • src/slogo/parser/token: NegationToken.java (new 15)
odells 2013-12-08 19:12 Rev.: 278

Changed path of turtle images from src/jturtle/images/harry.gif to src/jturtle.images/harry.gif
This stops there from being an error showing up in the console but the image still doesn't appear in the window???

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -2)
odells 2013-12-06 20:13 Rev.: 260

Added Expressions addition, subtraction, multiplication, division (Division is not yet working but all the others are???)

154 lines of code changed in 6 files:

  • src/slogo/parser: DivisionParser.java (new 36), MultiplicationParser.java (new 37), SubtractionParser.java (new 36)
  • src/slogo/parser/token: DivisionToken.java (new 15), MultiplicationToken.java (new 15), SubtractionToken.java (new 15)
odells 2013-12-06 13:01 Rev.: 252

Added SUM instruction, parser, token
Added addition parser
SUM doesn't return result to screen yet
Addition not yet functional

145 lines of code changed in 5 files:

  • src/slogo/instruction: Sum.java (new 56)
  • src/slogo/parser: AdditionParser.java (new 36), SumParser.java (new 37), instructions.prop (+2 -1)
  • src/slogo/parser/token: SumToken.java (new 14)
odells 2013-12-03 14:26 Rev.: 174

Implemented the HOME instruction and added comments to new Tokens

144 lines of code changed in 11 files:

  • src/slogo/instruction: Home.java (new 54)
  • src/slogo/parser: HomeParser.java (new 32), instructions.prop (+2 -1)
  • src/slogo/parser/token: FDToken.java (+6), ForwardToken.java (+6), HomeToken.java (new 14), LeftToken.java (+6), RightToken.java (+6), SetHeadingToken.java (+6), SetXToken.java (+6), SetYToken.java (+6)

(14 more)

Generated by StatSVN 0.7.0