Jump to content
IGNORED

12 Hour Game : Solar Nexus


MausGames

Recommended Posts

I'm trying to see if I can finish a game with a short deadline, that meets or exceeds my original expectations. This is an unofficial sequel to the first bB game released on cartridge, Solar Plexus. I figured an update of an early bB game would be a good way to show off the many changes and new features that are available with version 1.0. I started on this an hour ago at noon central time, and I'm going to be finishing it up tonight at midnight.

 

Here is the first hours progress:

solarnexus.bas.bin

 

So far I have a ship that can move around the screen, and that goes faster when you press fire. You can also see the level one star.

Edited by MausGames
Link to comment
Share on other sites

Hmm. Well, it's certainly flashier than Solar Plexus was, I'll give you that. However, I'm noticing a lot of additions that don't necessarily improve the gameplay. I don't really understand how the tractor beam is supposed to work... sometimes it seems to block the movement of the sun, and sometimes it doesn't. Also, the fuel cells seem to appear in random positions, and that's not supposed to happen. I had designed Solar Plexus to force the player to dash from the left side of the screen to the right, like a childhood game I used to play at school (relay race, I think). That way it takes genuine effort to collect the cells, rather than a lucky break.

 

It's interesting, though. You've definitely put forth a lot of effort in giving the game the variety that Solar Plexus lacked, and I think that's a step in the right direction. A suggestion I would make is to include a secondary pick-up, probably in the center of the playfield, that doubles the bonus for collecting a fuel cell. That would add an extra layer of risk/reward to the game.

Link to comment
Share on other sites

Hmm. Well, it's certainly flashier than Solar Plexus was, I'll give you that. However, I'm noticing a lot of additions that don't necessarily improve the gameplay. I don't really understand how the tractor beam is supposed to work... sometimes it seems to block the movement of the sun, and sometimes it doesn't.

 

It seems like it is only blocking the sun part of the time because it only effects the sun's movement if they are moving in opposite directions.

 

A suggestion I would make is to include a secondary pick-up, probably in the center of the playfield, that doubles the bonus for collecting a fuel cell. That would add an extra layer of risk/reward to the game.

 

I thought about doing something like that, and I changed it so that you get double the points if you pick up fuel before you've used over half of the last one.

 

I'm trying to find a post about how to split up the score into 3 variables, so that I can use the score for the level display in between rounds.

Link to comment
Share on other sites

I'm trying to find a post about how to split up the score into 3 variables, so that I can use the score for the level display in between rounds.

Is this what you're looking for?

 

If you plan to check to score, you will need to break out its 6 digits into 3 sets of two digits and check each one. One way to pull out the score digits is:

 

dim sc1=score

dim sc2=score+1

dim sc3=score+2

 

sc1 will contain the first two digits, sc2 the 3rd and 4th, and sc3 the last two. Since these are all BCD numbers, you need to place a "$" in front of any values you check. For example, to check if the score is less than 10:

 

if sc1=$00 && sc2=$00 && sc3<$10 then ...

 

To check if the score is greater than 123456:

 

if sc1>=$12 && sc2>=$34 && sc3>$56 then ...

 

Breaking out score digits is also useful for setting the score to display special values or custom graphics. You can modify score_graphics.asm to include definitions for digits "A-F" and set the score digits manually. How to do this is beyond the scope of this document, but it has been discussed in detail in the AtariAge 2600 Basic forum.

Link to comment
Share on other sites

OK, here's some ideas how the game could be improved:

 

- Start out with the difficulty a bit easier, that is, with the planet moving only half as fast as it does now, and then make it pick up speed gradually

- Display the player's score after the game is over (right now, it's reset to 000000 immediately when the "MAUS" screen gets shown again)

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...