2023-05-25 Meeting 2

Review

Pārtaisīt spēli pygame

 

Modeli implementēt ar dataclass un dataclass_json

Funkcija, lai ar keyboard “S” var saglabāt visu model kā game.json ar “L” var ielādēt

image-20230525164531823

image-20230525164849061

 

image-20230525165446766

 

Dataclass decorator pārveido Python static par non-static

image-20230525165538366

 

Game pārtaisīt par singleton design pattern

 

 

image-20230525165704206

 

 

PyGame ar observer pattern

 

image-20230525165843360

 

 

image-20230525170054246

Uztaisīt bez vēstures un faila, izmantojot observer, katrā alien game.addListenerAlienMove(moveListener) , game.emit(move)

 

 

image-20230525170541315

image-20230525170645416

https://pythonbasics.org/classmethod/

 

Visur lietot typing

image-20230525171252463

Implementēt High score SQL DB

 

TODO materials

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.

 

 

3. Design Patterns - Factory, Abstract Factory, Observer

 

3.1. Video / Materiāli

Video: https://youtu.be/6HctrXqEzcA

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

Materials: https://refactoring.guru/design-patterns/factory-method https://refactoring.guru/design-patterns/abstract-factory https://refactoring.guru/design-patterns/iterator

 

3.2. Implementēt Abstract factory, lai iegūtu katrai ciltij atbilstošas grafikas un uzzīmēt katras cilts ēkas

Template: http://share.yellowrobot.xyz/quick/2022-9-23-68A1BCA7-C38A-4BB6-AF63-55E327A7DE7E.zip

 

3.3. Izveidot UI komponenti, pogu ar kuru var sākt jaunu spēli, izmantojot Observer pattern

Izmantot iepriekšējo sagatavi

 

3.3. Mājasdarbs - Pievienot papildus UI elementus, kuriem var uzklikšķināt

Uzdevumi:

  1. Pabeigt "new game" pogu tā, lai būtu redzams teksts, hover un mouse_down vizuālas atšķirības

  2. Pabeigt implementāciju factory klasēm create_actor

  3. Implementēt UI elementu (neredzamu pogu vai aplīti), kurš tiek novietots uz katras pilsētas

  4. Uzklikšķinot uz pilsētas izveidot Warrior actor ar pozīciju uz šīs pilsētas, izmantojot UI component un Factory pēc attiecīgās tribe

4. Design Patterns - Singleton, Iterator

4.1. Video / Materiāli

Video: https://youtu.be/waYf6shzKso

Jamboard: https://jamboard.google.com/d/1Z6z2FadCTFIW-QZvdNusmpzMWX1U_faWX2DbxVDIsz4/edit?usp=sharing

 

4.2. Pēc instrukcijām implementēt Iterator un Singleton, panākt, ka programma darbojas bez kļūdām

Template: http://share.yellowrobot.xyz/1664535862-design-patterns-course/session_4_singleton_iterator_template.zip

 

 

4.3. Mājasdarbs - Factory, Iterator, Observer

Izmantojot sagatavi no iepriekšējā uzdevuma:

  1. Implementēt Factory pattern, lai izveidotu jaunus actors http://share.yellowrobot.xyz/upic/05bae2fc6237c06e81d33dbdc4b430bd_1664564960.png

 

  1. Implementēt šajā koda vietā Iterator pattern tā, lai tiktu atgriezts pygame. Surface uzreiz no abu list apvienojuma (buildings un actors)

 

  1. Implementēt EventComponentButton, kurš tiek atgriezts nospiežot pogu ar Observer pattern palīdzību tā vietā, lai atgrieztu pogas pointeri http://share.yellowrobot.xyz/upic/215cbec575ff796ea242e242865733c5_1664565666.png

Shēma, kam jābūt event saturā, šo saturu izmantot, lai veiktu darbības WindowMain klasē: http://share.yellowrobot.xyz/quick/2022-9-30-363D57CF-D6CF-4F0C-9DEF-0D92FE92439B.png

 

  1. Pārvietot cik iespējams spēles loģikas kodu uz ControllerGame no WindowMain. WindowMain jāsatur tikai zīmēšanas un IO/lietotāja interactions code

 

  1. Implementēt pogu ar kuru izpildīt gājienus, katrai ciltij un uz ekrāna attēlot informāciju par to kuram ir gājiens un cik gājieni kopā jau ir izieti

 


 

Plāns

  1. Pabeigt spēli, izmantojot design patterns - 7 nodarbības

  2. Design patterns materiālus izpildīt arī atsevišķi ārpus spēles - kopā 8 nodarbības

  3. Iziet Pythn Flask kursu (iedošu pēc tam) - 8 nodarbības

  4. Testa uzdevums, lai pārbaudītu vai spēj visu izdarīt, kas bija nodarbībās

  5. Komerciālas prakses darījums ar apmaksu pilna via pusslodze