2023-05-02 Pauls Apšenieks - Meeting 1

 

Ievads Python - Session 0

Video: https://youtu.be/TVopogOSn0I

Jamboard: https://jamboard.google.com/d/17sw8elAzbMUL--eNzuorhlwd5UFZi6zxXax_XupscQw/edit?usp=sharing

Funkcija:

http://share.yellowrobot.xyz/1645110979-deep-learning-intro-2022-q1/1_3_task.png

 

Session 1

Video: https://youtube.com/live/RlilpG9vu4k

Jamboard: https://jamboard.google.com/d/1ZJe1eiGXk_7h92dWtZGyxnBNCfX3TleEmWyuMGWK_0c/edit?usp=sharing

 

Session 2

Video: https://youtu.be/2-sn6BM1dJ0

Jamboard with code examples: https://jamboard.google.com/d/1lHo8x8d5ZsBhSlEo3sVJJFW1sKWXDFu2iBb4SLytXqE/edit?usp=sharing

Template: http://152.67.89.169/1629812987-programming-tutorials/1_space_invaders_game.py

Homework: Using video tutorial #2 implement changes so that space ship cannot fly out of the boundaries of the scene

 

Session 3

Video:

https://www.youtube.com/watch?v=S6YaOwKXte4

Jamboard: https://jamboard.google.com/d/1l5FwRDmJTd_tjQiMEU1epPY1M-uui55Jz-_rp1Qt15k/edit?usp=sharing

Template:

http://share.yellowrobot.xyz/1629812987-programming-tutorials/3_space_invaders_game_template.py

Homework:

Using video tutorial #3 implement so that space ship uses Position2d class and also implement getters and setters for all of the classes where necessary - check that they do work correctly

UML: https://app.diagrams.net/#G1shmMy36fWincxcXPK4IT7tWPxj2z5vs4

 

Session 4

Video: https://youtube.com/live/6htZokk2i8Q

Jamboard: https://jamboard.google.com/d/1vaVO5rIhSg_WqigLy1a88TeH0Rc_rcuKZ2D4K5qHxGc/edit?usp=sharing

Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/4_space_invaders_game_template.py Homework:

  1. Make changes so that space ship can only move left and right in bottom row.

  2. Make changes so that space ship can shoot rockets that go upwards

  3. Make changes so that rockets can blow up walls

 

Session 5

Video:

https://studio.youtube.com/video/J1r3QetRPcc/livestreaming

Jamboard:

https://jamboard.google.com/d/1WhPvk1Q_ux76scsLdPg8Ft3jsjV9EiDrvAKtAiYbElE/edit?usp=sharing

Template:

http://share.yellowrobot.xyz/1629812987-programming-tutorials/5_3_space_invaders_game_template.py

Homework:

  1. Make changes so that you have score calculated and shown in top of the screen

  2. Make changes so that you have alien ship flying in top of the screen sometimes and you can try to shoot him down (to test this my advice is to make him very slow :))

  3. Make changes so that you do not use anywhere global variables, but instead use GameState singleton

Session 6

Video: https://youtube.com/live/55qAYX0wtZg Jamboard: https://jamboard.google.com/d/1dHl0cgMM4Sf5hZDaIQI_Ay1UElq29fG88Wz2_fhpWQo/edit?usp=sharing

Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/6_1_space_invaders_game_template.py

Homework:

  1. Implement 5x2 block of Alien characters (not 3 but 10 attackers in 2 rows)

  2. Implement space ship or satellite on the top - sometimes there should fly satellite - if rocket hits satellite then get minus points. They appear at random moments

  3. Implement - Rockets in downward direction - randomly dropped by aliens (🔻 those are stopped by the walls)

  4. Implement 3 lives of player

  5. Implement if all aliens exploded then then you win the game

Session 7

Video: https://youtube.com/live/k1EW5aiIVv0 Jamboard: https://jamboard.google.com/d/1sK_IE8z8e2QYPuVpU63AUCUmqk-Wp-p10i8WaQ314yU/edit?usp=sharing

Template: http://share.yellowrobot.xyz/1629812987-programming-tutorials/7_2_space_invaders_game_template.py

Homework: Implement finished game based on Tutorial #7 template.