- HTML5 Game Development by Example:Beginner's Guide(Second Edition)
- Makzan
- 184字
- 2021-07-16 14:10:00
Adding game logic to the matching game
Let's now imagine holding a real deck in our hand and setting up the matching game.
We would first shuffle the cards in our hands and then we would put each card on the table with the back facing up. For an easier gameplay, we align the cards into a 4 x 3 array. Now, the game is set up and we are going to play it.
We pick up one card and flip it to make it face up. We pick another one and face it upwards. Afterwards, we have two possible actions. We take away the two cards if they have the same pattern. Otherwise, we put them back facing down, as if we had not touched them. The game continues until we pair all of the cards.
The code flow will be much clearer after we have this step-by-step scenario in our mind. Actually, the code in this example is exactly the same as the procedure we play with a real deck. We just need to replace the human language into the JavaScript code.
- JavaScript全程指南
- 深入淺出Electron:原理、工程與實踐
- Microsoft Application Virtualization Cookbook
- PHP 從入門到項目實踐(超值版)
- 構建移動網站與APP:HTML 5移動開發入門與實戰(跨平臺移動開發叢書)
- Python高級編程
- Mastering Julia
- Bootstrap Essentials
- Learning Salesforce Einstein
- Learning SciPy for Numerical and Scientific Computing(Second Edition)
- Python機器學習算法: 原理、實現與案例
- Orchestrating Docker
- Julia High Performance(Second Edition)
- Java 9 with JShell
- 高效使用Greenplum:入門、進階與數據中臺