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
6f1bb1c6
Commit
6f1bb1c6
authored
3 days ago
by
Lehtinen Anni Henriikka
Browse files
Options
Downloads
Patches
Plain Diff
Barkov asetettu seuraamaan pelaajaa
parent
c4effa1f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Escape/Escape/Escape.cs
+18
-5
18 additions, 5 deletions
Escape/Escape/Escape.cs
Escape/Escape/Escape.csproj
+3
-0
3 additions, 0 deletions
Escape/Escape/Escape.csproj
with
21 additions
and
5 deletions
Escape/Escape/Escape.cs
+
18
−
5
View file @
6f1bb1c6
...
...
@@ -8,7 +8,7 @@ using Jypeli.Widgets;
namespace
Escape
;
/// @author annilehtinen
/// @version 30.03.2025 /
2
/// @version 30.03.2025 /
3
/// <summary>
/// Peli, jossa pelaajaan tavoitteena on vältellä vastustajaa (Barkov) ja kerätä kiekkoja saadakseen pisteitä.
/// </summary>
...
...
@@ -22,7 +22,7 @@ public class Escape : PhysicsGame
PhysicsObject
player
=
AddPlayer
(
this
);
SetControls
(
player
);
PhysicsObject
barkov
=
AddBarkov
(
this
);
PhysicsObject
barkov
=
AddBarkov
(
this
,
player
);
AddCollisionHandler
(
player
,
barkov
,
Tackle
);
AddCollisionHandler
(
player
,
"puck"
,
CollectPuck
);
...
...
@@ -34,6 +34,7 @@ public class Escape : PhysicsGame
/// <summary>
/// Peliohjainten asettaminen pelaajalle
/// </summary>
/// <param name="player">Hahmo, jolle ohjainkomennot lisätään</param>
void
SetControls
(
PhysicsObject
player
)
{
Keyboard
.
Listen
(
Key
.
Up
,
ButtonState
.
Down
,
MovePlayer
,
"Liikuta pelaajaa eteenpäin"
,
player
);
...
...
@@ -55,6 +56,8 @@ public class Escape : PhysicsGame
{
PhysicsObject
player
=
new
PhysicsObject
(
40
,
40
);
player
.
Image
=
LoadImage
(
"player.png"
);
player
.
X
=
-
450
;
player
.
Y
=
0
;
player
.
CanRotate
=
false
;
player
.
LinearDamping
=
0.95
;
...
...
@@ -67,13 +70,22 @@ public class Escape : PhysicsGame
/// Lisää "vihollisen" eli Barkovin pelikentälle
/// </summary>
/// <param name="game">Peli, johon hahmo lisätään</param>
/// <param name="target">Kohde, jota Barkov seuraa (pelaajan hahmo)</param>
/// <returns>Barkov</returns>
static
PhysicsObject
AddBarkov
(
PhysicsGame
game
)
static
PhysicsObject
AddBarkov
(
PhysicsGame
game
,
PhysicsObject
target
)
{
PhysicsObject
barkov
=
new
PhysicsObject
(
50
,
50
);
barkov
.
Image
=
LoadImage
(
"Barkov.png"
);
barkov
.
X
=
60
;
barkov
.
Y
=
-
60
;
barkov
.
X
=
450
;
barkov
.
Y
=
0
;
FollowerBrain
barkovBrain
=
new
FollowerBrain
(
target
);
barkovBrain
.
DistanceFar
=
600
;
barkovBrain
.
Speed
=
50
;
barkovBrain
.
Active
=
true
;
barkovBrain
.
TurnWhileMoving
=
true
;
barkov
.
Brain
=
barkovBrain
;
game
.
Add
(
barkov
);
return
barkov
;
}
...
...
@@ -105,6 +117,7 @@ public class Escape : PhysicsGame
/// <summary>
/// Pelaajan liikuttaminen eteenpäin (myöhemmin animaation kanssa)
/// </summary>
/// <param name="player">Hahmo, jota liikutetaan</param>
void
MovePlayer
(
PhysicsObject
player
)
{
int
playerSpeed
=
10
;
...
...
This diff is collapsed.
Click to expand it.
Escape/Escape/Escape.csproj
+
3
−
0
View file @
6f1bb1c6
...
...
@@ -41,6 +41,9 @@
<None Update="Content\puck3.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Content\Barkov_peili.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
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