How do I move the turtle in LOGO? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:41:32Z http://stackoverflow.com/feeds/question/1003841 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo 134 How do I move the turtle in LOGO? Joel Spolsky 2009-06-16T20:42:06Z 2009-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#1003846 40 Answer by RichieHindle for How do I move the turtle in LOGO? RichieHindle 2009-06-16T20:43:37Z 2009-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#1003848 10 Answer by zvolkov for How do I move the turtle in LOGO? zvolkov 2009-06-16T20:44:47Z 2009-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#1003850 10 Answer by xenon for How do I move the turtle in LOGO? xenon 2009-06-16T20:45:47Z 2009-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#1003856 144 Answer by RSolberg for How do I move the turtle in LOGO? RSolberg 2009-06-16T20:46:38Z 2009-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#1003858 4 Answer by neesh for How do I move the turtle in LOGO? neesh 2009-06-16T20:46:45Z 2009-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#1003875 23 Answer by abelenky for How do I move the turtle in LOGO? abelenky 2009-06-16T20:50:18Z 2009-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#1003886 159 Answer by Greg for How do I move the turtle in LOGO? Greg 2009-06-16T20:53:09Z 2009-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#1003891 8 Answer by Sam for How do I move the turtle in LOGO? Sam 2009-06-16T20:54:50Z 2009-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#1003910 10 Answer by sheepsimulator for How do I move the turtle in LOGO? sheepsimulator 2009-06-16T20:59:56Z 2009-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#1012072 4 Answer by Colin Pickard for How do I move the turtle in LOGO? Colin Pickard 2009-06-18T11:06:35Z 2009-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#1012534 37 Answer by Ryan for How do I move the turtle in LOGO? Ryan 2009-06-18T13:05:37Z 2009-06-18T13:05:37Z <p>i like turtles</p> http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1016023#1016023 1 Answer by Pure.Krome for How do I move the turtle in LOGO? Pure.Krome 2009-06-19T01:48:46Z 2009-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#1017384 5 Answer by Grzegorz Gierlik for How do I move the turtle in LOGO? Grzegorz Gierlik 2009-06-19T10:57:14Z 2009-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#1017650 3 Answer by Pete Kirkham for How do I move the turtle in LOGO? Pete Kirkham 2009-06-19T12:18:25Z 2009-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#1018686 6 Answer by Dinah for How do I move the turtle in LOGO? Dinah 2009-06-19T15:45:15Z 2009-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#1018722 18 Answer by mgb for How do I move the turtle in LOGO? mgb 2009-06-19T15:53:11Z 2009-06-19T15:53:11Z <p>A croquet mallet ?</p> http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1038064#1038064 32 Answer by Steve Hanov for How do I move the turtle in LOGO? Steve Hanov 2009-06-24T12:30:45Z 2009-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#1038187 4 Answer by ck for How do I move the turtle in LOGO? ck 2009-06-24T12:55:24Z 2009-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#1038197 0 Answer by Sharkey for How do I move the turtle in LOGO? Sharkey 2009-06-24T12:58:32Z 2009-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#1038293 19 Answer by fivaproldje for How do I move the turtle in LOGO? fivaproldje 2009-06-24T13:21:47Z 2009-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#1038446 3 Answer by boost for How do I move the turtle in LOGO? boost 2009-06-24T13:43:04Z 2009-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#1038483 0 Answer by Aif for How do I move the turtle in LOGO? Aif 2009-06-24T13:46:41Z 2009-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#1038554 1 Answer by Adrian for How do I move the turtle in LOGO? Adrian 2009-06-24T13:57:54Z 2009-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#1051232 1 Answer by tim for How do I move the turtle in LOGO? tim 2009-06-26T20:50:35Z 2009-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#1051314 9 Answer by Smandoli for How do I move the turtle in LOGO? Smandoli 2009-06-26T21:13:58Z 2009-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#1051361 0 Answer by Justanotheraspiringdev for How do I move the turtle in LOGO? Justanotheraspiringdev 2009-06-26T21:30:22Z 2009-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#1052600 2 Answer by dlamblin for How do I move the turtle in LOGO? dlamblin 2009-06-27T10:46:21Z 2009-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> &amp; <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#1061533 1 Answer by Dave Markle for How do I move the turtle in LOGO? Dave Markle 2009-06-30T03:04:44Z 2009-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#1061741 4 Answer by boost for How do I move the turtle in LOGO? boost 2009-06-30T04:33:33Z 2009-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#1132100 1 Answer by Rob Wells for How do I move the turtle in LOGO? Rob Wells 2009-07-15T15:23:10Z 2009-07-15T15:23:10Z <p>I'd start by first working my way through K&amp;R C to improve your programming skills! ;-)</p> http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo/1544615#1544615 1 Answer by unknown (google) for How do I move the turtle in LOGO? unknown (google) 2009-10-09T15:49:03Z 2009-10-09T15:49:03Z <p>Use the force, Joel. Use the force.</p>