How to write a Node.JS version of a game

How to write a Node.JS version of a game

Overview

Today, I will use Node.JS to bring you a simple and interesting rock-paper-scissors game.

Build Process

  • Importing modules
  • Define simple rock-paper behavior commands, current number of games (best of three), score, and computer random behavior (scissors/rock/paper)
  • Define an associated line-by-line read stream
  • Clear screen
  • Printing the startup prompt information
  • Listen to the line event and judge whether the user wants to end the game or make a move based on the read stream (user input)
  • Listen for the close event. If 3 games have been played, print the final result. Otherwise, terminate the process directly.
  • Define the scoreRule method to determine the score according to the rules

Related APIs

Let's take a look at the relevant API first. We will understand the API in the order of calling, and the whole process will be clear.

readline

Read data from a readable stream line by line

Basic use

  • The readline.createInterface() method creates a new readline.Interface instance, defines the associated input readable stream and output writable stream, the output stream can read the input stream content and output the print prompt.
  • `process.stdin` and `process.stdout` correspond to the process's readable and writable streams.
  • The readline.close() method is called to indicate that the instance is finished and control of the input and output streams is relinquished. Game Over ~
  • process.exit([code]) method: terminates the node process. The default value of code is 0, which indicates a successful exit. Whether it is the reading of the readable stream or the completion event of the instance, we need to listen and do something, otherwise what is the point?
  • Listening for line events: Whenever the input stream receives end-of-line input (\n, \r, or \r\n), it is triggered, that is, when we press the Enter or Return key in the node console, the listening callback function is called with the string received by the readable stream.

chalk

Chalk, a style library for node terminals, which can modify the color, bold, hidden, background color and other styles of the terminal output string

const chalk = require('chalk')
const logText = chalk.green(`
Hello, let’s play games together!
`)
console.log(logText)

clear

Clear screen command, node terminal clears the screen, clears the current terminal view display

This is the easiest to use. Just execute the clear() method where you need to clear the screen.

const clear = require('clear')
clear()

Additional instructions for steps

