2020-01-09 10:44:32 +01:00
|
|
|
/* Copyright (C) 2015-2020 Andreas Shimokawa, Carsten Pfeiffer, Pavel Elagin
|
2017-03-10 14:53:19 +01:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2015-08-03 23:09:49 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
2015-07-14 00:29:32 +02:00
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
2018-08-16 16:59:56 +02:00
|
|
|
import java.util.Date;
|
|
|
|
|
2015-11-09 23:16:53 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
|
|
|
|
2015-07-14 00:29:32 +02:00
|
|
|
public class ActivityAmount {
|
2015-11-23 23:04:46 +01:00
|
|
|
private final int activityKind;
|
2015-07-14 00:29:32 +02:00
|
|
|
private short percent;
|
|
|
|
private long totalSeconds;
|
2017-02-26 00:40:50 +01:00
|
|
|
private long totalSteps;
|
2018-08-16 16:59:56 +02:00
|
|
|
private Date startDate = null;
|
|
|
|
private Date endDate = null;
|
2015-07-14 00:29:32 +02:00
|
|
|
|
|
|
|
public ActivityAmount(int activityKind) {
|
|
|
|
this.activityKind = activityKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addSeconds(long seconds) {
|
|
|
|
totalSeconds += seconds;
|
|
|
|
}
|
|
|
|
|
2017-02-26 00:40:50 +01:00
|
|
|
public void addSteps(long steps) {
|
|
|
|
totalSteps += steps;
|
|
|
|
}
|
|
|
|
|
2015-07-14 00:29:32 +02:00
|
|
|
public long getTotalSeconds() {
|
|
|
|
return totalSeconds;
|
|
|
|
}
|
|
|
|
|
2017-02-26 00:40:50 +01:00
|
|
|
public long getTotalSteps() {
|
|
|
|
return totalSteps;
|
|
|
|
}
|
|
|
|
|
2015-07-14 00:29:32 +02:00
|
|
|
public int getActivityKind() {
|
|
|
|
return activityKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
public short getPercent() {
|
|
|
|
return percent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPercent(short percent) {
|
|
|
|
this.percent = percent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName(Context context) {
|
|
|
|
switch (activityKind) {
|
|
|
|
case ActivityKind.TYPE_DEEP_SLEEP:
|
2015-11-09 23:16:53 +01:00
|
|
|
return context.getString(R.string.abstract_chart_fragment_kind_deep_sleep);
|
2015-07-14 00:29:32 +02:00
|
|
|
case ActivityKind.TYPE_LIGHT_SLEEP:
|
2015-11-09 23:16:53 +01:00
|
|
|
return context.getString(R.string.abstract_chart_fragment_kind_light_sleep);
|
2015-07-14 00:29:32 +02:00
|
|
|
}
|
2015-11-09 23:16:53 +01:00
|
|
|
return context.getString(R.string.abstract_chart_fragment_kind_activity);
|
2015-07-14 00:29:32 +02:00
|
|
|
}
|
2018-08-16 16:59:56 +02:00
|
|
|
|
|
|
|
public Date getStartDate() {
|
|
|
|
return startDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setStartDate(int seconds) {
|
|
|
|
if(startDate == null)
|
|
|
|
this.startDate = new Date((long)seconds * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getEndDate() {
|
|
|
|
return endDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEndDate(int seconds) {
|
|
|
|
this.endDate = new Date((long)seconds * 1000);
|
|
|
|
}
|
2015-07-14 00:29:32 +02:00
|
|
|
}
|