We are Hejickle

Moderator: Moderators

User avatar
pubby
Posts: 583
Joined: Thu Mar 31, 2016 11:15 am

We are Hejickle

Post by pubby »

A small little roguelike game by me and music maestro MovieMovies1.

ImageImageImage
ImageImageImage

The goal is to progress through the floors by walking onto exits. Killing enemies is optional, but often a necessity as you can't take the stairs when an enemy is adjacent to you. Along the way, you'll collect gems which can be used to purchase items in shops.
  • D-Pad moves. Bump into enemies to attack.
  • Start button is your inventory and ability screen.
  • Hit select to examine things. This is kinda like an in-game help, and can be used almost anywhere including menus.
  • A button casts spells, assuming you have one.
  • B button is multi-purpose. Press and release it to wait a turn. Hold B down and press select to change weapons, press A to change spells, and press the D-Pad to change your facing direction.
There's a handful of little game mechanics involved, so if anyone's confused about something just ask.
Attachments
we_are_hejickle_v3.nes
(64.02 KiB) Downloaded 1078 times
Last edited by pubby on Thu Jan 31, 2019 12:08 pm, edited 2 times in total.
User avatar
gauauu
Posts: 779
Joined: Sat Jan 09, 2016 9:21 pm
Location: Central Illinois, USA
Contact:

Re: We are Hejickle

Post by gauauu »

Wow, I'm impressed with how much detail there is. The text quotes about scenery in the level adds a lot of flavor. Well done!

And unlike many roguelikes, it's not impossibly hard out the gate. I'll have to spend some more time on this one soon.
User avatar
FrankenGraphics
Formerly WheelInventor
Posts: 2064
Joined: Thu Apr 14, 2016 2:55 am
Location: Gothenburg, Sweden
Contact:

Re: We are Hejickle

Post by FrankenGraphics »

Wowww. I'm stuck watching the title screen and listening to the song. Love the pattern of the falling particles/leaves and that they're passing in front of/behind the text sorted by colour. Minimalist and very effective.
User avatar
FrankenGraphics
Formerly WheelInventor
Posts: 2064
Joined: Thu Apr 14, 2016 2:55 am
Location: Gothenburg, Sweden
Contact:

Re: We are Hejickle

Post by FrankenGraphics »

Second impression: Love it. Absolutely love it. Very atmospheric. The music does a lot to help, but the characters are well designed and the dungeons moody. The system feels rich with special abilities, status effects and statistics - this is not common on the system.

So far there's just one tiny thing i wish i could do - use D-pad left and right in the encyclopedia (named map?) to cycle through entries.
User avatar
gauauu
Posts: 779
Joined: Sat Jan 09, 2016 9:21 pm
Location: Central Illinois, USA
Contact:

Re: We are Hejickle

Post by gauauu »

FrankenGraphics wrote:... in the encyclopedia (named map?) to cycle through entries.
The naming of that really confused me also. I spent a few minutes mashing different buttons trying to see an actual map.
User avatar
FrankenGraphics
Formerly WheelInventor
Posts: 2064
Joined: Thu Apr 14, 2016 2:55 am
Location: Gothenburg, Sweden
Contact:

Re: We are Hejickle

Post by FrankenGraphics »

Another thing i really like is that game rules change slightly on the 5th level of each area by providing a bonus if the condition is met. It changes from a game of careful resource management and trying to get all gems and to the exit without losing too much life to a game of risk vs. reward.
User avatar
Banshaku
Posts: 2417
Joined: Tue Jun 24, 2008 8:38 pm
Location: Japan
Contact:

Re: We are Hejickle

Post by Banshaku »

Was able to try the game a little bit and it's good. I recognized right away that the music from the store was inspired from Konami Bayou Billy :D

Since I need to learn about updating a good part of the screen in real time without closing the PPU, I'm curious how is the map field is updated? Does it requires to drop some of the scanline to allows more time in vblank to update it? My very basic testing so far is when you have more than 64 bytes to update, after updating OAM and palettes, it starts to spill outside vlbank and garbage ensue. A complete NSST screen RLE encoded seems not possible without closing the PPU, which causes a small hitch/flicker but in your map, I don't see anything like that.

If it becomes too much explanation we just split the thread. I'm very curious to learn how to improve writing data in real time.

Good work!
WhiteHat94
Posts: 46
Joined: Fri Apr 07, 2017 5:02 pm

