MemberAtarian Posted January 12, 2018 Share Posted January 12, 2018 (edited) 2018.02.09. - Update I think these may be the final versions. PAL: PAL60: (flicker and interference is because my recorder can really not handle 60Hz) I did not record the NTSC because I don't have an NTSC console, Z26 emulator does not emulate the timing errors and somehow even the older and the current Stella both does not want to let Fraps record my gameplay, only the sound. There were things those I could work and and some that I couldn't. Mostly because of the 262 cycles. .Now, as asked, the fire button makes you jump, so on the last part as you are shooting sick people you have to use UP for shooting. It's a really easy part, so it won't disturb you hopely. -I tried to go under 262 cycles as possible, that was the most disturbing thing, creating a lot of jumps if something is not needed. You can see that there are some levels where you can jump on platforms under them, it's because I had to turn off pfreads for those parts, that is the command that eats most of the cycles. Sometimes it will happen in the NTSC and PAL60 versions, with PAL you have more cycles, so it works perfectly, but it's slower because of the 50Hz. -There will be some glitches, it's because I would need TWICE of the pfreads to make sure if there is an object in front of you, over you or under you. The hardest part was jumping, so I had to make strange decisions in coding that I am not proud of. -Unfortunately, I had to cut the last boss because of the strange sprite placement of BB, it puts them into the last bank no matter what and of I don't want to put them all there, creating a long cycle that causes overload again and sometimes, I could cry instead of shouting and hitting the desk or the keyboard. -I tried another way to make the score background black, but make the last row of background gray, so you could recognize holes easier, I could insert this little code asmminikernelsta WSYNClda $00sta COLUBKrtsend into vblank, but it left out a lof and there was a lot if gray under the last row of blocks (BB leaves the 12th row empty for vertical scrolling), and to be honest, it looked uggly. -You can press Select, it does the same thing on the titlescreen as reset, I used it for testing and jumping to the desired room, now it goes to room0. I wanted to remove it, but if I do it, the game won't load the main cycle with the gameplay. Why won't it? Don't know, BB has some really strange and unfair things, sometimes it "creates errors" while compiling that makes no sense. I think other errors were corrected that I found while testing, if you find more, please, tell me! I attached the code of someone is curious about it. https://www.4shared.com/archive/q19JSx1jca/titlescreen.html<< The title screen for assembling. 2018.01.25. - Update: The two main music got an update, and I show you one of the two bosses. It's a reference to something. 2018.01.15. Update: New rooms, objects and the cave. 2018.04.01. Update: Some little changes were made based on requests. 2018.01.14. Update: This is the state I'm right now. Unfortunately I had to remove a lot of ideas (mostly collectible items) because I just had ran out of variables. Of course there are var0-var8 besides a-z, but they are part of the playfield, so after I redraw the playfield, they are set as the playfield is set at that. This would make these variables only usable inside of the room, but I mostly need counters and these varx-es can only have 0 or 1 as a value. The other thing I don't know how to solve right now is making you jump across the pf above if there is only one block in your way, so two or more blocks should punch you back. The problem with this is that you cannot place two pfread commands in one f statement, even if you create two values for the pfreads and compare only the values. The third thing is I used the p1 for the doctor because the kernel settings I done removes the missile0 (I will have to use it in the last battle) and the multispite kernel only works for p1 sprites, so the stages look a bit hollow, I know. You are the famous and misanderstood plague doctor of the middle ages, collecting herbs and at the end, duel a battle with Death itself. (That will be the only part of the game where you can use the projectile). A still have to manage scrolling the screen and putting there the other objects. Gameplay: Plague-Test.bin PlagueTest2.bin PlagueFinalNTSC 1.01.bas.bin PlagueFinalPAL50 1.01.bas.bin PlagueFinalPAL60 1.01.bas.bin PlagueFinalNTSC 1.01.bas PlagueFinalNTSC 1.02.bas.bin PlagueFinalPAL50 1.02.bas.bin PlagueFinalPAL60 1.02.bas.bin PlagueFinalNTSC 1.09.bas.bin PlagueFinalPAL60 1.09.bas.bin Edited September 29, 2018 by MemberAtarian 16 Quote Link to comment Share on other sites More sharing options...
Keatah Posted January 12, 2018 Share Posted January 12, 2018 dark.. Quote Link to comment Share on other sites More sharing options...
xybot67 Posted January 12, 2018 Share Posted January 12, 2018 I really like the atmosphere you are creating. Can't wait to see where you take this. Quote Link to comment Share on other sites More sharing options...
MemberAtarian Posted January 12, 2018 Author Share Posted January 12, 2018 I gave up on horizontal scrolling, it's too much of pain, but started doing the rooms with objects. There will be a lot of NUSIZ0 XD (I use p1 for the doctor) Quote Link to comment Share on other sites More sharing options...
TrekMD Posted January 12, 2018 Share Posted January 12, 2018 I like how this looks. Quote Link to comment Share on other sites More sharing options...
+atari2600land Posted January 12, 2018 Share Posted January 12, 2018 It needs color. What you have now would be good if the switch was set to b&w. Quote Link to comment Share on other sites More sharing options...
StanJr Posted January 12, 2018 Share Posted January 12, 2018 For horizontal scrolling check out The Gizzle Wap and the Blizzard of Firn in the Bb forum. MountainKing has a really nice, smooth horizontal scroll going on in that game. Maybe he can help. Love the subject matter of the game, very unique. Quote Link to comment Share on other sites More sharing options...
+SpiceWare Posted January 12, 2018 Share Posted January 12, 2018 Nice! Definitely the appropriate color palette for the subject matter. Quote Link to comment Share on other sites More sharing options...
Greenfuzz Posted January 12, 2018 Share Posted January 12, 2018 Looks GREAT. Please keep us posted. Quote Link to comment Share on other sites More sharing options...
Jinroh Posted January 12, 2018 Share Posted January 12, 2018 Rad very cool shadowy minimalism. Loving it so far. Jumping physics, animation, and collision look on point too. Quote Link to comment Share on other sites More sharing options...
SPIKE Posted January 13, 2018 Share Posted January 13, 2018 PLAGUE looks really interesting. can't wait to see the finished version! Quote Link to comment Share on other sites More sharing options...
MemberAtarian Posted January 14, 2018 Author Share Posted January 14, 2018 (edited) Hi guys, This is the state I'm right now. Unfortunately I had to remove a lot of ideas (mostly collectible items) because I just had ran out of variables. Of course there are var0-var8 besides a-z, but they are part of the playfield, so after I redraw the playfield, they are set as the playfield is set at that. This would make these variables only usable inside of the room, but I mostly need counters and these varx-es can only have 0 or 1 as a value. The other thing I don't know how to solve right now is making you jump across the pf above if there is only one block in your way, so two or more blocks should punch you back. The problem with this is that you cannot place two pfread commands in one f statement, even if you create two values for the pfreads and compare only the values. The third thing is I used the p1 for the doctor because the kernel settings I done removes the missile0 (I will have to use it in the last battle) and the multispite kernel only works for p1 sprites, so the stages look a bit hollow, I know. PlagueTest2.bin Edited January 14, 2018 by MemberAtarian Quote Link to comment Share on other sites More sharing options...
MemberAtarian Posted January 15, 2018 Author Share Posted January 15, 2018 (edited) https://www.youtube.com/embed/5QZ-LYJNbtQ Another progress. Many errors corrected and other rooms, like the cave added. Plague-Test3.bin Edited January 15, 2018 by MemberAtarian Quote Link to comment Share on other sites More sharing options...
Greenfuzz Posted January 15, 2018 Share Posted January 15, 2018 Man...looks fantastic...with unique and difficult jumps and very impressive sprites. I also love the NO HOPE and NO CURE messages... I don't understand the cave section, however. Quote Link to comment Share on other sites More sharing options...
MemberAtarian Posted January 15, 2018 Author Share Posted January 15, 2018 Man...looks fantastic...with unique and difficult jumps and very impressive sprites. I also love the NO HOPE and NO CURE messages... I don't understand the cave section, however. There will be only this tree cave section. The first has really no hard part, you only have to jump across. The second had floating platforms, so you have to guess jumps. The third has that annoying "bridge fall" and a little trick at the end. I know it's only easy for me because I know the layout. Score works as continue here, but if you waste too much, you can't create enough medicine. Messages are important part of this game. Quote Link to comment Share on other sites More sharing options...
TrekMD Posted January 15, 2018 Share Posted January 15, 2018 I like what I'm seeing so far. Quote Link to comment Share on other sites More sharing options...
Gibstov Posted January 17, 2018 Share Posted January 17, 2018 This game looks pretty cool. Quote Link to comment Share on other sites More sharing options...
Swami Posted January 18, 2018 Share Posted January 18, 2018 The creature on the front screen looks familiar. My first thought was Dark Crystal, but I think it is closer to something else, maybe animated, but not sure. What was your inspiration? Quote Link to comment Share on other sites More sharing options...
StanJr Posted January 18, 2018 Share Posted January 18, 2018 That's a standard plague doctor's mask circa 14c. But it also looks a lot like Spy vs. Spy Quote Link to comment Share on other sites More sharing options...
Swami Posted January 18, 2018 Share Posted January 18, 2018 That's a standard plague doctor's mask circa 14c. But it also looks a lot like Spy vs. Spy It was the plague doctors mask. Still can't remember where, but it was something like this: Quote Link to comment Share on other sites More sharing options...
RamrodHare Posted January 18, 2018 Share Posted January 18, 2018 I'll be keeping an eye on this. It looks cool so far. Quote Link to comment Share on other sites More sharing options...
MemberAtarian Posted January 19, 2018 Author Share Posted January 19, 2018 You got it right, I really like plague doctor outfit's, I have also mine. Yesterday was a horrible day, but today I'm gonna continue development, there was a part with "God's hand" that took me a lot to figure out which line caused it not working. Quote Link to comment Share on other sites More sharing options...
MemberAtarian Posted January 19, 2018 Author Share Posted January 19, 2018 I think this was the hardest part to program by far, the Plague Doc eats a mushroom, fights his own fears and progress. 1 Quote Link to comment Share on other sites More sharing options...
StanJr Posted January 19, 2018 Share Posted January 19, 2018 That's a fascinating concept for a game chunk! Quote Link to comment Share on other sites More sharing options...
Greenfuzz Posted January 20, 2018 Share Posted January 20, 2018 It really appears to be an incredibly well thought out game. 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.