Good news - I was able to bring the game over to Picotron! Check it out Here
Hey all!
It's been awhile, hasn't it?
I have a new Pico-8 project brewing. Anyone care to guess what it could be? (Edit: people guessed quick! It's a Castlevania Demake)
I will update this post to keep everyone up to speed when I upload a new cart. Check out the spoiler below if you're interested!
Change Log:
Indeed it is @dw817. I'm already starting to notice areas that could be compressed a bit, like my animation system. I need to read up on the map editor by @JadeLombax, and see if I can fit it in here.
Heh - how about that, @Turbochop. I managed to deduce that from the way he animates when he walks. Guess I really have seen a great many video-games in my time and can pick out characteristics.
Best wishes on your game - and please call on us if you need help in something.
Thank you @dw817. If people can instantly recognize what I'm trying to make by one glance at the character, I'm doing something right. Having said that, though, I do want to ask about the way he walks.
I wanted there to be clear back and forth head movement, but I couldn't really achieve that without it looking exaggerated. Anyone have a idea on how to better convey his movement? I'm actually pretty happy with it as is, but maybe I don't know any better. I have already toned down the arm movement, but the head makes it almost look like a limp.
Well now, @Turbochop, you could check out the game "Shantae" for the Gameboy color done by the animation company, "WayForward Technologies."
To me anyways they have the best and most perfect movement of pixeled sprites, definitely worth examining.
Here is a video and the channel to reach them and examine more of their animation works.
https://youtu.be/xHLYbv8AGGM
https://www.youtube.com/user/wayforwardtube/videos
I am actually very familiar with Shantae, @dw817. You're right, though: I need only look around a bit for some ideas.
I agree with you about the walk looking like a limp @Turbochop. You said you were trying to get a back-and-forth movement but what you've actually got is the head dropping down just as the character steps forward.
Now, I'm not artist so take this with a grain of salt but I think typically any up/down motion in a walk cycle usually comes from the legs themselves: When the legs are passing and you're sort of up on your toes of one foot the head will be highest; when the legs are apart and both touching the ground the head will be lowest. But the head/torso itself remains in basically the same position apart from arm movement.
Here's some Castlevania 1 gameplay just for reference. https://www.youtube.com/watch?v=mOTUVXrAOE8
Notice that although the head does move it always stays at the same height. The movement of the head actually seems to have more to do with the way the torso is moving. When the character isn't moving the foreground arm is quite far forward and what we see is mostly his back. When he walks the whole torso rotates back exposing part of the chest and background arm. It's a pretty exaggerated twist actually and the back-and-forth head movement seems to be a result of that.
Taking a closer look at your sprites you actually do have that torso twist going on. So I think your problem is actually that you've got the head moving opposite to what the torso is doing. With your character, as the body twists back you have the head moving forward and down.
I made a couple quick edits to your sprites:
- Moving the head back instead of forward
- Keeping the head at the same level for the whole animation.
Still looks a bit odd but it doesn't look like he's limping anymore.
Good luck with your project, I look forward to playing it! Always loved castlevania as a kid.
@jasondelaat Hmm... You're right: It looks a little odd either way. I'll have to do some research. Thank you for taking a crack at it, in any case!
@gameboy9999 I'm really happy to hear (read?) that! Thank you so much!
This is starting to look really good! Great rendition of Vampire Killer too! Nice work!
I appreciate that @jasondelaat. I originally had triangle on channel 4, but in my opinion it didn't sound full enough. I switched it to sawtooth and was instantly happier with it!
Love me some Castlevania. I think you did a good job recreating the controls, and the music is great.
@kerneliron I'm glad you like the music. I'm pretty happy with it so far! As far as the controls are concerned, I have a tendancy to obsess over the details, sometimes to the detriment of my token count... But I feel it's worth it to get an experience as close to the original as possible.
Looks good, and nice job on the music!
Like you were saying, I did notice the token count is getting pretty high, though. You mentioned being interested in using PicoMap to store the levels, but that will add at least 600 or so additional tokens to get working. Have you considered switching to a non-table-based setup for your playable character? I know a lot of people seem to use that, but all the table property references really increase the token count.
@JadeLombax That's an interesting idea. It wouldn't be too difficult to switch the player to a non table object, but my collision code is taken from examples, and I think they rely on the object.variable format. Per the change log, I am already taking a step back and looking at how to optimize token count, and my first stop will be the stair code. I was initially unsure of how it would even work at all, and then I found a somewhat solution, and then duplicated ALOT of code... I have some ideas about how to go about that, and have found other redundant bits. After all of that, I may see what it will take to implement your idea; it's a good one.. PicoMap IS GOING to be a part of this project, even if I have to rewrite the whole game to make it feasible.
Well, you'll need some extra tokens for a compression system, though depending on how much space you need for graphics, pancelor's BigMap editor, combined with zep's PX9 compression, might be able to handle the level storage. It can't fit worlds as large on a cart as PicoMap can, but Castlevania's world is only a bit over 100 screens, so it might fit. As the levels are fairly dense visually, it could potentially make creating them quite a bit more straightforward, in addition to using somewhat fewer tokens. Just an option you might want to keep in mind.
@JadeLombax So, I just tried to convert my player character into a non player object, changing all of my pointers to match, and the game completely broke XD. I'll have to come back to this. For now I'm going to try squishing my stair code and see what that nets me.
@mjau1967 Thank you so much! Everyone seems to be happy with the music, and I'm thrilled as I'm not a musician.
I don't know if you like contributions to your project, you can throw these in the can if you don't want them. But I was yearning to do some Castlevania sprite art in Pico today and I found your project, so I added some sprites to the spritesheet/map just to play around, you can keep them if you would like!!
Hi @Turbochop.
Just a few things I noticed. In the original Castlevania the whip stays out a little longer when you fling it. And when you go up or down stairs you can just hold the up or down arrow key and go from one staircase to the next, IE:
From here you should be able to push the down arrow key and reach the bottom. But it doesn't. It stops and you must re-align your feet to the steps.
@dw817 Okay, so...
I initially wrote stair code that, while more bloated, worked flawlessly. My trimmed code seems to shift your character back a bit when he gets off the stairs. I'm not sure why it does, and I'll have to look into it. As for the whip, It definitely needs work. It is able to hit things way behind you, and it shouldn't do that. I need to adjust the attack frame so that it does it's thing after the whip is in it's proper place, and make the whip stay out just a little longer.
This project is far from complete, and I really need to sit back down and continue work on it. Thank you so much for your suggestions!
@HeyNetters Those look perfect! It really is amazing how much a few tiles can add to the atmosphere!
Truth be told, I have not yet even begun to finalize artwork, but I think I'll hold onto these, if you don't mind. They really do look good!
I'm so happy my project could be a source of inspiration for you!
Hi @Turbochop:
OMy you really improved the whip, and sound. Good stuff !
I still cannot climb entirely down the staircase from the top to the bottom in the place I mentioned above. It may be the position of the tiles, I'm not sure.
Also it is possible to change direction when jumping but not the MOVEMENT. That is you can jump forward and then face the opposite direction mid-flight, but it does not alter the direction you are MOVING.
This looks great when you are hit by an enemy and you struggle to not fall in the water as you rapidly hit left or right, your player floundering, as trying to control him while being forced only in one direction.
@dw817 I'm glad the changes to the whip and SFX are well received. Thank you for saying so. I haven't touched the stairs yet. They may be due for yet another rewrite.
You shouldn't be able to change your facing while in mid air. I know there was a way to make Simon jump backwards in the original game. It was tricky; you had to press in the opposite direction and jump pretty much at the exact same time.
I have thought about this, but haven't implemented it yet. I don't think it was intended in the original game, but I would have to add code specifically to do that.
Hey all! If anyone sees this, I've been successful in porting my current work over to Picotron, and will continue it there. I've recently learned a whole heap about the new platform, and I look forward to seeing what I can do!
Also, I'd like to say that I have been keeping track of the stats since the last version... You guys are bonkers! It's not even done!
It's part of the inspiration for me to bring it over to Picotron, and try working on it some more. Thank you all so much for your interest in my projects!
[Please log in to post a comment]