OK so i'm making a tool for an old computer language i'm learning.. I'm learning to make games for the Intellivision using a language called "IntyBasic" which is basically a modern take on assembly for this system. Offers various enhancements to make coding for the Intellivision easier / faster.
In this language to define an 8x8 pixel graphic, you do it like this:
BITMAP "########"
BITMAP "########"
BITMAP "........"
BITMAP "........"
BITMAP "........"
BITMAP "........"
BITMAP "........"
BITMAP "........"
the # is a pixel and a . is empty space.
So what i want to do is make it so when i click "ok" it checks each of my boxes to see if it's a 0 or a 1..
then output the info in a text field so that it is like above.. with "Bitmap" and " and another " at the end so someone can just drag / highlight all the code and paste it into the code..
I just don't know how to work with outputting text like that. I am sure that arrays would be needed, but i've never been great with them and then the formatting on top of that. very daunting.
I thought it would be a useful tool for the Intellivision community of homebrew developers.