Jump to content
IGNORED

Anyone think Ballblazer is possible on the 2600?


Recommended Posts

Tod Frye had begun working on it back-in-the-day, and apparently had a decent split-screen kernel working. A prototype has never turned up anywhere though.

 

Yeah, he bragged about it quite a bit in Once Upon Atari... The code has _GOT_ to be on a disk in Curt Vendel's Atari Corp. pile _SOMEWHERE_....

 

Otherwise, who's up for the challenge? ;-)

 

-Thom

Link to comment
Share on other sites

Rob Kudla[/url] made a nice ballblazer-demo, maybe this would be a good start for a 2600 conversion?

 

The checkerboard that almost "defines" BallBlazer could probably be done, but overlaying the solid checkerboard with anything else would be difficult. Using 30Hz flicker would almost certainly be necessary, but it would look horrible with anything even remotely resembling the colors used in the other BallBlazer games.

 

It might be possible and practical to draw a pretty good "grid" as opposed to a checkerboard. This would only really work well down to a minimum spacing of nine pixels per line, and couldn't very well co-exist with anything else in its part of the frame, but the results might still look quite nice. Flickering the grid lines would probably be less annoying than flickering a solid background.

Link to comment
Share on other sites

Rob Kudla[/url] made a nice ballblazer-demo, maybe this would be a good start for a 2600 conversion?

 

The checkerboard that almost "defines" BallBlazer could probably be done, but overlaying the solid checkerboard with anything else would be difficult. Using 30Hz flicker would almost certainly be necessary, but it would look horrible with anything even remotely resembling the colors used in the other BallBlazer games.

 

Hm... why do you think that? AFAIR there is nothing else on the playfield except the ball, the other player and the goal, which sounds pretty doable with two sprites and two missiles.

Link to comment
Share on other sites

Hm... why do you think that? AFAIR there is nothing else on the playfield except the ball, the other player and the goal, which sounds pretty doable with two sprites and two missiles.

The goalposts don't overlay the grid I believe. So it's just the other player and the ball.

 

To my mind the main issue is (a) when you are near the edge of the field you need three colors per scanline:

post-6060-1220380797_thumb.png

though you could probably get away with two, and (b) using the PF for the grid would make for some very chunky scrolling.

Link to comment
Share on other sites

using the PF for the grid would make for some very chunky scrolling.

 

Well, definitely. supercats post was in response to Robs old demo though, which does just that, so I thought that was given. The demo looks aktually okay if you ever tried it, the chunkyness isn't that bad.

 

Just discussing it technically btw, since IMO the game itself isn't really worth the effort of porting it anywhere...

Link to comment
Share on other sites

using the PF for the grid would make for some very chunky scrolling.

 

Well, definitely. supercats post was in response to Robs old demo though, which does just that, so I thought that was given. The demo looks aktually okay if you ever tried it, the chunkyness isn't that bad.

 

Just discussing it technically btw, since IMO the game itself isn't really worth the effort of porting it anywhere...

Yeah, but you hate sports games anyway, so what do you know. :P :lolblue:

 

And you're right - I hadn't seen that demo before, and it doesn't look that bad. Probably using a symmetrical PF, though, which likely wouldn't really work...maybe.

Link to comment
Share on other sites

Rob Kudla made a nice ballblazer-demo, maybe this would be a good start for a 2600 conversion?

 

 

When I look at that demo I think it would be interesting to invert the animation so the checkerboard is in the sky as "clouds", to provide a movement reference for a two player battlezone style game. Putting the cloud animation above would free up all the system objects to draw targets/obstacles on the "ground".

 

Edit: My original post is not really clear. What I mwan is that if the game objects are in the portion of the screen opposite where the PF graphics are used to make the grid/clouds; then there will be more cycles to allow single line res multi-color objects for shots and enemies and such.

Edited by Robert M
Link to comment
Share on other sites

Yeah, but you hate sports games anyway, so what do you know. :P :lolblue:

 

I guess you're right. It's probably just me lacking appreciation for one-on-one soccer without goalkeepers ;)

:D

 

But even so, you are still right - I've owned, and liked, Ballblazer for 20+ years, but take away the fantastic audiovisuals and there isn't a great game underneath. A good game, but not great.

Link to comment
Share on other sites

(b) using the PF for the grid would make for some very chunky scrolling.

 

How would the game look with three-pixel resolution for the checkerboard (i.e. using lots of well-timed STA COLUBK / STY COLUBK / etc.)? Are the squares ever less than nine pixels wide?

 

My guess would be that three-pixel resolution would be too chunky, but if it would look okay the lots-of-stores approach would allow the use of all five sprites for other purposes.

Link to comment
Share on other sites

(b) using the PF for the grid would make for some very chunky scrolling.

 

How would the game look with three-pixel resolution for the checkerboard (i.e. using lots of well-timed STA COLUBK / STY COLUBK / etc.)? Are the squares ever less than nine pixels wide?

 

My guess would be that three-pixel resolution would be too chunky, but if it would look okay the lots-of-stores approach would allow the use of all five sprites for other purposes.

 

I made a test with 2 lines and I stopped, it looked damn crappy. I've attached the bin so you can see. Maybe you could build the checkerboard with sprites, but I've not reached that part of the tutorial yet :D

testje.bin

Edited by roland p
Link to comment
Share on other sites

It's looking more like Ballblazer now, so I call it ballblazer.bin

 

The checkerboard is now 20 lines heigh. It consists only of vertical stripes, but it looks pretty good for a atari 2600 game. I also added some sky just to make it look nice. Now all I have to do is some animation and turn the stripes into tiles...

ballblazer.bin

Link to comment
Share on other sites

Added some horizontal movement. You can use left/right to move!

Some small glitches in the lookup table to fix.

I've only tested it in Stella so far. What do you think about it?

 

Wow!! If you can get this working with two seperate controllers for a player 1 and 2 top and bottom view, you would definitely be achieving something.

Link to comment
Share on other sites

Two players should be possible. I'll take just small steps for now :)

I'm now doubling the vertical resolution, the tiles at the sides will benefit from this, well... it makes everything look better.

 

I also want to make a finer grained control of the movement to get that 'techy'-look. The horizontal movement is now 20 pixels, I precalculated a vector that turns 45 degrees in 20 steps and used that to control the movement of the grid. I like to calculate 256 pixels heigh vector and use only the upper 20 pixels of it so the horizontal movement has 256 possible positions. Anyone know how to calculate vectors?

 

For vertical tiles I have to make a sort of sinus-table to make the tiles smaller in the distance. Any ideas on this are also welcome.

 

The brown border of the checkerboard needs als to be done. I'll get to this when I've the checkerboard the way I want.

Link to comment
Share on other sites

Added some horizontal movement. You can use left/right to move!

Some small glitches in the lookup table to fix.

I've only tested it in Stella so far. What do you think about it?

 

Very nice work! It looks like you are creating the stripes simply by changing the background colour at the right time? This is a nice approach as you should be able to create the checkerboard simply by fliping the colours at various points down the screen. It also frees up the PF/ball colour to be used for other things. However, this approach won't leave you much time for displaying the sprites over the board. The alternative is to display an asymmetrical playfield, but this will require a lot of different patterns to be stored.

 

Chris

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...