-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameObject.cs
106 lines (92 loc) · 2.79 KB
/
GameObject.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
using SkiaSharp;
class GameObject{
private float positionX;
private float positionY;
public SKPoint Position{
get{
return new SKPoint(positionX, positionY);
}
}
public SKImage Texture{
get{ return texture;}
}
private float drag = 3;
private SKImage texture;
private float velX;
private float velY;
private RectangleCollider rectangleCollider;
private string tag;
private string name;
public string Name{get{return name;}}
bool loosesVelocity;
public GameObject(){
positionX = 0;
positionY = 0;
velX = 0;
velY = 0;
var iminfo = new SKImageInfo(25, 25);
var bmap = new SKBitmap(iminfo);
var canvas = new SKCanvas(bmap);
canvas.Clear(SKColors.Black);
canvas.Flush();
texture = SKImage.FromBitmap(bmap);
rectangleCollider = new RectangleCollider(Position, texture.Width, texture.Height);
tag = "";
this.name = "GameObject";
loosesVelocity = false;
}
public GameObject(float posx, float posy,SKImage texture, string name, bool loosesVelocity , string tag = ""){
positionX = posx;
positionY = posy;
this.loosesVelocity = loosesVelocity;
velX = 0;
velY = 0;
this.name = name;
this.tag = tag;
this.texture = texture;
rectangleCollider = new RectangleCollider(Position, texture.Width, texture.Height);
}
public bool Move(double deltaTime, List<GameObject> gameObjects){
if (velX < 1 && velX > -1) velX = 0;
if (velY < 1 && velY > -1) velY = 0;
positionX += (velX * ((float)deltaTime));
positionY -= (velY * ((float)deltaTime));
rectangleCollider.Origin = Position;
if (tag == "Player"){
if (checkCollision(gameObjects)) return true;
}
if (loosesVelocity){
velX -= velX*((float)deltaTime) * drag;
velY -= velY*((float)deltaTime) * drag;
}
if(tag == "Player"){
if(positionX < 0) positionX = Mygame.SizeX - positionX;
else if(positionX > Mygame.SizeX) positionX = positionX - Mygame.SizeX;
if(positionY < 0) positionY = Mygame.SizeY - positionY;
else if(positionY > Mygame.SizeY) positionY = Mygame.SizeY - Mygame.SizeY;
}
else if (tag == "Meteor"){
if(positionX < -texture.Width || positionX > Mygame.SizeX || positionY < - texture.Height || positionY > Mygame.SizeY){
return true;
}
}
return false;
}
public void AddVelocity(float x, float y){
velX += x;
velY += y;
}
public bool CompareTag(string t){
return t == tag;
}
public SKRect getColliderRect(){
return new SKRect(rectangleCollider.Origin.X, rectangleCollider.Origin.Y, rectangleCollider.Width + rectangleCollider.Origin.X, rectangleCollider.Height + rectangleCollider.Origin.Y);
}
private bool checkCollision(List<GameObject> gameObjects){
foreach (GameObject gameObject in gameObjects){
if (gameObject == this) continue;
if (rectangleCollider.checkCollision(gameObject.rectangleCollider)) return true;
}
return false;
}
}