-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParticle.cc
71 lines (58 loc) · 1.56 KB
/
Particle.cc
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 "Particle.hh"
#include "Screen.hh"
const int maxColumn = 79;
const int minColumn = 0;
const char tail_short = '-';
const char tail_long = '=';
void Particle::draw( Screen& screen ) const {
int ipos = static_cast<int>(this->pos);
screen[ipos] = this->sym;
// if(this->vel < 0.0) {
// screen[ipos+2] = tail_short;
// screen[ipos+1] = tail_long;
// } else {
// screen[ipos-2] = tail_short;
// screen[ipos-1] = tail_long;
// }
}
void swap(Particle& one, Particle& two) {
using std::swap;
swap(one.sym, two.sym);
swap(one.pos, two.pos);
swap(one.vel, two.vel);
}
std::ostream& operator<<(std::ostream& os, const Particle &p) {
return os << p.sym << ", Pos: " << p.pos << ", Vel: " << p.vel;
}
void RealParticle::move() {
this->pos += this->vel;
if (this->pos >= maxColumn) {
this->pos = maxColumn;
this->vel *= -1.0;
} else if (this->pos <= minColumn) {
this->pos = minColumn;
this->vel *= -1.0;
}
}
std::istream& operator>>(std::istream& os, RealParticle &p) {
return os >> p.pos >> p.vel >> p.sym;
}
RealParticle& RealParticle::operator=( RealParticle other ) {
swap(*this, other);
return (*this);
}
void MagicParticle::move() {
this->pos += this->vel;
if (this->pos >= maxColumn) {
this->pos = minColumn;
} else if (this->pos <= minColumn) {
this->pos = maxColumn;
}
}
std::istream& operator>>(std::istream& os, MagicParticle &p) {
return os >> p.pos >> p.vel >> p.sym;
}
MagicParticle& MagicParticle::operator=( MagicParticle other ) {
swap(*this, other);
return (*this);
}