Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Raylin on June 17, 2010, 12:42:36 am

Title: Line by line hex to pixel display
Post by: Raylin on June 17, 2010, 12:42:36 am
Is it possible?
I want to display 4 bytes of a 16x24 sprite in a line.
Would I use Pt-On or Pxl-On for this?
Title: Re: Line by line hex to pixel display
Post by: Quigibo on June 17, 2010, 12:48:08 am
Neither.  Use Bitmap().  Its coming soon to an Axe near you :)
Title: Re: Line by line hex to pixel display
Post by: meishe91 on June 17, 2010, 12:50:57 am
What kind of thing do you mean? Like so a sprite shows up one line at a time?

Glad to hear a new feature, Quigibo :)
Title: Re: Line by line hex to pixel display
Post by: Raylin on June 17, 2010, 12:52:24 am
Yes. Basically.
Title: Re: Line by line hex to pixel display
Post by: meishe91 on June 17, 2010, 01:05:43 am
Is it for a teleportation type effect thing by chance?
Title: Re: Line by line hex to pixel display
Post by: Raylin on June 17, 2010, 01:10:12 am
Pop-up sprite when it's your turn.
Title: Re: Line by line hex to pixel display
Post by: meishe91 on June 17, 2010, 01:21:22 am
Ah ok, gotcha. Well cool.

So I know Quigibo just said there will be a way to do it in the near future but this sort of does the affect you want. I don't know if it is usable in your circumstance at all though. But who knows. Just thought I'd give it a shot.

Code: [Select]
.BLUE
ClrDraw
[FF818181818181FF
0000000000000000→Pic1
For(A,0,8
Pt-On(0,0,Pic1
Pt-Off(0,A,Pic1+8
DispGraph
Pause 100
End

Again, not sure if you can use it (or if you even want to give that there will be a way to do it soon). This probably also isn't a very good way to do it.