103 lines
3.0 KiB
Dart
103 lines
3.0 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:maibu_satabot_v2/features/remote_control/data/models/running_status_model.dart';
|
|
import 'package:maibu_satabot_v2/features/remote_control/presentation/bloc/remote_control_state.dart';
|
|
|
|
import '../../domain/entities/machine_control_status_entity.dart';
|
|
import '../../domain/repositories/remote_control_repository.dart';
|
|
|
|
class RemoteControlCubit extends Cubit<RemoteControlState> {
|
|
final RemoteControlRepository _repository;
|
|
Timer? _timer;
|
|
|
|
RemoteControlCubit(this._repository)
|
|
: super(
|
|
RemoteControlState(
|
|
controlEntity: MachineControlStatusEntity(),
|
|
runningStatusModel: RunningStatusModel(),
|
|
),
|
|
) {
|
|
_initPacketListener();
|
|
}
|
|
|
|
// 1. 初始化回包监听 (如 0x12 权限)
|
|
void _initPacketListener() {
|
|
_repository.responseStream.listen((packet) {
|
|
if (packet.command == 0x12) {
|
|
// 根据负载判断是否有权限,更新状态
|
|
emit(state.copyWith(hasPermission: true));
|
|
}
|
|
});
|
|
}
|
|
|
|
// 2. 开启 100ms 控制循环 (在进入遥控页面或点击“开始”时调用)
|
|
void startControlLoop() {
|
|
_timer?.cancel();
|
|
_timer = Timer.periodic(const Duration(milliseconds: 100), (timer) {
|
|
// 核心调用:直接把 state 里的实体丢给 repository
|
|
_repository.sendControlMachineCmd(state.controlEntity);
|
|
});
|
|
emit(state.copyWith(status: RemoteControlStatus.controlling));
|
|
}
|
|
|
|
// 3. 更新摇杆数据
|
|
void updateJoystick(double x, double y) {
|
|
final updatedEntity = state.controlEntity.copyWith(
|
|
x: x.toInt(),
|
|
y: y.toInt(),
|
|
);
|
|
emit(state.copyWith(controlEntity: updatedEntity));
|
|
}
|
|
|
|
// 4. 更新功能开关 (比如割刀速度、灯光、点火等)
|
|
void updateFunction({int? mower, int? lift, int? ignition, bool? emergency}) {
|
|
final updatedEntity = state.controlEntity.copyWith(
|
|
mower: mower,
|
|
lift: lift,
|
|
ignition: ignition,
|
|
emergency: emergency,
|
|
);
|
|
emit(state.copyWith(controlEntity: updatedEntity));
|
|
}
|
|
|
|
void updateOriginY(int y) {}
|
|
|
|
// 5. 停止控制循环
|
|
void stopControlLoop() {
|
|
_timer?.cancel();
|
|
_timer = null;
|
|
emit(state.copyWith(status: RemoteControlStatus.initial));
|
|
}
|
|
|
|
void toggleLock() {}
|
|
|
|
void togglePermissionDialog(bool show) {
|
|
emit(state.copyWith(showPermissionRequestDialog: show));
|
|
}
|
|
|
|
void requestControlPermission() {
|
|
// 1. 关闭弹窗
|
|
emit(state.copyWith(showPermissionRequestDialog: false));
|
|
|
|
// 2. 这里执行你发送 0x12 指令的逻辑
|
|
// _sendProtocolData(0x12, ...);
|
|
}
|
|
|
|
void toggleLeftPip() => emit(state.copyWith(showLeftPip: !state.showLeftPip));
|
|
void toggleRightPip() =>
|
|
emit(state.copyWith(showRightPip: !state.showRightPip));
|
|
|
|
@override
|
|
Future<void> close() {
|
|
_timer?.cancel(); // 退出页面时务必销毁定时器
|
|
return super.close();
|
|
}
|
|
|
|
void updateChassisLift(int i) {}
|
|
|
|
void updateEmergency(bool bool) {}
|
|
|
|
void respondPermission(bool bool) {}
|
|
}
|