How do I move the turtle in LOGO? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T18:41:32Zhttp://stackoverflow.com/feeds/question/1003841http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo134How do I move the turtle in LOGO?Joel Spolsky2009-06-16T20:42:06Z2009-11-06T04:07:08Z
<p>How do I move the <a href="http://en.wikipedia.org/wiki/Turtle%5Fgraphics" rel="nofollow">turtle</a> in <a href="http://en.wikipedia.org/wiki/Logo%5F%28programming%5Flanguage%29" rel="nofollow">LOGO</a>?</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003846#100384640Answer by RichieHindle for How do I move the turtle in LOGO?RichieHindle2009-06-16T20:43:37Z2009-06-18T12:25:27Z<p>Logo is <strong>all about</strong> moving the turtle... you give it <a href="http://en.wikipedia.org/wiki/Logo%5F%28programming%5Flanguage%29#Syntax" rel="nofollow">commands</a> like this:</p>
<pre><code>Forward 100
Right 45
</code></pre>
<p>You can do stuff like repeating commands too:</p>
<pre><code>Repeat 8 [Forward 100 Right 45] ; Draw an octagon
</code></pre>
<p>(What do I win? 8-)</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003848#100384810Answer by zvolkov for How do I move the turtle in LOGO?zvolkov2009-06-16T20:44:47Z2009-06-18T14:08:28Z<p>It runs when you say <a href="http://boo.codehaus.org/" rel="nofollow">Boo</a>!</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003850#100385010Answer by xenon for How do I move the turtle in LOGO?xenon2009-06-16T20:45:47Z2009-06-19T00:26:29Z<p>Whoa! Is it still around?</p>
<pre><code>fd 300 // Forward
rt 90 // Right 90°
fd 300
lt 90 // Left 90°
</code></pre>
<p>That used to work.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003856#1003856144Answer by RSolberg for How do I move the turtle in LOGO?RSolberg2009-06-16T20:46:38Z2009-06-17T16:02:08Z<pre><code>//FORWARD
FD 75
//RIGHT
RT 54
//LEFT
LT 21
//BACKWARD
BK 17
</code></pre>
<p>Check out some other turtle commands found <a href="http://gaza.freehosting.net/logo/index.html" rel="nofollow">here</a>...<br />
<hr></p>
<h1>Turtle Commands</h1>
<p><strong>BACK ## [<em>BK</em>]</strong> - Move turtle back<br><br>
<strong>BACKGROUND ## [<em>BG</em>]</strong> - Set Background color (0-15)</p>
<ul>
<li>0 - Black</li>
<li>1 - White </li>
<li>2 - Red</li>
<li>3 - Cyan</li>
<li>4 - Purple </li>
<li>5 - Green</li>
<li>6 - Blue</li>
<li>7 - Yellow</li>
<li>8 - Orange</li>
<li>9 - Brown</li>
<li>10 - Light Red</li>
<li>11 - Grey 1</li>
<li>12 - Grey 2</li>
<li>13 - Light Green</li>
<li>14 - Light Blue</li>
<li>15 - Grey 3</li>
</ul>
<p><strong>CLEARSCREEN [<em>CS</em>]</strong> - Clear Screen without moving turtle<br><br>
<strong>DRAW</strong> - Clear Screen and take turtle home<br><br>
<strong>EACH</strong> - Tell several sprites, whose numbers are in a list, to accept commands
in a second list. EG. EACH [1 2] [SQUARE 10]<br><br>
<strong>FORWARD ## [<em>FD</em>]</strong> - Move turtle forward<br><br>
<strong>FULLSCREEN</strong> - Full graphics screen (same as pressing F5)<br><br>
<strong>HEADING</strong> - Output turtle heading as a number (0-359)<br><br>
<strong>HIDETURTLE [<em>HT</em>]</strong> - Make turtle invisible<br><br>
<strong>HOME</strong> - Move turtle to center of screen pointing up<br><br>
<strong>LEFT [<em>LT</em>]</strong> - Turn turtle left<br><br>
<strong>NODRAW [<em>ND</em>]</strong> - Enter text mode with clear screen<br><br>
<strong>NOWRAP</strong> - Prevent drawings from wrapping around screen<br><br>
<strong>PENCOLOR [<em>PC</em>]</strong> - Change pen color<br><br>
<strong>PENDOWN [<em>PD</em>]</strong> - Turtle leaves trail<br><br>
<strong>PENUP [<em>PU</em>]</strong> - Turtle ceases to leave trail<br><br>
<strong>RIGHT ## [<em>RT</em>]</strong> - Turn turtle right<br><br>
<strong>SETHEADING</strong> <strong>[<em>SETH</em>]</strong> - Set turtle heading eg. SETH 180<br><br>
<strong>SETSHAPE</strong> - Set the current sprite shape (0-7)<br><br>
<strong>SETX</strong> Move the turtle to the specified x co-ordinates Eg. SETX 50<br><br>
<strong>SETXY</strong> Move the turtle to the specified x, y co-ordinates Eg. SETXY 50 50<br><br>
<strong>SETY</strong> Move the turtle to the specified y co-ordinate Eg. SETY 50<br><br>
<strong>SHAPE</strong> - Output number of current sprite's shape<br><br>
<strong>SHOWTURTLE [<em>ST</em>]</strong> - Make turtle visible<br><br>
<strong>SPLITSCREEN</strong> - Mixed graphics and text screen (same as pressing F3)<br><br>
<strong>STAMPCHAR</strong> - Make the turtle stamp a character at the current location Eg. STAMPCHAR "A<br><br>
<strong>TELL</strong> - Tell designated sprite to receive commands. EG. TELL 2<br><br>
<strong>TEXTSCREEN</strong> - Use whole screen for text (same as pressing F1)<br><br>
<strong>TOWARDS</strong> - Output heading for turtle to face an X,Y co-ordinate. Eg. TOWARDS 0 0<br><br>
<strong>WRAP</strong> - Make turtle drawings wrap around the screen<br><br>
<strong>XCOR</strong> - Output current x co-ordinate of turtle<br><br>
<strong>YCOR</strong> - Output current y co-ordinate of turtle<br><br>
<strong>ASPECT</strong> - Set verticle screen scale factor, default is 0.76</p>
<p><hr>
<em>Samples taken directly from website: <a href="http://gaza.freehosting.net/logo/index.html" rel="nofollow">http://gaza.freehosting.net/logo/index.html</a></em></p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003858#10038584Answer by neesh for How do I move the turtle in LOGO?neesh2009-06-16T20:46:45Z2009-06-16T20:46:45Z<p>try: bk(back), fd(forward), ld(left turn in degrees), rt(right turn)</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003875#100387523Answer by abelenky for How do I move the turtle in LOGO?abelenky2009-06-16T20:50:18Z2009-06-16T20:50:18Z<p>Don't forget PENUP and PENDOWN. Otherwise you'll move the turtle, but not see his track.
Also change the color of the pen, and the background color of the paper.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003886#1003886159Answer by Greg for How do I move the turtle in LOGO?Greg2009-06-16T20:53:09Z2009-06-16T20:53:09Z<p>The first thing you have to do is write tests, then you can worry about moving the turtle.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003891#10038918Answer by Sam for How do I move the turtle in LOGO?Sam2009-06-16T20:54:50Z2009-06-16T20:54:50Z<p>You go here...
<a href="http://www.sonic.net/~nbs/webturtle/webturtle.cgi" rel="nofollow">http://www.sonic.net/~nbs/webturtle/webturtle.cgi</a></p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1003910#100391010Answer by sheepsimulator for How do I move the turtle in LOGO?sheepsimulator2009-06-16T20:59:56Z2009-06-16T21:38:25Z<p>This seems somewhat philosophical - is the turtle an inherent part of the language, or part of its library? Ie., is the turtle more part of a LOGO library that exists only in interpreter-land, or is the turtle part of the LOGO language itself?</p>
<p>If we're speaking in terms of the language definition, I guess no, there really isn't a way to move the turtle. If we're speaking about an actual interpreted LOGO program, any of the answers where others describe turtle commands are valid.</p>
<p>I'm a pragmatist though, and thus like the idea of speaking of a concrete LOGO entity. That, of course, allows you to move the turtle using turtle commands.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1012072#10120724Answer by Colin Pickard for How do I move the turtle in LOGO?Colin Pickard2009-06-18T11:06:35Z2009-06-18T11:06:35Z<p>Try the story about the dying kid and the firefighters. You might need to adapt it slightly.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1012534#101253437Answer by Ryan for How do I move the turtle in LOGO?Ryan2009-06-18T13:05:37Z2009-06-18T13:05:37Z<p>i like turtles</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1016023#10160231Answer by Pure.Krome for How do I move the turtle in LOGO?Pure.Krome2009-06-19T01:48:46Z2009-06-19T01:48:46Z<p><a href="http://www.youtube.com/watch?v=CMNry4PE93Y" rel="nofollow">Zombie kid loves turtles</a>, too :)</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1017384#10173845Answer by Grzegorz Gierlik for How do I move the turtle in LOGO?Grzegorz Gierlik2009-06-19T10:57:14Z2009-06-19T10:57:14Z<p>I've seen a few LOGO implementations where you can use localized commands like:</p>
<ul>
<li>NAPRZOD (FORWARD), </li>
<li>LEWO (LEFT), </li>
<li>PRAWO (RIGTH) </li>
</ul>
<p>or even NAPRZÓD (with Polish letter Ó).</p>
<p>LOGO is nice language to teach kids programming in their native spoken language.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1017650#10176503Answer by Pete Kirkham for How do I move the turtle in LOGO?Pete Kirkham2009-06-19T12:18:25Z2009-06-19T12:18:25Z<p><a href="http://www.coldbacon.com/writing/borges-quixote.html" rel="nofollow">“Ne craignez point, monsieur, la tortue”</a>
Leibniz ( do not fear the turtle )</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1018686#10186866Answer by Dinah for How do I move the turtle in LOGO?Dinah2009-06-19T15:45:15Z2009-06-19T15:45:15Z<p>Have you tried <a href="http://thedailywtf.com/Articles/Straight_Shooter_for_Upper_Management.aspx" rel="nofollow">JavaScript?</a></p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1018722#101872218Answer by mgb for How do I move the turtle in LOGO?mgb2009-06-19T15:53:11Z2009-06-19T15:53:11Z<p>A croquet mallet ?</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038064#103806432Answer by Steve Hanov for How do I move the turtle in LOGO?Steve Hanov2009-06-24T12:30:45Z2009-06-24T12:52:57Z<p>First, you have to understand that there is a lot of legacy turtle-moving code at Fog Creek in VBScript. This code contains <em>years</em> of bugfixes and special cases for turtle-moving. If you re-write it from scratch you are asking for disaster. Plus, it would set back the next release by months. Customers want new features, such as new turtle shapes and 3D motion, and they literally <em>don't care</em> what the code looks like. <em>They just want to move their turtle.</em> </p>
<p>It's <a href="http://www.joelonsoftware.com/items/2006/09/01b.html" rel="nofollow">actually easier</a> to write your own compiler to translate your legacy code into Logo. This allows you to add other features to the language that VBScript didn't originally support, like Excel macros. It's not that hard, as long as you hire someone smart.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038187#10381874Answer by ck for How do I move the turtle in LOGO?ck2009-06-24T12:55:24Z2009-06-24T12:55:24Z<p>If you've got one of the actual robotic ones (we did at school) then a good "foot up the behind" gets it moving pretty well.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038197#10381970Answer by Sharkey for How do I move the turtle in LOGO?Sharkey2009-06-24T12:58:32Z2009-06-24T12:58:32Z<p>You cannot move the turtle. The turtle must move itself.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038293#103829319Answer by fivaproldje for How do I move the turtle in LOGO?fivaproldje2009-06-24T13:21:47Z2009-06-24T13:21:47Z<p>Boy: Do not try to move the turtle; that's impossible. Instead, only try to realize the truth.<br>
Joel: What truth?<br>
Boy: There is no turtle.<br>
Joel: There is no turtle?<br>
Boy: Then you will see, it is not the turtle that moves, it is only yourself.<br></p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038446#10384463Answer by boost for How do I move the turtle in LOGO?boost2009-06-24T13:43:04Z2009-06-24T13:43:04Z<p>There is an art to moving the turtle, or rather a knack. The idea is to throw the paper at the turtle ...</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038483#10384830Answer by Aif for How do I move the turtle in LOGO?Aif2009-06-24T13:46:41Z2009-06-24T13:46:41Z<p>Create your own logo language is a good exercise to learn writting a lexer and a parser by the way.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038554#10385541Answer by Adrian for How do I move the turtle in LOGO?Adrian2009-06-24T13:57:54Z2009-06-24T13:57:54Z<p><a href="http://msdn.microsoft.com/en-us/devlabs/cc950524.aspx" rel="nofollow">SmallBasic</a> has a Turtle too.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1051232#10512321Answer by tim for How do I move the turtle in LOGO?tim2009-06-26T20:50:35Z2009-06-26T20:50:35Z<p>Of course, when using Logo to tell turtles to do things you might want to use the shell and you would use TortoiseSVN for the source repository.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1051314#10513149Answer by Smandoli for How do I move the turtle in LOGO?Smandoli2009-06-26T21:13:58Z2009-06-26T21:13:58Z<p>How do you move the turtle in LO</p>
<p>GO? That's not a language we know.</p>
<p>Can turtle still move, if language is dead?</p>
<p>Can language still move, if syntax is shed?</p>
<p>Or maybe a new kind of language instead!</p>
<p>Okay if the movement is just in my head?</p>
<p>How do you move the turtle in LO</p>
<p>GO? ... you could try STACKOVERFLOW.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1051361#10513610Answer by Justanotheraspiringdev for How do I move the turtle in LOGO?Justanotheraspiringdev2009-06-26T21:30:22Z2009-11-06T04:07:08Z<p>This brings back lots of memories... so many school breaks spent alone in the room with the computers, programming without knowing what the heck i was exactly doing.</p>
<p>Good times.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1052600#10526002Answer by dlamblin for How do I move the turtle in LOGO?dlamblin2009-06-27T10:46:21Z2009-06-27T10:46:21Z<p>By issuing commands in the correct syntax. E.G.:</p>
<pre><code>forward 100
</code></pre>
<p>There is only one necessary command to move the turtle. It is <code>forward</code> which has the mnemonic <code>fd</code>. When working with a robot (real) turtle as opposed to a graphics based (virtual) one, you might find that the turning commands <code>left</code> and <code>right</code> [<code>lt</code> & <code>rt</code>] move the turtle a little, accidentally.</p>
<p>Most <a href="http://www.dmoz.org/Computers/Programming/Languages/Lisp/Logo/Implementations/" rel="nofollow">implementations</a> also allow the command <code>backwards</code> [<code>bk</code>].</p>
<p>When the turtle moves, it may draw a line as it goes depending on whether the pen is up or down at the time, and whether the current pen color is different from the background color.</p>
<p>A graphics based (virtual) turtle can also jump around the screen with <code>setx</code>, <code>sety</code>, and <code>setxy</code></p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1061533#10615331Answer by Dave Markle for How do I move the turtle in LOGO?Dave Markle2009-06-30T03:04:44Z2009-07-13T15:06:58Z<p>First, you will need to somehow load the core Win32 APIs from User32.dll as external functions so you can create a graphics context from the window where you want the turtle to be. I myself do not know how to do this with LOGO, but I know there are some other experts which are willing to help you out here. Note that LOGO is an old language, so if you are working in a 16 bit environment, you will likely need to properly thunk the appropriate DLLs. Next, you will need to load the turtle bitmap from your resource file, or alternatively, from your executable should your resources be direct-compiled into your build artifacts. </p>
<p>Now be careful about your resources here. If you don't properly dispose of your graphics contexts, bitmaps, and pens, your Windows machine could run out of handles. Next, you'll want to intercept the WM_PAINT message and then check against your main timer routine to make sure that it's time for the turtle to move. Take care not to call a turtle moving procedure from a worker thread, or you could experience stability problems, especially if you try to marshal your resources across thread boundaries. </p>
<p>Now then, it is important to understand that you will need to repaint any areas of the turtle, once moved, if and when your window's area is invalidated. In order to do this efficiently, you will need to use the parameters supplied with the WM_PAINT message to properly establish your clipping rectangle so that performance does not suffer if only a small region of your window is invalidated.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1061741#10617414Answer by boost for How do I move the turtle in LOGO?boost2009-06-30T04:33:33Z2009-06-30T04:33:33Z<p>Ask not what the turtle can do for you, but what you can do for the turtle.</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1132100#11321001Answer by Rob Wells for How do I move the turtle in LOGO?Rob Wells2009-07-15T15:23:10Z2009-07-15T15:23:10Z<p>I'd start by first working my way through K&R C to improve your programming skills! ;-)</p>
http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1544615#15446151Answer by unknown (google) for How do I move the turtle in LOGO?unknown (google)2009-10-09T15:49:03Z2009-10-09T15:49:03Z<p>Use the force, Joel. Use the force.</p>