Erik Zimmermann Posted May 30, 2022 Share Posted May 30, 2022 Hello Folk, Yesterday was the start of development of Kung Fu Master Remake in batari. Hit the opponent before you get hit. The opponent gets a small movement AI. example , Walk, kick, block, punch, walk, walk The game will be released at the end of June. Is there support for me? Source code is open. There are some limitations in batari. These can perhaps be extended with assembler code. The game should look just as beautiful as the original. Need more sprites but no flickering on the same scanline. Bye Erik dojo24.bas 2 Quote Link to comment Share on other sites More sharing options...
Fort Apocalypse Posted May 30, 2022 Share Posted May 30, 2022 Very nice! Quote Link to comment Share on other sites More sharing options...
donnerkuh Posted May 30, 2022 Share Posted May 30, 2022 How did you make the sound - i have problems to implement music in my games. Quote Link to comment Share on other sites More sharing options...
Erik Zimmermann Posted May 31, 2022 Author Share Posted May 31, 2022 the loop was from an example source code. The notes that are played are in the arrays. data notes 14, 14, 15, 15, 19, 20, 15, 15 14, 14, 15, 15, 19, 20, 15, 15, 14 end data bass_notes 22, 22, 24, 24, 26, 26, 24, 24, 22, 22, 24, 24, 26, 26, 30, 30 end AUDV1=0 if t{0} && s<3 then AUDC1=8 : AUDF1=26 : AUDV1=4 if t{0} && u{1} && s>9 && s<12 then AUDC1=8 : AUDF1=18 : AUDV1=4 if !t{0} then AUDV1=4 : AUDC1=6 : AUDF1=bass_notes[v] s=s+1 if s>20 then s=0 : t=t+1 : AUDV0=3 : AUDC0=6 : AUDF0=bass_notes[t] : v=v+1 if t>15 then t=0 : v=0 A sample database for Batari is missing. For other languages (c#, java) there are too many. Here in the forum would be a section with examples. Start Topics: How to make simple sound (bass and notes)? How to make Background Music with Player Sounds? 1 Quote Link to comment Share on other sites More sharing options...
Fort Apocalypse Posted May 31, 2022 Share Posted May 31, 2022 1 hour ago, Erik Zimmermann said: Start Topics: How to make simple sound (bass and notes)? How to make Background Music with Player Sounds? This might help: https://www.randomterrain.com/atari-2600-memories-batari-basic-music-toy.html https://www.randomterrain.com/atari-2600-memories-music-and-sound.html https://www.randomterrain.com/atari-2600-memories-batari-basic-commands.html#sound It would be good if those pages were translated. There is so much information there. 1 Quote Link to comment Share on other sites More sharing options...
ultima Posted June 8, 2022 Share Posted June 8, 2022 This might help for background music & fx https://www.randomterrain.com/atari-2600-memories-batari-basic-commands.html#ex_sound_with_bg_music 1 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.