Перекод кода игры Покер с С++ на C#

Узнай цену своей работы

Формулировка задачи:

Я разрабатываю (громко сказано) свою карточную игру покер. В интернете нашёл код этой игры на С++ для консоли. Помогите пожалуйста перевести его на C#. С уважением. Код поделён на два поста, так как слишком большой. Часть 1.
Листинг программы
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <string>
  4. #include <cstdlib>
  5. #include <ctime>
  6. using namespace std;
  7. string suits[4];
  8. string ranks[13];
  9. class Card {
  10. public:
  11. int suit;
  12. int rank;
  13. };
  14. int compareCards(const void *card1, const void *card2) {
  15. return (*(Card *)card1).rank - (*(Card *)card2).rank;
  16. }
  17. class Deck {
  18. public:
  19. Deck() {
  20. for (int i = 0;i<4;i++) {
  21. for (int j = 0;j<13;j++) {
  22. cards[i * 13 + j].suit = i;
  23. cards[i * 13 + j].rank = j;
  24. }
  25. }
  26. suits[0] = "D";
  27. suits[1] = "S";
  28. suits[2] = "H";
  29. suits[3] = "C";
  30. ranks[0] = "2";
  31. ranks[1] = "3";
  32. ranks[2] = "4";
  33. ranks[3] = "5";
  34. ranks[4] = "6";
  35. ranks[5] = "7";
  36. ranks[6] = "8";
  37. ranks[7] = "9";
  38. ranks[8] = "T";
  39. ranks[9] = "J";
  40. ranks[10] = "Q";
  41. ranks[11] = "K";
  42. ranks[12] = "A";
  43. }
  44. void print() {
  45. cout << "Printing the deck..." << endl;
  46. for (int i = 0;i<52;i++)
  47. cout << ranks[cards[i].rank] << suits[cards[i].suit] << endl;
  48. cout << endl;
  49. }
  50. void shuffle() {
  51. top = 51;
  52. int x;
  53. Card tempCard;
  54. for (int i = 0;i<4;i++) {
  55. for (int j = 0;j<13;j++) {
  56. cards[i * 13 + j].suit = i;
  57. cards[i * 13 + j].rank = j;
  58. }
  59. }
  60. cout << "Shuffling the cards and dealing..." << endl << endl;
  61. for (int i = 0;i<52;i++) {
  62. x = rand() % 52;
  63. tempCard = cards[i];
  64. cards[i] = cards[x];
  65. cards[x] = tempCard;
  66. }
  67. }
  68. Card hitme() {
  69. top--;
  70. return cards[top + 1];
  71. }
  72. private:
  73. int top;
  74. Card cards[52];
  75. };
  76. class Player {
  77. public:
  78. string name;
  79. int money;
  80. Card cards[2];
  81. int playing;
  82. int round;
  83. int goodToGo;
  84. };
  85. class PokerGame {
  86. public:
  87. void start(string name) {
  88. for (int i = 0;i < 6; i++) {
  89. players[i].money = 1000;
  90. players[i].playing = 1;
  91. }
  92. players[0].name = "Carlos";
  93. players[1].name = "Carla";
  94. players[2].name = "Nick";
  95. players[3].name = "Lisa";
  96. players[4].name = name;
  97. players[5].name = "Soarez";
  98. startGame();
  99. }
  100.  
  101. void deal() {
  102. for (int i = 0;i<6;i++) {
  103. for (int j = 0;j<2;j++) {
  104. if (players[i].playing) {
  105. players[i].cards[j] = deck1.hitme();
  106. }
  107. }
  108. }
  109. for (int i = 0;i<5;i++)
  110. tableCards[i].rank = -1;
  111. }
  112. void flop() {
  113. for (int i = 0;i<3;i++)
  114. tableCards[i] = deck1.hitme();
  115. }
  116. void turn() {
  117. tableCards[3] = deck1.hitme();
  118. }
  119. void river() {
  120. tableCards[4] = deck1.hitme();
  121. }
  122. void printTable() {
  123. cout << " " << ((players[0].playing) ? (players[0].name) : " ") << " " << ((players[1].playing) ? (players[1].name) : " ") << " "
  124. << ((players[2].playing) ? (players[2].name) : " ") << endl;
  125. cout << " $" << setw(4) << ((players[0].playing) ? (players[0].money) : 0) << " $" << setw(4) << ((players[1].playing) ? (players[1].money) : 0)
  126. << " $" << setw(4) << ((players[2].playing) ? (players[2].money) : 0) << endl;
  127. cout << " _____________________________" << endl;
  128. cout << " / " << ((bind == 0) ? "@" : " ") << " " << ((bind == 1) ? "@" : " ") << " " << ((bind == 2) ? "@" : " ") << " " << endl;
  129. cout << " / ___ ___ ___ ___ ___ " << endl;
  130. cout << " | | " << ((tableCards[0].rank) >= 0 ? ranks[tableCards[0].rank] : " ") << " | | " << ((tableCards[1].rank) >= 0 ? ranks[tableCards[1].rank] : " ") << " | | " << ((tableCards[2].rank) >= 0 ? ranks[tableCards[2].rank] : " ") << " | | "
  131. << ((tableCards[3].rank) >= 0 ? ranks[tableCards[3].rank] : " ") << " | | " << ((tableCards[4].rank) >= 0 ? ranks[tableCards[4].rank] : " ") << " | |" << endl;
  132. cout << " | | " << ((tableCards[0].rank) >= 0 ? suits[tableCards[0].suit] : " ") << " | | " << ((tableCards[1].rank) >= 0 ? suits[tableCards[1].suit] : " ") << " | | " << ((tableCards[2].rank) >= 0 ? suits[tableCards[2].suit] : " ") << " | | "
  133. << ((tableCards[3].rank) >= 0 ? suits[tableCards[3].suit] : " ") << " | | " << ((tableCards[4].rank) >= 0 ? suits[tableCards[4].suit] : " ") << " | |" << endl;
  134. cout << " | |___| |___| |___| |___| |___| |" << endl;
  135. cout << " | |" << endl;
  136. cout << " | Pot = $" << setw(4) << pot << " |" << endl;
  137. cout << " \\ /" << endl;
  138. cout << " \\_" << ((bind == 5) ? "@" : "_") << "_____________" << ((bind == 4) ? "@" : "_") << "___________" << ((bind == 3) ? "@" : "_") << "_/" << endl;
  139. cout << endl;
  140. cout << " " << ((players[5].playing) ? (players[5].name) : " ") << " " << ((players[4].playing) ? (players[4].name) : " ") << " "
  141. << ((players[3].playing) ? (players[3].name) : " ") << endl;
  142. cout << " $" << setw(4) << ((players[5].playing) ? (players[5].money) : 0) << " $" << setw(4) << ((players[4].playing) ? (players[4].money) : 0)
  143. << " $" << setw(4) << ((players[3].playing) ? (players[3].money) : 0) << endl;
  144. cout << endl;
  145. if (players[4].round) {
  146. cout << " Your hand:" << endl;
  147. cout << " ___ ___" << endl;
  148. cout << " | " << ranks[players[4].cards[0].rank] << " | | " << ranks[players[4].cards[1].rank] << " |" << endl;
  149. cout << " | " << suits[players[4].cards[0].suit] << " | | " << suits[players[4].cards[1].suit] << " |" << endl;
  150. cout << " |___| |___|" << endl << endl;
  151. }
  152. }
  153. private:
  154. Player players[6];
  155. Deck deck1;
  156. int bind;
  157. Card tableCards[5];
  158. int pot, action, bet, rational, betOn, winner, maxPoints, roundWinner;
  159. int handPoints[6];
  160. int bestHand[6][3];
  161. int playersLeft() {
  162. int count = 0;
  163. for (int i = 0; i < 6; i++)
  164. if (players[i].money>0)
  165. count++;
  166. return count;
  167. }
  168. int computerAction(int playerNum) {
  169. if (players[playerNum].cards[0].rank < 8 && players[playerNum].cards[1].rank < 8) {
  170. if (players[playerNum].cards[0].rank != players[playerNum].cards[1].rank)
  171. return 0;
  172. else
  173. return 1;
  174. }
  175. else if (players[playerNum].cards[0].rank < 10 && players[playerNum].cards[1].rank < 10) {
  176. if (players[playerNum].cards[0].rank != players[playerNum].cards[1].rank)
  177. return 1;
  178. else
  179. return 2;
  180. }
  181. else {
  182. return 2;
  183. }
  184. }
  185. /*checks if someone still got bet/call*/
  186. int playersToBet() {
  187. for (int i = 0;i<6;i++)
  188. if (players[i].round == 1 && players[i].goodToGo == 0)
  189. return 1;
  190. return 0;
  191. }
  192. void takeBets() {
  193. betOn = 0;
  194. for (int k = 0;k<6;k++)
  195. players[k].goodToGo = 0;
  196. for (int k = bind + 1;k<bind + 7;k++) {
  197. /* human player actions */
  198. if (k % 6 == 4 && players[4].round) {
  199. if (betOn) {
  200. cout << "Your action: (1) FLOP (3) BET/CALL ";
  201. cin >> action;
  202. while (action != 1 && action != 3) {
  203. cout << "Invalid number pressed." << endl;
  204. cout << "Your action: (1) FLOP (3) BET/CALL ";
  205. cin >> action;
  206. }
  207. }
  208. else {
  209. cout << "Your action: (1) FLOP (2) CHECK (3) BET/CALL ";
  210. cin >> action;
  211. while (action<1 || action>3) {
  212. cout << "Invalid number pressed." << endl;
  213. cout << "Your action: (1) FLOP (2) CHECK (3) BET/CALL ";
  214. cin >> action;
  215. }
  216. }
  217. cout << endl;
  218. if (action == 1)
  219. players[4].round = 0;
  220. else if (action == 2)
  221. continue;
  222. else {
  223. if (betOn) {
  224. pot += betOn;
  225. players[4].money -= betOn;
  226. players[4].goodToGo = 1;
  227. }
  228. else {
  229. cout << "How much do you want to bet: ";
  230. cin >> bet;
  231. while (bet>players[4].money || bet<1) {
  232. cout << "Invalid number to bet." << endl;
  233. cout << "How much do you want to bet: ";
  234. cin >> bet;
  235. cout << endl << endl;
  236. }
  237. pot += bet;
  238. players[4].money -= bet;
  239. betOn = bet;
  240. players[4].goodToGo = 1;
  241. }
  242. }
  243. }
  244. // РАЗДЕЛЕНИЕ

Решение задачи: «Перекод кода игры Покер с С++ на C#»

textual
Листинг программы
  1.     class Deck
  2.     {
  3.         private Card[] cards = new Card[52];
  4.         public Deck()
  5.         {
  6.             for (int a = 0; a < 13; a++)
  7.             {
  8.                 for (int b = 0; b < 4; b++)
  9.                 {
  10.                     cards[a * 13 + b].Rank = a;
  11.                     cards[a * 13 + b].Suit = b;
  12.  
  13.                 }
  14.             }
  15.         }
  16.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

6   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут