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 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.
[Please log in to post a comment]