|
This thread is locked; no one can reply to it. |
1
2
|
input responsiveness |
William Labbett
Member #4,486
March 2004
|
Don't quite get your idea. Doesn't mine sound like it'd work ? Seems simpler.
|
Edgar Reynaldo
Major Reynaldo
May 2007
|
Your way would work, but I think it would be confusing to keep track of the offsets and the sizes of each section of the bitmap. With my way, you'd have : A C 333 444 222 111 C->B B A->B 444 444 333 222 And every time you needed a new blot you would create it on C, draw it to the unused bitmap, and then draw the rest of the connecting blot from the bitmap in use, and they would swap places. I suppose you could do away with C and draw the new blot strip directly on the unused bitmap. My Website! | EAGLE GUI Library Demos | My Deviant Art Gallery | Spiraloid Preview | A4 FontMaker | Skyline! (Missile Defense) Eagle and Allegro 5 binaries | Older Allegro 4 and 5 binaries | Allegro 5 compile guide |
William Labbett
Member #4,486
March 2004
|
Let me see if I understand The next bit would be A C 333 444 C->B B A->B B C 444 555 C->A A B->A 555 555 Seems to be what you mean. /* EDIT - formatting! */
|
Edgar Reynaldo
Major Reynaldo
May 2007
|
That's the general idea, yes. The old blot shifts down and the new blot takes its place at the top. It just uses two bitmaps instead of one to avoid drawing onto itself. My Website! | EAGLE GUI Library Demos | My Deviant Art Gallery | Spiraloid Preview | A4 FontMaker | Skyline! (Missile Defense) Eagle and Allegro 5 binaries | Older Allegro 4 and 5 binaries | Allegro 5 compile guide |
|
1
2
|