Re: We are Hejickle

Post by WhiteHat94 »

I've briefly messed around with it a little and I really like it, the gameplay is nice and the music is really good. But I just tried it on console, Everdrive, and there are some fairly substantial graphical glitches every time you move, not sure if that is able to be fixed. Here is a clip so you can see what I mean.

https://www.youtube.com/watch?v=f433hhOfEHM
User avatar
tokumaru
Posts: 12427
Joined: Sat Feb 12, 2005 9:43 pm
Location: Rio de Janeiro - Brazil

Re: We are Hejickle

Post by tokumaru »

I assumed it was using the alternate name table for double buffering the background updates, thus scrolling without tearing, but that doesn't seem to be the case. Apparently it uses a sprite 0 hit to disable rendering early and have enough time to redraw the screen.
Last edited by tokumaru on Tue Jan 29, 2019 8:21 pm, edited 1 time in total.
User avatar
gauauu
Posts: 779
Joined: Sat Jan 09, 2016 9:21 pm
Location: Central Illinois, USA
Contact:

Re: We are Hejickle

Post by gauauu »

WhiteHat94 wrote:I've briefly messed around with it a little and I really like it, the gameplay is nice and the music is really good. But I just tried it on console, Everdrive, and there are some fairly substantial graphical glitches every time you move, not sure if that is able to be fixed. Here is a clip so you can see what I mean.

https://www.youtube.com/watch?v=f433hhOfEHM
I just tried on my powerpak and see the same glitches there as well, so it's not Everdrive specific.
Sour
Posts: 890
Joined: Sun Feb 07, 2016 6:16 pm

Re: We are Hejickle

Post by Sour »

As far as I can tell, it looks like OAM is getting corrupted for a single frame?

Rendering is turned off halfway through the frame to update it. And then the sprites are updated by writing to $4014 around scanline 244, without writing to OAMADDR ($2003) first. Since rendering is disabled around cycle 200, it's in the middle of OAM evaluation, and rendering getting disabled means the reset of OAMADDR to $00 from cycle 257 to 320 is not going to run until rendering is enabled again. Which means $4014 is probably getting written to while OAMADDR is in an unknown state? This could probably cause glitches, considering how glitchy everything OAM-related seems to be.
User avatar
Memblers
Site Admin
Posts: 4044
Joined: Mon Sep 20, 2004 6:04 am
Location: Indianapolis
Contact:

Re: We are Hejickle

Post by Memblers »

That's awesome, I love it. I was immersed into it for a while, really nice game.
User avatar
pubby
Posts: 583
Joined: Thu Mar 31, 2016 11:15 am

Re: We are Hejickle

Post by pubby »

Thanks for the feedback everyone! :beer: 8-)
Sour wrote:As far as I can tell, it looks like OAM is getting corrupted for a single frame?

Rendering is turned off halfway through the frame to update it. And then the sprites are updated by writing to $4014 around scanline 244, without writing to OAMADDR ($2003) first. Since rendering is disabled around cycle 200, it's in the middle of OAM evaluation, and rendering getting disabled means the reset of OAMADDR to $00 from cycle 257 to 320 is not going to run until rendering is enabled again. Which means $4014 is probably getting written to while OAMADDR is in an unknown state? This could probably cause glitches, considering how glitchy everything OAM-related seems to be.
Hmm good hypothesis. I've posted an updated ROM that writes #0 to OAMADDR before each DMA. I don't have a cartridge to test it myself, but hopefully that is the fix.

And yeah, PPU changes happen by disabling rendering around scanline 200 and doing everything before NMI occurs. There is very little buffering involved.
WhiteHat94
Posts: 46
Joined: Fri Apr 07, 2017 5:02 pm

Re: We are Hejickle

Post by WhiteHat94 »

Yep, appears to be working correctly now on console. I'll definitely let you know if I come across anything else

Actually noticed a small graphical glitch right after I typed this, if you inspect the floor, and get the Carlin quote, there is 1 tile of brick on that screen that is out of place.
User avatar
pubby
Posts: 583
Joined: Thu Mar 31, 2016 11:15 am

Re: We are Hejickle

Post by pubby »

Cool, thanks a ton WhiteHat for testing!

If the bricks are in the upper-right corner of the text box, then that's intentional. It looks a bit odd, but it's showing what's being examined (the floor).
Post Reply