Directory src/slogo/parser/token/

Directory Created:
2013-11-18 09:54
Total Files:
54
Deleted Files:
0
Lines of Code:
1157

[root]/src/slogo/parser/token

Lines of Code

src/slogo/parser/token/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 64 (100.0%) 661 (100.0%) 10.3
mforrestel 35 (54.7%) 347 (52.5%) 9.9
jgoergen 15 (23.4%) 166 (25.1%) 11.0
dfisher 9 (14.1%) 97 (14.7%) 10.7
morgana 5 (7.8%) 51 (7.7%) 10.2

Most Recent Commits

mforrestel 2013-12-13 16:14 Rev.: 508

FINAL added to Alias.dat

7 lines of code changed in 1 file:

  • src/slogo/parser/token: alias.dat (+7)
mforrestel 2013-12-13 16:04 Rev.: 503

FINAL

45 lines of code changed in 3 files:

  • src/slogo/parser/token: AliasConverter.java (+36 -50), TokenFactory.java (+8 -2), alias.dat (+1 -1)
jgoergen 2013-12-13 15:19 Rev.: 494

We can toggle the dashboard view on and off now using radio buttons!

4 lines of code changed in 1 file:

  • src/slogo/parser/token: AliasConverter.java (+4 -3)
mforrestel 2013-12-13 14:29 Rev.: 488

27 lines of code changed in 1 file:

  • src/slogo/parser/token: alias.dat (+27 -31)
morgana 2013-12-13 12:42 Rev.: 472

changed ALIASLISTS to ALIASMAP

9 lines of code changed in 1 file:

  • src/slogo/parser/token: AliasConverter.java (+9 -6)
dfisher 2013-12-13 11:16 Rev.: 461

Added TOWARDS to alias and instructions

2 lines of code changed in 1 file:

  • src/slogo/parser/token: alias.dat (+2 -1)
morgana 2013-12-13 11:10 Rev.: 460

towards

13 lines of code changed in 1 file:

  • src/slogo/parser/token: TowardsToken.java (new 13)
dfisher 2013-12-13 11:08 Rev.: 457

Last of the basic commands (SETXY, HEADING, XCOR, YCOR). They all work, but when you do SETXY you get an afterwards for some reason.

56 lines of code changed in 5 files:

  • src/slogo/parser/token: HeadingToken.java (new 13), SetXYToken.java (new 13), XCorToken.java (new 13), YCorToken.java (new 13), alias.dat (+4)
mforrestel 2013-12-12 22:25 Rev.: 433

133 lines of code changed in 14 files:

  • src/slogo/parser/token: CleanToken.java (+1 -1), ClearScreenToken.java (+1 -1), DifferenceToken.java (new 13), GreaterThanToken.java (new 13), IsEqualToken.java (new 13), LessThanToken.java (new 13), NotEqualToken.java (new 13), PenDownPToken.java (+2 -2), ProductToken.java (new 13), QuotientToken.java (new 13), RemainderToken.java (new 13), SumToken.java (new 13), ToToken.java (+2 -2), alias.dat (+10 -1)
mforrestel 2013-12-12 16:14 Rev.: 397

2 lines of code changed in 1 file:

  • src/slogo/parser/token: alias.dat (+2 -2)
morgana 2013-12-12 16:11 Rev.: 396

Added Clean and Clearscreen

29 lines of code changed in 3 files:

  • src/slogo/parser/token: CleanToken.java (new 13), ClearScreenToken.java (new 13), alias.dat (+3 -1)
jgoergen 2013-12-12 14:53 Rev.: 391

I added the file input functionality, using the FileHandler class in slogo. It reads a file from the user's computer and parses it the same way batch input is parsed.

2 lines of code changed in 2 files:

  • src/slogo/parser/token: AliasConverter.java (-4), alias.dat (+2 -2)
jgoergen 2013-12-12 14:07 Rev.: 387

