This shows you the differences between two versions of the page.
pm:prj2024:fgul:melania.marian [2024/05/26 20:04] melania.marian [Verificarea cuvintelor] |
pm:prj2024:fgul:melania.marian [2024/05/26 20:06] (current) melania.marian [Rezultate Obţinute] |
||
---|---|---|---|
Line 196: | Line 196: | ||
tft.setTextSize(4); | tft.setTextSize(4); | ||
tft.print("YOU WIN!:)"); | tft.print("YOU WIN!:)"); | ||
+ | } | ||
+ | |||
+ | // funcția ISR pentru pierdere | ||
+ | void ISRPierdere() { | ||
+ | tft.setTextColor(TFT_RED); | ||
+ | tft.setCursor(70, 420); | ||
+ | tft.setTextFont(1); | ||
+ | tft.setTextSize(3); | ||
+ | |||
+ | tft.print("YOU LOSE!:("); | ||
+ | |||
+ | tft.setTextColor(TFT_WHITE); | ||
+ | tft.setCursor(55, 450); | ||
+ | tft.setTextFont(1); | ||
+ | tft.setTextSize(2); | ||
+ | |||
+ | tft.print("The word was "); | ||
+ | tft.setTextColor(TFT_GREEN); | ||
+ | tft.print(selected_word); | ||
} | } | ||
</code> | </code> | ||
Line 202: | Line 221: | ||
În aceste poze se observă aspectul jocului în urma câștigării sau pierderii unui joc. | În aceste poze se observă aspectul jocului în urma câștigării sau pierderii unui joc. | ||
+ | |||
{{:pm:prj2024:fgul:joc_castigat_meli.jpeg?300|}} {{:pm:prj2024:fgul:joc_pierdut_meli.jpeg?300|}} | {{:pm:prj2024:fgul:joc_castigat_meli.jpeg?300|}} {{:pm:prj2024:fgul:joc_pierdut_meli.jpeg?300|}} | ||