Directory src/slogo/parser/token/

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

[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 61 (100.0%) 556 (100.0%) 9.1
odells 36 (59.0%) 351 (63.1%) 9.7
taylorb 24 (39.3%) 197 (35.4%) 8.2
hardye 1 (1.6%) 8 (1.4%) 8.0

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

14 lines of code changed in 1 file:

  • 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

14 lines of code changed in 1 file:

  • src/slogo/parser/token: CleanToken.java (new 14)
taylorb 2013-12-11 17:44 Rev.: 351

towards command now implemented

15 lines of code changed in 1 file:

  • src/slogo/parser/token: TowardsToken.java (new 15)
taylorb 2013-12-11 16:24 Rev.: 346

show and hide turtle now implemented and their respective aliases have been added

31 lines of code changed in 3 files:

  • src/slogo/parser/token: Alias.txt (+3 -1), HideTurtleToken.java (new 14), ShowTurtleToken.java (new 14)
taylorb 2013-12-11 15:49 Rev.: 345

notEqual now implemented

8 lines of code changed in 1 file:

  • src/slogo/parser/token: NotEqualToken.java (new 8)
taylorb 2013-12-11 13:50 Rev.: 343

equals now implemented. will add notEqual later today

10 lines of code changed in 1 file:

  • src/slogo/parser/token: EqualsToken.java (new 10)
taylorb 2013-12-11 12:25 Rev.: 339

pendown? command now implemented

16 lines of code changed in 2 files:

  • src/slogo/parser/token: Alias.txt (+2 -1), PenDownPToken.java (new 14)
odells 2013-12-10 12:51 Rev.: 298

Added HEADING

14 lines of code changed in 1 file:

  • src/slogo/parser/token: HeadingToken.java (new 14)
odells 2013-12-10 12:44 Rev.: 296

added XCOR and YCOR instructions

28 lines of code changed in 2 files:

  • 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)

15 lines of code changed in 2 files:

  • 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

14 lines of code changed in 1 file:

  • src/slogo/parser/token: RemainderToken.java (new 14)
odells 2013-12-10 12:00 Rev.: 292

Added PRODUCT and QUOTIENT

28 lines of code changed in 2 files:

  • src/slogo/parser/token: ProductToken.java (new 14), QuotientToken.java (new 14)
odells 2013-12-09 18:32 Rev.: 287

Added DIFFERENCE instruction

14 lines of code changed in 1 file:

  • src/slogo/parser/token: DifferenceToken.java (new 14)
taylorb 2013-12-09 17:49 Rev.: 285

The output is now displayed in the command window. Defining subroutines now makes a button on the gui window under the menu Subroutines. Language Processor is primed to except input from files.

26 lines of code changed in 6 files:

  • src/slogo/parser/token: Alias.txt (+1), AliasMap.java (changed), GreaterToken.java (new 7), IfToken.java (new 7), LessToken.java (new 7), TokenFactory.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

15 lines of code changed in 1 file:

  • src/slogo/parser/token: NegationToken.java (new 15)
taylorb 2013-12-06 22:33 Rev.: 261

penup and pendown are now supported as well as their aliases

19 lines of code changed in 3 files:

  • src/slogo/parser/token: Alias.txt (+2), PenDownToken.java (new 9), PenUpToken.java (new 8)
odells 2013-12-06 20:13 Rev.: 260

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

45 lines of code changed in 3 files:

  • 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

14 lines of code changed in 1 file:

  • src/slogo/parser/token: SumToken.java (new 14)
taylorb 2013-12-04 22:30 Rev.: 206

now can add more mulitLineCommands(increased extensibility) in a manner similar to adding new instructions.

also the TO command is now supported(i.e. subroutines)

14 lines of code changed in 1 file:

  • src/slogo/parser/token: ToToken.java (new 14)
taylorb 2013-12-03 20:18 Rev.: 185

language processor can now handle multiline commands( like repeat). There is an issue with fixing mistakes on previous lines though

3 lines of code changed in 2 files:

  • src/slogo/parser/token: Alias.txt (+1), TokenFactory.java (+2)
taylorb 2013-12-03 19:45 Rev.: 182

added aliases to alias.txt (lt,rt,bwd)

4 lines of code changed in 1 file:

  • src/slogo/parser/token: Alias.txt (+4 -1)
taylorb 2013-12-03 19:39 Rev.: 181

system set up for handling aliases, currently only has fwd. Will need to edit Alias.txt to add more(must use = sign)

51 lines of code changed in 3 files:

  • src/slogo/parser/token: Alias.txt (new 2), AliasMap.java (new 48), TokenFactory.java (+1 -1)
odells 2013-12-03 14:26 Rev.: 174

Implemented the HOME instruction and added comments to new Tokens

56 lines of code changed in 8 files:

  • 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)
odells 2013-12-03 12:13 Rev.: 171

Implemented SETXY, SETX, and SETY instructions

36 lines of code changed in 4 files:

  • src/slogo/parser/token: BackToken.java (+6), SetXToken.java (new 8), SetXYToken.java (new 14), SetYToken.java (new 8)
odells 2013-12-03 08:58 Rev.: 170

Implemented BACK command

8 lines of code changed in 1 file:

  • src/slogo/parser/token: BackToken.java (new 8)
odells 2013-12-02 22:39 Rev.: 164

Implemented SETHEADING instruction

8 lines of code changed in 1 file:

  • src/slogo/parser/token: SetHeadingToken.java (new 8)
odells 2013-12-02 21:54 Rev.: 163

LEFT and RIGHT instructions fully functional

8 lines of code changed in 1 file:

  • src/slogo/parser/token: LeftToken.java (new 8)
odells 2013-12-02 14:16 Rev.: 143

Added RIGHT command

8 lines of code changed in 1 file:

  • src/slogo/parser/token: RightToken.java (new 8)
odells 2013-12-01 23:08 Rev.: 112

Yaaaaay FD works!!!

1 lines of code changed in 1 file:

  • src/slogo/parser/token: FDToken.java (+1 -1)
odells 2013-12-01 22:59 Rev.: 111

8 lines of code changed in 1 file:

  • src/slogo/parser/token: FDToken.java (new 8)
hardye 2013-11-22 14:36 Rev.: 28

Added Forward Token

8 lines of code changed in 1 file:

  • src/slogo/parser/token: ForwardToken.java (new 8)
sprenkle 2013-11-18 09:54 Rev.: 5

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