mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
9ffb5112c1
* wip * rename * wip * rename * fixed camera screen layout * omit camera measure on startup * added calibration for light sensor * save evsource * Update widget_button_measure.dart * fixed iOS init * hide light sensor calibration on ios * cleanup
44 lines
1.3 KiB
Dart
44 lines
1.3 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:lightmeter/data/haptics_service.dart';
|
|
import 'package:lightmeter/data/light_sensor_service.dart';
|
|
import 'package:lightmeter/data/shared_prefs_service.dart';
|
|
|
|
class MeteringInteractor {
|
|
final UserPreferencesService _userPreferencesService;
|
|
final HapticsService _hapticsService;
|
|
final LightSensorService _lightSensorService;
|
|
|
|
const MeteringInteractor(
|
|
this._userPreferencesService,
|
|
this._hapticsService,
|
|
this._lightSensorService,
|
|
);
|
|
|
|
double get cameraEvCalibration => _userPreferencesService.cameraEvCalibration;
|
|
double get lightSensorEvCalibration => _userPreferencesService.lightSensorEvCalibration;
|
|
|
|
bool get isHapticsEnabled => _userPreferencesService.haptics;
|
|
|
|
/// Executes vibration if haptics are enabled in settings
|
|
void quickVibration() {
|
|
if (_userPreferencesService.haptics) _hapticsService.quickVibration();
|
|
}
|
|
|
|
/// Executes vibration if haptics are enabled in settings
|
|
void responseVibration() {
|
|
if (_userPreferencesService.haptics) _hapticsService.responseVibration();
|
|
}
|
|
|
|
void enableHaptics(bool enable) => _userPreferencesService.haptics = enable;
|
|
|
|
Future<bool> hasAmbientLightSensor() async {
|
|
if (Platform.isAndroid) {
|
|
return _lightSensorService.hasSensor();
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Stream<int> luxStream() => _lightSensorService.luxStream();
|
|
}
|