Skip to content
Snippets Groups Projects
Commit 4abe072b authored by Lehtinen Anni Henriikka's avatar Lehtinen Anni Henriikka
Browse files

Pistelaskuri lisätty

parent 6f1bb1c6
No related branches found
No related tags found
No related merge requests found
...@@ -8,12 +8,14 @@ using Jypeli.Widgets; ...@@ -8,12 +8,14 @@ using Jypeli.Widgets;
namespace Escape; namespace Escape;
/// @author annilehtinen /// @author annilehtinen
/// @version 30.03.2025 / 3 /// @version 31.03.2025
/// <summary> /// <summary>
/// Peli, jossa pelaajaan tavoitteena on vältellä vastustajaa (Barkov) ja kerätä kiekkoja saadakseen pisteitä. /// Peli, jossa pelaajaan tavoitteena on vältellä vastustajaa (Barkov) ja kerätä kiekkoja saadakseen pisteitä.
/// </summary> /// </summary>
public class Escape : PhysicsGame public class Escape : PhysicsGame
{ {
private IntMeter _pointCounter;
public override void Begin() public override void Begin()
{ {
Camera.ZoomToLevel(); Camera.ZoomToLevel();
...@@ -111,6 +113,7 @@ public class Escape : PhysicsGame ...@@ -111,6 +113,7 @@ public class Escape : PhysicsGame
void CollectPuck(PhysicsObject player, PhysicsObject puck) void CollectPuck(PhysicsObject player, PhysicsObject puck)
{ {
puck.Destroy(); puck.Destroy();
_pointCounter.Value += 1;
} }
...@@ -173,6 +176,20 @@ public class Escape : PhysicsGame ...@@ -173,6 +176,20 @@ public class Escape : PhysicsGame
void CreateLevel() void CreateLevel()
{ {
Surfaces borders = Level.CreateBorders(0.5, true, Color.White); Surfaces borders = Level.CreateBorders(0.5, true, Color.White);
CreatePointCounter();
SpawnPucks(5, 10.0); SpawnPucks(5, 10.0);
} }
void CreatePointCounter()
{
_pointCounter = new IntMeter(0);
Label pistenaytto = new Label();
pistenaytto.X = Screen.Right -140;
pistenaytto.Y = Screen.Top -30;
pistenaytto.TextColor = Color.White;
pistenaytto.Title = "Pucks collected: ";
pistenaytto.BindTo(_pointCounter);
Add(pistenaytto);
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment