Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ohj1ht
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
hankssxs
ohj1ht
Commits
70b774c5
Commit
70b774c5
authored
1 week ago
by
Hanki Sakari
Browse files
Options
Downloads
Patches
Plain Diff
Kelaboteille on lisätty aseet/jonkinlainen projektiilinheittomekaniikka
parent
78860f06
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
KelaCombat/KelaCombatTesti/Content/kentta1.png
+0
-0
0 additions, 0 deletions
KelaCombat/KelaCombatTesti/Content/kentta1.png
KelaCombat/KelaCombatTesti/KelaCombatTesti.cs
+40
-9
40 additions, 9 deletions
KelaCombat/KelaCombatTesti/KelaCombatTesti.cs
with
40 additions
and
9 deletions
KelaCombat/KelaCombatTesti/Content/kentta1.png
+
0
−
0
View replaced file @
78860f06
View file @
70b774c5
555 B
|
W:
|
H:
573 B
|
W:
|
H:
2-up
Swipe
Onion skin
This diff is collapsed.
Click to expand it.
KelaCombat/KelaCombatTesti/KelaCombatTesti.cs
+
40
−
9
View file @
70b774c5
...
...
@@ -71,17 +71,17 @@ namespace KelaCombatTesti;
void
LiikuVasemmalle
(
Vector
vektori
)
{
pelaaja
.
Walk
(-
1
0
0
);
pelaaja
.
Walk
(-
1
2
0
);
}
void
LiikuOikealle
(
Vector
vektori
)
{
pelaaja
.
Walk
(
1
0
0
);
pelaaja
.
Walk
(
1
2
0
);
}
void
Hyppaa
(
Vector
vektori
)
{
pelaaja
.
Jump
(
30
0.0
);
pelaaja
.
Jump
(
28
0.0
);
}
}
...
...
@@ -93,7 +93,7 @@ namespace KelaCombatTesti;
{
Level
.
Background
.
CreateGradient
(
Color
.
DarkGray
,
Color
.
Blue
);
Gravity
=
new
Vector
(
0
,
-
981
.0
);
Gravity
=
new
Vector
(
0
,
-
1100
.0
);
// pelissä kentät luodaan piirtämällä pikseleitä. Pikselin väri kuvaa aina jotain tiettyä asiaa kentällä
...
...
@@ -105,7 +105,7 @@ namespace KelaCombatTesti;
ruudut
.
SetTileMethod
(
Color
.
Red
,
LuoKelabottiSpawni
);
//PUNAISEEN voi spawnaa vihu
ruudut
.
SetTileMethod
(
Color
.
SkyBlue
,
LuoViinapullo
);
//VAALEANSNISET on pelaajaa parantavia viinapulloja
ruudut
.
Execute
(
7
0
,
7
0
);
ruudut
.
Execute
(
8
0
,
8
0
);
...
...
@@ -166,6 +166,7 @@ namespace KelaCombatTesti;
//Siis pelaajan elämien väheneminen VahnigoitaPelaajaa-aliohjelman mukaisesti
AddCollisionHandler
(
pelaaja
,
"Kelabotti"
,
VahingoitaPelaajaa
);
AddCollisionHandler
(
pelaaja
,
"Viinapullo"
,
ParannaPelaajaa
);
AddCollisionHandler
(
pelaaja
,
"kappale"
,
VahingoitaPelaajaa
);
Add
(
pelaaja
);
...
...
@@ -241,14 +242,17 @@ namespace KelaCombatTesti;
/// <returns>Kelabotti</returns>
void
LuoKelabotti
()
{
Jypeli
.
PhysicsObject
spawni
=
spawnipaikat
[
RandomGen
.
NextInt
(
spawnipaikat
.
Count
)];
PhysicsObject
spawni
=
spawnipaikat
[
RandomGen
.
NextInt
(
spawnipaikat
.
Count
)];
PlatformCharacter
Kelabotti
=
new
PlatformCharacter
(
80.0
,
80.0
);
Kelabotti
.
Color
=
Color
.
Orange
;
Kelabotti
.
Image
=
KelabottiKuva
;
Kelabotti
.
CollisionIgnoreGroup
=
3
;
Kelabotti
.
MirrorImage
();
Kelabotinelamalaskuri
=
new
IntMeter
(
5
);
// Alussa on 5 elämää
Kelabotti
.
Tag
=
"Kelabotti"
;
Kelabotti
.
Position
=
spawni
.
Position
;
Kelabotti
.
Weapon
=
new
AssaultRifle
(
30
,
10
);
Kelabotti
.
Weapon
.
ProjectileCollision
=
VahingoitaPelaajaa
;
Add
(
Kelabotti
);
...
...
@@ -256,16 +260,43 @@ namespace KelaCombatTesti;
seuraajanAivot
.
Speed
=
100
;
Kelabotti
.
Brain
=
seuraajanAivot
;
Timer
heittoajastin
=
new
Timer
();
heittoajastin
.
Interval
=
2
;
heittoajastin
.
Timeout
+=
delegate
()
{
KelabotinAmmus
(
Kelabotti
,
"pelaaja"
);
};
heittoajastin
.
Start
();
// Destroyed-tapahtuma Jypelissä:
// https://tim.jyu.fi/view/kurssit/jypeli/tapahtumat/muuttapahtumat
Kelabotti
.
Destroyed
+=
heittoajastin
.
Stop
;
}
/// <summary>
/// Aliohjelma, jossa käsitellään Kelabotin heittämä ammus
/// </summary>
/// <param name="heittavaOlio">Kelabotti heittää ammuksen</param>
/// <param name="kohdeolionTunniste">pelaajan tunniste</param>
public
void
KelabotinAmmus
(
PhysicsObject
heittavaOlio
,
string
kohdeolionTunniste
)
{
PhysicsObject
kappale
=
new
PhysicsObject
(
15
,
15
,
Shape
.
Circle
);
//kappale.Hit(new Vector(180,80));
kappale
.
Hit
(
new
Vector
());
kappale
.
Position
=
heittavaOlio
.
Position
;
kappale
.
CollisionIgnoreGroup
=
3
;
kappale
.
Color
=
Color
.
Silver
;
kappale
.
Tag
=
"kappale"
;
kappale
.
MaximumLifetime
=
TimeSpan
.
FromSeconds
(
8
);
Add
(
kappale
);
}
/// <summary>
/// Tämä aliohjelma käsittlee sen, kun pelaaja osuu Kelabottiin
/// </summary>
/// <param name="pelaaja">pelaajahahmo</param>
/// <param name="Kelabotti">pelin vihu; Kelabotti</param>
void
VahingoitaPelaajaa
(
PhysicsObject
pelaaja
,
PhysicsObject
Kelabotti
)
void
VahingoitaPelaajaa
(
PhysicsObject
pelaaja
,
PhysicsObject
kappale
)
{
int
luku
=
RandomGen
.
NextInt
(
19
,
34
);
pelaajanelamaLaskuri
.
Value
=
pelaajanelamaLaskuri
-
luku
;
// Vähentää pelaajan elämää satunnaisen määrän
...
...
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