Since CL's got a way to store the last step, then all they need to do is make a dropout stack of that data structure. It's very easy. Just have a static array, and pretend it's a ring, then keep a pointer to the most recent step. As you undo/redo, you can move the pointer backwards and forwards. You also keep a pointer to the tail so you know when you've gotten to the bottom of possible undoing. This is something they teach every sophomore CS student. (like me last year.) :P
I could need an Undo button.... really! You too?
Quote: from beaujob on 7:40 pm on Oct. 27, 2001
... Just have a static array, and pretend it's a ring, then keep a pointer to the most recent step. As you undo/redo, you can move the pointer backwards and forwards....Sounds a lot like a circular queue ;)This is something they teach every sophomore CS student. (like me last year.) :PThey also keep teaching it to 5th year EET seniors like me. Not so much that they keep reteaching it, but we keep using it in our projects.
yeah, great idea, would love to see it implemented
There is one, I've used it many times. Over on the right, above 'Clear'.
:-)
(Edited by Chillum at 3:16 pm on Oct. 16, 2001)
I hate it when I need to keep changing forward and backwards to delete things. it would be nice if I could just use the undo.
drats... I guess I shouldn´t have started to post here before actually checking out the full version which I downloaded some minutes ago ;-)
It's not really a queue, since the order you take things out is like a stack. It's basically a stack that overwrites the bottom elements after a certain number of elements are in it.

I think it would be pretty cool to have multiple undo layers.
Hey no problem, we all have had one time when the answer is staring us in the face and we don't see it ;-)
Though, it's good that he mentions the Undo button. I would like to see a deeper undo stack. Perhaps keep track of the last 10-20 operations? Sometimes you make two mistakes in a row before you realize that the first mistake even happened.
multiple undo buttons is a great idea but it would also be useful to have a redo button
Both would definately help, and should be easy enough to implement I would've thought.