Jump to content
  • entries
    16
  • comments
    181
  • views
    35,538

Getting back to unfinished games...


PacManPlus

2,605 views

Ugh. My list of 'games-started-but-not-worked-on-in-a-while' is getting bigger. :)

After Meteor Shower is completed, I'd like to get back to Frenzy but I have all of these in total:

 

 

Frenzy blogentry-1787-0-45132300-1320010813.png

BattleZone blogentry-1787-0-98347700-1305458534_thumb.png

 

Bob

 

I *hate* not finishing things... :x

  • Like 2

9 Comments


Recommended Comments

Wow! Each one of those titles looks great!

 

May I beg and ask that you finish Frenzy first? It is one of my all-time favorites and your mock up looks incredible!

Link to comment

It would have to be for the extra memory. I have the screen set up as a line buffer from the bottom of the score area down. I have a line drawing routine that is a bit slow ATM.

 

Thanks!

Link to comment
I have a line drawing routine that is a bit slow ATM.

 

The line routine is still on my list of things to help you out with. I was looking at it again the other day.

Link to comment

One line drawing algorithm I learned from T.A. Goldthorpe

 

dx = x1 - x0
dy = y1 - y0
qx = abs(dy) // note the reversal
qy = abs(dx)
q = min( qx, qy )
cx = x0
cy = y0
do
 plot( cx, cy )
 qx = qx - q
 if ( qx < 0 )
   qx = qx + abs(dy)
   cx = cx + sgn(dx)
 endif
 qy = qy - q
 if ( qy < 0 )
   qy = qy + abs(dx)
   cy = cy + sgn(dy)
 endif
while ( cx != x1 && cy != y1 )
plot( cx, cy )

 

Note: this is from memory / off the top of my head. I remember the basic idea, but have to work out the details anew each time I want to use it. Another line drawing algorithm I created myself was recursive binary subdivision.

Link to comment
Guest
Add a comment...

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