Directory src/jturtle/

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

[root]/src/jturtle
            directory in repo images (3 files, 47 lines)

Lines of Code

src/jturtle/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 52 (100.0%) 1098 (100.0%) 21.1
hardye 19 (36.5%) 624 (56.8%) 32.8
taylorb 28 (53.8%) 453 (41.3%) 16.1
odells 5 (9.6%) 21 (1.9%) 4.2

Most Recent Commits

taylorb 2013-12-14 09:29 Rev.: 536

load and save now put into menus to make sure they can be seen on any screen size

30 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+30 -24)
taylorb 2013-12-13 17:31 Rev.: 521

final implementation!!!

0 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (-1)
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

2 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+2 -8)
taylorb 2013-12-13 13:26 Rev.: 483

changing linewidth works as intended now

17 lines of code changed in 3 files:

  • src/jturtle: JTurtle.java (+2 -3), TrailProperties.java (+8 -2), TurtleField.java (+7 -24)
taylorb 2013-12-13 12:33 Rev.: 471

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

3 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+2 -1), TurtleField.java (+1 -1)
taylorb 2013-12-13 11:04 Rev.: 456

trailProperties now works as intended, when user changes line color/ type only the lines drawn after that point have the changes!

75 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+54 -23), TrailProperties.java (+21)
hardye 2013-12-12 23:40 Rev.: 445

added the class trail properties to separate out the line width, color, and dashed

110 lines of code changed in 3 files:

  • src/jturtle: JTurtle.java (+46 -50), TrailProperties.java (new 52), TurtleField.java (+12 -7)
taylorb 2013-12-12 16:30 Rev.: 403

turtle now draws line correctly after clean command

8 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+8 -5)
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)

12 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+3 -1), TurtleField.java (+9 -9)
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

12 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+12)
odells 2013-12-12 13:02 Rev.: 385

Got rid of "purple" as a color option and replaced it with cyan; purple was not a valid color choice (returned ColorNull and did not draw)

1 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+1 -1)
taylorb 2013-12-11 16:24 Rev.: 346

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

6 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+6 -1)
taylorb 2013-12-11 12:25 Rev.: 339

pendown? command now implemented

3 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+3)
taylorb 2013-12-10 22:54 Rev.: 313

43 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+43 -6)
taylorb 2013-12-10 12:50 Rev.: 297

subroutines now added to menu as they are defined

5 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+5)
taylorb 2013-12-10 12:38 Rev.: 295

added subroutine menu

19 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+19 -5)
hardye 2013-12-09 22:57 Rev.: 290

added dashed and solid properties to the trail

30 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+13), TurtleField.java (+17 -3)
odells 2013-12-09 18:16 Rev.: 286

Prints to screen! -- Courtesy of Brandon but on Sam's log

4 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+4 -4)
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.

8 lines of code changed in 1 file:

  • src/jturtle: LanguageProcessorListener.java (new 8)
hardye 2013-12-09 16:42 Rev.: 283

Choosing a color works!!!! and so do the changing turtle images. Something wrong with the way the GUI displays the panels but will come back to that

79 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+10 -3), TurtleField.java (+69 -56)
odells 2013-12-08 19:56 Rev.: 279

Can now negate numbers/variables

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -2)
odells 2013-12-08 19:12 Rev.: 278

Changed path of turtle images from src/jturtle/images/harry.gif to src/jturtle.images/harry.gif
This stops there from being an error showing up in the console but the image still doesn't appear in the window???

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -2)
hardye 2013-12-08 15:55 Rev.: 277

adjusted the gui and fixed the different turtle images

79 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+2 -2), TurtleField.java (+77 -29)
hardye 2013-12-07 22:30 Rev.: 267

the changing the turtle image now works, the GUI layout looks funny still working on that but just wanted to show you what i've done so far

35 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+35 -15)
hardye 2013-12-07 21:49 Rev.: 264

Something weird happened with commit but...
Slider that adjusts the width of the turtle's trail and new turtle image

5 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+5 -2)
hardye 2013-12-07 21:47 Rev.: 263

Slider that adjusts the width of the turtle's trail and new turtle image

80 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+80 -20)
hardye 2013-12-07 16:25 Rev.: 262

Changed the look and feel of the window
Added a drop down menu with different turtle images...currently commented out because breaks the code

154 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+154 -7)
taylorb 2013-12-06 22:33 Rev.: 261

penup and pendown are now supported as well as their aliases

43 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+43 -16)
taylorb 2013-12-06 13:33 Rev.: 253

turtle now draws a line

43 lines of code changed in 2 files:

  • src/jturtle: JTurtle.java (+40 -24), TurtleField.java (+3)
taylorb 2013-12-03 20:31 Rev.: 188

fixed some kinks in the languageProcessor class, works as expected now

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -2)
taylorb 2013-12-02 01:34 Rev.: 115

This version has a separate window for the command line, and the enter key executes the command

58 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+58 -6)
taylorb 2013-12-01 23:08 Rev.: 113

13 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+13 -6)
hardye 2013-12-01 22:55 Rev.: 110

removed unused imports

1 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+1 -1)
hardye 2013-12-01 22:48 Rev.: 107

Tried to draw the trail.......

22 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+22 -1)
hardye 2013-12-01 21:30 Rev.: 96

8 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+8 -4)
taylorb 2013-12-01 21:23 Rev.: 95

2 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+2 -1)
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)

15 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+15 -24)
taylorb 2013-11-22 16:29 Rev.: 35

This version has a rough input window for the user using a JTextArea pressing Execute submits command

46 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+46 -4)
hardye 2013-11-22 16:07 Rev.: 34

Changed MAIN_TURTLE_NAME in the TurtleField to be "harry" and in the Context class made public static final MAIN_TURTLE_NAME = TurtleField.MAIN_TURTLE_NAME

3 lines of code changed in 1 file:

  • src/jturtle: TurtleField.java (+3 -2)
hardye 2013-11-22 15:31 Rev.: 32

8 lines of code changed in 1 file:

  • src/jturtle: JTurtle.java (+8)

(2 more)

Generated by StatSVN 0.7.0