com.gluonhq.attach.accelerometer.impl.MobileAccelerometerService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of accelerometer Show documentation
Show all versions of accelerometer Show documentation
API for accessing accelerometer features
The newest version!
/*
* Copyright (c) 2020, Gluon
*
* This program 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.
* This program 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 .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL GLUON BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.gluonhq.attach.accelerometer.impl;
import com.gluonhq.attach.accelerometer.Acceleration;
import com.gluonhq.attach.accelerometer.AccelerometerService;
import com.gluonhq.attach.accelerometer.Parameters;
import com.gluonhq.attach.lifecycle.LifecycleEvent;
import com.gluonhq.attach.lifecycle.LifecycleService;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.property.ReadOnlyObjectWrapper;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
/**
* @author Almas Baimagambetov ([email protected])
*/
public abstract class MobileAccelerometerService implements AccelerometerService {
protected static final ReadOnlyObjectWrapper reading = new ReadOnlyObjectWrapper<>();
private static boolean isRunning = false;
private Parameters parameters = DEFAULT_PARAMETERS;
public MobileAccelerometerService() {
LifecycleService.create().ifPresent(l -> {
l.addListener(LifecycleEvent.PAUSE, () -> stopAccelerometerImpl());
l.addListener(LifecycleEvent.RESUME, () -> {
// isRunning keeps track of the service start-stop lifecycle
// hence, if the user did not call stop, then isRunning = true
// therefore, on resume, we should "restart" the service, which we stopped on pause
if (isRunning) {
start(parameters);
}
});
});
}
@Override
public Acceleration getCurrentAcceleration() {
return reading.get();
}
@Override
public ReadOnlyObjectProperty accelerationProperty() {
return reading.getReadOnlyProperty();
}
@Override
public void start() {
start(DEFAULT_PARAMETERS);
}
@Override
public void start(Parameters parameters) {
if (isRunning) {
stopAccelerometerImpl();
}
this.parameters = parameters;
startAccelerometerImpl(parameters.isFilteringGravity(), parameters.getFrequency());
isRunning = true;
}
@Override
public void stop() {
stopAccelerometerImpl();
isRunning = false;
}
protected static LocalDateTime toLocalDateTime(double t) {
return LocalDateTime.ofInstant(Instant.ofEpochMilli((long) t), ZoneId.systemDefault());
}
protected abstract void startAccelerometerImpl(boolean isFilterGravity, double frequency);
protected abstract void stopAccelerometerImpl();
}