How can I convert this loop to coffeescript?

for (var j = world.m_jointList; j; j = j.m_next) {
        drawJoint(j, context);
}
link|improve this question

I dont even understand this javascript loop anyways, could someone explain it while answering the coffeescript part? – Lol coder Feb 2 at 1:27
1  
What sort of strange code uses a linked list in JavaScript? That strikes me as rather bizarre. – mu is too short Feb 2 at 4:16
feedback

4 Answers

while j = (unless j? then first else j.next)
  do stuff

But generally, what's wrong with just writing for loops with the initialize code as a separate statement, e.g. j=first; while j then ...; j=j.next?

link|improve this answer
feedback

this is the best:

j = world.m_jointList
loop
    break if not j
    drawJoint j,context
    j=j.m_next

it just describes what the for loop mean.

link|improve this answer
I would use while j? instead of the loop-break syntax. – Ricket Apr 10 at 22:44
feedback

m_jointList is a linked list.

link|improve this answer
how do I represent this in coffeescript using expressions? – Lol coder Feb 2 at 1:39
feedback

What's happening in the original:

Javascript has compound for loops. The declaration inside the parenthesis has three expressions: for(x; y; z){...}.

  • x runs once before the loop
  • y is a condition, tested before each iteration. If it's false the loop will stop
  • z runs once after every iteration

In this code, you set j = world.m_jointList, which is the first item in the linked list. The middle part of the for loop is checking for thruthiness of j;, and after each iteration j is set to j.m_next, which is a pointer to the next object in the chain. It ends when j evaluates to false (probably undefined in this case).

To visualize that, world could look like this:

world = {
   m_jointList: {
      value: 'head',
      m_next: world.foo1
   },
   foo1: {
      value: 'foo',
      m_next: world.foo2
   },
   foo2: {
      value: 'foo',
      m_next: world.tail
   },
   tail: {
      value: 'foo'
   }
}

In reality the items in the list probably don't exist as properties of world, but this would work the same. Notice that m_next is undefined in the last object. Sometimes a placeholder value for the tail will be used indicating the end of the chain.

The name m_jointList is also a bit misleading here because it doesn't actually contain the list, just the first element of it.

This should do it in coffeescript:

j = world.m_jointList
while j then drawJoint(j, context); j = j.m_next

And that would've been a good use of do...while in javascript:

var j = world.m_jointList
do { drawJoint(j, context) } while (j = j.m_next)
link|improve this answer
the first j may be false – island205 Feb 2 at 13:51
@island205 I was thinking of do...while :/ fixed. – Ricardo Tomasi Feb 2 at 19:54
but do...while like this do{alert("foo");}while(false); could exec at least once. – island205 Feb 3 at 1:25
your while j then drawJoint(j, context); j = j.m_next is the best! – island205 Feb 3 at 1:27
@island205 from the context available, I'd guess an empty list wouldn't be allowed to exist (or get to the drawing routine). That decision is left to the dev in charge :) – Ricardo Tomasi Feb 3 at 5:04
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.