Getting back to unfinished games... Sign in to follow this Followers 2 Entry posted by PacManPlus · May 15, 2011 1,975 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 BattleZone Bob I *hate* not finishing things... 1 Sign in to follow this Followers 2
tremoloman2006 276 Posted May 18, 2011 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! Quote Share this comment Link to comment
Corby 111 Posted July 2, 2011 cool your doing Battlezone!!! Is it going to be a XM game?? Quote Share this comment Link to comment
PacManPlus 7,587 Posted July 2, 2011 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! Quote Share this comment Link to comment
DracIsBack 1,573 Posted July 7, 2011 Looking forward to seeing Battlezone in action! Keep up the great work! Quote Share this comment Link to comment
GroovyBee 4,727 Posted July 7, 2011 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. Quote Share this comment Link to comment
EricBall 182 Posted July 7, 2011 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. Quote Share this comment Link to comment
PacManPlus 7,587 Posted August 19, 2011 Thanks, Eric - I'll give that routine a try. Quote Share this comment Link to comment
9 Comments
Recommended Comments