Directory src/slogo/parser/token/

Directory Created:
2016-11-15 10:53
Total Files:
51
Deleted Files:
1
Lines of Code:
1113

[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 46 (100.0%) 630 (100.0%) 13.6
devlinn 35 (76.1%) 485 (77.0%) 13.8
volped 8 (17.4%) 129 (20.5%) 16.1
Nika Pogrebna 3 (6.5%) 16 (2.5%) 5.3

Most Recent Commits

Nika Pogrebna 2016-12-13 03:13 Rev.: 1616

1. Changes in TurtleField: Added pop up error window if file other than .txt or .logo is chosen. Got rid of all caps.
2. Changes in SLogoInterpreter: Added pop up error window if invalid token is entered into instruction field or invalid token is in a file being parsed. ****BEWARE: this is working, however is going to show red ink in the console because of a NullPointerError. Still working on this.

1 lines of code changed in 1 file:

  • src/slogo/parser/token: TokenFactory.java (+1 -1)
volped 2016-12-12 22:28 Rev.: 1612

Added Tests, To, ToToken and ToParser. Still more tests to be completed and To still needs to be completed

9 lines of code changed in 1 file:

  • src/slogo/parser/token: ToToken.java (new 9)
devlinn 2016-12-11 17:28 Rev.: 1590

Edited EQUAL Token.

5 lines of code changed in 2 files:

  • src/slogo/parser/token: CharTokenFactory.java (-1), EqualToken.java (+5 -8)
devlinn 2016-12-11 16:28 Rev.: 1588

Added GREATER, LESS, EQUAL, and NOTEQUAL command functionality. Still need to figure out solution for two EQUAL Tokens.

66 lines of code changed in 4 files:

  • src/slogo/parser/token: GreaterToken.java (new 16), LessToken.java (new 16), NotEqualToken.java (new 17), PenDownPToken.java (new 17)
devlinn 2016-12-07 15:56 Rev.: 1185

Updated Towards Method to work correctly and fixed JTurtle's move method to SHOW turtle as default.

34 lines of code changed in 2 files:

  • src/slogo/parser/token: PenDownToken.java (new 17), PenUpToken.java (new 17)
volped 2016-12-07 15:24 Rev.: 1178

Added ClearScreen and Clean tokens, parsers, and instructions

31 lines of code changed in 2 files:

  • src/slogo/parser/token: CleanToken.java (new 16), ClearScreenToken.java (new 15)
devlinn 2016-12-07 14:58 Rev.: 1174

Edited the JTurtle's draw(Graphics g) method to only show turtle when ShowTurtle command is called, and will hide the turtle when HideTurtle is called. Added functionality for HideTurtle and ShowTurtle commands.

51 lines of code changed in 3 files:

  • src/slogo/parser/token: HeadingToken.java (new 17), HideTurtleToken.java (new 17), ShowTurtleToken.java (new 17)
volped 2016-12-07 14:44 Rev.: 1172

Moved AliasNames.java into slogo.parser package and made aliases variable in AliasNames.java a private variable and added a getter method to get it

1 lines of code changed in 2 files:

  • src/slogo/parser/token: AliasNames.java (del), TokenFactory.java (+1 -1)
Nika Pogrebna 2016-12-06 15:51 Rev.: 1034

Can read from a file!!!!! And it's a cute turtle now.

1 lines of code changed in 1 file:

  • src/slogo/parser/token: TokenFactory.java (+1 -1)
volped 2016-12-05 15:14 Rev.: 965

Changed TokenFactory to add aliases to TokenMap and refactored methods in TokenFactory and InstructionParser

23 lines of code changed in 1 file:

  • src/slogo/parser/token: TokenFactory.java (+23 -13)
devlinn 2016-12-05 14:23 Rev.: 944

Added alias tokens.

141 lines of code changed in 10 files:

  • src/slogo/parser/token: BKToken.java (+2 -2), CSToken.java (new 17), FDToken.java (+3 -1), HTToken.java (new 17), LTToken.java (new 17), PDToken.java (new 17), PUToken.java (new 17), RTToken.java (new 17), STToken.java (new 17), TowardsToken.java (new 17)
volped 2016-12-02 15:52 Rev.: 843

Added AliasNames.java and mapped aliases to their respective parsers

64 lines of code changed in 1 file:

  • src/slogo/parser/token: AliasNames.java (new 64)
devlinn 2016-12-02 15:14 Rev.: 838

Added SetXY, Xcor, and Ycor command functionality.

34 lines of code changed in 2 files:

  • src/slogo/parser/token: XcorToken.java (new 17), YcorToken.java (new 17)
devlinn 2016-11-30 23:04 Rev.: 793

Added HOME, SETX, and SETY command functionality.

60 lines of code changed in 4 files:

  • src/slogo/parser/token: HomeToken.java (new 15), SetXToken.java (new 15), SetXYToken.java (new 15), SetYToken.java (new 15)
devlinn 2016-11-30 21:52 Rev.: 791

Added Back, Left, and Right command functionality. Each command has a parser, token, and instruction, and each has been added to the instructions.prop file.

67 lines of code changed in 4 files:

  • src/slogo/parser/token: BKToken.java (new 17), BackToken.java (new 17), LeftToken.java (new 16), RightToken.java (new 17)
volped 2016-11-30 14:57 Rev.: 784

Added aliases.prop

1 lines of code changed in 1 file:

  • src/slogo/parser/token: ForwardToken.java (+1)
devlinn 2016-11-29 21:07 Rev.: 700

Added functionality for "FD" command.

13 lines of code changed in 1 file:

  • src/slogo/parser/token: FDToken.java (new 13)
devlinn 2016-11-28 15:20 Rev.: 585

Finalized evaluate method in Forward class.

1 lines of code changed in 1 file:

  • src/slogo/parser/token: ForwardToken.java (+1 -1)
sprenkle 2016-11-27 14:58 Rev.: 543

Removed unnecessary casting.

1 lines of code changed in 1 file:

  • src/slogo/parser/token: TokenFactory.java (+1 -1)
devlinn 2016-11-23 10:12 Rev.: 531

Added a ForwardToken, ForwardParser, and a Forward instruction to handle the fd command.

13 lines of code changed in 2 files:

  • src/slogo/parser/token: ForwardToken.java (new 13), IFToken.java (-3)
Nika Pogrebna 2016-11-18 15:33 Rev.: 522

Made IF Token, Parser, and Instruction classes. There are error in some of the files. We need to change expression to variable?? Maybe?? Still have to figure this out!

14 lines of code changed in 1 file:

  • src/slogo/parser/token: IFToken.java (new 14)
sprenkle 2016-11-15 10:53 Rev.: 501

Importing SLogo project for team TurboTurtle

579 lines of code changed in 18 files:

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