Almost Chess - Mobile chess game with randomized starting positions

I've always enjoyed chess, but I've never been a fan of memorizing openings and standard positions. So I decided to create Almost Chess - a mobile game that maintains the core objective of chess while introducing controlled chaos into the mix.

The Concept

The game starts with a randomized board layout, with only two rules:

  1. Kings must be in their traditional positions (to maintain some semblance of fairness)
  2. All other pieces are randomly distributed across the back two ranks
Almost Chess gameplay screenshot showing a randomized starting position

Features

Multiple Game Modes

The game offers three distinct ways to play:

  • Single Player: Battle an AI that's just as confused as you are
  • Two Players: Confuse a friend instead
  • Daily Challenge: A new puzzle each day with limited attempts

Dynamic AI Difficulty

The AI system uses an ELO rating system that adjusts based on player performance. Each rating tier has its own difficulty settings and random move probability, ranging from Grandmasters (who rarely make random moves) to beginners (who frequently make questionable decisions).

Chess Titles

Players can earn traditional chess titles as they improve their rating:

  • Grandmaster (GM): 2500+
  • International Master (IM): 2400+
  • FIDE Master (FM): 2300+
  • Candidate Master (CM): 2200+
  • Expert (EX): 2000+
  • Class A-F: Below 2000

Daily Challenges

The daily challenge mode generates a consistent board layout for all players on a given day using a seeded random number generator. This creates a shared experience where players worldwide tackle the same puzzling position.

Technical Stack

  • Framework: React Native with Expo
  • Language: TypeScript
  • State Management: React Context
  • Storage: AsyncStorage for game state persistence
  • Animations: React Native Reanimated
  • Authentication: Firebase Auth
  • Backend: Firebase Firestore

Lessons Learned

  1. AI Balance: Finding the right balance between randomness and strategy for the AI was challenging. Too much randomness made the game feel pointless, while too little defeated the purpose of the "almost" in Almost Chess.
  2. State Management: Chess has a lot of state to track - piece positions, valid moves, captured pieces, check status, etc. Using TypeScript helped immensely in managing this complexity.
  3. User Experience: Making a game that's intentionally chaotic while still being fun required careful consideration of UI/UX elements like move highlighting and undo functionality.

Future Improvements

  • Dynamic container sizing for better small screen support
  • Leaderboard implementation
  • AI behavior refinements
  • Undo move functionality

Try It Out

Almost Chess is available on both iOS and Android:

  • iOS: https://apps.apple.com/gb/app/almost-chess/id6741071027
  • Android: https://play.google.com/store/apps/details?id=com.hourafter.almostchess

This project was a fun exploration of game development with React Native, and while it may not improve your chess skills, it might just make you laugh at the absurdity of some positions you end up in!