2025-02-13 Meeting 4

 

TODO

  1. Izveidot Github repo, sākt lietot SourceTree vai GitKranken (spēle, design pattern, flask lekcijas folderos iekš viena repo)

  2. Code review fixes

  3. Design patterns uzdevumi

1. Code review

Piemērs kā veikt data classes priekš models

 

 

image-20250213173826540

 

image-20250213174054703

image-20250213174222333

image-20250213174328975

 

image-20250213174546997

 

 

image-20250213175032690

image-20250213174927243

 

 

image-20250213175107307


 

2. Model View Controller (MVC), PyGame

2.1. Video / Materiāli

Video: https://youtube.com/live/G-FjSQjDky8?feature=share

Whiteboard: https://share.yellowrobot.xyz/quick/2024-12-27-E01C5459-DA94-489D-B7DC-259DDD73E27B.pdf

Materials: https://realpython.com/pygame-a-primer/

https://www.tutorialspoint.com/python_design_patterns/python_design_patterns_model_view_controller.htm

 

 

2.2. Implementēt MVC balstītu spēles struktūru

Implementēt TODO un UML shēmu: http://share.yellowrobot.xyz/upic/8734c0d130fd735370f25b7f6dd6e1d0_1694639166.png

Iegūt sekojošu rezultātu: http://share.yellowrobot.xyz/upic/522c87cb595310c6495273b1aea5283e_1694638538.png

Sagatave: http://share.yellowrobot.xyz/quick/2023-9-13-06471100-6D2C-4ABA-97FA-7AAEBE39AB35.zip

Iesniegt pirmkodu un screenshots ZIP formātā

 

uses
Game
map_size: Tuple[int,int]
game_objects: List[GameObject]
level: int
score: int
GameObject
position: Tuple[int, int]
game_object_type: EnumGameObjectType
animation_frame: int
animation_frame_max: int
animation_frame_duration: float
animation_frame_duration_max: float
animation_is_animating: bool
«enumeration»
EnumGameObjectType
NotSet
Player
Forest
Water
Brick
Steel
ControllerGame
static new_game() : : Game
static update_player_movement(game: Game, move_direction: Tuple[int, int])
WindowMain
game_components: List[ComponentGameObject]
ComponentGameObject
game_object: GameObject

 

2.3. Implementēt spēlētāja tanka vadību

  1. Impementēt jaunu klasi ComponentTank, kas pārmantota no ComponentGameObject, UML shēma:

    http://share.yellowrobot.xyz/upic/ef642379019e6be4b1b2e44870d3a1fd_1695277114.png

  2. Pievienot dzelteno tanku no pozīcijas (0,0) un (1,0), (0,2) un (0,3) un pārējos virzienos, battle_city_sprites.png.

  3. Implementēt, ka ar bultiņām var braukt pa karti.

  4. Kamēr tanks brauc animācija strāda starp 2 kadriem, kad tanks apstājies animācija arī apstājas

  5. Neļaut uzbraukt uz citiem šķēršļiem

  6. Neļaut izbraukt ārā no kartes

Rezultātam aptuveni jāizskatās šādi (ievērot, ka braucot tanks animējas, bet atlaižot pogas stāv) http://share.yellowrobot.xyz/quick/2023-9-14-6FBC9587-66CD-42AC-803A-AD86EE337955.mp4

Iesniegt pirmkodu un screenshots ZIP formātā

image-20230921091833603

Model
View
Controller
uses
uses
Game
map_size: Tuple[int,int]
game_objects: List[GameObject]
level: int
score: int
GameObject
position: List[float]
game_object_type: EnumGameObjectType
direction: EnumGameObjectDirection
movement_speed: float = 1e-3
animation_frame: int
animation_frame_max: int
animation_frame_duration: float
animation_frame_duration_max: float
animation_is_animating: bool
«enumeration»
EnumGameObjectType
NotSet
Player
Forest
Water
Brick
Steel
Player
«enumeration»
EnumGameObjectDirection
NotSet
Up
Down
Left
Right
ComponentGameObject
game_object: GameObject
update(delta_milisec:float)
render(screen: Surface)
WindowMain
game_components: List[ComponentGameObject]
ComponentTank
update(delta_milisec:float)
ControllerGame
static new_game() : : Game
static update(game: Game, delta_time: float)
ControllerTank
static update(tank: GameObject, delta_time: float)
static set_direction(tank: GameObject, direction: EnumGameObjectDirection)

 


3. Creational Patterns - Singleton, Factory, Prototype, Object Pool

3.1. Video / Materiāli

Video: https://youtube.com/live/24KkX73TUV8?feature=share

 

3.2. Implementēt Singleton, Factory, Prototype, Object Pool

Sagatave: https://share.yellowrobot.xyz/quick/2024-10-2-128AC6AC-BE41-4533-951A-D7B419DC9970.zip

Implementēt Singleton, Factory, Prototype, Object Pool

Iesniegt screenshot un pirmkodu.

 

3.3. Implementēt Builder vai Abstract Factory šablonu

  1. Implementēt Builder vai Abstract Factory šablonu, lai izveidotu 2 dažādus līmeņus vai kartes. Sakot spēli, izlvēleties nejauši starp 2 līmeņiem vai kartēm.

  2. Implementēt funkcionalitāti, ka tanki autonomi braukā pa karti un šauj, darbības mainās ar intervālu game_object.tank_next_move_time

Iesniegt screenshot un pirmkodu.

 


