Directory src/slogo/instruction/

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

[root]/src/slogo/instruction

Lines of Code

src/slogo/instruction/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 74 (100.0%) 1635 (100.0%) 22.0
mforrestel 48 (64.9%) 945 (57.8%) 19.6
dfisher 13 (17.6%) 444 (27.2%) 34.1
morgana 7 (9.5%) 154 (9.4%) 22.0
jgoergen 6 (8.1%) 92 (5.6%) 15.3

Most Recent Commits

mforrestel 2013-12-13 16:04 Rev.: 503

FINAL

51 lines of code changed in 14 files:

  • src/slogo/instruction: Assignment.java (+4 -4), Clean.java (+6 -5), ClearScreen.java (+3 -2), GreaterThan.java (+8 -11), Heading.java (+2 -1), NotEqual.java (+5 -4), PenDown.java (+1 -1), PenDownP.java (+1 -1), PenUp.java (+1 -1), Repeat.java (+1 -1), SetXY.java (+7 -6), Towards.java (+6 -5), XCor.java (+1 -1), YCor.java (+5 -5)
mforrestel 2013-12-13 12:22 Rev.: 468

changed all constructor that were previously Expression to GrammarElemnt and .value(c) to .evaluate(c) and had to cast some newly changed GrammarElements to (double) when using .evaluate(c)

101 lines of code changed in 13 files:

  • src/slogo/instruction: Backward.java (+5 -5), Forward.java (+4 -3), Home.java (+3 -2), Left.java (+6 -5), PenDownP.java (+10 -10), PenUp.java (+10 -10), Print.java (+5 -6), Product.java (+8 -8), Repeat.java (+5 -5), Right.java (+17 -16), SetX.java (+13 -13), SetY.java (+6 -5), Sum.java (+9 -8)
dfisher 2013-12-13 11:20 Rev.: 465

Changed Heading so it returns degrees

1 lines of code changed in 1 file:

  • src/slogo/instruction: Heading.java (+1 -1)
morgana 2013-12-13 11:09 Rev.: 459

towards

62 lines of code changed in 1 file:

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

176 lines of code changed in 4 files:

  • src/slogo/instruction: Heading.java (new 40), SetXY.java (new 54), XCor.java (new 41), YCor.java (new 41)
mforrestel 2013-12-12 22:25 Rev.: 432

407 lines of code changed in 10 files:

  • src/slogo/instruction: Difference.java (new 47), IsEqual.java (new 51), LessThan.java (new 51), Minus.java (new 5), NotEqual.java (new 50), Product.java (new 47), Quotient.java (new 48), Remainder.java (new 49), Subroutine.java (+12 -19), Sum.java (new 47)
mforrestel 2013-12-12 22:25 Rev.: 431

Less than

56 lines of code changed in 1 file:

  • src/slogo/instruction: GreaterThan.java (new 56)
morgana 2013-12-12 16:11 Rev.: 396

Added Clean and Clearscreen

88 lines of code changed in 2 files:

  • src/slogo/instruction: Clean.java (new 44), ClearScreen.java (new 44)
mforrestel 2013-12-11 21:05 Rev.: 363

132 lines of code changed in 6 files:

  • src/slogo/instruction: Assignment.java (+1 -1), Backward.java (+1), Home.java (+1 -2), PenDown.java (new 43), PenDownP.java (new 43), PenUp.java (new 43)
mforrestel 2013-12-11 19:18 Rev.: 352

Commit with errors

1 lines of code changed in 1 file:

  • src/slogo/instruction: Assignment.java (+1 -1)
mforrestel 2013-12-11 16:37 Rev.: 348


60 lines of code changed in 1 file:

  • src/slogo/instruction: Subroutine.java (new 60)
mforrestel 2013-12-11 10:10 Rev.: 322

68 lines of code changed in 1 file:

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

43 lines of code changed in 3 files:

  • src/slogo/instruction: Backward.java (-2), SetX.java (+1 -3), ShowTurtle.java (new 42)
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!

0 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (-2)
dfisher 2013-12-05 20:30 Rev.: 218

Changed left and right so they do what they are supposed to (turn left or right x degrees).

8 lines of code changed in 2 files:

  • src/slogo/instruction: Left.java (+4 -4), Right.java (+4 -4)
dfisher 2013-12-05 20:15 Rev.: 217

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

151 lines of code changed in 3 files:

  • src/slogo/instruction: Home.java (new 45), SetX.java (new 53), SetY.java (new 53)
morgana 2013-12-05 19:30 Rev.: 214

Fixed Context issues (hopefully)

4 lines of code changed in 4 files:

  • src/slogo/instruction: Backward.java (+1 -1), Forward.java (+1 -1), Left.java (+1 -1), Right.java (+1 -1)
dfisher 2013-12-03 20:22 Rev.: 186

108 lines of code changed in 3 files:

  • src/slogo/instruction: Backward.java (+8 -8), Left.java (new 50), Right.java (new 50)
jgoergen 2013-12-02 14:19 Rev.: 144

1 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (+1 -1)
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.

48 lines of code changed in 1 file:

  • src/slogo/instruction: Forward.java (new 48)
mforrestel 2013-11-21 22:51 Rev.: 23

69 lines of code changed in 1 file:

  • src/slogo/instruction: Backward.java (new 69)
sprenkle 2013-11-18 09:54 Rev.: 6

First Import

276 lines of code changed in 5 files:

  • src/slogo/instruction: Assignment.java (new 63), Instruction.java (new 16), Print.java (new 49), Repeat.java (new 68), StrictInstructionList.java (new 80)
Generated by StatSVN 0.7.0