From 27531be6091294db0cc516329178f4d935135c70 Mon Sep 17 00:00:00 2001
From: Paolo Brasolin <paolo.brasolin@eurac.edu>
Date: Mon, 4 Apr 2022 12:46:08 +0200
Subject: [PATCH] feat: #fe conceal clues when game is paused

---
 frontend/src/js/clue.ts        | 10 ++++++++++
 frontend/src/js/fight_scene.ts | 10 ++++++++++
 2 files changed, 20 insertions(+)

diff --git a/frontend/src/js/clue.ts b/frontend/src/js/clue.ts
index 2daf268..5e570d5 100644
--- a/frontend/src/js/clue.ts
+++ b/frontend/src/js/clue.ts
@@ -9,6 +9,8 @@ const BASE_HEIGHT = 25;
 const ASCENDERS = /[ABCDEFGHIJKLMNOPQRSTUVWXYZbdfhijklstäöüß]/;
 const DESCENDERS = /[AFHJPQYZÄfghjpqsyzß]/;
 
+const CONCEAL_TINT = 0xaaaaaa;
+
 class Clue extends Phaser.GameObjects.Sprite {
   word: Types.Word;
   scene: FightScene;
@@ -98,6 +100,14 @@ class Clue extends Phaser.GameObjects.Sprite {
       onComplete: onComplete,
     });
   }
+
+  uncover() {
+    this.clearTint();
+  }
+
+  conceal() {
+    this.setTintFill(CONCEAL_TINT);
+  }
 }
 
 export default Clue;
diff --git a/frontend/src/js/fight_scene.ts b/frontend/src/js/fight_scene.ts
index d98100c..799bdd4 100644
--- a/frontend/src/js/fight_scene.ts
+++ b/frontend/src/js/fight_scene.ts
@@ -77,6 +77,8 @@ export default class FightScene extends Phaser.Scene {
   init() {
     this.score = 0;
     this.health = 100;
+    this.events.on("pause", this.concealClues.bind(this));
+    this.events.on("resume", this.uncoverClues.bind(this));
   }
 
   async create() {
@@ -365,4 +367,12 @@ export default class FightScene extends Phaser.Scene {
   async spawnFoe() {
     await new Foe(this).initialize();
   }
+
+  concealClues() {
+    this.foes.forEach((foe) => foe.clue.conceal());
+  }
+
+  uncoverClues() {
+    this.foes.forEach((foe) => foe.clue.uncover());
+  }
 }
-- 
GitLab