Directory src/slogo/parser/

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

[root]/src/slogo/parser
                directory in repo token (51 files, 1113 lines)

Lines of Code

src/slogo/parser/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 63 (100.0%) 1057 (100.0%) 16.7
devlinn 35 (55.6%) 768 (72.7%) 21.9
volped 17 (27.0%) 227 (21.5%) 13.3
Nika Pogrebna 11 (17.5%) 62 (5.9%) 5.6

Most Recent Commits

volped 2016-12-14 20:52 Rev.: 1740

Finished To

0 lines of code changed in 1 file:

  • src/slogo/parser: ToParser.java (-1)
volped 2016-12-14 15:34 Rev.: 1675

Finished To

15 lines of code changed in 2 files:

  • src/slogo/parser: InstructionParser.java (+8), ToParser.java (+7 -3)
volped 2016-12-14 13:03 Rev.: 1665

2 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+2 -1)
Nika Pogrebna 2016-12-13 16:46 Rev.: 1629

Fixed red ink in the pop up errors. We now have pop ups for: wrong file type, wrong image file type, advice on turtle image size, invalid instruction, invalid instruction in file chosen.

1 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.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

29 lines of code changed in 1 file:

  • src/slogo/parser: ToParser.java (new 29)
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.

183 lines of code changed in 6 files:

  • src/slogo/parser: EqualParser.java (new 37), GreaterParser.java (new 37), LessParser.java (new 37), NotEqualParser.java (new 37), PenDownPParser.java (new 29), instructions.prop (+6 -1)
volped 2016-12-09 17:16 Rev.: 1351

Added eraseTrail() to JTurtle and finished Clean and ClearScreen

8 lines of code changed in 2 files:

  • src/slogo/parser: aliases.prop (+5 -1), instructions.prop (+3 -1)
devlinn 2016-12-08 20:00 Rev.: 1258

Added a new class, TurtleTrailLink, to represent a link of the turtle's trail. This class also has functionality for editing the color, but it is not ready to be implemented yet. Also added to the GUI to add a panel for changing colors.

3 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+3 -1)
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.

58 lines of code changed in 2 files:

  • src/slogo/parser: PenDownParser.java (new 29), PenUpParser.java (new 29)
volped 2016-12-07 15:24 Rev.: 1178

Added ClearScreen and Clean tokens, parsers, and instructions

58 lines of code changed in 3 files:

  • src/slogo/parser: CleanParser.java (new 28), ClearScreenParser.java (new 29), aliases.prop (+1)
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.

92 lines of code changed in 4 files:

  • src/slogo/parser: HeadingParser.java (new 30), HideTurtleParser.java (new 29), ShowTurtleParser.java (new 29), instructions.prop (+4 -1)
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

59 lines of code changed in 2 files:

  • src/slogo/parser: AliasNames.java (new 57), InstructionParser.java (+2 -7)
volped 2016-12-05 15:20 Rev.: 967

Deleted print statement in InstructionParser

0 lines of code changed in 1 file:

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

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

24 lines of code changed in 2 files:

  • src/slogo/parser: InstructionParser.java (+24 -34), aliases.prop (-5)
Nika Pogrebna 2016-12-05 15:08 Rev.: 964

Deleted FDParser

0 lines of code changed in 1 file:

  • src/slogo/parser: FDParser.java (del)
Nika Pogrebna 2016-12-05 15:06 Rev.: 963

deleted FD

0 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (-1)
devlinn 2016-12-05 14:23 Rev.: 944

Added alias tokens.

40 lines of code changed in 2 files:

  • src/slogo/parser: TowardsParser.java (new 38), instructions.prop (+2 -1)
Nika Pogrebna 2016-12-03 22:14 Rev.: 863

Commented out code and wrote down what I think the problem with aliases is in InstructionParser.java

8 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+8 -1)
volped 2016-12-02 15:52 Rev.: 843

Added AliasNames.java and mapped aliases to their respective parsers

23 lines of code changed in 1 file:

  • src/slogo/parser: InstructionParser.java (+23 -1)
devlinn 2016-12-02 15:14 Rev.: 838

Added SetXY, Xcor, and Ycor command functionality.

61 lines of code changed in 4 files:

  • src/slogo/parser: SetXYParser.java (-1), XcorParser.java (new 29), YcorParser.java (new 29), instructions.prop (+3 -1)
devlinn 2016-11-30 23:04 Rev.: 793

Added HOME, SETX, and SETY command functionality.

143 lines of code changed in 5 files:

  • src/slogo/parser: HomeParser.java (new 29), SetXParser.java (new 35), SetXYParser.java (new 39), SetYParser.java (new 35), instructions.prop (+5 -1)
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.

118 lines of code changed in 5 files:

  • src/slogo/parser: BackParser.java (new 37), ForwardParser.java (+8 -3), LeftParser.java (new 35), RightParser.java (new 35), instructions.prop (+3)
volped 2016-11-30 14:57 Rev.: 784

Added aliases.prop

9 lines of code changed in 1 file:

  • src/slogo/parser: aliases.prop (new 9)
devlinn 2016-11-29 21:07 Rev.: 700

Added functionality for "FD" command.

34 lines of code changed in 2 files:

  • src/slogo/parser: FDParser.java (new 32), instructions.prop (+2 -1)
Nika Pogrebna 2016-11-29 19:19 Rev.: 674

Added TurtleContext class, edited name of turtle in Forward.java class. Instantiated the TurtleContext in TurtleField.

2 lines of code changed in 1 file:

  • src/slogo/parser: instructions.prop (+2 -1)
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: ForwardParser.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: InstructionParser.java (+1 -1)
devlinn 2016-11-25 23:11 Rev.: 535

Updated the Forward Class's Evaluate method to successfully move the JTurtle object.

1 lines of code changed in 1 file:

  • src/slogo/parser: ForwardParser.java (+1 -1)
devlinn 2016-11-23 13:54 Rev.: 532

Updated Forward class to use ArithmeticBase rather than GrammarElement.

3 lines of code changed in 1 file:

  • src/slogo/parser: ForwardParser.java (+3 -2)
devlinn 2016-11-23 10:12 Rev.: 531

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

31 lines of code changed in 1 file:

  • src/slogo/parser: ForwardParser.java (new 31)
Nika Pogrebna 2016-11-22 21:33 Rev.: 526

Fixed and tested the IF token, instructions, and parser. It finally works!

3 lines of code changed in 1 file:

  • src/slogo/parser: IFParser.java (+3 -3)
Nika Pogrebna 2016-11-22 20:37 Rev.: 525

Fixed IF.java and IFParser.java classes. I think they are good to go!

3 lines of code changed in 1 file:

  • src/slogo/parser: IFParser.java (+3 -4)
Nika Pogrebna 2016-11-22 20:04 Rev.: 524

Fixed the IF classes. I think the IFParser.java is right, but not so sure about IF.java

7 lines of code changed in 1 file:

  • src/slogo/parser: IFParser.java (+7 -5)
Nika Pogrebna 2016-11-22 19:19 Rev.: 523

Added some comments to the IF classes

5 lines of code changed in 1 file:

  • src/slogo/parser: IFParser.java (+5 -2)
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!

33 lines of code changed in 2 files:

  • src/slogo/parser: IFParser.java (new 32), instructions.prop (+1)
sprenkle 2016-11-15 10:53 Rev.: 501

Importing SLogo project for team TurboTurtle

412 lines of code changed in 11 files:

  • src/slogo/parser: AssignmentParser.java (new 38), IdentifierParser.java (new 39), InstructionNames.java (new 50), InstructionParser.java (new 87), ParseException.java (new 30), Parser.java (new 14), PrintParser.java (new 30), RepeatParser.java (new 37), StrictInstructionListParser.java (new 44), instructions.prop (new 4), package.html (new 39)
Generated by StatSVN 0.7.0