Browse Source

fix draft bug

Mistivia 2 months ago
parent
commit
4fa1f4f1ab
5 changed files with 460 additions and 448 deletions
  1. 3 1
      .gitignore
  2. 1 1
      lib/crow/include/crow/socket_adaptors.h
  3. 444 441
      resource/mtgzhs
  4. 2 0
      src/core/card.cc
  5. 10 5
      src/core/session.cc

+ 3 - 1
.gitignore

@@ -1,4 +1,6 @@
 *.o
 hivemind
 hivemind-release.tar.gz
-mtg.json
+mtg.json
+.cache/
+compile_commands.json

+ 1 - 1
lib/crow/include/crow/socket_adaptors.h

@@ -19,7 +19,7 @@ namespace crow
 
         boost::asio::io_service& get_io_service()
         {
-            return *socket_.get_executor().target<boost::asio::io_context>();
+            return const_cast<boost::asio::io_service&>(*socket_.get_executor().target<boost::asio::io_context>());
         }
 
         tcp::socket& raw_socket()

File diff suppressed because it is too large
+ 444 - 441
resource/mtgzhs


+ 2 - 0
src/core/card.cc

@@ -25,6 +25,8 @@ Arc<Card> get_card(std::string name) {
     card->image_url = "https://api.scryfall.com/cards/named?format=image&version=normal&exact=" + url_encode(name);
     if (card_db.find(name) != card_db.end()) {
         card->zhsname = card_db[name].zhsname;
+        // fix scryfall
+        str_replace(card->zhsname, ":", " ");
         card->zhstext = card_db[name].zhstext;
         card->image_url = "https://api.scryfall.com/cards/named?format=image&version=normal&fuzzy=" + url_encode(card->zhsname);
         str_replace(card->zhstext, "\001", "\n");

+ 10 - 5
src/core/session.cc

@@ -1,7 +1,6 @@
 #include "core/session.h"
 
-#include <exception>
-#include <random>
+#include <algorithm>
 
 static std::map<std::string, Arc<Session>> session_map;
 static std::mutex session_map_lock;
@@ -163,9 +162,15 @@ void Session::select_card(Arc<User> user, Arc<Card> card) {
             user_state->selected_card.push_back(card);
             pack->erase(it);
             if (!pack->empty()) {
-                users[(user_idx + 1) % player_num]->card_pack_queue.push(pack);
-                if (users[(user_idx + 1) % player_num]->card_pack_queue.size() == 1) {
-                    users[(user_idx + 1) % player_num]->time_last_updated = std::chrono::system_clock::now();
+                int next_user_idx = -1;
+                if (round_num % 2 == 0) {
+                    next_user_idx = (user_idx + 1) % player_num;
+                } else {
+                    next_user_idx = (user_idx + player_num - 1) % player_num;
+                }
+                users[next_user_idx]->card_pack_queue.push(pack);
+                if (users[next_user_idx]->card_pack_queue.size() == 1) {
+                    users[next_user_idx]->time_last_updated = std::chrono::system_clock::now();
                 }
             }
             user_state->card_pack_queue.pop();

Some files were not shown because too many files changed in this diff