Memory Game – Mostly finished

I wrapped up my work on the memory game – I’ll more likely call it matching, and I have some fluff I’d like to add, but all the primary game mechanics are there.

You start with a small number of “question tiles” and a larger number of answer tiles – and you have to find your matches in that small group. When you first start out and only have a few characters unlocked, the game doesn’t scale in difficulty because I don’t allow repeat questions – there just aren’t enough tiles to put in the mix. I may change this as the stage isn’t all the compelling with just a few characters unlocked…or maybe you will unlock more stages as you progress through the game.

The game looks something like this (although here, all our characters are in English).

memory

Next, I think that once I get the Speed stage working, I’m actually going to revisit the Memory Stage – I may try to make it “great” by adding some animations and fluff.

Memory Game

The memory game idea started out as a clone of the children’s game, “Memory”. This version evolved to be a bit more practical for training – first into I show you the tiles that will be flipped upside down, then ask you which tile has character “X” on it.

I’m planning to take the game another direction…I don’t like the way it plays now (it is relatively difficult in only English, which is my bar for “too difficult”. I’m undecided between two options:

#1) Show the player a few tiles to search for (maybe start with 3)…then hide them and flip over all the board tiles so you have to find them. It works on short-term memorization of the characters, sort of like remembering a phone number. I like it because I can scale it up fairly easily.

#2) Show the player a very large board with all the tiles and have them try to memorize all the positions of the tiles (maybe allow repeats). Then ask a series of questions where they try to find tiles – every time they get one right, it’s eliminated from the board and they play until they clear the whole board. When you miss a question, you get to see which character was underneath the tile you flipped. I like this because it’s a bit more of a game and because it works on different skills, but I don’t like that it requires a skill not all that useful for learning the language (large-scale memorization). I also think I personally would enjoy game mode 1 more.

I’m going to start with game mode 1…mainly because of that final reason. I think I’d enjoy it more, and I was my target audience when I started development. First I’m working on a pesky bug where the game errors out after a few rounds so…priorities!

On Vacation

I was out of town for more than a week on vacation so I didn’t get any time to work on things…but my current goal is to run through each of the games and make a small improvement. In Identify (the flashcard variation) I didn’t see any easy immediate improvements so I decided to improve the post-game score screen. I’ve already finished the “Introduction” screen improvements as well, where new tiles are introduced.

Design Refactoring – Villages

Today’s post isn’t about new content – it’s about going back to redesign something that just doesn’t work – or at least, that could work better.  Refactoring while in progress can be a trap – often, unless it’s a core feature, you’re much better served to continue working and then fix it when you have more of the game complete and a better big picture understanding. In this case, it was a core organizational design choice, so the redesign should make things easier going forward. It might also guide some of future design choices.

Initially, my idea for general game organization revolved around

  1. Choosing a path (what do I want to learn)
  2. Being presented with a number of villages (levels) that each focus on certain symbols that you learn. Inside each village are a number of exercises (mini-games) that you can do to practice.
  3. You start a village, and that village lets you practice symbols from previous villages and the current village.
  4. There is a “Proficiency Challenge” mini-game that, completed successfully, unlocks the next village.

You could think of it similarly to early super mario games – each village was a world and each mini-game was inside that village, Ie 2-1 would be world 2 mini game 1.

The problem with this, as I worked through the problem, is that mini-games are always the same. Villages were just adding an artificial layer of complexity with very limited benefit. The Village selection screen was really just selecting settings for the mini-game screen.

So, the solution seems rather obvious now – get rid of the idea of villages. You now,

  1. Choose a path
  2. Select from a series of mini-games designed to help you learn the symbols in that path.
  3. Take a Profiency Challenge to unlock your next set of tiles.

You still unlock symbols sequentially (I even kept all my old data so I can re-use my old unlock pattern) and you still have to complete a proficiency challenge to unlock the next set. Somehow, I’ll need to indicate on the mini-game screen which symbols have been unlocked.

Having gone through the dev work, this is not a difficult design choice. Villages were an annoyance and kind of confusing. I am taking away a small amount of agency from the user by changing the design in this way, but I’m vastly improving clarity and usability. It’s fewer clicks to get started, and that will always be a big deal. Unfortunately, sometimes the only way to find the best fitting design is to do the wrong one first, figure out what’s wrong with it, and iterate on that.