Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

This is a fantastically fun idea for a roguelike.  I haven't internalized the Vim keys and I'm playing on a laptop, so I don't have a numpad, so it would be really helpful to be able to just remap the keys, but even with my clumsy Vim-key playing, it was pretty fun and compelling.  Great job!

Thank you for trying my game! I will try your game Battle Weary soon.

I am sorry that my game did not provide the appropriate controls. The configurable key-mapping is a good idea. But I think it is quite an effort to implement it properly.

What keys would you prefer for playing? Maybe you could use the arrow-keys for the cardinal directions (right hand) and name me your preferred keys for the diagonal movement (maybe left hand). If they would not interfere with the already existing controls I could easily implement them for you. Do you think [q], [w], [a], [s] could work for the diagonal movement?

Do you know if the rules of the 7DRL-Challenge allow me to update my game by additional controls after the deadline?

(+1)
But I think it is quite an effort to implement it properly.

Yeah, it can be a bit of a pain to have keys be fully configurable.  An easy compromise might be to have a set of keysets you choose from at the start of the game, and then you just read those to get the key you want.  So, instead of doing something like:

//    Checking for moving left:
if (event.keyCode == ROT.VK_NUMPAD4) { move( -1, 0 ); }

...in your code, you would instead do something like:

//    Somewhere during startup:
var numpadKeySet = { keySetName: "Numeric Pad Keys", left: ROT.VK_NUMPAD4 };
var arrowKeysKeySet = { keySetName: "Arrow Keys", left: ROT.VK_LEFT };
//    When the user selects a keyset:
var currentKeySet = arrowKeysKeySet;
//    Checking for moving left:
if (event.keyCode == currentKeySet.left) { move( -1, 0 ); }

Then, you could set a different keySet depending on the type of key bindings you want, and the behavior is abstracted away.  Later, you could have a functionality that would let players define a custom keySet.

Do you know if the rules of the 7DRL-Challenge allow me to update my game by additional controls after the deadline?

There's another thread in the 7DRL forums about this you can read for more detail, but the short version is that it's okay to update the game as long as it's clear and feasible how the 7DRL reviewers can play the end-of-compo release version.  So you could update it, but be sure to leave the original release version up and clearly marked for reviewers.

Thank you for the very detailed explanation Lone Spelunker. Good idea to have the different predefined keysets to choose from. I will see if I could implement this during the next weekend. What could a possible alternative to the numpad look like. Do you think [q], [w], [e], [a], [d], [z], [x], [c] could be a proper choice? I do not want [s] to skip a turn since a lot of people are use to the [w], [a], [s], [d] controls and therefore would accidentally skip a turn when they want to move southwards. So my choice for skipping a turn would still be [.] as for the vi-keys.

Since my game is playable in browser, I cannot provide two different downloads in order to keep the original 7DRL-version. So I think I will need to host a second game page for the updated game and link to it from the original 7DRL-game-page.

Well, maybe you could do a keyset based around I-J-K-L as the cardinal directions? Or maybe I-J-L-comma? And I think W-A-S-D could actually work if you make space be the pauser.

You know, another option would be to just support screen clicks on the display.  That would solve a lot of the issues for people using laptops.

Deleted 4 years ago
(1 edit)

Sorry for the delay but I finally managed to implement your idea with the different keysets.

Deleted 4 years ago
Deleted 4 years ago
Deleted 4 years ago
Deleted 1 year ago
Deleted 4 years ago

Hello Lone Spelunker,

there is a new version of RunToTheStairs:

  • The game now has a server-sided backend wich is hosted at GreenGeeks.
    • This allows to generate automatic high-score-tables which are accessible from within the game.
    • Players can register accounts in order to keep their progress.
    • High-Score-Tables can be sorted by different criteria. (e.g. "Score per Hour" which should be interesting for speedrunners)
  • Balancing changes towards shorter games.
  • Less unfair: The players position is newly calculated if the distance to catch up would be to large.
  • More versatile pathfinding-algorithm with better performance.

Please consider to play again!

Gerhard