Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
escape
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
annhenle
escape
Commits
01101bed
Commit
01101bed
authored
3 days ago
by
Lehtinen Anni Henriikka
Browse files
Options
Downloads
Patches
Plain Diff
Rakennetta siistitty, Törmäyksenkäsittelijä pelaajalle ja Barkoville lisätty (toteutus kesken)
parent
8d9821af
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Escape/Escape/Escape.cs
+30
-7
30 additions, 7 deletions
Escape/Escape/Escape.cs
with
30 additions
and
7 deletions
Escape/Escape/Escape.cs
+
30
−
7
View file @
01101bed
...
...
@@ -22,12 +22,10 @@ public class Escape : PhysicsGame
PhysicsObject
player
=
AddPlayer
(
this
);
SetControls
(
player
);
PhysicsObject
barkov
=
new
PhysicsObject
(
50
,
50
);
barkov
.
Image
=
LoadImage
(
"Barkov.png"
);
barkov
.
X
=
60
;
barkov
.
Y
=
-
60
;
this
.
Add
(
barkov
);
PhysicsObject
barkov
=
AddBarkov
(
this
);
AddCollisionHandler
(
player
,
barkov
,
Tackle
);
Timer
.
CreateAndStart
(
4.0
,
SpawnPucks
);
}
...
...
@@ -63,6 +61,31 @@ public class Escape : PhysicsGame
return
player
;
}
/// <summary>
/// Lisää "vihollisen" eli Barkovin pelikentälle
/// </summary>
/// <param name="game">Peli, johon hahmo lisätään</param>
/// <returns>Barkov</returns>
static
PhysicsObject
AddBarkov
(
PhysicsGame
game
)
{
PhysicsObject
barkov
=
new
PhysicsObject
(
50
,
50
);
barkov
.
Image
=
LoadImage
(
"Barkov.png"
);
barkov
.
X
=
60
;
barkov
.
Y
=
-
60
;
game
.
Add
(
barkov
);
return
barkov
;
}
/// <summary>
/// Törmäyksenkäsittelijä pelaajahahmolle ja Barkoville (kesken)
/// </summary>
/// <param name="player">Pelaajan hahmo</param>
/// <param name="barkov">Barkov</param>
void
Tackle
(
PhysicsObject
player
,
PhysicsObject
barkov
)
{
MessageDisplay
.
Add
(
"Taklaus"
);
}
/// <summary>
/// Pelaajan liikuttaminen eteenpäin (myöhemmin animaation kanssa)
...
...
@@ -93,7 +116,7 @@ public class Escape : PhysicsGame
/// <param name="lifetime">Aika, jonka kiekko on kentällä ennen kuin se katoaa</param>
void
SpawnPucks
(
int
amount
,
double
lifetime
)
{
Game
Object
puck
=
new
Game
Object
(
18
,
18
);
Physics
Object
puck
=
new
Physics
Object
(
18
,
18
);
puck
.
Shape
=
Shape
.
Circle
;
puck
.
Color
=
Color
.
Black
;
puck
.
LifetimeLeft
=
TimeSpan
.
FromSeconds
(
lifetime
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment