Microbit Programming: Simple AI for Game Playing

Last week, we wrote our first game on Microbit: Catching Apples. My two sons loved playing it, competing for the highest score, which seems to be capped at 35 points.

The code for the Catching Apples game and the Microbit simulator: https://makecode.microbit.org/_DV93uT7i0WuK

Is there a limit? Even if we react quickly enough and make no mistakes, is there a scenario where we cannot catch the apple?

Microbit Programming: Simple AI for Game Playing

Introduction to AI – Letting the Computer Play

AI, known as artificial intelligence, is typically referred to as computers having human-like intelligence. We can teach Microbit how to play this game using a very simple strategy: move towards the apple (if the apple is above the plate, stay still). Let’s define a function called letComputerPlay.

1
2
3
4
5
6
7
function letComputerPlay() {
    if (pixel.x() < apple.x()) {
        moveRight();
    } else if (pixel.x() > apple.x()) {
        moveLeft();
    }
}

Then, we can place this function into the main game loop function. We can remove the code that handles the buttons (A and B keys) and provide corresponding functions to move left or right:

1
2
3
4
5
6
7
8
9
10
11
function moveLeft() {
    px--;
    if (px < 0) px = 4;
    pixel.setX(px);
}
 
function moveRight() {
    px++;
    if (px > 4) px = 0;
    pixel.setX(px);
}

The code and Microbit simulator: https://makecode.microbit.org/_93CihTgAFLk2

Success! Microbit knows how to play the game and will never get tired. In fact, Microbit is very good at playing this game.

Improved Version of MICROBIT AI – Game Strategy

If you let Microbit play for a while, you won’t see the game end because, theoretically, Microbit can always catch the apple, even if it starts the farthest away—it needs four moves to reach it, and the apple takes five moves to trigger the game over!

However, we can still optimize by choosing the shorter move direction. We just need to calculate the cost (steps) of moving left or right. This strategy will make Microbit appear smarter. Here is our improved version of MicrobitAI:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
function letComputerPlay() {
    if (pixel.x() == apple.x()) {
        return ;
    }
    let costOfMovingLeft, costOfMovingRight;
    // Calculate the cost of moving left
    if (pixel.x() < apple.x()) { // Apple is on the right
        costOfMovingLeft = pixel.x() + 5 - apple.x();
    } else { // Apple is on the left
        costOfMovingLeft = pixel.x() - apple.x();
    }
    // Calculate the cost of moving right
    if (pixel.x() < apple.x()) { // Apple is on the right
        costOfMovingRight = apple.x() - pixel.x();
    } else { // Apple is on the left
        costOfMovingRight = 5 - pixel.x() + apple.x();
    }
    if (costOfMovingLeft < costOfMovingRight) { // Moving left is cheaper
        moveLeft();
    } else if (costOfMovingLeft > costOfMovingRight) {// Moving to the right is faster
        moveRight();
    } else if (Math.randomRange(0, 1) == 0) { // Random direction is fine
        moveLeft();
    } else {
        moveRight();
    }
}

As you can see, we first calculate the costs of moving left (costOfMovingLeft) and right (costOfMovingRight), and choose the shorter (better) direction as our strategy. In case both left and right costs are the same, we randomly choose a direction (using Math.randomRange(0, 1) to generate a number that is either 0 or 1, each with a 50% chance).

The code and Microbit simulator: https://makecode.microbit.org/_FpoaisRKC6ws

As you can see, the AI here is very simple – Microbit strictly follows human instructions to play the game. Microbit’s intelligence comes from decision making. It is very suitable for computers. The computation will make decisions based on the current situation, which can often be calculated based on existing conditions (variables).

Video: https://helloacm.com/wp-content/uploads/2019/12/microbit-plays-game-with-ai.mp4

Computers do not make mistakes and do not get tired – this is superior to humans.

English: https://helloacm.com/microbit-programming-introduction-to-ai-letting-computer-play-the-game/

Sync to blog: https://justyy.com/archives/31436

—-

Recent Articles:

If you don’t know what to invest in, invest in children.

Microbit Game Programming: Writing the Catching Apples Game with Sprite Objects.

Experiences of changing schools for children in the UK: The child left the village primary school.

The annual concert showed us the progress of the children.

Microbit Programming: Running Pixel!

Solutions for intermittent Wi-Fi disconnections.

Microbit/Javascript Programming Introduction: Simple Counter.

The most cost-effective electric company in the UK, Bulb (includes a £50 opening reward).

Using powerline adapters in large houses to solve Wi-Fi signal issues.

Websites and resources for programmers to practice coding (my experience with coding practice).

Experiences of buying and selling houses in the UK.

Cardiff Bay looks beautiful in the evening.

Tonight may be the third last time in the UK to adjust the clocks for Daylight Saving Time.

Barbara Hepworth Museum and Sculpture Garden.

Visiting the Eden Project in Cornwall, UK.

The most beautiful seaside town in the UK, St Ives (Cornwall).

The Minack Theatre in Cornwall.

Getting to know BBC’s Microbit programming.

A stir caused by copying a three-line function from SO.

Travel guide to St Michael’s Mount in Cornwall.

TESCO supermarket in the UK has a bottle recycling reward.

The company’s no-blame culture.

Praised as the most beautiful beach in Europe – Rhossili Bay, Swansea, UK.

Make sure to go to Land’s End in the UK with someone you love.

HSBC bank in the UK refuses to lend due to steel structure of the house.

Getting the Canon 70-200mm F2.8 white lens (third generation) for medium telephoto.

Why are interviews for programmers at famous IT companies so difficult?

The greedy algorithm for playing Bitcoin is all about the thrill.

2019 Cambridge Dragon Boat Festival: Honored to represent the Fujian team in the competition.

How to extend the life of a hard drive – always remember to back it up.

Ways to cash out Bitcoin.

The Dark Hedges in Northern Ireland is a photography hotspot.

Python problem-solving: (Two prime numbers multiply to 707829217).

Colchester Zoo has tropical penguins.

Going to West Mersea beach to collect oysters.

Children’s piano exam in the UK (UK piano grading exam).

Picnic at Milton Country Park.

My son’s diary: The first day of our trip to Northern Ireland.

Finding Easter eggs at Beth Chatto Gardens.

North Hill Noodle Bar in Colchester, UK.

Discussing Agile development’s daily standup meetings.

WeChat tips: How to clean up zombie fans (see who deleted you).

Google’s egg-throwing problem.

Poor guy enjoyed some free VIP service at Audi 4S store.

The coin game between a poor guy and a beautiful girl (probability and expectation).

Wife deserves the best.

It’s not easy to get dental work done in the UK – discussing installment plans for dental work in the UK.

Personal blog: ACM-er

Public subscription account: JustYYUK – Xiao Lai’s life and information in the UK.

Microbit Programming: Simple AI for Game Playing

Leave a Comment