Directory src/slogo/instruction/

Directory Created:
2013-11-18 09:54
Total Files:
37
Deleted Files:
1
Lines of Code:
2101

[root]/src/slogo/instruction

Lines of Code

src/slogo/instruction/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 78 (100.0%) 1939 (100.0%) 24.8
odells 34 (43.6%) 1205 (62.1%) 35.4
taylorb 39 (50.0%) 692 (35.7%) 17.7
hardye 5 (6.4%) 42 (2.2%) 8.4

Most Recent Commits

taylorb 2013-12-13 15:23 Rev.: 495

fixed error in heading(it was trying to convert degrees to degrees) and turtle now drawn on top of the trail

1 lines of code changed in 1 file:

  • src/slogo/instruction: Heading.java (+1 -1)
taylorb 2013-12-13 12:33 Rev.: 471

did some refactoring. Also, repeat can now be chained with a sum command

24 lines of code changed in 17 files:

  • src/slogo/instruction: Back.java (+1 -1), Clean.java (+1 -1), ClearScreen.java (+1 -1), Forward.java (+4 -5), HideTurtle.java (+1 -1), Home.java (+1 -1), Left.java (+1 -1), Repeat.java (+4 -4), Right.java (+1 -3), SetHeading.java (+1 -1), SetX.java (+1 -1), SetXY.java (+1 -1), SetY.java (+1 -1), ShowTurtle.java (+1 -1), Subroutine.java (+1 -1), Sum.java (+2 -2), Towards.java (+1 -1)
taylorb 2013-12-12 16:25 Rev.: 401

clean should work now

0 lines of code changed in 1 file:

  • src/slogo/instruction: Right.java (-3)
taylorb 2013-12-12 15:47 Rev.: 393

ok so there was a slight error in right an left. Transisitioning from degrees and radians caused the degree to be off by a progressively larger amounts. heading is now saved in degrees and is handled by right and left, and turtlefield as such. Pen up and pend down are raido buttons and you run subroutines just by typeing the name ( no longer need TO)

10 lines of code changed in 2 files:

  • src/slogo/instruction: Left.java (+3 -3), Right.java (+7 -3)
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

55 lines of code changed in 1 file:

  • src/slogo/instruction: ClearScreen.java (new 55)
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

51 lines of code changed in 1 file:

  • src/slogo/instruction: Clean.java (new 51)
taylorb 2013-12-12 00:22 Rev.: 374

ok towards works for real this time haha

4 lines of code changed in 1 file:

  • src/slogo/instruction: Towards.java (+4 -3)
taylorb 2013-12-11 17:44 Rev.: 351

towards command now implemented

84 lines of code changed in 1 file:

  • src/slogo/instruction: Towards.java (new 84)
taylorb 2013-12-11 16:24 Rev.: 346

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

103 lines of code changed in 2 files:

  • src/slogo/instruction: HideTurtle.java (new 51), ShowTurtle.java (new 52)
taylorb 2013-12-11 15:49 Rev.: 345

notEqual now implemented

52 lines of code changed in 1 file:

  • src/slogo/instruction: NotEqual.java (new 52)
taylorb 2013-12-11 13:50 Rev.: 343

equals now implemented. will add notEqual later today

51 lines of code changed in 1 file:

  • src/slogo/instruction: Equals.java (new 51)
taylorb 2013-12-11 13:00 Rev.: 342

back and forward can now be chained with instructions ( sum,difference, etc)

19 lines of code changed in 2 files:

  • src/slogo/instruction: Back.java (+10 -4), Forward.java (+9 -3)
taylorb 2013-12-11 12:25 Rev.: 339

pendown? command now implemented

52 lines of code changed in 1 file:

  • src/slogo/instruction: PenDownP.java (new 52)
taylorb 2013-12-11 10:45 Rev.: 328

heading now returns degrees instead of radians

1 lines of code changed in 1 file:

  • src/slogo/instruction: Heading.java (+1 -1)
odells 2013-12-10 12:51 Rev.: 298

Added HEADING

54 lines of code changed in 2 files:

  • src/slogo/instruction: Heading.java (new 51), Home.java (+3 -4)
odells 2013-12-10 12:44 Rev.: 296

added XCOR and YCOR instructions

106 lines of code changed in 2 files:

  • src/slogo/instruction: Xcor.java (new 53), Ycor.java (new 53)
odells 2013-12-10 12:33 Rev.: 294

Added MINUS (returns negative of number)

52 lines of code changed in 1 file:

  • src/slogo/instruction: Minus.java (new 52)
odells 2013-12-10 12:13 Rev.: 293

Small edits to comments in math operations
Added REMAINDER

57 lines of code changed in 5 files:

  • src/slogo/instruction: Difference.java (-1), Product.java (-1), Quotient.java (-1), Remainder.java (new 57), Sum.java (-1)
odells 2013-12-10 12:00 Rev.: 292

Added PRODUCT and QUOTIENT

116 lines of code changed in 2 files:

  • src/slogo/instruction: Product.java (new 58), Quotient.java (new 58)
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:32 Rev.: 287

Added DIFFERENCE instruction

64 lines of code changed in 2 files:

  • src/slogo/instruction: Difference.java (new 59), Sum.java (+5 -3)
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.

191 lines of code changed in 5 files:

  • src/slogo/instruction: Greater.java (new 60), If.java (new 60), Less.java (new 60), Subroutine.java (+10), Sum.java (+1 -1)
taylorb 2013-12-06 22:33 Rev.: 261

penup and pendown are now supported as well as their aliases

41 lines of code changed in 1 file:

  • src/slogo/instruction: Pen.java (new 41)
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

56 lines of code changed in 1 file:

  • src/slogo/instruction: Sum.java (new 56)
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)

52 lines of code changed in 1 file:

  • src/slogo/instruction: Subroutine.java (new 52)
odells 2013-12-03 14:26 Rev.: 174

Implemented the HOME instruction and added comments to new Tokens

54 lines of code changed in 1 file:

  • src/slogo/instruction: Home.java (new 54)
odells 2013-12-03 12:13 Rev.: 171

Implemented SETXY, SETX, and SETY instructions

194 lines of code changed in 3 files:

  • src/slogo/instruction: SetX.java (new 64), SetXY.java (new 66), SetY.java (new 64)
odells 2013-12-03 08:58 Rev.: 170

Implemented BACK command

57 lines of code changed in 2 files:

  • src/slogo/instruction: Back.java (new 56), Forward.java (+1 -2)
odells 2013-12-02 22:39 Rev.: 164

Implemented SETHEADING instruction

56 lines of code changed in 1 file:

  • src/slogo/instruction: SetHeading.java (new 56)
odells 2013-12-02 21:54 Rev.: 163

LEFT and RIGHT instructions fully functional

65 lines of code changed in 2 files:

  • src/slogo/instruction: Left.java (new 59), Right.java (+6 -4)
odells 2013-12-02 14:16 Rev.: 143

Added RIGHT command

57 lines of code changed in 1 file:

  • src/slogo/instruction: Right.java (new 57)
odells 2013-12-01 23:08 Rev.: 112

Yaaaaay FD works!!!

4 lines of code changed in 1 file:

  • src/slogo/instruction: FD.java (+4 -4)
odells 2013-12-01 22:59 Rev.: 111

0 lines of code changed in 2 files:

  • src/slogo/instruction: FD.java (-2), Forward.java (-2)
odells 2013-12-01 22:52 Rev.: 109

Added FD instruction

58 lines of code changed in 1 file:

  • src/slogo/instruction: FD.java (new 58)
taylorb 2013-11-26 16:54 Rev.: 52

I changed Forward and Forward parser to make them closer to Print and Print parser because I don't think we needed forward will need an instruction list.
Also I abstracted the handling of the user input to a languageProcessor class that takes a SLogoParser as a parameter( the myParser from TurtleField)

7 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (+7 -6)
hardye 2013-11-22 15:40 Rev.: 33

ForwardParser class

1 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (+1 -1)
hardye 2013-11-22 15:31 Rev.: 32

3 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (+3 -1)
odells 2013-11-22 15:10 Rev.: 31

Not sure how to pass in Turtle/use Context in Evaluate method???

7 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (+7 -7)
odells 2013-11-22 14:36 Rev.: 29

Starting to edit Forward instruction; still need to finish the evaluate methood.

42 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (+42 -5)
hardye 2013-11-22 14:22



38 lines of code changed in 3 files:

  • src/slogo/instruction: Forward.java (new 19), ForwardInstruction.java (del)

(1 more)

Generated by StatSVN 0.7.0