mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
74d0a7101c
* removed redundant `UserPreferencesService` from `MeteringBloc` * wip * post-merge fixes * `MeasureEvent` tests * `MeasureEvent` tests revision * `MeasureEvent` tests added timeout * added stubs for other `MeteringBloc` events * rewritten `MeteringBloc` logic * wip * `IsoChangedEvent` tests * refined `IsoChangedEvent` tests * `NdChangedEvent` tests * `FilmChangedEvent` tests * `MeteringCommunicationBloc` tests * added test run to ci * overriden `==` for `MeasuredState` * `LuxMeteringEvent` tests * refined `LuxMeteringEvent` tests * rename * wip * wip * `InitializeEvent`/`DeinitializeEvent` tests * clamp minZoomLevel * fixed `MeteringCommunicationBloc` tests * wip * `ZoomChangedEvent` tests * `ExposureOffsetChangedEvent`/`ExposureOffsetResetEvent` tests * renamed test groups * added test coverage script * improved `CameraContainerBloc` test coverage * `EquipmentProfileChangedEvent` tests * verify response vibration * fixed running all tests * `MeteringCommunicationBloc` equality tests * `CameraContainerBloc` equality tests * removed generated code from coverage
53 lines
1.3 KiB
Dart
53 lines
1.3 KiB
Dart
sealed class MeteringCommunicationState {
|
|
const MeteringCommunicationState();
|
|
}
|
|
|
|
class InitState extends MeteringCommunicationState {
|
|
const InitState();
|
|
}
|
|
|
|
sealed class SourceState extends MeteringCommunicationState {
|
|
const SourceState();
|
|
}
|
|
|
|
sealed class ScreenState extends MeteringCommunicationState {
|
|
const ScreenState();
|
|
}
|
|
|
|
class MeasureState extends SourceState {
|
|
const MeasureState();
|
|
}
|
|
|
|
sealed class MeasuredState extends ScreenState {
|
|
final double? ev100;
|
|
|
|
const MeasuredState(this.ev100);
|
|
}
|
|
|
|
class MeteringInProgressState extends MeasuredState {
|
|
const MeteringInProgressState(super.ev100);
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
if (other.runtimeType != runtimeType) return false;
|
|
return other is MeteringInProgressState && other.ev100 == ev100;
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(ev100, runtimeType);
|
|
}
|
|
|
|
class MeteringEndedState extends MeasuredState {
|
|
const MeteringEndedState(super.ev100);
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
if (other.runtimeType != runtimeType) return false;
|
|
return other is MeteringEndedState && other.ev100 == ev100;
|
|
}
|
|
|
|
@override
|
|
int get hashCode => Object.hash(ev100, runtimeType);
|
|
}
|