Hammer Time! New Sub-boss Fight - Castlevania: SotN for Sega Mega Drive & Genesis - Dev Diary 23

  Рет қаралды 5,966

Pigsy's Retro Game Dev Tutorials

Pigsy's Retro Game Dev Tutorials

Күн бұрын

My Patreon:
/ pigsysretrogamedevtuto...

Пікірлер: 155
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Just a correction, the sub-boss music (Death Ballad) is actually by TenNoKoe_, not Alianger. There is so much going on with this project that even I get a little mixed up sometimes!
@tennokoemusic
@tennokoemusic 7 ай бұрын
Thanks, Pigsy!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
@@tennokoemusic Sorry for the mix-up! I'll make a correction at the beginning of the next video too.
@greyfox1127
@greyfox1127 7 ай бұрын
This continues to look better and better. Megadrive version continues to impress with how incredible it looks. Great work as always - keep it up :-)
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks!
@AllardRT
@AllardRT 7 ай бұрын
Damn, following this project since the first videos, it's crazy and heartwarming to see it eventually take shape and look better and better with each video.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks! It's great seeing some of the same old facing showing up since the beginning. It's a long journey, so it's nice to have some company :)
@IuriFiedoruk
@IuriFiedoruk 7 ай бұрын
The rolling animation was not actually missing from the site. That's because they only store the sprites, and the spinning was actually done rotating the same sprite by the PSX itself. You could just do the same rotation in photoshop or gimp, kust keeping all pixels intact while doing so.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
There are a lot of rotating sprites in the original, so a lot of the spritesheets online tend to include multiple versions of a sprite at different angles. For those that don't I can either capture each frame from an emulator (as in this case) or just use software to rotate (as you suggested). I might try the later technique next time
@KaskelotenZebbe
@KaskelotenZebbe 7 ай бұрын
Great job! Colours on the boss look great and the animations are smoothly implemented.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks. Pyron has since provided a version with even better colours, so I will be swapping it out later
@GreyMatterShades
@GreyMatterShades 7 ай бұрын
Man, looking awesome! One thing that might be a good idea to save on storage and VRAM space is to split large enemies like this into multiple sprites. I'm pretty sure they did that in the original version (the arms and hammer are one sprite, the legs are another, the torso and maybe head are another). That'd make the animations take up less space. Even if you don't need to do it, it might be a useful skill to teach in a tutorial in the future. Keep up the awesome work! 👍
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
SGDK's sprite engine provides plenty of optimisations in that regard, plus it's a case of if any savings are worth the extra development time and effort required
@opaljk4835
@opaljk4835 7 ай бұрын
In the original version everything was flat 2d polygons. Did they need to treat things as multi segmented sprites?
@andrew_stamps
@andrew_stamps 7 ай бұрын
@@PigsysRetroGameDevTutorials I'm wondering in the same thing as @GreyMatterShades I love the videos and the project and have been following for some time, but you didn't really go into how you got the roll to work. did you grab enough sprites to render him rolling for 4/8 frames and use x/y sprite flipping to get the other quadrants??? or did you do sprites for a full rotation? for those of us that are technically minded, more insight on how you implemented the new features is a gold mine that as of late you really haven't been showing. I hope this returns to your videos. especially given the name of your channel. I'm also interested in the ROM size at this point. As good as you report SGDK engine to be at sprite optimization, it it's also interesting to know if what you are building would've been feasible in the peak genesis days on say a 16-meg cart. 😊 edit I forgot about the last vid when you went over rom size lol.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
I normally use mirroring h/v flipping to minimise rom space, but in this case I just copied over the whole rotation. For these dev videos I like to explain the general process. Don't worry, I'll eventually cover these topics in much more technical detail in future tutorials@@andrew_stamps
@Myako
@Myako 7 ай бұрын
Yet another spectacular video from you, great job!! 👏🏻👏🏻💪🏻💪🏻 You know, I was thinking: if SGDK eventually gets to support MegaCD, you could try the Megacolor encoder and include all these videos as a bonus Gallery. It would be pretty sweet.
@megaorangegames
@megaorangegames 7 ай бұрын
The work you are doing is incredible, keep it up
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks!
@GusPagan
@GusPagan 7 ай бұрын
This video is the one that convinced me that this project is actually happening. I've been following this since the begginjng and a admit that at first I thought "well, that is a very cool hobby project, but probably not going to go too far". But video after video it is getting better and better and you keep showing actual progress. I'm kinda perplexed on how good you are! Thank you for all the effort you're putting on this!
@WRZ75
@WRZ75 7 ай бұрын
Wow. Legit this looks and sounds amazing. Thx for sharing this update
@Alianger
@Alianger 7 ай бұрын
6:51 Just a small correction, Death Ballad was done by TenNoKoe_ :) Looking forward to kicking the monster's ass. But how are you handling sub weapons and alternate main weapons or is this undecided so far? Brainstorming challenge ideas - the hammer (or an alternate stronger version of the attack) could stun the player if they're on the ground, he could throw the hammer and jump afterwards, or he could move faster and faster as the fight goes on
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Ah, you're right, I even get confused about who is doing what in my own project sometimes! Sub-weapons will pretty much work the same as in the original. Any alternative main weapons will be added at a later date (probably much later!) Thanks for the ideas! I'll no doubt iterate over the boss/enemy AIs as the project progresses. I need to find a balance between adding some new stuff while staying true to the original
@deano72
@deano72 7 ай бұрын
I think the rolling speed on your version looks more realistic. Your doing a sterling job.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Looking at it again, I actually think I might keep it at the current speed too
@Oni64
@Oni64 7 ай бұрын
5:45 That really brought a smile to my face😊 . loving the progress and process of this.
@OrdoNekro
@OrdoNekro 7 ай бұрын
Simply amazing. I cant wait for the final version
@lancelnce
@lancelnce 7 ай бұрын
This is looking great. Thank you for your hard work Pigsy.
@PlumbDrumb
@PlumbDrumb 7 ай бұрын
Good move. I think the added challenge for this boss is appropriate. Almost as if you fixed what was once broken. I'm surprised his colors translated so well to the Mega Drive, it looks great so far!
@orderofmagnitude-TPATP
@orderofmagnitude-TPATP 7 ай бұрын
My god this is.... Just.... Honestly brings a tear to my eye 😢😅
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Tears of joy, I hope 😅
@vinisasso
@vinisasso 7 ай бұрын
You are doing a great job! As far as my limited knowledge on Genesis hardware goes, if you wanted to reproduce the same sprite rotation effect you'd have to code the rotation routines yourself as the hardware was not able to rotate sprites by itself, which is a task for programmers who have deep knowledge on the M68000 programming, and yet the results probably would disappoint because of the system's limitations, it would end up with a dropped frame rate and the movement would not be as smooth. Not impossible, but quite unrewarding initiative. You went the alternative way and it worked so well. Keep it up, man!
@ClexYoshi
@ClexYoshi 7 ай бұрын
I'm glad to see you making progress on stuff like this and do feel that this is a good fit for The Creature. that being said, I do think a vital bit you missed was that creature kinda bounces up when he gets to the edge of the room. he slows to a stop and has a bit of momentum. There's been a lot of that in this project that i've noticed. little bits and bobs of polish that you haven't yet had a chance to implement before showing them off to the public. I understand that these are iterative passes that each segment of game needs to get, but I do hope that this project gets to that level of polish. one of the things that makes SOTN such a special game is that attention to detail; little things that didn't have to be in the game but the devs bothered to put work into making sure was there.
@rickydo6572
@rickydo6572 7 ай бұрын
The Sega Genesis is gonna win the 16bit war with this one
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
The 16-bit console war is eternal!
@igodreamer7096
@igodreamer7096 7 ай бұрын
The Creature have a great design, but is a joke for how easy fights. Great work there, Pigsy man. That was a clean way to rip those sprites! ⭐⭐⭐⭐⭐
@ElsweyrDiego
@ElsweyrDiego 7 ай бұрын
yes, it could be implemented new attacks from him, not just hammering and rolling. it would be awesome
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
There are a lot of cool bosses who go down too easily in the original, so it's nice to give them a second chance
@ElsweyrDiego
@ElsweyrDiego 7 ай бұрын
can you include new surprise attacks or it's difficult to make something like this?@@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
It's possible, but I want to be careful with how much I change from the original.@@ElsweyrDiego
@ElsweyrDiego
@ElsweyrDiego 7 ай бұрын
i understand. the fans might hate something drastically changed. but in my opinion as a fan, new things are welcome too, we played it on ps1 until exhaustion, we need something refreshing. maybe put an option to choose between new and old?@@PigsysRetroGameDevTutorials
@NeioGeo
@NeioGeo 7 ай бұрын
This is going to be amazing. Your work so far has been very detailed and it's great to see just how much the Mega Drive is capable of doing.
@AdventurerAlm
@AdventurerAlm 7 ай бұрын
Great job on this project so far! I know you mentioned possibly adding screenshake for the hammer hit, which is a great idea. Maybe have it timed to where it goes until the hurtbox on the hammer is done? That way players have an extra visual indicator on when it's still dangerous or when it's safe.
@AngelicDirt
@AngelicDirt 7 ай бұрын
Thinking about it, the end of the original seemed so rushed, so I can see why you moved him. I'm excited to see what goes where now; breaking muscle memory and map memorization, and providing new challenge is something I imagine is a thing for remakes. :v ~5:45 - He's such a chonky boi. I'm glad he likes his new home. Look, he's playing! :B
@damin9913
@damin9913 7 ай бұрын
Wow this game came out beautiful!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks!
@damin9913
@damin9913 7 ай бұрын
No problem@@PigsysRetroGameDevTutorials
@alynnzz0491
@alynnzz0491 7 ай бұрын
Great work as always! I patiently await a final build. Right now though, I'd like to compliment your choice of Castlevania Chronicles music.
@GimblyGFR
@GimblyGFR 7 ай бұрын
This is looking excellent. As a suggestion, you may consider adding an enemy attack pattern where it bounces around the stage while rolling, forcing the player to move on the floor to evade him, instead of jumping. The battle would become more interesting with one or two new attack patterns for the thing. I can't wait for the demo.
@AndromedaBeta
@AndromedaBeta 7 ай бұрын
Meu caro Pigsy... isso está INCRÍVEL. FANTÁSTICO. Trabalho Maravilhoso. Muito obrigado por seus esforços. Uma pena não ter tido a chance de ajudá-lo de alguma maneira nesse projeto. Minha vida tem sido Muito corrida e complicada. Mas quem sabe numa próxima. Ps: eu faço modelagem 3D se precisar num futuro próximo. 😉
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks. If I ever do a 3D Dreamcast game in the future maybe I can ask for your help then :)
@deano72
@deano72 7 ай бұрын
Instant like incoming👍
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks :)
@erikaleao3012
@erikaleao3012 7 ай бұрын
You achieved perfection with this game, I think it's the maximum the console reaches .
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Still far from perfect right now, but improving all the time!
@StRoRo
@StRoRo 7 ай бұрын
Fantastic work
@vicentereisdacruz1915
@vicentereisdacruz1915 7 ай бұрын
Every new ever improvement is just amazing... can't wait to play this version of the game. Genesis Does!!!!
@claudiosacchi3720
@claudiosacchi3720 7 ай бұрын
That's amazing!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Cheers!
@SCIN
@SCIN 7 ай бұрын
seu trabalho é imprecionante parabens, acho que está mais bonito que o porte ps1 devido as cores estarem mais vivas
@chrishowarth6623
@chrishowarth6623 7 ай бұрын
Brilliant as usual
@peacefulscrimp5183
@peacefulscrimp5183 7 ай бұрын
This is amazing 👍
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
🙏
@axguzman-gq9fz
@axguzman-gq9fz 7 ай бұрын
Se ve perfecto 👌
@85bitsdeveloper
@85bitsdeveloper 7 ай бұрын
Amazing !
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
🙏
@guillaumenunes9319
@guillaumenunes9319 7 ай бұрын
Gameplay, level design, everything is so well thought and done. Each video has its impressive aspect. do you think you could released the demo as you planned ? Everyone is waiting for it, thanks to you. Well done again.
@dacueba-games
@dacueba-games 7 ай бұрын
You should make a playlist with the soundtrack for this version! It's kinda hard to find because it's made by lots of different people.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
I've already made one, check out the playlist section on my channel page :)
@diehlr
@diehlr 7 ай бұрын
I feel like a third attack where he shoves the hammer out horizontally toward the player a little bit might mix things up and provide additional challenge. It would force the player to not get comfortable getting too close to the boss. the hammer strike comes down so closely to the boss, it doesn't pose a lot of risk to make you keep some distance. Just a thought! Very cool boss battle recreation, though! Very cool.
@diehlr
@diehlr 7 ай бұрын
Great ideas and shouldn't require too many more resources, should only need a few more tiles to make it happen!@@SirBuzz
@yousefslimani99
@yousefslimani99 7 ай бұрын
BTW I love how you've done with the graphics, The game looks a bit colorful for 1989 console, I love it 👍
@thiago7413
@thiago7413 7 ай бұрын
A shockwave moving forward when the hammer hits the grownd, so the player would have to jump over and then have the window to attack. Would be cool!
@berdo2595
@berdo2595 7 ай бұрын
I think the song could have some kind of complement, like a channel in one octave lower or something like that, along with the melody in the "loop beginning".
@georgemouhawesse5355
@georgemouhawesse5355 7 ай бұрын
Hi Pigsy, you're doin a great job!! For your next tutorial, can you show us how to code from one screen to the next? Such as the splash screen when starting a new game, moving to the title screen, then starting the game to the first level, then from one level to the next. Because I assume each new level has it's new palettes
@Christdeliverme
@Christdeliverme 7 ай бұрын
The speed of your spin is accurate, don't change it. It would be sweet if you could add cracks to the floor upon hammer hits
@backlogpanic7967
@backlogpanic7967 7 ай бұрын
Looking pretty great! Good choice for a sub-boss I would say~ Looks like it would be fair to fight as well, I would probably stand in the middle and spam sub-weapons. Any thoughts as to which weapon you would allow the player between latest checkpoint & this boss?
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Which items appear in which candles is going to take a lot of experimentation, so nothing decided yet
@backlogpanic7967
@backlogpanic7967 7 ай бұрын
@@PigsysRetroGameDevTutorials For sure! One thing you could decide this early however, is if you want to give *no* item-providing candles between checkpoint & sub-boss. Result: -Giving players who survived up until the boss an edge & rewarding good play. -Players who died will get to fight legitimately next try, & practice strike/backdash. I can't remember if this is how the other games handled sub-bosses, but it could be an interesting way to give *a few of them* a quirk of their own, compared to the big bosses.
@RedLP5000S
@RedLP5000S 7 ай бұрын
Outstanding.
@bugbee84
@bugbee84 7 ай бұрын
cant want to see more, keep up the great work!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks!
@hopetagulos
@hopetagulos 7 ай бұрын
Que trabalho limpo, porquinho! 🐽 🔌
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
haha!
@104d_3rr0r_vince
@104d_3rr0r_vince 7 ай бұрын
Majestic!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks!
@samaeldrakul4191
@samaeldrakul4191 7 ай бұрын
absolutely stunning🎉🎉 ✊️✊️✊️
@andrealotito4412
@andrealotito4412 7 ай бұрын
your rolling animation is actually more accurate to the speed of travel, the original looks goofy and slippery..! Maybe you can make the rolling speed faster along the animation then! On top of that, have the boss "angrier" before the last couple hits so animation and travel are even faster
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Good idea, a couple of people have suggested that too
@adrias3
@adrias3 7 ай бұрын
Awesome
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Cheers!
@SergioJogosMegadrive
@SergioJogosMegadrive 7 ай бұрын
Parabens
@gungriffonbr
@gungriffonbr 7 ай бұрын
impressive!
@luanreck
@luanreck 7 ай бұрын
Magic!
@locked01
@locked01 7 ай бұрын
I cannot stop imagining this to be out for MD/Genesis in 1997 just a month or two before the console was discontinued. What a hit it could have been! But would have anyone been able to make it this beautiful? And how much the cart would have costed? After all we have seen prototypes of Street Fighter Alpha (Zero) and Fatal Fury (with revamped graphic and gigantic sprites) but, again, even if technically possible, how much would the price of the chips to contain all that data would have costed? And who could program it at the time?
@SCIN
@SCIN 7 ай бұрын
terá upgrades de armas? por exemplo a espada de longo alcance? a textura do cenario é bem diferente do que vemos no ps1, será assim mesmo ou isso é apenas teste?
@TheAsh9423
@TheAsh9423 7 ай бұрын
Good
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
👍
@raycastello2532
@raycastello2532 7 ай бұрын
Very good
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks for your continued support and encouragement!
@roadkill_52
@roadkill_52 7 ай бұрын
Pretty cool boss!!! But hey, I think the rolling animation should mirror to the right when he go right. The rolling animation doesn't change directions which is a bit weird
@rancyheyglades1751
@rancyheyglades1751 7 ай бұрын
I dunno, to me, midair roll looks like a totally legit (and kinda awesome) attack! 😁 There could potentially even be a 2nd version where instead of passing over you, he hammers out of it so that you have to backdash? Seriously though, these videos are pretty much at the top of my list of favorite things, thanks so much again for making them!!! I love everything about these from the sense of discovery, to the clever solutions, esoteric geeking out, and the sense of community from everyone that shows up! In terms of esoteric geeking out, definitely agree that the Alchemy lab is the perfect place for this boss/definitely would get my vote for saying it’s even better than the original game’s placement. I wonder if the creature actually was SUPPOSED to appear there in the original, but ultimately was passed over for beelzebub since it’s one of the few rooms where the latter would actually fit? (Creature pretty much appears in the 1st available opportunity afterwards) Glad to also hear that there also won’t be boss doors in this version! I think that does lead to more of a sense of exploration, which would be nice even if exploration not as much of a focus in this version (the dread of getting locked in with a boss, or even the humor of seeing a boss in the room and turning around to say “nope!” 😁) Would definitely love to hear more about the sound effects and any other considerations you’ve ran into on them (maybe how to determine where a ripped sample starts/stops, navigating memory issues, or if there’s a certain priority when multiple effects are played at once?). Thanks so much again/seriously looking forward to the Christmas demo!!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Thanks for your kind words. There'll be more on SFX in next year's tutorials
@rancyheyglades1751
@rancyheyglades1751 7 ай бұрын
Awesome thank you! Looking forward to it!!
@olivieribassi647
@olivieribassi647 7 ай бұрын
First I want to give the congratulations and thank you for the project that excites all of us lovers of the mega drive. I'd like to raise a question. If the mega drive were relaunched, with larger color palettes and a more powerful processor, would the same conditions and knowledge be maintained for game development? I think if that were possible, that idea would be interesting.
@marcelosoares7148
@marcelosoares7148 7 ай бұрын
This is a really nice project. I kinda want to see something like that for the 3DO, which is more powerful than a SNES/MD but weaker than the PS1 (SOTN target platform); Although i guess something like the SGDK doesn't exist for the 3DO, plus it only would be available for the 12 3DO owners out there.
@jbmaru
@jbmaru 7 ай бұрын
Nice job on the sprite rotation, does it take a lot of CPU time without a dedicated chip? I don't remember any games that implemented it so well BITD.
@ThoArtOne
@ThoArtOne 7 ай бұрын
Gunstar Heroes have sprite rotation
@anjodaharpa8757
@anjodaharpa8757 7 ай бұрын
Is possible a jumping hammer attack?
@mazonemayu
@mazonemayu 7 ай бұрын
instead of the screen moving when the hammer hits the floor, you could do falling debris you need to avoid. just an idea ;)
@MrDarkNao
@MrDarkNao 7 ай бұрын
Air Rolling 5:50 LUL
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
New attack, haha!
@dbfd276
@dbfd276 7 ай бұрын
5:57 you could do the 8-bit Sonic 2 or NES DuckTales approach there, that would probably work, i would also suggest giving the HUD extra score or an enemy/boss health so the HUD doesn't look too empty
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
I'm going to add number of lives to the HUD eventually. I'll have to see if there are enough sprites left over to add an enemy lifebar
@DDRmails
@DDRmails 7 ай бұрын
what about add slide ahead when hammer hits?
@jmssun
@jmssun 7 ай бұрын
Watch both mandarin and english ver🎉🎉 I always considered souls games as 3D symphony of the night
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
I've never played a souls game - I should try one sometime next year
@jmssun
@jmssun 7 ай бұрын
@@PigsysRetroGameDevTutorials please do so.. especially Elden Ring, very much a very well done SOTN experience
@jmssun
@jmssun 7 ай бұрын
And please do a live stream of play through. I would love to see that
@dfcastelao
@dfcastelao 7 ай бұрын
Having a kick anticipation animation before the rolling attack could be more fair to the player, specially if you are going to speed it up. Looking great so far!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
There is a quick kneel animation before the roll, but I could add something extra later. So long as you stay alert, it's normally fairly straightforward to avoid
@armamentarmedarm1699
@armamentarmedarm1699 7 ай бұрын
How about making the creature rebound in a parabolic arc as it hits the ramp?
@mypkamax
@mypkamax 7 ай бұрын
Personally, I think it would have been more space efficient to have The Creature's legs be separate sprites in the Mega Drive version if it's part of the second background layer.
@MasterOfMyUniverse
@MasterOfMyUniverse 7 ай бұрын
This is pretty close to the original version.
@IvanVz.
@IvanVz. 7 ай бұрын
😮la creatura 😹
@Bloodyshinta1
@Bloodyshinta1 7 ай бұрын
what would you do if the colors in the character are shared in the background pallet? I kind of assume that would be more common in 16 bit games though since they have fewer colors to work with.
@zabustifu
@zabustifu 7 ай бұрын
Not trying to mimic the original is the way to go, because as you noted, the original is not without flaws. I think the slower rolling animation looks better (I mean the animation speed and not the movement speed). I think it looks too fast in the original, and does not fit a big and slow character.
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
I think the regular enemies are generally fine, but a lot of the bosses need to be buffed to make them more of a challenge - plus the level design needs fewer long corridors :)
@nintendo4life132
@nintendo4life132 7 ай бұрын
Nice upgrade, there's some special effects like the boss is getting hit and Alucard damage. How would you'll be able to pull it off
@ofonruiz
@ofonruiz 7 ай бұрын
osom!
@miamimagicians
@miamimagicians 6 ай бұрын
Do you think symphony of the night could’ve come out for both super Nintendo and Sega genesis? I mean if streetfighter alpha-2 did if Mortal Kombat ultimate dead
@dava00007
@dava00007 7 ай бұрын
i think you should capture the genesis side without filtering, like on the PS side, so we can better see the pixel art.
@kristoferstoll587
@kristoferstoll587 7 ай бұрын
Considering the technique you used to grab the sprites from the PS1 game, and the fact that you are 100% faithfully mimicking "hardware rotation" effects, could you use the same technique if say you wanted to do a remake of Out Run on the Genesis/Mega Drive? In that case you could grab all the sprites that are used to scale the cars and road side sprites and then add them to mimic the sprite scaling the Arcade used! It would be heavy as far as ROM size would be concerned but that shouldn't be an issue today considering the cheap cost of ROM chips (in case you wanted to do a physical release) or just make a ROM file and use an emulator... Is that possible or would the ability of the console to produce sprites on screen be an issue? I know in the "Mark V" version of Space Harrier they were able to recreate the sprite scaling but the flickering onscreen was quite bad. I am interested to hear your opinion. Amazing work btw... That had to be said!
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Given the larger rom sizes realistically available nowadays, I think you could probably do a much better job of imitating sprite scaling by storing sprites of many different sizes. Swapping them in and out of VRAM shouldn't be an issue either. Hopefully someone will give it a try one day to see what is possible!
@SCIN
@SCIN 7 ай бұрын
@@PigsysRetroGameDevTutorials The mega drive scales road rash, but the fps is very low, I use overclocking on the emulator to play at 30 fps, it's impressive
@mankrip-
@mankrip- 7 ай бұрын
Can't you rip the textures and sfx directly from the CD data? Aren't there any tools for it?
@JMDAmigaMusic
@JMDAmigaMusic 7 ай бұрын
Is maybe a bit cheesy but what about a good screen shake once the hammer hit? Else feel like is not that dangerous
@lastavenger8532
@lastavenger8532 7 ай бұрын
how far are u from completing the game ?
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Very far 😅
@bifftannen1598
@bifftannen1598 7 ай бұрын
Any chance of grafting this into a 32X/Mega CD version that outdoes the PSX version in all aspects?
@NoSpamForYou
@NoSpamForYou 7 ай бұрын
Can't you turn off the background in the emulator to make it easier to grab sprites? I think how you removed the flame from the sword reduced the hitbox enough to where hitting the creature from the front will be very difficult. Maybe delay the hammer attack by a few frames to make more time to come in for a strike.
@jc_dogen
@jc_dogen 7 ай бұрын
PS1 doesn't have a background layer so it wouldn't be that simple.
@exoria-x
@exoria-x 7 ай бұрын
Y la lucha contra el doble de alucard ese va a estar?
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
I have something fun planned for that fight, but I'll keep it secret for now 😁
@exoria-x
@exoria-x 7 ай бұрын
@@PigsysRetroGameDevTutorials mmm entonces estara en el castillo invertido es correcta mi deducción
@Crystallums
@Crystallums 7 ай бұрын
It looks amazing! I will surely love this game when it is released...
@ryuhollande4267
@ryuhollande4267 7 ай бұрын
its a new game for megadrive ??
@brutapode8939
@brutapode8939 7 ай бұрын
Always a Metroidvania or an Action/Platform?
@liamconverse8950
@liamconverse8950 7 ай бұрын
So to rip these assets from the PS1 game is basically a matter of photoshopping frame by frame? Like I was thinking about what it might take to make a port of an arcade game that was never originally ported to megadrive but seems feasible. I guess that would be more reasonable than trying to dig out the Sprite data from the compiled ROM
@TheRealSparkster
@TheRealSparkster 7 ай бұрын
So anymore tutorials like inserting music into your projects
@PigsysRetroGameDevTutorials
@PigsysRetroGameDevTutorials 7 ай бұрын
Yes, the tutorials will resume early next year (including about music)
@caveiracibernetica
@caveiracibernetica 6 ай бұрын
A Meeting With Death - Castlevania: SotN for Sega Mega Drive & Genesis - Dev Diary 24
8:58
Pigsy's Retro Game Dev Tutorials
Рет қаралды 5 М.
DO YOU HAVE FRIENDS LIKE THIS?
00:17
dednahype
Рет қаралды 77 МЛН
Получилось у Вики?😂 #хабибка
00:14
ХАБИБ
Рет қаралды 7 МЛН
🌊Насколько Глубокий Океан ? #shorts
00:42
Неприятная Встреча На Мосту - Полярная звезда #shorts
00:59
Полярная звезда - Kuzey Yıldızı
Рет қаралды 7 МЛН
The Hardest Part in EVERY Zelda Game
23:16
voyan
Рет қаралды 1,4 МЛН
32 New Sega Genesis & Mega Drive Games in Development in 2024
26:25
Pigsy's Retro Game Dev Tutorials
Рет қаралды 178 М.
Combat Improve  by 1000%
2:23
MazenK3
Рет қаралды 467
Dark Souls, but every enemy is MANUS - [Part 1]
51:34
Sarius
Рет қаралды 211 М.
Super Metroid - Finding The Hidden Third Eye
6:02
GoldenChorizoCode
Рет қаралды 353 М.
Street Fighter X Tekken: All Rival Intros (Both Sides)
21:54
Ultimate Gaming Dude
Рет қаралды 302 М.
New Pixel Art for Harbour Level - GG Shinobi Remake for Sega Mega Drive & Genesis - Dev Diary 4
11:30
Castlevania: Symphony of the Night Speedrun World Record Explained!
18:43
The LAST GAME Released For EVERY CONSOLE
6:16
Nofruit
Рет қаралды 1,2 МЛН
😱 Майнкрафт, но Мы Сразились с СУПЕР БОССАМИ + Фиксплей
32:58
MrLololoshka (Роман Фильченков)
Рет қаралды 976 М.
Мой Друг Стал ИГРУШКОЙ и Вот Почему! Майнкрафт | Minecraft
9:16
ВЛАДУС — Майнкрафт
Рет қаралды 454 М.