// Define the instruction list,
// Determine whether the instructions entered by the player are correct and the random output of the computer is taken from here const act = ['Scissors', 'Rock', 'Cloth']
// Determine the player input information based on the read stream
// Listen for read stream input rl.on('line', function (input) {
 if (input === 'quit') {
   // If you enter [quit], execute the close() method rl.close()
 } else if (act.indexOf(input) !== -1) {
   // If the input string is in the instruction list // Randomly generate the corresponding computer instruction const idx = Math.floor((Math.random() * 3))
   gamer = act[idx]
   // Determine whether the player has scored based on the scoring rule const curScore = scoreRule(input, gamer)
   // Accumulate scores score += curScore

   // Print information for this round let win = curScore === 1 ? 'The player wins this time' : curScore === -1 ? 'The computer wins this time' : 'It's a tie, it must be a coincidence'
   result = `
   ※ ※ ※ ※ ※ ※ ※ ※ ※ ※
   Round ${num}:
   -------------------
   The player played: ${input}
   The computer is out: ${gamer}
   ${win}
   ※ ※ ※ ※ ※ ※ ※ ※ ※ ※
   `
   // After writing to the stream, continue to the next round num++;
   console.log(result)
   // If 3 rounds have been played, execute the close() method if (num > 3) {
     rl.close()
   }
 } else {
   // Other inputs print the correct input prompt console.log(`
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   To continue the game, please enter: [Scissors], [Rock], [Paper]
   To exit the game, please enter: 【quit】
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   `)
 }
})

Complete code

// stone.js
const readline = require('readline')
const clear = require('clear')
const chalk = require('chalk')

const act = ['Scissors', 'Rock', 'Cloth']
let num = 1
let score = 0
let gamer = ''
let result = ''

const rl = readline.createInterface({
 input: process.stdin,
 output: process.stdout
})

clear()

const beginText = chalk.green(`
============================================

To start the game, please enter: [Scissors], [Rock], [Paper]
To exit the game, please enter: 【quit】

============================================
`)
console.log(beginText)

rl.on('line', function (input) {
 if (input === 'quit') {
   rl.close()
 } else if (act.indexOf(input) !== -1) {
   const idx = Math.floor((Math.random() * 3))
   gamer = act[idx]
   const curScore = scoreRule(input, gamer)
   score += curScore

   let win = curScore === 1 ? 'The player wins this time' : curScore === -1 ? 'The computer wins this time' : 'It's a tie, it must be a coincidence'
   result = `
   ※ ※ ※ ※ ※ ※ ※ ※ ※ ※
   Round ${num}:
   -------------------
   The player played: ${input}
   The computer is out: ${gamer}
   ${win}
   ※ ※ ※ ※ ※ ※ ※ ※ ※ ※
   `
   num++;
   console.log(result)
   if (num > 3) {
     rl.close()
   }
 } else {
   console.log(`
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   To continue the game, please enter: [Scissors], [Rock], [Paper]
   To exit the game, please enter: 【quit】
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   `)
 }
})

// Listen for closing and exiting the process rl.on('close', function () {
 if (num > 3) {
   winText = score > 0 ? 'The player won the final victory' : score < 0 ? 'The player still lost in the end, come on' : 'An incredible draw'
   console.log(`
   ==========================
   This round ends, the player's total score is ${score}
   ${winText}
   ==========================
   `)
 }
 process.exit(0)
})

function scoreRule(player, npc) {
 // Scissors, Paper // Rock, Scissors // Paper, Rock if (player === npc) {
   return 0
 }
 if ((player === 'Scissors' && npc === 'Cloth')
   || (player === 'rock' && npc === 'scissors')
   || (player === 'cloth' && npc === 'stone')) {
   return 1
 } else {
   return -1
 }
}

Throwing out ideas

In the process of learning node, we will be exposed to more and more dependent modules and APIs, which also indirectly illustrates the power of the npm library. We can find and use the functions we want by searching. Don't get lost in the waves of APIs, we understand, just remember to use search skills when you need them.

The [Rock, Paper, Scissors] here is so loud (it's almost unbearable to watch), but our learning process can start from the loud, and go deeper and deeper, and your delicate figure will surely be left on the top of the loud. Welcome to complain about me, welcome to go deeper into node, come on~

The above is the details of how to write the Node.JS version of the mini-game. For more information about the Node.JS version of the mini-game, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to use nodejs to implement command line games
  • Nodejs realizes the sharing of small games with multiple people moving the mouse online at the same time
  • Implementing a multiplayer game server engine using Node.js
  • Node.js real-time multiplayer game framework
  • Is node.js suitable for game backend development?
  • A complete example of implementing a timed crawler with Nodejs
  • Differences between this keyword in NodeJS and browsers
  • The core process of nodejs processing tcp connection

<<:  MySQL Installer Community 5.7.16 installation detailed tutorial

>>:  Detailed explanation on how to get the IP address of a docker container

Recommend

Three ways to copy MySQL tables (summary)

Copy table structure and its data The following s...

36 principles of MySQL database development (summary)

Preface These principles are summarized from actu...

Implementation code for using CSS text-emphasis to emphasize text

1. Introduction In the past, if you wanted to emp...

Mysql inner join on usage examples (must read)

Grammatical rules SELECT column_name(s) FROM tabl...

A brief analysis of the knowledge points of exporting and importing MySQL data

Often, we may need to export local database data ...

Detailed explanation of MySQL high availability architecture

Table of contents introduction MySQL High Availab...

How to install mysql in docker

I recently deployed Django and didn't want to...

Analysis of the pros and cons of fixed, fluid, and flexible web page layouts

There is a question that has troubled web designe...

Use of Linux usermod command

1. Command Introduction The usermod (user modify)...

HTML table markup tutorial (48): CSS modified table

<br />Now let's take a look at how to cl...