-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathantena.cpp
71 lines (54 loc) · 1.31 KB
/
antena.cpp
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
#include "antena.h"
antena::antena()
{
this->pozycja.x = rand()%100;
this->pozycja.y = rand()%80;
this->r = 15;
this->zysk=0;
this->liczbaAbonentow=0;
}
antena::antena(cursor pozycja, int r) {
this->pozycja.x = pozycja.x;
this->pozycja.y = pozycja.y;
this->r = r;
this->zysk=0;
this->liczbaAbonentow=0;
}
void antena::setPozycja(cursor pozycja) {
this->pozycja = pozycja;
}
void antena::setPozycja(int x, int y) {
this->pozycja.x = x;
this->pozycja.y = y;
}
cursor antena::getPozycja() {
return this->pozycja;
}
void antena::setPromien(int r)
{
this->r = r;
}
int antena::getPromien()
{
return this->r;
}
void antena::przeliczZysk(int *matryca, int *abonenci)
{
cursor punkt = this->pozycja;
cursor srodek = this->pozycja;
for(int kat=0; kat < 360; kat++) {
for(int promien=0; promien < this->r; promien++) {
punkt.x = (int) (srodek.x + promien * cos(2 * PI * kat / 360));
punkt.y = (int) (srodek.y + promien * sin(2 * PI * kat / 360));
abonenci[100*punkt.y+punkt.x] = matryca[100*punkt.y+punkt.x];
}
}
}
int antena::getZysk()
{
return this->zysk;
}
int antena::getLiczbaAbonentow()
{
return this->liczbaAbonentow;
}