Пікірлер
@marcoursino7993
@marcoursino7993 6 күн бұрын
I prefer original SID
@AnthonyDonker
@AnthonyDonker 13 күн бұрын
The Arkanoid theme is still one of my favorite Galway pieces 🎉 And that mouse is awesome!
@CityXen
@CityXen 14 күн бұрын
Want to play this
@CityXen
@CityXen 14 күн бұрын
Awesome!
@Joel-qz6sd
@Joel-qz6sd 28 күн бұрын
Really impressive code and nice game. I can't understand how it's programmed, but really nice game. Thanks for sharing
@commocore
@commocore 21 күн бұрын
Thanks Joel! Indeed it looks cryptic at the first glance. Explaining some bits could make it clear, perhaps something for future videos :).
@kraftwerk974
@kraftwerk974 Ай бұрын
It's impressive you wrote this in Basic 🤔👍. Why not translate it to ASM so you include the MSB for the ball sprite and go up to X=320 ?
@commocore
@commocore 21 күн бұрын
Thanks @kraftwerk974! I might indeed create the assembly version as I did with another 10-liner game: Mimizuku Saga. I like this concept so I would like to explore it further with more variety, music etc. We'll see :).
@AnthonyDonker
@AnthonyDonker Ай бұрын
Very cool! Also interesting to see how you actually create the code and the tools used!
@commocore
@commocore 21 күн бұрын
Thanks @AnthonyDonker! What's best about it is that I re-use these tools and tricks across different projects.
@Goerp
@Goerp Ай бұрын
Incredible again. Also great to see you use basic programs as tooling to create this program.😮
@commocore
@commocore 21 күн бұрын
Yay! Thanks @Goerp! Fun all the way!
@Most_BadgeUser
@Most_BadgeUser Ай бұрын
Can you make games?
@commocore
@commocore Ай бұрын
Yes.
@Most_BadgeUser
@Most_BadgeUser Ай бұрын
@@commocore can you make Where's Chicky - Around World game?
@Most_BadgeUser
@Most_BadgeUser Ай бұрын
@@commocore watch
@Most_BadgeUser
@Most_BadgeUser Ай бұрын
@@commocore Where's Chicky - Arcade game
@Most_BadgeUser
@Most_BadgeUser Ай бұрын
@@commocore Create the same as in the video
@initusinteractive9474
@initusinteractive9474 Ай бұрын
Beautiful game! Great work :)
@commocore
@commocore Ай бұрын
Thanks a lot! More graphical touches are coming! It's time for another devlog end of this week...
@LarsTragel-zh7ei
@LarsTragel-zh7ei Ай бұрын
Good idea.
@c64cosmin
@c64cosmin 2 ай бұрын
Love that you chose to go with the full pixel width and two colors, very inspiring, thank you for posting!
@c64cosmin
@c64cosmin 2 ай бұрын
Really love what you're building here, but I was wondering, couldn't you just blit the shifted Moon&Sun on some characters, then when they should change on screen you just move those in place where they need to be. You'd draw one character per frame to not block the whole game, but I don't know if bitmap mode can allow that. After rewatching the video I that is how you do it after all... not really sure. Love the clouds keep up the good work, this looks amazing <3
@commocore
@commocore 2 ай бұрын
Thanks a lot! Indeed, the code bit blits the object (at 3:24) from the memory location to the screen, but with the bits already shifted in the 8 pixels range (within the bits shift, object takes 3 bytes per row). It's a hi-res bitmap mode, so no characters though slightly funky rules for C64 bitmap mode apply (in the end all is 8x8 pixels grid, but to draw the graphics in the same row, it's 8 bytes further, not 1). If I understand you correctly, it would be indeed possible to move an object that is already rendered. However, I decided to always bit blit the "fresh" object on the screen for two reasons. First of all, the object appears from the bottom part of the visible area, so it's partly visible. In other words, it still needs to be blit from the source and code needs to know when to finish the rendering. The second reason is that there is also the battle screen, so after returning to the location screen I have to render this object again in the right place. This method is actually very easy, and I can freely draw any objects like that on the bitmap. For the moving clouds (again, bit shifting!), it's going to be a matter of drawing a cloud but to blit zeroes on the same bitmap after the sun is blit there.
@c64cosmin
@c64cosmin Ай бұрын
​@@commocore thank you for your answer, that makes a lot of sense now yes, thought you might be using character mode, but it all makes so much more sense now, keep going, this project looks amazing 😍😍😍
@commocore
@commocore Ай бұрын
@@c64cosmin Thanks a lot! More to come! The whole screen has to be in the bitmap mode but even if it would be in the character mode I would still need to set them dynamically as C64 has limited amount of charsets so it’s easier to draw a bitmap rather than set and copy particular charsets to the screen. Actually the first incomplete version of Meonlawel written back in BASIC used charsets but I realised quickly that it really limits how much things can be drawn, not mentioning about modifications like water or grass animations. Learning and overcoming limitations the hard way, this is what I basically learned while making this project 😅.
@carloscatano1750
@carloscatano1750 2 ай бұрын
Fantastic!
@IsaacKuo
@IsaacKuo 3 ай бұрын
Okay but I will waste time talking about the wind blown grass ... I love it!
@commocore
@commocore 3 ай бұрын
I didn't waste time of reading your precious comment! Should I also animate some trees?
@kamiltrzaska
@kamiltrzaska 3 ай бұрын
fajnie to się rozwija
@purplegill10
@purplegill10 3 ай бұрын
Dang, this is super cool! Glad the algorithm recommended it.
@commocore
@commocore 3 ай бұрын
Hail YT algorithm! Thanks a lot! Much appreciated!
@chrischris02
@chrischris02 3 ай бұрын
Looks top notch! :)
@commocore
@commocore 3 ай бұрын
Thank you for your comment!
@mitchmccracken3050
@mitchmccracken3050 4 ай бұрын
Both a kung fu flash and a fast load cartridge work in my xpander 3 but I can’t get the 64nic+ to work / detect an rrnet device :(
@commocore
@commocore 4 ай бұрын
I assume your 64NIC+ is configured and works correctly when plugged directly to the expansion port?
@mitchmccracken3050
@mitchmccracken3050 4 ай бұрын
@@commocore it detects RRNet directly in the cartridge port but after initial data transfer it hangs and won’t receive or send any data
@commocore
@commocore 4 ай бұрын
@@mitchmccracken3050 And how did you configure it? I used Contiki to set the configuration and test with a WEBBROWSER that was available on one of the d64 images. Maybe this guide will shed some light: commocore.com/commodorex/64nic-setup - it's for the setup of CommodoRex game I wrote. Not sure if you wanted to run my game, or play with 64NIC+ in general? Anyways, for my game, I used DHCP and IPCONFIG files from Contiki as the standard to configure 64NIC+. In any case, feel free to send me an e-mail, I will try to help you.
@mitchmccracken3050
@mitchmccracken3050 Ай бұрын
@@commocore it turns out the 64nic+ works fine on my c64 but it will not work on my c128 with or without the xpander :( I believe go4retro says that it simply won’t work on some c128s
@commocore
@commocore Ай бұрын
@@mitchmccracken3050 thanks for the details! I've bought C128 recently, so it would be a good idea to actually check it as well. At least, happy that it works for our "tiny" C64 . Interestingly, on my C128, I cannot boot my cartridge prototype (based on Magick Desk cart) for the Meonlawel cRPG game project I am working on. I already checked that it doesn't boot from 1541Ultimate as well, so I suspect it must be a problem with the code, not with the hardware. I wonder what is the cause of 64NIC+.
@highlanding
@highlanding 5 ай бұрын
I'm very excited for this
@Katana2097
@Katana2097 6 ай бұрын
What... I had no idea about this place and I just visited Kraków last year >:| Looks like I'm gonna have to head back to Europe soon.
@LukJarzyna
@LukJarzyna 7 ай бұрын
Absolutely fantastic, how do these not have thousands of views, I do not know.
@commocore
@commocore 7 ай бұрын
Thanks! What artist or song you like the most?
@LukJarzyna
@LukJarzyna 7 ай бұрын
@@commocore Out of the mixtape vol. 3 - when it comes to dark C64 music, Dragon's Lair Part II - song 9 by Rob Hubbard, that's the song mood that spawned Dungeon Synth music genre in the past few years, like Kobold, Gnoll and many others. Many of these are true classics.
@commocore
@commocore 7 ай бұрын
@@LukJarzyna Oh yeah, great taste. This one reminds me another song from Rob Hubbard, Nemesis The Warlock, available on vol. 7 of this compilation. BTW. also a great unusual comic book story by Pat Mills. To be honest I have never listened to anything like Dungeon Synth as my background is mostly in industrial, so I will give it a go. Thanks :). By the way, a slightly off topic: I was honored to have a chat with Rob Hubbard during X party this year. I recommended him to check Satyagraha opera (by Philip Glass). I had really great time, he's an astonishing person still close to the Commodore 64 scene. Thanks again for your recommendations @LukJarzyna.
@ArttuTheCat
@ArttuTheCat 7 ай бұрын
Man, i loved playing TURRICAN I and II on my Amiga 500 for many years 😹👍🕹️. Absolutely brilliant 😺👍🕹️!
@commocore
@commocore 7 ай бұрын
I actually never played it on Amiga no matter how awkward it sounds! Weird, huh? I just never got that game! Instead, I played and finished Jim Power so many many times. One of the games I play just for relax. This music, and nice gameplay. I enjoyed playing Turrican II a lot, so I am going to try the first part soon! Let me borrow that joystick from you to play it. Yay🕹!
@KOLDBLU3ST33L
@KOLDBLU3ST33L 7 ай бұрын
Nobody's playing all these games...
@commocore
@commocore 7 ай бұрын
At the time of recording it there were only plenty of people. But it was Friday, around 1pm.
@TheKurtsPlaceChannel
@TheKurtsPlaceChannel 8 ай бұрын
Very entertaining and fun to watch. Thanks for posting this.
@MakaioMC
@MakaioMC 8 ай бұрын
Wow looks amazing! Hope there is more to come
@commocore
@commocore 8 ай бұрын
Thanks!! For now, I only did a sequel called Bring Back More Bones 4k. Feel free to play both mini-games online on commocore.itch.io page. As I am in the experimental design phase of this project to see what really works, feel free to drop any suggestions! I would really appreciate it!
@user-ff1nk4lx8x
@user-ff1nk4lx8x 8 ай бұрын
HOD2SDX!?!?!?
@BartezPL
@BartezPL 10 ай бұрын
There is also a separate pinball museum in Krakow
@commocore
@commocore 9 ай бұрын
I didn't know about it! Thanks a lot! Do you know what pinball machines are there? I am starting to have Pinball Dreams again ;).
@duanewebber1514
@duanewebber1514 10 ай бұрын
SSI and SSG were my absolute favorite game producers on my commodre 64
@80sebos
@80sebos 10 ай бұрын
Zmotywowałeś mnie tym filmem, aby w końcu poza kibicowaniem konkretnie cię wesprzeć...
@commocore
@commocore 10 ай бұрын
Serdeczne dzięki! \o/ Twoje kibicowanie bardzo wiele dla mnie znaczy więc tym bardziej nieocenione podziękowanie za wsparcie!
@ChrisFreeman_4Bit
@ChrisFreeman_4Bit 10 ай бұрын
Nice work!
@commocore
@commocore 10 ай бұрын
Thanks, Chris! Much appreciated!
@Hounddoggy33
@Hounddoggy33 10 ай бұрын
I got a copy from CSDB, which wasn't cracked by The Jolly Roger. I believe it was "cracked" by Lord Crass. I ran "Character Utilities" and was able to make a character.
@commocore
@commocore 10 ай бұрын
This version wasn't available on CSDB while doing this video. 21 August, I mentioned about my endeavour on Twitter, as there was only Jolly Roger's crack available back then. This is also stated on the Lost Sectors channel, as folks tried to play that only version 1.0 available for C64. If you check the CSDB page creation of Lord Crass crack, it was added by Paladin on 2023-08-22 13:30:03+00 and it's a version 1.2. So indeed, now there's another version. I don't think this is a coincidence. Glad this version is there for anyone to play. I am happy to have the original anyway. Are you going to play it?
@lupedarksnout
@lupedarksnout 10 ай бұрын
Somehow I don't think the advice shown in the manual at 3:19 applies anymore. To think they not only would replace a defective disk back then (which is nice) they also seemed willing to look into and correct program bugs you find as well? Crazy.
@commocore
@commocore 10 ай бұрын
Yeah, good observation. In the following part I was going to mention indeed about that but in the context of making backups as I needed to break the protection in order to preserve/backup it. I guess, back then not everyone would think of making a backup as we tend to think nowadays?
@ArttuTheCat
@ArttuTheCat 10 ай бұрын
I have played some of the SSI games on my Amiga 500, but i have never heard of SHARP OF SPRING. It looks retrospectively awesome on the Commodore 64 😺👍🕹️.
@commocore
@commocore 10 ай бұрын
I never played any SSI games, neither on C64 or Amiga. Demon's Winter was really fun to play even though it was tough to finish it as I didn't start the proper way. With some learnings, I think I will enjoy Shard of Spring, especially that I already enjoyed trying it out for the first 30 minutes. I wonder what have you played on Amiga, any recommendations, Arttu?
@ArttuTheCat
@ArttuTheCat 10 ай бұрын
@@commocore I could recommend these SSI games on the Commodore 64 and Amiga: - ROADWAR 2000 - ROADWAR EUROPE - PHANTASIE - PHANTASIE III - BUCK ROGERS - EYE OF THE BEHOLDER - EYE OF THE BEHOLDER II 😺👍
@commocore
@commocore 10 ай бұрын
@@ArttuTheCat Oh yeah, I tried Roadwar 2000 but on C64, it was super tough :). Thanks, I am definitely going to add it on the top of my wishlist.
@FlamyREC
@FlamyREC 10 ай бұрын
Greetings from Poland! I also thought its ninja turtles game when I was a kid and was super hyped when I first got it xD Took me 20+ years to realize you can't pick up the hook at the beggining xD mind was blown when you could finally go into the tombs below to finally finish the game :D
@commocore
@commocore 10 ай бұрын
Have you finished Tai Chi Tortoise? :). Haha, funny memories. I remember yet another cover that was so promising, but the game was a completely different story - Scary Bear :D. I might play it again at some point! Pozdrawiam!
@lupedarksnout
@lupedarksnout 11 ай бұрын
Can't jump and shoot? Can't even duck? Game starts off at a difficulty level that feels like level 8? And what is with the threat at 19:40 ?? Wow.
@commocore
@commocore 11 ай бұрын
Haha, I didn't notice this threat to hackers before :D. Yeah, in this game you cannot duck and you cannot shoot while being in the air. I might try to play it again with shooting blindly before making any jumps, and see if this can help to move further in the game.
@skinnl18
@skinnl18 11 ай бұрын
A lot of games back then where almost unplayable because to much enemies comming at you or bad sprite collision....nice vid 👍
@commocore
@commocore 11 ай бұрын
Agree. Once I realise it's too hectic and unplayable, that's the sign I play it not the way intended to be played. So, there might be other way like trying to avoid enemies, or shooting blindly ahead, or... the game is just really unfair and lands in the unplayable category forever until I found out someone else beat it :D.
@Hounddoggy33
@Hounddoggy33 11 ай бұрын
Not to be confused with the Edosians of Star Trek
@commocore
@commocore 11 ай бұрын
Actually, one of the sprite characters looks similar though closer to E.T. Guest appearance?
@LoganTheDevilMayCryFan
@LoganTheDevilMayCryFan 11 ай бұрын
Nice! I feel like I just went back in time!
@commocore
@commocore 11 ай бұрын
Welcome to the Pleasure Dome! 😄 What have you played in the past the most?
@LoganTheDevilMayCryFan
@LoganTheDevilMayCryFan 11 ай бұрын
@@commocore not much, but I have been able to play some of these games on consoles since the cabinets are no longer available (which really sucks when you think about it. Keeping these cabinets could ensure more can come, but especially the Mortal Kombat games in there, since they have 1 to UMK3) I wish one day, I could actually get the arcade cab for one of the games in there, and not having to do it from Arcade1UP instead
@ArttuTheCat
@ArttuTheCat 11 ай бұрын
I still have the original hardwares of the Commodore 64 and Amiga 500. In fact, i have disk drive 1571-II for my Commodore 64 😺👍🕹️. Once i get into my summer vacation in September, I better hope, i get to play them again 😹👍🕹️. Your video deserves a big retrospective like 👍 from Vantaa, Finland 🇫🇮.
@commocore
@commocore 11 ай бұрын
Oh. I've never ever had 1571-II. It's a great piece of hardware - only that I know! Have a great and relaxed September vacations, Arrtu! 👾
@TheBetterBoi2004
@TheBetterBoi2004 Жыл бұрын
Wow ! as a Arcade Fan Myself. i Wish we Amercians had a Arcade place like this... :( Too bad it is at Poland which i don't live in.... also hey look it's SEGA'S - The Lost world : Jurassic Park. 0:17 My Childhood Classic back when it used to be at old-School Dave and Busters where i Lived !
@commocore
@commocore Жыл бұрын
I bet you should have some places like that in America like Galloping Ghost Arcade? Good luck finding these arcade places, it's lot of good fun to go there! Also, if you're interested in pinballs, check one of my videos from the Dutch Pinball Museum located in Rotterdam.
@TheBetterBoi2004
@TheBetterBoi2004 Жыл бұрын
@@commocore Hmm…i Think i Herd About That Place Before…It’s Not Way Too Far Away from Where i Live Compared To “Poland” Sense that Place You Mentioned “Galloping Ghost” that place is in America. But Thanks For the Recommend ! i Might Visit That Place When i Get the Chance !
@matildawolfram4687
@matildawolfram4687 Жыл бұрын
Hey, that's a good video! When visiting another city or country, every educated person must visit a museum. Visiting museums is very useful and fascinating. A love for the "eternal" and "beautiful" is awakened in a person, the beginnings of greatness and respect for history are inculcated. It is impossible to turn the excursion into something banal, ordinary and boring. The person should be a comprehensively developed person, cultured, educated, critically and analytically thinking, with knowledge of foreign languages. It is the knowledge of a foreign language that opens wide prospects for a person to realize his/her creative potential, career and financial growth. I would like to recommend the practical training course by Yuriy Ivantsiv "Polyglot Notes. Practical tips for learning foreign language", where you can find lots of useful information how to learn a foreign language quickly. Learn a foreign language and realize your creative potential on an international scale! The international community needs creative ideas! Thanks to the author of the channel for a very fascinating tour!
@bradleymcavoy3432
@bradleymcavoy3432 Жыл бұрын
Why Communism Failed! 🤣
@sasapetrovic2556
@sasapetrovic2556 Жыл бұрын
you pait your fingernails.....?
@MuckyTaters
@MuckyTaters Жыл бұрын
Nice video, the shorter format works well. I never played this game, but the adventurer (almost) being killed by rats/bats reminds me of the fate suffered by many of my 1st level D&D characters back in the 1980s 🙂
@commocore
@commocore Жыл бұрын
Thanks! It’s often so silly when these kind of creatures are the main source of the problem 😄. In the Meonlawel cRPG project I am working on, I dropped these opponents not forgetting also about dropping spiders ;). A decent size spider could be a different story 😉.
@ArttuTheCat
@ArttuTheCat Жыл бұрын
The Commodore 64 game looks cool. I think, i should give a try 😺👍🕹️.
@commocore
@commocore Жыл бұрын
Definitely, I will get back to play more for sure 😺👍🕹 👾. The maiden awaits!
@bryanturman
@bryanturman Жыл бұрын
Amazing! that was the lamest walk thru ive ever seen. Were you looking for the bathroom? Cause you sure as hell werent looking at games.
@commocore
@commocore Жыл бұрын
Thanks for your appreciation! I tried to avoid recording of people. Also, I was hyped to play these games that's why I did just a quick round.
@phantomharlock999
@phantomharlock999 Жыл бұрын
Nice job!
@commocore
@commocore Жыл бұрын
Thanks a lot! I did a time lapse of this video in devlog 015: kzbin.info/www/bejne/b5-8ZYWnZ9asZ5I
@ronibernabe
@ronibernabe Жыл бұрын
thi is music for my ear 😃❤. Very Good!!
@NoName-bk8yn
@NoName-bk8yn Жыл бұрын
Hi, I would like to ask how to fix the speed of music without dissembling it, I have the same model, wm-ex120, but the music sounds speed up, thank you in advance😊
@commocore
@commocore Жыл бұрын
No problem, your walkman should have a hole for a screwdriver, like this one: 2:39. Good luck with synchronising the speed :)!