ผลต่างระหว่างรุ่นของ "Prg2/flappy dot"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
แถว 29: แถว 29:
 
[[Image:Prg2-flappy-template.png]]
 
[[Image:Prg2-flappy-template.png]]
  
To start working, you should clone the project to your local machine.  The starting code only shows a single dot on the screen.  The template also provides two other images for the pillars (one for the top part and the other for the bottom part) in <tt>images</tt> folder.
+
To start working, you should clone the project to your local machine.  The starting code only shows a single dot on the screen.  The template also provides two other images for the pillars (one for the top part and the other for the bottom part) in <tt>images</tt> folder.  You should try to run the code to see if everything works fine.
  
 
=== Project board ===
 
=== Project board ===
แถว 42: แถว 42:
  
 
When you are ready, just move the first card (the player jump with gravity) to the "In progress" column.
 
When you are ready, just move the first card (the player jump with gravity) to the "In progress" column.
 +
 +
== Basic player physics ==
 +
 +
== Teamwork ==
 +
 +
== Keyboard control ==
 +
 +
== Pillar movement ==

รุ่นแก้ไขเมื่อ 20:07, 9 มีนาคม 2564

This is part of Programming 2 2563

Overview

You will work with another student (or more). You would work alone shortly in the beginning to get some feature done, then we would like to ask you to form a team of 2 or 3 students to complete the game, while collaborating with git (and github).

Task breakdown

Before we start, it is useful to think about incremental steps you needed to complete the game. You can think of this as a list of features (probably built on top of one another).

When you get your list, please see the steps that we plan to take here.

  • The player can jump and fall. (Implement player physics)
  • The player jumps with keyboard control
  • Show a single pillar pair.
  • Move the pillar pair across the screen.
  • Let the pillar pair reappear.
  • Check for player-pillar collision.
  • Make the game with one pillar pair.
  • Show more than one pillar pairs.

Getting started

We have provided the starter template for you at https://github.com/jittat/flappydot-starter-template. Go to the repository and then click "Use this template" to create a new repository.

Prg2-flappy-template.png

To start working, you should clone the project to your local machine. The starting code only shows a single dot on the screen. The template also provides two other images for the pillars (one for the top part and the other for the bottom part) in images folder. You should try to run the code to see if everything works fine.

Project board

Create the project board for your repository. Use the 3-column format: To do, In progresss, Done. You can also use the Basic Kanban template when create the project.

Prg2-flappy-project-board.png

Use this project board to plan your project. Add a few steps from the list above as notes, then convert them to Github issues so that you can associate your commits with them. Don't forget the order the cards by their priority, i.e., the issues that you want to work on the most should be at the top.

Prg2-flappy-project-starting-items.png

When you are ready, just move the first card (the player jump with gravity) to the "In progress" column.

Basic player physics

Teamwork

Keyboard control

Pillar movement