Playfield Editor that outputs code
Posted: Fri Jul 09, 2021 10:13 pm
I only know how to use BASIC-like languages, so I hope SpiderBasic is what I've been looking for. I've edited bits of JavaScript code here and there to make it do what I want, but I can't write my own JavaScript programs.
I'd like to make a tool similar to this:
https://alienbill.com/2600/atari-background-builder/
You draw what you want to see in your Atari 2600 game, select background/foreground row colors, and when you are done, it outputs code that looks similar to this:
That's for a batari Basic DPC+ screen that has 22 rows that are 8 scanlines high (for making Atari 2600 games).
Is it possible to make something like that page with SpiderBasic? If so, how do I start? I downloaded the free version of SpiderBasic and if it's possible to make what I want and it isn't too hard for me to do it (with help), I'll buy SpiderBasic and make more online tools.
Thanks.
I'd like to make a tool similar to this:
https://alienbill.com/2600/atari-background-builder/
You draw what you want to see in your Atari 2600 game, select background/foreground row colors, and when you are done, it outputs code that looks similar to this:
Code: Select all
playfield:
................................
................................
................................
................................
.XXXXX.XXXX.XX...XXXX.XXXX.XXXX.
.XX....XX...XX...XX...XX....XX..
.XXXXX.XXXX.XX...XXXX.XX....XX..
....XX.XX...XX...XX...XX....XX..
.XXXXX.XXXX.XXXX.XXXX.XXXX..XX..
................................
................................
XXXXX.XXXX.XXXX.XXXXX....XX.XX..
XX....XX...XX...XX..XX..XXXXXXX.
XXXXX.XXXX.XXXX.XX..XX...XX.XX..
...XX.XX...XX...XX..XX..XXXXXXX.
XXXXX.XXXX.XXXX.XXXXX....XX.XX..
................................
................................
................................
................................
................................
................................
end
pfcolors:
$00
$00
$00
$00
$0E
$0C
$0A
$08
$06
$00
$00
$0E
$0C
$0A
$08
$06
$00
$00
$0E
$0C
$0A
$08
$06
$00
$00
$06
end
bkcolors:
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
$80
end
Is it possible to make something like that page with SpiderBasic? If so, how do I start? I downloaded the free version of SpiderBasic and if it's possible to make what I want and it isn't too hard for me to do it (with help), I'll buy SpiderBasic and make more online tools.
Thanks.