SlidellMan Posted September 7, 2021 Author Share Posted September 7, 2021 Thanks, and I had no internet for days due to Hurricane Ida. Platformer Demo 9-7-2021.zip platformer_demo_v01.78b.a78 platformer_demo_v01.78b.bin platformer_demo_v01.78b.list.txt 2 Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted September 16, 2021 Author Share Posted September 16, 2021 Here's another demo and source file. I am, honestly, baffled as how to get both the title screen, jumping mechanic, and the level graphics working. Platformer Demo 9-16-2021.zip platformer_demo_v01.78b.a78 platformer_demo_v01.78b.bin platformer_demo_v01.78b.list.txt Quote Link to comment Share on other sites More sharing options...
+Muddyfunster Posted September 16, 2021 Share Posted September 16, 2021 (edited) Your title screen doesn't stay on because you are calling it with a gosub and then immediately returning once it's been displayed once. That's why it seems to just flash up and then go. [edit] titlescreen characterset platformer_test_fontCS alphachars '0123456789 .,?!:;`abcdefghijklmnopqrstuvwxyz@#$%^&*()/-_=+' plotchars 'platformer demo by' 0 38 2 plotchars 'shane skekel.' 0 48 4 plotchars 'press fire!' 1 56 8 savescreen drawscreen return titlescreenloop restorescreen if switchreset then reboot if joy0fire then clearscreen : savescreen : goto main if !joy0fire then button1_Debounce=0 : button2_Debounce=0 goto titlescreenloop ; return "titlescreen" sets up the title screen but then right after the drawscreen there is a return - that will take you right out of your title, back to where you made the call so titlescreenloop never gets called. Removing the first return will stop that from happening and allow your loop (titlescreenloop) to be executed. I'd suggest not using a gosub to call your titlepage, and just "goto" it at the start. (Think of it as a standalone chunk of code or a platform from which to launch other bits of code, not as a subroutine). The structure is struggling a bit with the gosubs at the start, it doesn't flow correctly. Fixed listing attached. [edit2] You might want to also rethink how you leave the titlepage. i've added a bit of flow at the start so leaving the title screen will take you back to those gosubs you are calling to set the game initialisation. platformer_demo_v01_titlefixed.78b Edited September 16, 2021 by Muddyfunster 1 Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted September 17, 2021 Author Share Posted September 17, 2021 Lewis, I have made the corrections to get the Title screen working. Now to get the gameplay mechanics and graphics to work properly. platformer_demo_v01.78b.a78 platformer_demo_v01.78b.bin Platformer Demo 9-17-2021.zip 2 Quote Link to comment Share on other sites More sharing options...
ZippyRedPlumber Posted September 25, 2021 Share Posted September 25, 2021 On 9/7/2021 at 1:48 PM, SlidellMan said: Thanks, and I had no internet for days due to Hurricane Ida. Been there, had my router crap out on sunday, had to wait 3 days for t-mobile to send me a new one... 1 Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted December 8, 2021 Author Share Posted December 8, 2021 I thought would show you people what I did in Raster Music Tracker. kidzenithian_stagechosen.rmt kidzenithian_stageselect.rmt Pokey_techno_demo.rmt Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted December 12, 2021 Author Share Posted December 12, 2021 Here's two new RMT demo songs. algerian_scale_demo.rmt Goa_Trance_Demo.rmt 1 Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted January 15, 2022 Author Share Posted January 15, 2022 I made these when my connection went out for four days. Shane_trance_demo.rmt agathodaimon_title.rmt Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted January 26, 2022 Author Share Posted January 26, 2022 Might as well upload this song I made in RMT as well. agathodaimon_suspicion.rmt Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted March 29, 2022 Author Share Posted March 29, 2022 I thought I would share this brand new Pokey cover I did. yi_boss_corridor.rmt yi_boss_corridorXex.xex Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted August 2, 2022 Author Share Posted August 2, 2022 For the time being, I'm posting anything I make in Raster Music Tracker here. Including this cover of the Game Over cue from Arkanoid. arkanoid_game_over.rmt arkanoid_game_over.xex 3 Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted October 18, 2022 Author Share Posted October 18, 2022 I thought I would post this despite not being finished. Tia Song Demo code.zip Quote Link to comment Share on other sites More sharing options...
SlidellMan Posted March 6, 2023 Author Share Posted March 6, 2023 A Work-in-progress on an original song. ion_drive.rmt 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.