jrios6 / Splendor

Splendor boardgame in React & Flask, designed for AI development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Splendor

This project is a replication of the popular Splendor boardgame, designed for AI development. Splendor is an easy-to-learn, yet complex zero-sum boardgame that requires strategic thinking, deception, adverserial tactics, player cooperation and logical computation.

While you can play against AI today through the existing Splendor iOS and Andrioid app, the agents are relatively weak and are below human-level performance. The primary goal of this project is to develop game-playing Agents using classical and deep reinforcement learning techniques that can surpass existing AI and top players in the game.

The game

"Splendor is a game of chip-collecting and card development. Players are merchants of the Renaissance trying to buy gem mines, means of transportation, shops—all in order to acquire the most prestige points. If you're wealthy enough, you might even receive a visit from a noble at some point, which of course will further increase your prestige.

On your turn, you may (1) collect chips (gems), or (2) buy and build a card, or (3) reserve one card. If you collect chips, you take either three different kinds of chips or two chips of the same kind. If you buy a card, you pay its price in chips and add it to your playing area. To reserve a card—in order to make sure you get it, or, why not, your opponents don't get it—you place it in front of you face down for later building; this costs you a round, but you also get gold in the form of a joker chip, which you can use as any gem.

All of the cards you buy increase your wealth as they give you a permanent gem bonus for later buys; some of the cards also give you prestige points. In order to win the game, you must reach 15 prestige points before your opponents do." - BoardGameGeek

Usage

The project consists of a React Client and a Flask Server. You will require Node >= 6, Python 3 and Flask installed on your local development machine.

Running the client

$ cd splendor-client
$ npm start

Running the server

$ cd splendor-server
$ FLASK_APP=app.py flask run

With that, you can start playing against the AI using the client at http://localhost:3000/.

What's next?

This project is currently under development and there are alot of fixes, code refactoring and features to look forward to!

  • Improvements to Client UI (e.g. preventing users from double clicking, nicer card background, background music, highlighting last move made, better coin selection action)
  • Using pruning techniques to improve efficiency of game tree exploration
  • Deeper exploration to allow more strategic foward thinking reservation/ gem collection moves.
  • Framework for evaluating and improving heuristic function
  • Fixes: Random ordering of AI/Human players and preventing AI from looking at next card

About

Splendor boardgame in React & Flask, designed for AI development


Languages

Language:Python 56.8%Language:JavaScript 36.0%Language:CSS 4.9%Language:HTML 2.3%