Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: epic7 on October 27, 2011, 06:59:18 am

Title: How do I make large pictures?
Post by: epic7 on October 27, 2011, 06:59:18 am
The only  way I know how to make pictures in axe is by 8x8 sprite. Are there ways to make larger sprites or to make backgrounds?
Title: Re: How do I make large pictures?
Post by: Yeong on October 27, 2011, 07:01:02 am
you can store pictures from OS var and recall it to use as a background.
To store pic from OS:
[Pic1]->Pointer

To use it on axe:
Copy(Pointer,L6,768)
Title: Re: How do I make large pictures?
Post by: epic7 on October 27, 2011, 07:14:40 am
Lolwat?
Title: Re: How do I make large pictures?
Post by: Yeong on October 27, 2011, 07:22:16 am
maybe I read the question wrong.
So far, you can only make 8x8 sprites.
to create a larger sprites, the only way to do is display multiple 8x8 sprites together.
If you're asking about making backgrounds out of sprites, you can always use the tilemap format.
Title: Re: How do I make large pictures?
Post by: epic7 on October 27, 2011, 03:16:38 pm
What's the tilemap format?
Title: Re: How do I make large pictures?
Post by: Darl181 on October 27, 2011, 06:19:43 pm
What are you shooting for?  A pic the size of the entire screen or something like a 16*16 sprite?

For larger sprites the only way to do it afaict is to put 8*8 sprites together, and for screen-size pics you can use a TIOS pic or get the Hex (tho that's more complicated)
Title: Re: How do I make large pictures?
Post by: Deep Toaster on October 27, 2011, 06:54:11 pm
For sprites larger than 8x8, you can use Bitmap(). Unfortunately, it's much slower than 8x8 sprites.
Title: Re: How do I make large pictures?
Post by: ztrumpet on October 28, 2011, 11:01:11 pm
For sprites larger than 8x8, you can use Bitmap(). Unfortunately, it's much slower than 8x8 sprites.
You could also use the Copy() command to work with larger sprites.  I think I have an 80*20 sprites or so in Cube Droid in which I had a For() loop around a Copy().
Title: Re: How do I make large pictures?
Post by: saintrunner on October 30, 2011, 12:50:54 pm
just tilemap it...then for big sprites, just write out, (ik its old fashion but its easier to understand), each hex code relating to its appropriate position on the screen, and and put em all in...might take a while, but its easiest