Home Database Mysql Tutorial cocos2dx 制作单机麻将(四)

cocos2dx 制作单机麻将(四)

Jun 07, 2016 pm 03:48 PM
make Standalone

cocos2dx 制作单机麻将(四) 麻将逻辑5.模拟出牌 [cpp] view plaincopy // //main.cpp //MajiangLogicTest // //CreatedbyTinyUlton14-8-16. //Copyright(c)2014年TinyUlt.Allrightsreserved. // #includeiostream using namespace std; #defineMAX_REPERTORY

cocos2dx 制作单机麻将(四)

麻将逻辑5.模拟出牌

[cpp] view plaincopycocos2dx 制作单机麻将(四)cocos2dx 制作单机麻将(四)

  1. //  
  2. //  main.cpp  
  3. //  MajiangLogicTest  
  4. //  
  5. //  Created by TinyUlt on 14-8-16.  
  6. //  Copyright (c) 2014年 TinyUlt. All rights reserved.  
  7. //  
  8.   
  9. #include   
  10. using namespace std;  
  11.   
  12. #define MAX_REPERTORY 144  
  13. typedef unsigned char BYTE;  
  14. typedef unsigned short WORD;  
  15. //数组维数  
  16. #ifndef CountArray  
  17. #define CountArray(Array) (sizeof(Array)/sizeof(Array[0]))  
  18. #endif  
  19. //逻辑掩码  
  20.   
  21. #define MASK_COLOR                  0xF0                                //花色掩码  
  22. #define MASK_VALUE                  0x0F                                //数值掩码  
  23. #define MAX_INDEX   42  //最大索引  
  24. #define MAX_COUNT                   14                                  //最大数目  
  25.   
  26. const BYTE m_cbCardDataArray[MAX_REPERTORY]=  
  27. {  
  28.     0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,                       //万子  
  29.     0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,                       //万子  
  30.     0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,                       //万子  
  31.     0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,                       //万子  
  32.     0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,                       //同子  
  33.     0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,                       //同子  
  34.     0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,                       //同子  
  35.     0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,                       //同子  
  36.     0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,                       //索子  
  37.     0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,                       //索子  
  38.     0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,                       //索子  
  39.     0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,                       //索子  
  40.       
  41.     0x31,0x32,0x33,0x34,                                                //风牌  
  42.     0x31,0x32,0x33,0x34,                                                //风牌  
  43.     0x31,0x32,0x33,0x34,                                                //风牌  
  44.     0x31,0x32,0x33,0x34,                                                //风牌  
  45.     0x41,0x42,0x43,                                                     //箭牌  
  46.     0x41,0x42,0x43,                                                     //箭牌  
  47.     0x41,0x42,0x43,                                                     //箭牌  
  48.     0x41,0x42,0x43,                                                     //箭牌  
  49.       
  50.     0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,                            //花牌  
  51.       
  52. };  
  53. const char* m_cbCardWordArray[MAX_INDEX]=  
  54. {  
  55.     "一万","二万","三万","四万","五万","六万","七万","八万","九万",  
  56.     "一筒","二筒","三筒","四筒","五筒","六筒","七筒","八筒","九筒",  
  57.     "一索","二索","三索","四索","五索","六索","七索","八索","九索",  
  58.     "东""南""西""北""中""发""白",  
  59.     "春""夏""秋""冬""梅""兰""竹""菊"  
  60. };  
  61. //混乱扑克  
  62. static void RandCardData(BYTE cbCardData[],BYTE cbMaxCount)  
  63. {  
  64.     //混乱准备  
  65.     BYTE cbCardDataTemp[CountArray(m_cbCardDataArray)];//为什么直接用MAX_REPERTORY? 因为这样无耦合  
  66.     memcpy(cbCardDataTemp,m_cbCardDataArray,sizeof(m_cbCardDataArray));//拷贝一份到临时牌数组中  
  67.       
  68.     //混乱扑克(关键的核心打乱代码)  
  69.     BYTE cbRandCount=0,cbPosition=0;  
  70.     do  
  71.     {  
  72.         cbPosition=rand()%(cbMaxCount-cbRandCount);  
  73.         cbCardData[cbRandCount++]=cbCardDataTemp[cbPosition];  
  74.         cbCardDataTemp[cbPosition]=cbCardDataTemp[cbMaxCount-cbRandCount];  
  75.     } while (cbRandCount
  76.       
  77.     return;  
  78.       
  79. }  
  80. //混乱扑克2  
  81. void RandAppointCardData(BYTE cbCardData[],BYTE cbMaxCount,BYTE OriginalData[]/*源牌堆数据*/)  
  82. {  
  83.     //混乱扑克  
  84.     BYTE cbRandCount=0,cbPosition=0;  
  85.     do  
  86.     {  
  87.         cbPosition=rand()%(cbMaxCount-cbRandCount);  
  88.         cbCardData[cbRandCount++]=OriginalData[cbPosition];  
  89.         OriginalData[cbPosition]=OriginalData[cbMaxCount-cbRandCount];  
  90.     } while (cbRandCount
  91.       
  92.     return;  
  93. }  
  94. //扑克转换(索引->牌值)  
  95. BYTE SwitchToCardData(BYTE cbCardIndex)  
  96. {  
  97.     //assert(cbCardIndex  
  98.     if(cbCardIndexreturn ((cbCardIndex/9)
  99.     if(cbCardIndex>=31&&cbCardIndexreturn(((cbCardIndex/7)
  100.     if(cbCardIndex>33)   return(cbCardIndex+0x2F);  
  101.     //assert(false);  
  102.     return 0;  
  103. }  
  104. //扑克转换(牌型->索引)  
  105. BYTE SwitchToCardIndex(BYTE cbCardData)  
  106. {  
  107.   //  ASSERT(IsValidCard(cbCardData));  
  108.     if((cbCardData&MASK_COLOR)
  109.         return (((cbCardData&MASK_COLOR)>>4)*9+(cbCardData&MASK_VALUE)-1);  
  110.     if((cbCardData&MASK_COLOR)==0x40)  
  111.         return (31+(cbCardData&MASK_VALUE)-1);  
  112.     if((cbCardData&MASK_COLOR)==0x50)  
  113.         return (34+(cbCardData&MASK_VALUE)-1);  
  114.     //ASSERT(false);  
  115.     return 0;  
  116. }  
  117.   
  118. //扑克转换  
  119. BYTE SwitchToCardData(BYTE cbCardIndex[MAX_INDEX]/*传入统计所有牌数量的表格*/BYTE cbCardData[MAX_COUNT]/*传出手牌数据*/)  
  120. {  
  121.     //转换扑克  
  122.     BYTE cbPosition=0;  
  123.     for (BYTE i=0;i
  124.     {  
  125.         if (cbCardIndex[i]!=0)  
  126.         {  
  127.             for (BYTE j=0;j
  128.             {  
  129.                // ASSERT(cbPosition  
  130.                 cbCardData[cbPosition++]=SwitchToCardData(i);  
  131.             }  
  132.         }  
  133.     }  
  134.       
  135.     return cbPosition;//返回手牌数  
  136. }  
  137. //根据中文牌,得到牌索引  
  138. int getIndexByWord(const char* ch)  
  139. {  
  140.     for (int i = 0; i 
  141.     {  
  142.         if (!strcmp(ch,m_cbCardWordArray[i]))  
  143.         {  
  144.             return i;  
  145.         }  
  146.     }  
  147.     return -1;  
  148. }  
  149. //删除扑克  
  150. bool RemoveCard(BYTE cbCardIndex[MAX_INDEX], BYTE cbRemoveCard)  
  151. {  
  152.       
  153.     //效验扑克  
  154.     //ASSERT(IsValidCard(cbRemoveCard));  
  155.     BYTE cbRemoveIndex=SwitchToCardIndex(cbRemoveCard);  
  156.     //ASSERT(cbCardIndex[cbRemoveIndex]>0);  
  157.       
  158.     //删除扑克  
  159.     if (cbCardIndex[cbRemoveIndex]>0)  
  160.     {  
  161.         cbCardIndex[cbRemoveIndex]--;  
  162.         return true;  
  163.     }  
  164.       
  165.     //失败效验  
  166.    // ASSERT(FALSE);  
  167.       
  168.     return false;  
  169. }  
  170.   
  171. int main(int argc, const char * argv[])  
  172. {  
  173.     // insert code here...  
  174.       
  175.     /*第一种混乱发*/  
  176.     //创建一个空牌堆  
  177.     BYTE _cardData1[MAX_REPERTORY];  
  178.     //把在该函数中创建并打乱牌堆,然后把指针传给_cardData;  
  179.     RandCardData(_cardData1, MAX_REPERTORY);  
  180.     //输出牌数据  
  181.     cout"混乱初始牌堆"
  182.     for (int i = 0 ; i 
  183.     {  
  184.         cout"0x"int(_cardData1[i])" ";  
  185.     }  
  186.     cout
  187.     cout
  188.   
  189.     /*第二种混乱发*/  
  190.     //创建一个空牌堆  
  191.     BYTE _cardData2[MAX_REPERTORY];  
  192.     //把在该函数中创建并打乱牌堆,然后把指针传给_cardData;  
  193.     RandAppointCardData(_cardData2, MAX_REPERTORY,_cardData1);  
  194.     //输出牌数据  
  195.     cout"混乱指定牌堆"
  196.     for (int i = 0 ; i 
  197.     {  
  198.         cout"0x"int(_cardData2[i])" ";  
  199.     }  
  200.     cout
  201.     cout
  202.       
  203.     /*添加手牌*/  
  204.     //虚拟一副手牌 开始游戏时,每人13张手牌,然后庄家再摸一张牌即14张  
  205.     //我们使用上面初始化好的牌堆,进行摸牌,假设只有一个玩家  
  206.     BYTE cbCardIndex[MAX_INDEX];  
  207.     for (int i = 0; i 
  208.     {  
  209.         BYTE _cardValue = _cardData2[i];//得到牌堆中的牌  
  210.         int _index = SwitchToCardIndex(_cardValue);//得到该牌对应的索引  
  211.         cbCardIndex[_index]++;//该牌型加一  
  212.     }  
  213.       
  214.     cout"输出所有牌型对应的数量"
  215.     for (int i = 0; i
  216.     {  
  217.         cout"(0x"int(SwitchToCardData(i))"):"int)cbCardIndex[i]" ";//输出手牌中所有牌型对应的数量  
  218.     }  
  219.     cout
  220.     cout
  221.       
  222.     cout"输出手牌数据"
  223.     BYTE cbCardData[MAX_COUNT];  
  224.     int _handsCount = (int)SwitchToCardData(cbCardIndex,cbCardData);  
  225.     cout"手牌数量为:"
  226.     for (int i = 0 ; i 
  227.     {  
  228.         cout"(0x"int)cbCardData[i]") ";  
  229.     }  
  230.   
  231.     cout
  232.     cout
  233.       
  234.     /*出牌*/  
  235.     char ch[20];  
  236.     cout"输入要出的牌(比如 三万): ";  
  237.     cin>>ch;  
  238.     int _outCardIndex = getIndexByWord(ch);  
  239.     if (_outCardIndex == -1)  
  240.     {  
  241.         cout"输入错误"
  242.         return 0;  
  243.     }  
  244.     BYTE _outCardValue = SwitchToCardData(_outCardIndex);  
  245.     bool _b = RemoveCard(cbCardIndex, _outCardValue);  
  246.     if (_b)  
  247.     {  
  248.         cout"出牌成功"
  249.     }  
  250.     else  
  251.     {  
  252.         cout"该牌不存在"
  253.     }  
  254.     BYTE _leftCardData[MAX_COUNT];  
  255.     int _leftHandsCount = (int)SwitchToCardData(cbCardIndex,_leftCardData);  
  256.     cout"手牌数量为:"
  257.     cout"手牌数据为:"
  258.     for (int i = 0 ; i 
  259.     {  
  260.         cout"(0x"int)_leftCardData[i]") ";  
  261.     }  
  262.   
  263.     cout
  264.     return 0;  
  265. }  
输出:

混乱初始牌堆

0x25 0x13 0x1 0x3 0x21 0x43 0x54 0x14 0x9 0x12 0x13 0x8 0x31 0x24 0x13 0x31 0x6 0x4 0x28 0x31 0x34 0x18 0x7 0x27 0x15 0x18 0x51 0x11 0x42 0x12 0x28 0x2 0x57 0x25 0x16 0x4 0x33 0x15 0x18 0x21 0x42 0x33 0x29 0x41 0x25 0x3 0x23 0x55 0x14 0x41 0x27 0x22 0x34 0x21 0x2 0x9 0x29 0x19 0x43 0x23 0x22 0x22 0x19 0x34 0x16 0x15 0x32 0x58 0x6 0x28 0x17 0x21 0x18 0x8 0x43 0x28 0x33 0x32 0x6 0x33 0x2 0x25 0x14 0x11 0x29 0x19 0x26 0x13 0x4 0x24 0x53 0x52 0x16 0x15 0x27 0x3 0x27 0x31 0x9 0x1 0x26 0x22 0x3 0x32 0x17 0x26 0x26 0x7 0x12 0x42 0x41 0x32 0x17 0x8 0x7 0x9 0x34 0x8 0x7 0x16 0x17 0x41 0x19 0x5 0x29 0x2 0x23 0x6 0x4 0x24 0x42 0x24 0x1 0x56 0x11 0x1 0x12 0x5 0x23 0x11 0x14 0x43 0x5 0x5 


混乱指定牌堆

0x16 0x56 0x21 0x7 0x28 0x14 0x41 0x12 0x16 0x24 0x43 0x21 0x31 0x26 0x3 0x53 0x52 0x7 0x12 0x34 0x51 0x14 0x9 0x29 0x23 0x33 0x12 0x31 0x14 0x6 0x16 0x18 0x54 0x21 0x25 0x58 0x19 0x5 0x7 0x28 0x32 0x34 0x1 0x27 0x27 0x33 0x6 0x14 0x9 0x17 0x25 0x33 0x28 0x11 0x17 0x24 0x43 0x2 0x22 0x6 0x23 0x3 0x11 0x42 0x2 0x18 0x3 0x4 0x42 0x4 0x18 0x55 0x25 0x42 0x22 0x32 0x4 0x15 0x8 0x29 0x24 0x13 0x6 0x26 0x19 0x9 0x41 0x25 0x7 0x8 0x1 0x13 0x11 0x15 0x41 0x43 0x57 0x16 0x33 0x18 0x32 0x27 0x1 0x8 0x12 0x31 0x4 0x5 0x27 0x22 0x26 0x23 0x31 0x2 0x5 0x17 0x26 0x13 0x19 0x43 0x17 0x21 0x42 0x5 0x3 0x19 0x23 0x15 0x28 0x15 0x8 0x24 0x9 0x29 0x13 0x32 0x34 0x2 0x34 0x41 0x11 0x29 0x22 0x1 


输出所有牌型对应的数量

一万(0x1):0 二万(0x2):0 三万(0x3):0 四万(0x4):0 五万(0x5):0 六万(0x6):0 七万(0x7):1 八万(0x8):0 九万(0x9):0 一筒(0x11):0 二筒(0x12):1 三筒(0x13):0 四筒(0x14):1 五筒(0x15):0 六筒(0x16):2 七筒(0x17):0 八筒(0x18):0 九筒(0x19):0 一索(0x21):2 二索(0x22):0 三索(0x23):0 四索(0x24):1 五索(0x25):0 六索(0x26):1七索(0x27):0 八索(0x28):1 九索(0x29):0 (0x31):1 (0x32):0 西(0x33):0 (0x34):0 (0x41):1 (0x42):0(0x43):1 (0x51):0 (0x52):0 (0x53):0 (0x54):0 (0x55):0 (0x56):1 (0x57):0 (0x58):0 


输出手牌数据

手牌数量为:14

七万(0x7) 二筒(0x12) 四筒(0x14) 六筒(0x16) 六筒(0x16) 一索(0x21) 一索(0x21) 四索(0x24) 六索(0x26) 八索(0x28) (0x31) (0x41) (0x43) (0x56) 


输入要出的牌(比如 三万): 七万

出牌成功

手牌数量为:13

手牌数据为:

二筒(0x12) 四筒(0x14) 六筒(0x16) 六筒(0x16) 一索(0x21) 一索(0x21) 四索(0x24) 六索(0x26) 八索(0x28)(0x31) (0x41) (0x43) (0x56) 


Program ended with exit code: 0

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Right click not working in Word or PowerPoint [FIXED] Right click not working in Word or PowerPoint [FIXED] Feb 27, 2024 pm 02:19 PM

Some Office users have reported that their right mouse button does not work properly in Word and PowerPoint. When they right-click on an empty space or element in the document, they don't get any context menu with options for paste options, fonts, format background, format image, create new annotation, and more. Some users have reported that when they press the right mouse button, the context menu appears for 1-2 seconds and then quickly disappears before they click on any option. Why doesn't my right-click work in Microsoft Office? If right-clicking does not work in Office applications such as Word and PowerPoint, it is usually caused by a third-party add-in. If your mouse is not in the correct

Specific method to create film movement effect in PPT Specific method to create film movement effect in PPT Mar 26, 2024 pm 04:00 PM

1. Start PPT, create a new blank document, select all text boxes and delete them. 2. Execute the Insert-Shape command, drag a rectangle in the document, and fill the shape with black. 3. Drag the rectangle to elongate it, execute the Insert-Shape command, drag out the small square, and set the fill color to white. 4. Copy and paste the small squares one by one so that the top and bottom are evenly distributed on both sides of the film. After selecting them all with ctrl+a, right-click and select Group. 5. Execute the Insert-Picture command, find the picture to be inserted in the pop-up dialog box, click to open, and adjust the size and position of the picture. 6. Repeat step 5 to insert and set the remaining pictures in order to form a film picture. 7. Select the film, execute animation-add animation command

How to make a tomato novel cover How to make a tomato novel cover Feb 23, 2024 pm 01:55 PM

How to make the cover of Tomato novel? You can make exclusive novel cover in Tomato novel, but most friends don’t know how to make the cover of Tomato novel. Next is the picture of how to make the cover of Tomato novel brought by the editor to the players. Tutorial, interested players come and take a look! Tomato Novel usage tutorial How to make a Tomato Novel cover 1. First open the Tomato Novel APP, enter the work management page to create a new book, and select the [Cover Template] as shown by the arrow below; 2. Then enter the cover template page and select your favorite cover Template; 3. After finally selecting the cover, click [Confirm] in the upper right corner.

Operation guide for creating mobile Excel tables Operation guide for creating mobile Excel tables Feb 18, 2024 pm 02:41 PM

Mobile Excel table creation tutorial With the popularity of mobile devices and the continuous advancement of technology, mobile phones have become one of the indispensable tools in our daily life and work. Using Excel spreadsheets on your mobile phone can easily record, calculate and analyze data and improve work efficiency. This article will share with you the basic operations and techniques for creating mobile Excel tables. 1. Choose the right application. There are many mobile Excel applications on the market to choose from, such as GoogleSheets, Micro

Let me teach you! How to create animation effects in PPT! Let me teach you! How to create animation effects in PPT! Mar 20, 2024 pm 06:40 PM

When making PPT, using some animation effects will make it more lively and cute than without using animation effects. With the addition of animation effects, people may like to watch this PPT, so we must learn how to create animation effects for PPT. Next, I will introduce in detail how to add animation effects to PPT. Please continue reading and study these steps carefully. I believe they will be helpful to you! First, open the PPT we made ourselves. You will notice that this PPT currently does not have any animation effects (as shown by the red arrow in the picture below). 2. Then, we need to add animation effects to the picture. We first select the picture, and then click the [Animation] button on the menu bar (as shown in the red circle in the figure below). 3. Next, we click inside the animation

How to make a word cover How to make a word cover Mar 19, 2024 pm 06:50 PM

A graduation thesis must have a cover, a table of contents, an end, etc. Only then can the thesis be complete. In the last issue, the editor has shared with friends how to make a table of contents in Word. In this issue, I will share with you how to make a word cover. If you don’t know how to make it, hurry up! 1. First, we open the word document we want to make a cover, as shown in the figure below: 2. Then, we click the [Chapter] button on the menu bar and select the cover page. This function is equivalent to a cover library, in which you can Choose a suitable and beautiful cover by yourself, as shown in the red circle in the picture below: 3. After clicking, you can see various types of covers, such as business type, suitable for company contracts and documents; resume type, suitable for job hunting and submission of resumes Friends, wait, okay?

How to use CSS to create a countdown effect How to use CSS to create a countdown effect Oct 26, 2023 am 10:36 AM

How to use CSS to create a countdown effect. The countdown effect is a common function in web development. It can provide users with a dynamic effect of countdown and give people a sense of urgency and expectation. This article will introduce how to use CSS to achieve the countdown effect, and give detailed implementation steps and code examples. The implementation steps are as follows: Step 1: HTML structure construction First, create a div container in HTML to wrap the countdown content. For example: <divclass="countd

How to make ppt What is the process of making ppt How to make ppt What is the process of making ppt Feb 22, 2024 pm 05:00 PM

Click the insert option in the software, create a new blank presentation, enter the subject and text, and set the display order of text and objects. Applicable model of the tutorial: Lenovo AIO520C System: Windows 10 Professional Edition: PowerPoint 2022 Analysis 1 After opening the PPT, click the file option and select New Blank Presentation. 2Input the topic and text, and add audio, picture, video and other effects. 3Finally, set the display order and animation effects of text and objects as required. Supplement: How to insert a video into ppt 1. First click to open the PowerPoint software, and after entering, click the insert option in the upper left corner. 2 Then click the video option in the upper right corner. 3. A pop-up box will appear, click on the video from the file. 4Then select

See all articles