mirror of
https://github.com/russok/FitoTrack.git
synced 2025-10-29 00:32:11 -07:00
- better scalability - setting for contents - inform about duration - inform about GPS status
118 lines
3.8 KiB
Java
118 lines
3.8 KiB
Java
/*
|
|
* Copyright (c) 2020 Jannis Scheibe <jannis@tadris.de>
|
|
*
|
|
* This file is part of FitoTrack
|
|
*
|
|
* FitoTrack is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* FitoTrack 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package de.tadris.fitness.announcement;
|
|
|
|
import android.content.Context;
|
|
import android.speech.tts.TextToSpeech;
|
|
import android.util.Log;
|
|
|
|
import java.util.Locale;
|
|
|
|
import de.tadris.fitness.Instance;
|
|
import de.tadris.fitness.data.UserPreferences;
|
|
import de.tadris.fitness.recording.WorkoutRecorder;
|
|
import de.tadris.fitness.util.unit.UnitUtils;
|
|
|
|
public class VoiceAnnouncements {
|
|
|
|
private TextToSpeech textToSpeech;
|
|
private boolean ttsAvailable;
|
|
private VoiceAnnouncementCallback callback;
|
|
private final AnnouncementManager manager;
|
|
|
|
private long lastSpokenUpdateTime = 0;
|
|
private int lastSpokenUpdateDistance = 0;
|
|
|
|
private final long intervalTime;
|
|
private final int intervalInMeters;
|
|
|
|
public VoiceAnnouncements(Context context, VoiceAnnouncementCallback callback) {
|
|
this.callback = callback;
|
|
UserPreferences prefs = Instance.getInstance(context).userPreferences;
|
|
textToSpeech = new TextToSpeech(context, this::ttsReady);
|
|
|
|
this.intervalTime = 60 * 1000 * prefs.getSpokenUpdateTimePeriod();
|
|
this.intervalInMeters = (int) (1000.0 / UnitUtils.CHOSEN_SYSTEM.getDistanceFromKilometers(1) * prefs.getSpokenUpdateDistancePeriod());
|
|
|
|
this.manager = new AnnouncementManager(context);
|
|
}
|
|
|
|
private void ttsReady(int status) {
|
|
ttsAvailable = status == TextToSpeech.SUCCESS && textToSpeech.setLanguage(Locale.getDefault()) >= 0;
|
|
callback.onVoiceAnnouncementIsReady(ttsAvailable);
|
|
}
|
|
|
|
public void check(WorkoutRecorder recorder) {
|
|
if (!ttsAvailable) {
|
|
return;
|
|
} // Cannot speak
|
|
|
|
boolean shouldSpeak = false;
|
|
|
|
if (intervalTime != 0 && recorder.getDuration() - lastSpokenUpdateTime > intervalTime) {
|
|
shouldSpeak = true;
|
|
}
|
|
if (intervalInMeters != 0 && recorder.getDistanceInMeters() - lastSpokenUpdateDistance > intervalInMeters) {
|
|
shouldSpeak = true;
|
|
}
|
|
|
|
if (shouldSpeak) {
|
|
speak(recorder);
|
|
}
|
|
}
|
|
|
|
private void speak(WorkoutRecorder recorder) {
|
|
for (Announcement announcement : manager.getAnnouncements()) {
|
|
speak(recorder, announcement);
|
|
}
|
|
|
|
lastSpokenUpdateTime = recorder.getDuration();
|
|
lastSpokenUpdateDistance = recorder.getDistanceInMeters();
|
|
}
|
|
|
|
private void speak(WorkoutRecorder recorder, Announcement announcement) {
|
|
if (!announcement.isEnabled()) {
|
|
return;
|
|
}
|
|
String text = announcement.getSpoken(recorder);
|
|
if (!text.equals("")) {
|
|
speak(text);
|
|
}
|
|
}
|
|
|
|
private int speakId = 1;
|
|
|
|
public void speak(String text) {
|
|
if (!ttsAvailable) {
|
|
return;
|
|
} // Cannot speak
|
|
Log.d("Recorder", "TTS speaks: " + text);
|
|
textToSpeech.speak(text, TextToSpeech.QUEUE_ADD, null, "announcement" + (++speakId));
|
|
}
|
|
|
|
public void destroy() {
|
|
textToSpeech.shutdown();
|
|
}
|
|
|
|
public interface VoiceAnnouncementCallback {
|
|
void onVoiceAnnouncementIsReady(boolean available);
|
|
}
|
|
}
|