I changed the GUI a bit so that we can type in more than one command at a time. Next I will add a button to allow the user to upload a file to read in, a button to let the user change the background, a button to let the user change the turtle image, and a button to allow the user to turn data on/off, and buttons to let the user undo/redo.

3 lines of code changed in 1 file:

  • src/slogo/parser/token: alias.dat (+3 -3)
mforrestel 2013-12-11 21:03

60 lines of code changed in 9 files:

  • src/slogo/parser/token: BackwardToken.java (+1 -1), ForwardToken.java (+1 -1), LeftToken.java (+1 -1), PenDownPToken.java (new 13), PenDownToken.java (new 13), PenUpToken.java (new 13), RightToken.java (+1 -1), ToToken.java (new 13), alias.dat (+4 -1)
mforrestel 2013-12-11 20:08 Rev.: 356

8 lines of code changed in 1 file:

  • src/slogo/parser/token: alias.dat (+8 -5)
mforrestel 2013-12-11 10:11 Rev.: 324


13 lines of code changed in 1 file:

  • src/slogo/parser/token: IfToken.java (new 13)
jgoergen 2013-12-11 09:27 Rev.: 320

I created the ShowTurtle and HideTurtle commands, and also added some supporting methods to the JTurtle class, including hideImage and showImage to set the visibility of the polygon or image representing the turtle.

40 lines of code changed in 4 files:

  • src/slogo/parser/token: AliasConverter.java (+18 -2), HideTurtleToken.java (new 9), ShowTurtleToken.java (new 8), alias.dat (+5 -3)
jgoergen 2013-12-06 12:14 Rev.: 249

The AliasConverter is finally complete! It works for all our new commands and is super extensible for future commands we will be adding soon!

15 lines of code changed in 2 files:

  • src/slogo/parser/token: AliasConverter.java (+11 -6), alias.dat (+4 -1)
jgoergen 2013-12-06 11:21 Rev.: 246

Created the AliasConverter class that will allow our code to adhere to the Open-Closed Principle. It will allow us to add more instructions and aliases without actually editing the AliasConverter code itself. We will just need to add a few words to the file "alias.dat" to add alias and instruction options!

65 lines of code changed in 2 files:

  • src/slogo/parser/token: AliasConverter.java (new 61), alias.dat (new 4)
dfisher 2013-12-05 20:15 Rev.: 217

Adds HOME, SETX, and SETY commands, which should be working

39 lines of code changed in 3 files:

  • src/slogo/parser/token: HomeToken.java (new 13), SetXToken.java (new 13), SetYToken.java (new 13)
mforrestel 2013-12-02 13:51 Rev.: 139

Everything we did together before break

52 lines of code changed in 4 files:

  • src/slogo/parser/token: BackwardToken.java (new 13), ForwardToken.java (+13 -10), LeftToken.java (new 13), RightToken.java (new 13)
jgoergen 2013-11-27 22:54 Rev.: 57

This version goes FORWARD 50 if that is exactly what you type into the command box. I wrote in the actual comments all the things that still need fixing to make it more expandable so look for those.

37 lines of code changed in 3 files:

  • src/slogo/parser/token: ForwardToken.java (new 10), NumberToken.java (+20), TokenFactory.java (+7 -2)
sprenkle 2013-11-18 09:54 Rev.: 6

First Import

643 lines of code changed in 22 files:

  • src/slogo/parser/token: AssignmentToken.java (new 14), CharToken.java (new 55), CharTokenFactory.java (new 33), EOFToken.java (new 49), EOLToken.java (new 50), EqualToken.java (new 15), IdentifierToken.java (new 51), LeftBracketToken.java (new 15), LeftParenToken.java (new 15), MinusToken.java (new 15), NumberToken.java (new 59), PlusToken.java (new 15), PrintToken.java (new 13), RepeatToken.java (new 13), ReservedToken.java (new 42), RightBracketToken.java (new 15), RightParenToken.java (new 15), SlashToken.java (new 15), StarToken.java (new 15), Token.java (new 9), TokenFactory.java (new 79), VariableToken.java (new 41)
Generated by StatSVN 0.7.0