+bfstats Posted September 17, 2012 Share Posted September 17, 2012 I tried emailing my interest in buying the game CIB (when available) but my email to the recommended address (blinky AT gmx DOT info) bounced back. Please advise. Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted September 17, 2012 Author Share Posted September 17, 2012 Well, I got your email. I guess that was just a temporary problem. Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted September 17, 2012 Author Share Posted September 17, 2012 Speaking of carts..... When am I giving you some of my monies? Register yourself at blinky at gmx dot info if you haven't already. I'll let you know when the cartridge version is available. Until then don't worry about giving me any money Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted September 17, 2012 Author Share Posted September 17, 2012 I would like to get the cart box and manual, but how do I register? I didn't see the link. Thanks! There is no link! Just send an email to blinky at gmx dot info, so I can inform you, when the cartridge version is available. Quote Link to comment Share on other sites More sharing options...
KevinMos3 Posted October 13, 2012 Share Posted October 13, 2012 It took a lot longer than expected to get access to some decent internet, but finally, here it is. This is a video of me playing a perfect game on real hardware. There were a few screen rolls during the game, but the capture card didn't really pick them up. Jan, you might want to check scanline counts or something before making carts because the rolls can cause you to die if they catch you at the wrong time. Anyway, fun game and without further ado: http://youtu.be/PM2mMozcvBs 2 Quote Link to comment Share on other sites More sharing options...
RevEng Posted October 13, 2012 Share Posted October 13, 2012 If its truly a full roll, Jan, but you might want to switch to using "bpl" for the INTIM checks rather than "bne" to minimize the effect of going slightly over time. (best to track it down, though) Quote Link to comment Share on other sites More sharing options...
Omegamatrix Posted October 13, 2012 Share Posted October 13, 2012 From the video it looks like it's rolling when the screens switch at the end of the levels. ALT-L will give you a scanline count in Stella, and it is very easy to notice little bounces with it on. I have it on 99% of the time when I am programming, except when I need to check the area that it is covering up. ALT-L is extremely useful when you want to detect the scanline count producing too few scanlines. For the "too many" scanlines scenario you can also set a break condition in the debugger: breakif _scan>#262 This is good for NTSC games, if they are going over 262 lines. 1 Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted October 16, 2012 Author Share Posted October 16, 2012 It took a lot longer than expected to get access to some decent internet, but finally, here it is. This is a video of me playing a perfect game on real hardware. There were a few screen rolls during the game, but the capture card didn't really pick them up. Jan, you might want to check scanline counts or something before making carts because the rolls can cause you to die if they catch you at the wrong time. Anyway, fun game and without further ado: http://youtu.be/PM2mMozcvBs If its truly a full roll, Jan, but you might want to switch to using "bpl" for the INTIM checks rather than "bne" to minimize the effect of going slightly over time. (best to track it down, though) From the video it looks like it's rolling when the screens switch at the end of the levels. ALT-L will give you a scanline count in Stella, and it is very easy to notice little bounces with it on. I have it on 99% of the time when I am programming, except when I need to check the area that it is covering up. ALT-L is extremely useful when you want to detect the scanline count producing too few scanlines. For the "too many" scanlines scenario you can also set a break condition in the debugger: breakif _scan>#262 This is good for NTSC games, if they are going over 262 lines. Hi guys, I know about the rolls. After you finish a level there will be 2 bad frames. The first one just before the "NEXT LEVEL" screen is shown; the second one when the "NEXT LEVEL" screen disappeared (just before the new level starts). The reason is an optimization hack, because I ran out of ROM space - e.g. the PAL version has only 14 free bytes of ROM left (sadly not even in a single chunk). Damn, I thought nobody would recognize this BTW, during gameplay the framerate is always stable. So I don't consider this a serious bug, or should I? Quote Link to comment Share on other sites More sharing options...
KevinMos3 Posted October 17, 2012 Share Posted October 17, 2012 I wouldn't consider rolls between stages a problem. However, I did have some rolls during gameplay that caused me to die a couple of times. They happened when I was in the middle of a jump, which made me let go of the button and fall to my death. I kinda conditioned myself to ignore the rolls for the recording. Quote Link to comment Share on other sites More sharing options...
RevEng Posted October 17, 2012 Share Posted October 17, 2012 It looks like the NTSC game occasionally hits 263 lines when blinky is jumping and other stuff is going on. Some TVs won't see that, others will. I was able to avoid the bump by giving vblank a couple more lines by setting TIM64T to #$2D instead of #$2B, within stella. Probably better to tackle the issue at the heart, but going to 264 lines isn't a bad band-aid either. Quote Link to comment Share on other sites More sharing options...
iesposta Posted October 17, 2012 Share Posted October 17, 2012 Great suggestion, RevEng! If you can change one value and have a stable line count I think it is worth it, because a TV will roll and a Projector will lose sync [Jr. Pac Man blanks my projector at the beginning of each life, usually causing me to die as the game is playing but I can't see it] so that's one I have to play on the tube TV. Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted October 18, 2012 Author Share Posted October 18, 2012 I wouldn't consider rolls between stages a problem. However, I did have some rolls during gameplay that caused me to die a couple of times. They happened when I was in the middle of a jump, which made me let go of the button and fall to my death. I kinda conditioned myself to ignore the rolls for the recording. It looks like the NTSC game occasionally hits 263 lines when blinky is jumping and other stuff is going on. Some TVs won't see that, others will. I was able to avoid the bump by giving vblank a couple more lines by setting TIM64T to #$2D instead of #$2B, within stella. Probably better to tackle the issue at the heart, but going to 264 lines isn't a bad band-aid either. So embarrassed! You guys were absolutely right about the screen rolls during gameplay... @RevEng the 264 scanline trick is a very nice hack! But I decided to fix the real problem - that's a question of honor I'll let you know, when the problem is fixed... Thank you! 3 Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted October 19, 2012 Author Share Posted October 19, 2012 Ok, I found some issues and fixed them... Scanline count should now be rocksolid at 262 (resp.312) during gameplay *and* between stages! The ROM images are available on the website: http://www.lov3machine.com/blinky/index.html Please let me know, if there are still problems... Thanks and have fun! 3 Quote Link to comment Share on other sites More sharing options...
+Propane13 Posted October 31, 2012 Share Posted October 31, 2012 Well done; I had a similar roll found in Mean Santa by my testers. It's annoying at first, and then you realize that they're right. And then from there, it takes a lot of guts to dive back in and refactor code. I'm very glad you did it; adding that little polish makes a lot of difference. -John Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted November 1, 2012 Author Share Posted November 1, 2012 Well done; I had a similar roll found in Mean Santa by my testers. It's annoying at first, and then you realize that they're right. And then from there, it takes a lot of guts to dive back in and refactor code. I'm very glad you did it; adding that little polish makes a lot of difference. -John Thank you John! I really appreciate your feedback! Quote Link to comment Share on other sites More sharing options...
Segataritensoftii Posted November 10, 2012 Share Posted November 10, 2012 (edited) This one's a little too short and simple for my taste, I'm afraid. Perhaps you could add something extra, such as randomized enemy placement or an "endless" mode with a steadily increasing difficulty level? As it is, this feels more like a tech demo than a complete game to me. Edited November 10, 2012 by Segataritensoftii Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted December 9, 2012 Author Share Posted December 9, 2012 Hello everybody, please help Blinky win the 4K Minigame-Compo 2012. Vote here: http://minigamecompo.weebly.com/voting-forms-2012.html Thank you very much! Jan Quote Link to comment Share on other sites More sharing options...
NML32 Posted December 9, 2012 Share Posted December 9, 2012 Hello everybody, please help Blinky win the 4K Minigame-Compo 2012. Vote here: http://minigamecompo.weebly.com/voting-forms-2012.html Thank you very much! Jan Just voted Quote Link to comment Share on other sites More sharing options...
ComputerSpaceFan Posted December 9, 2012 Share Posted December 9, 2012 I voted too. Blinky is amazing! Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted January 2, 2013 Author Share Posted January 2, 2013 I'm very proud to announce that BLINKY won the 4K Minigame Compo 2012 http://minigamecompo.weebly.com/results.html Thank you so much guys!!! 6 Quote Link to comment Share on other sites More sharing options...
iesposta Posted January 2, 2013 Share Posted January 2, 2013 Yeah! Congratulations! Quote Link to comment Share on other sites More sharing options...
Albert Posted January 2, 2013 Share Posted January 2, 2013 That's fantastic, congratulations!! ..Al Quote Link to comment Share on other sites More sharing options...
cd-w Posted January 3, 2013 Share Posted January 3, 2013 Nice work - you have produced a very neat little game. Have you any plans for a) an expanded version b) a cart release in the AA store? Chris Quote Link to comment Share on other sites More sharing options...
TrekMD Posted January 3, 2013 Share Posted January 3, 2013 Congratulations! Quote Link to comment Share on other sites More sharing options...
Jan Hermanns Posted January 4, 2013 Author Share Posted January 4, 2013 Nice work - you have produced a very neat little game. Have you any plans for a) an expanded version b) a cart release in the AA store? Chris Thank you! a) I'm thinking about that - I have a ton of ideas for an expanded version, but I'm not sure if this will be my next project. Maybe I'll do something on the Commodore Plus4 or the Commodore 64... b) Yes, Albert is currently working on that. If you like you can send me an email to blinky at gmx dot info, so I can inform you, when the cartridge version is available. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.