RosettaStone
RosettaStone is Hearthstone simulator using C++ with some reinforcement learning. The code is built on C++17 and can be compiled with commonly available compilers such as g++, clang++, or Microsoft Visual Studio. RosettaStone currently supports macOS (10.14 or later), Ubuntu (18.04 or later), Windows (Visual Studio 2017 or later), and Windows Subsystem for Linux (WSL). Other untested platforms that support C++17 also should be able to build RosettaStone.
Related Repositories
Key Features
- C++17 based Hearthstone library
- Console and GUI simulator program
- C++ and Python API
To-do Features
- Upgrade "The Innkeeper" to smart
- Recommend top-tier decks
- Deck tracker
- Web simulator
Cards Implementation
Standard Format
- 98% Core Set (247 of 250 cards)
- 81% Forged in the Barrens (139 of 170 cards)
- 35% United in Stormwind (60 of 170 cards)
- 35% Fractured in Alterac Valley (61 of 170 cards)
- 12% Voyage to the Sunken City (22 of 170 cards)
- 10% Murder at Castle Nathria (17 of 170 cards)
- 0% March of the Lich King (0 of 1 cards)
Wild Format
- 100% Legacy (167 of 167 Cards)
- 100% Expert1 (245 of 245 Cards)
- 100% Demon Hunter Initiate (20 of 20 Cards)
- 100% Curse of Naxxramas (30 of 30 Cards)
- 6% Goblins vs Gnomes (8 of 123 Cards)
- 100% Blackrock Mountain (31 of 31 Cards)
- 8% The Grand Tournament (11 of 132 Cards)
- 100% The League of Explorers (45 of 45 Cards)
- 5% Whispers of the Old Gods (8 of 134 Cards)
- 100% One Night in Karazhan (45 of 45 Cards)
- 2% Mean Streets of Gadgetzan (3 of 132 Cards)
- 7% Journey to Un'Goro (10 of 135 Cards)
- 4% Knights of the Frozen Throne (6 of 135 Cards)
- 5% Kobolds & Catacombs (7 of 135 Cards)
- 5% The Witchwood (8 of 135 Cards)
- 2% The Boomsday Project (4 of 136 Cards)
- 5% Rastakhan's Rumble (7 of 135 Cards)
- 100% Rise of Shadows (136 of 136 cards)
- 99% Saviors of Uldum (134 of 135 cards)
- Except 'Zephrys the Great' (ULD_003)
- 100% Descent of Dragons (140 of 140 cards)
- 60% Galakrond's Awakening (21 of 35 cards)
- 60% Ashes of Outland (82 of 135 cards)
- 57% Scholomance Academy (78 of 135 cards)
- 46% Madness at the Darkmoon Faire (79 of 170 cards)
Classic Format
- 100% Vanilla Set (382 of 382 Cards)
Implementation List
Quick Start
You will need CMake to build the code. If you're using Windows, you need Visual Studio 2017 in addition to CMake.
First, clone the code:
git clone https://github.com/utilForever/RosettaStone.git --recursive
cd RosettaStone
Python API
Build and install the package by running
pip install -U .
NOTE: We are making Python API and related examples.
C++ API
For macOS or Linux or Windows Subsystem for Linux (WSL):
mkdir build
cd build
cmake ..
make
For Windows:
mkdir build
cd build
cmake .. -G"Visual Studio 15 2017 Win64"
MSBuild RosettaStone.sln /p:Configuration=Release
Now run console simulator:
bin/RosettaConsole
NOTE: To run GUI simulator, please check out RosettaStone GUI.
Docker
docker pull utilforever/rosettastone:latest
Now run console simulator:
docker run -it utilforever/rosettastone
[inside docker container]
/app/build/bin/RosettaConsole
More Instructions of Building the Code
To learn how to build, test, and install the SDK, please check out Install.md.
Documentation
All the documentations for the framework can be found from the project website incluing the API reference.
Presentations
Videos
Sprints
Articles
- NDC 2019
- [NDC2019] ํ์ค์คํค์ ์ํ '์ํ๊ณ '๋ฅผ ๋ง๋ค ์๋ ์์๊น? - ์ธ๋ฒค
- [NDC 19] '์ํ๊ณ ' ๊ฐ์ ํ์ค์คํค ์ธ๊ณต์ง๋ฅ์ ๋ง๋ค๊ธฐ ์ํ ํ๋ํ ์ฌ์ - ๋์ค์ด์ฆ๊ฒ์
- [NDC2019 #11] ๋ฅ์จ ํ๋ก๊ทธ๋๋จธ์ โํ์ค์คํคโ AยทI ์ ์๊ธฐ - ๊ฒฝํฅ๊ฒ์์ค
- [NDC 2019] ๋ฅ์จ ํ๋ก๊ทธ๋๋จธ์ โํ์ค์คํคโ AI ๋์ ๊ธฐ - OSEN
How To Contribute
Contributions are always welcome, either reporting issues/bugs or forking the repository and then issuing pull requests when you have completed some additional coding that you feel will be beneficial to the main project. If you are interested in contributing in a more dedicated capacity, then please check out Contributing.md.
Contact
You can contact me via e-mail (utilForever at gmail.com). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making.
Sponsors
License
The class is licensed under the Affero GPLv3 License:
RosettaStone is based on part of Sabberstone's code
Copyright ยฉ 2017-2023 SabberStone Team, darkfriend77 & rnilva
RosettaStone, Hearthstone simulator using C++ with some reinforcement learning
Copyright ยฉ 2017-2023 Chris Ohk
RosettaStone is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License. RosettaStone is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
Hearthstone is an interactive game of Blizzard Entertainment, Inc and all rights reserved. Hearthstone is a registered trademark of Blizzard Entertainment, Inc. in the U.S. and/or other countries. This project is not affiliated with Blizzard Entertainment.