BangleApps/apps/buffgym/buffgym-set.js

28 lines
474 B
JavaScript
Raw Normal View History

2020-04-20 20:39:30 +00:00
exports = class Set {
constructor(maxReps) {
2020-04-21 18:38:02 +00:00
this.minReps = 0;
this.maxReps = maxReps;
this.reps = 0;
this.completed = false;
}
isCompleted() {
2020-04-21 18:38:02 +00:00
return !!this.completed;
}
setCompleted() {
2020-04-21 18:38:02 +00:00
this.completed = true;
}
incReps() {
2020-04-21 18:38:02 +00:00
if (this.completed) return;
if (this.reps >= this.maxReps) return;
this.reps++;
}
decReps() {
2020-04-21 18:38:02 +00:00
if (this.completed) return;
if (this.reps <= this.minReps) return;
this.reps--;
}
}