That's true, it requires a bit of memorization and configuration. I've put the shortcuts similar to character movements: CMD + j,k,l (jump over, jump out, jump in).
In IdeaVim and VSCode, I've mapped the spacebar in Normal mode to EasyMotion. For jumps that aren't very close, you can land on any character you can see on the screen in 4-ish keystrokes.
The game is fun, but perhaps a bit misleading regarding what 'mastering vim movement' amounts to. As I am sure many of you know, vim has tons of constructs for efficient navigation: Using b or w for word-wise jumping, special markers like $ and 0, Ctrl-D and Ctrl-U etc. A good overview of movement commands can be found here: http://vim.wikia.com/wiki/Moving_around
I got a little tripped up trying to do the long jump section of the hazard course, since holding control for crouching while moving forward (W) triggered the close tab shortcut. Luckily the arrow keys work for forward-backward motion.
Just make UP work in addition to X. This way users with built in reflexes won't feel punished.
Also, make space work for jumping too. I hit space a few times causing me to skip down on the page.
You don't need to advertise these additional key bindings, but since they are very common in other games a significant portion of players will automatically use them.
Yeah, tried it. Every move has to be given explicitly, just a little jump each time, again and again. It got mega frustrating if you had more than a few PCs so I got so far into it then gave up.
Edit: I think I misremember. You can set a waypoint and PCs will go there, but I there was still a lot of micromanagement that slowed things up too much for me.
Brilliant work so far for something made entirely from scratch, I'm not sure how many people will be aware how difficult that makes things (even getting a window to appear at all is a lot of work). I can see from the comments your going for something like jump king, just a few pieces of advice:
* If you look at jump king, getting over it, games like that that pull it off really well, something you'll notice is that the aesthetic is very different than other games in their respective genre. The player sprite in jump king for example is a lot more squished than you would find in a usual platformer. This is actually very important, the graphics do a lot to inform the player on what they should expect; if they see a generic looking platformer, they will expect generic platformer controls, even if told otherwise.
* Similarly, animation is a good way to give feedback to the player. Currently the only way I know I can jump is to try to jump. Again, looking at jump king, the player knows they can jump when the sprite is crouched down.
* I'd either add a slight delay after the first keytap before moving, or try to get the controls to be more "sticky". Currently a lot of the time when you try to jump you just end up running off the platforms. A lot of platformers actually have a small amount of extra collision off of the platform, so players can run slightly off it and still be on it, that would probably go a long way to helping. You obviously don't want it to be easy, but currently it feels less frustrating (which I imagine is what your going for, like those other games) and more confusing.
You can do it for quite a while with mousewheel = jump (which isn't considered scripting). Doing it effectively / keeping the speed does require practice. Was way easier in 1.6 and source tho.
In normal mode, after using f or F to jump to a character, ; repeats the motion and jumps to the next match. I find myself using this often enough that if I swapped mappings for : and ; I would be in a world of confusion.
The issue was apparently that I didn't realize the player started in the top-left of the screen. I thought I was meant to control the character that starts in the center of the screen and starts moving immediately (like pac-man).
Controls are still a bit clunky (slow to respond), but do work.
reply