4. Structural Patterns - Adapter, Decorator, Closure, Flyweight

4.1. Video / Materiāli

Video: https://youtube.com/live/yvvDTfwsT7c?feature=share

Materials: https://refactoring.guru/design-patterns

https://www.youtube.com/watch?v=5Va1fslNKEo

4.2. Implementēt Decorator un Closure pattern

Implementēt Decorator pattern: Lai savācot zvaigznes tanks sāktu ātrāk braukt Closure pattern, lai nodrošinātu funkciju ātruma mērīšanu un try..catch

Template: https://share.yellowrobot.xyz/quick/2024-10-10-49B23DD3-ACC4-45B8-B11D-159D0FA9371B.zip

4.3. Implementēt vēl papildus Decorator un Closure pattern

Veikt izmaiņas sagatavē

  1. Balstoties uz sagatavi iepriekš implementēt Closure pattern - decorator_measure_time, lai nomērītu funkcijas izpildes ātrumu.

  2. Implementēt vēl kādu bonusu, kas piešķirtu papildus spējas tankam ar Decorator pattern, piemēram šaut ātrāk lodes

Iesniegt source code kā zip


 

5. Behavioral Patterns - Observer, Iterator, Command

5.1. Video / Materiāli

Video: https://youtube.com/live/pJ1MTSKNdBg?feature=share

Materials: https://refactoring.guru/design-patterns

https://www.youtube.com/watch?v=5Va1fslNKEo

5.2. Implementēt Observer, Command, Iterator, Memento patterns

Implementēt Observer, Command, Iterator, Memento patterns (TODOs)

Template: https://share.yellowrobot.xyz/quick/2024-10-17-859BC921-864F-46B3-8960-D306610E3AF0.zip

5.3. Implementēt uzlabojumus ar behavioral patterns palīdzību

 

  1. Implementēt player name Redo funkciju (ar Command Pattern)

  2. Implementēt settings save / load (memento, state)

  3. Implementēt iterator pattern ControllerGame.new_game funkcijā, lai Iterator aizstātu sekojošo 2 for ciklus ar vienu collection, kurš atgriež visas kartes pozīcijas x, y, bet svarīgi, ka pāšā collection/iterator iekšienē nebūtu arī 2x for loops

     


5.1. Video / Materiāli

Video: https://youtube.com/live/pJ1MTSKNdBg?feature=share

Materials: https://refactoring.guru/design-patterns

https://www.youtube.com/watch?v=5Va1fslNKEo

5.2. Implementēt Observer, Command, Iterator, Memento patterns

Implementēt Observer, Command, Iterator, Memento patterns (TODOs)

Template: https://share.yellowrobot.xyz/quick/2024-10-17-859BC921-864F-46B3-8960-D306610E3AF0.zip

5.3. Implementēt uzlabojumus ar behavioral patterns palīdzību

 

  1. Implementēt player name Redo funkciju (ar Command Pattern)

  2. Implementēt settings save / load (memento, state)

  3. Implementēt iterator pattern ControllerGame.new_game funkcijā, lai Iterator aizstātu sekojošo 2 for ciklus ar vienu collection, kurš atgriež visas kartes pozīcijas x, y, bet svarīgi, ka pāšā collection/iterator iekšienē nebūtu arī 2x for loops

 

 


 

6. React, Flux, Redux

 

6.1. Video / Materials (24 Oct 2024, 16:15)

Video: https://youtube.com/live/raIxZPXzAKI?feature=share

Materiāli: https://reactjs.org/docs/react-component.html https://datafloq.com/read/the-differences-between-three-major-application-architectures-mvc-vs-flux-vs-redux/

 

6.2. Implementēt React pattern python vidē izmantojot video instrukcijas un template

Balstoties uz Video instrukcijām, iepazīties ar React programēšanas šablonu Izmantojot sagatavi: https://share.yellowrobot.xyz/quick/2024-10-24-5CAF7251-D0EC-40BD-B8CA-026C3D0E4981.zip

Implementēt, lai būtu šāds rezultāts: http://share.yellowrobot.xyz/quick/2023-10-26-17339E1E-C1EA-42B3-85FE-FADC12B25AD2.mov

Uzdevumi:

  1. Implementēt izmantojot React pattern funkcionalitāti, lai ReactTextBox laukā var ievadīt tekstu (ierakstīt, nodzēst, atstarpes)

  2. Implementēt izmantojot React pattern funkcionalitāti ReactButton

  3. Implementēt, lai var peivienot jaunu high scrore iekš WindowHighScores

  4. Papildus uzdevums, ja teksts pārsniedz TextBox platumu, tad to nobīdīt pa vienam simbolam pa kreisi tā, lai paliek redzami tikai pēdējie simboli, kuri ielien teksta laukā.

    Iesniegt pirmkodu un screenshot

 

6.3. Pabeigt HighScores ekrānu

Izmantojot 6.2. sagatavi, ievērojot React, Flux principus (setState(..), state, props) implementēt:

  1. Sašķirot iegūtos punktus dilstošā secībā

  2. Rādīt tikai 10 labākos punktus ar vārdu

  3. Prasīt ievadīt vārdu tikai tad, ja lietotājs iekļūst punktu tabulā (10 labākajos)

  4. Pievienot pogu “Aizvērt”, lai nebūtu nepieciešams ar ESC aizstaisīt HighScores ekrānu

Iesniegt pirmkodu un screenshot