Experimentations/getting back into the thick of it.

Talk about your programs in progress. Discuss how to implement features, etc.
Forum rules
This section is for testing Commander X16 programs and programs related to the CX16 for other platforms (compilers, data conversion tools, etc.)

Feel free to post works in progress, test builds, prototypes, and tech demos.

Finished works go in the Downloads category. Don't forget to add a hashtag (#) and the version number your program was meant to run on. (ie: #R41).
User avatar
ahenry3068
Posts: 1219
Joined: Tue Apr 04, 2023 9:57 pm

Re: Experimentations/getting back into the thick of it.

Post by ahenry3068 »

Ok... On Cursory inspection your BIN files are way to big to be a SPRITE. A 64 x 64 bit 8 bit Sprite would be a 4096 byte BIN (or 4098 if exported with a two byte header). Your files are twice that size. So they are either two sprites (if 8 bit) or 4 sprites (if 4 bit). Or they are some dimension that's not allowed for a Sprite. Valid Sprite Heights & Widths are 8, 16, 32 & 64. Those can be in any combination (You can have an 8 x 64 or 64 x 8 sprite, or shape that uses two of the allowed values)
User avatar
ahenry3068
Posts: 1219
Joined: Tue Apr 04, 2023 9:57 pm

Re: Experimentations/getting back into the thick of it.

Post by ahenry3068 »

Ok played a bit. You've got part of an image there but it's not in the right order. I tried 8x8, 8x16, 16x16 etc. It's partially there but I don't think I got what you wanted. It does appear to be 4bpp not 8 the scrambled image is in the first part of the file. I'm not acquainted with the tool you used as I use either GIMP and the GIMP Plugin or my own convertors.
User avatar
ahenry3068
Posts: 1219
Joined: Tue Apr 04, 2023 9:57 pm

Re: Experimentations/getting back into the thick of it.

Post by ahenry3068 »

Created a BIN file for you from your original DATA.

Attached is the BIN and the code used to create it.
Attachments
MAKEBIN.PRG
(1.5 KiB) Downloaded 193 times
MAKEBIN.BAS
(1.53 KiB) Downloaded 174 times
AZAMTEST.PRG
(97 Bytes) Downloaded 178 times
AZAMTEST.BAS
(97 Bytes) Downloaded 183 times
AZAMTEST.BIN
(256 Bytes) Downloaded 216 times
User avatar
BullboyAT05
Posts: 11
Joined: Mon Jun 24, 2024 12:36 am

Re: Experimentations/getting back into the thick of it.

Post by BullboyAT05 »

To be more precise, it's more of a tilesheet that is exported (Maybe you can ask to Inkbox for having some precisions, if possible).

The screenshot may give you all an idea of how the editor looks.
Attachments
azamtest002.bin
(1 KiB) Downloaded 176 times
Capture d’écran 2025-02-28 150809.png
Capture d’écran 2025-02-28 150809.png (78.26 KiB) Viewed 11554 times
User avatar
ahenry3068
Posts: 1219
Joined: Tue Apr 04, 2023 9:57 pm

Re: Experimentations/getting back into the thick of it.

Post by ahenry3068 »

Ahh. Tiles & Sprites have some similarities in how they are laid out but they are not compatible.

(A bare 8x8 or 16x16 or 16x8 tile in 4bpp or 8bpp mode could be also loaded as a sprite, but that's not usually how tile editors export there data). 2 bit & 1 bit tiles cannot be used this way.
mortarm
Posts: 342
Joined: Tue May 16, 2023 6:21 pm

Re: Experimentations/getting back into the thick of it.

Post by mortarm »

ahenry3068 wrote: Fri Feb 28, 2025 9:23 pm ...how tile editors export there data).
"their"
Sorry, couldn't let that one go.
Edmond D
Posts: 506
Joined: Thu Aug 19, 2021 1:42 am

Re: Experimentations/getting back into the thick of it.

Post by Edmond D »

mortarm wrote: Sat Mar 01, 2025 1:56 am
ahenry3068 wrote: Fri Feb 28, 2025 9:23 pm ...how tile editors export there data).
"their"
Sorry, couldn't let that one go.
There, Thier, They're, be nice. :D Not everyone's first language is English, (or BASIC in this century!)
User avatar
ahenry3068
Posts: 1219
Joined: Tue Apr 04, 2023 9:57 pm

Re: Experimentations/getting back into the thick of it.

Post by ahenry3068 »

Edmond D wrote: Sat Mar 01, 2025 2:36 am
mortarm wrote: Sat Mar 01, 2025 1:56 am
ahenry3068 wrote: Fri Feb 28, 2025 9:23 pm ...how tile editors export there data).
"their"
Sorry, couldn't let that one go.
There, Thier, They're, be nice. :D Not everyone's first language is English, (or BASIC in this century!)
Thanks for sticking up, But it's OK I have a thick skin. English is my first language.... Just a touch dyslexic sometimes...
User avatar
BullboyAT05
Posts: 11
Joined: Mon Jun 24, 2024 12:36 am

Re: Experimentations/getting back into the thick of it.

Post by BullboyAT05 »

Haven't tried to modify the code in a while.

But here's a tiny thumbnail of possible new tiles and an enemy lizard man.
Attachments
AzureAmazonessThumbnail001.png
AzureAmazonessThumbnail001.png (919 Bytes) Viewed 9010 times
Post Reply