feat: implement base architecture and core repositories for weapon tracking and target analysis functionality
This commit is contained in:
57
lib/data/models/maintenance.dart
Normal file
57
lib/data/models/maintenance.dart
Normal file
@@ -0,0 +1,57 @@
|
||||
enum MaintenanceType {
|
||||
cleaning('Nettoyage'),
|
||||
repair('Réparation'),
|
||||
inspection('Inspection'),
|
||||
upgrade('Amélioration'),
|
||||
other('Autre');
|
||||
|
||||
final String displayName;
|
||||
const MaintenanceType(this.displayName);
|
||||
|
||||
static MaintenanceType fromString(String value) {
|
||||
return MaintenanceType.values.firstWhere(
|
||||
(type) => type.name == value,
|
||||
orElse: () => MaintenanceType.other,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class MaintenanceEntry {
|
||||
final String id;
|
||||
final String weaponId;
|
||||
final MaintenanceType type;
|
||||
final String description;
|
||||
final DateTime date;
|
||||
final int? roundsSinceLastMaintenance;
|
||||
|
||||
MaintenanceEntry({
|
||||
required this.id,
|
||||
required this.weaponId,
|
||||
required this.type,
|
||||
required this.description,
|
||||
required this.date,
|
||||
this.roundsSinceLastMaintenance,
|
||||
});
|
||||
|
||||
Map<String, dynamic> toMap() {
|
||||
return {
|
||||
'id': id,
|
||||
'weapon_id': weaponId,
|
||||
'type': type.name,
|
||||
'description': description,
|
||||
'date': date.toIso8601String(),
|
||||
'rounds_since_last': roundsSinceLastMaintenance,
|
||||
};
|
||||
}
|
||||
|
||||
factory MaintenanceEntry.fromMap(Map<String, dynamic> map) {
|
||||
return MaintenanceEntry(
|
||||
id: map['id'] as String,
|
||||
weaponId: map['weapon_id'] as String,
|
||||
type: MaintenanceType.fromString(map['type'] as String),
|
||||
description: map['description'] as String,
|
||||
date: DateTime.parse(map['date'] as String),
|
||||
roundsSinceLastMaintenance: map['rounds_since_last'] as int?,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,112 +1,83 @@
|
||||
import 'shot.dart';
|
||||
import 'target_type.dart';
|
||||
import 'target_analysis.dart';
|
||||
|
||||
class Session {
|
||||
final String id;
|
||||
final TargetType targetType;
|
||||
final String imagePath;
|
||||
final List<Shot> shots;
|
||||
final int totalScore;
|
||||
final double? groupingDiameter;
|
||||
final double? groupingCenterX;
|
||||
final double? groupingCenterY;
|
||||
final String weapon;
|
||||
final String? weaponId;
|
||||
final int maxShotsPerTarget;
|
||||
final List<TargetAnalysis> analyses;
|
||||
final DateTime createdAt;
|
||||
final String? notes;
|
||||
|
||||
// Target detection data
|
||||
final double? targetCenterX;
|
||||
final double? targetCenterY;
|
||||
final double? targetRadius;
|
||||
final int distance; // Shooting distance in meters
|
||||
|
||||
Session({
|
||||
required this.id,
|
||||
required this.targetType,
|
||||
required this.imagePath,
|
||||
required this.shots,
|
||||
required this.totalScore,
|
||||
this.groupingDiameter,
|
||||
this.groupingCenterX,
|
||||
this.groupingCenterY,
|
||||
required this.weapon,
|
||||
this.weaponId,
|
||||
required this.maxShotsPerTarget,
|
||||
required this.analyses,
|
||||
required this.createdAt,
|
||||
this.notes,
|
||||
this.targetCenterX,
|
||||
this.targetCenterY,
|
||||
this.targetRadius,
|
||||
this.distance = 25, // Default distance
|
||||
});
|
||||
|
||||
int get shotCount => shots.length;
|
||||
int get targetCount => analyses.length;
|
||||
|
||||
int get totalShots => analyses.fold(0, (sum, a) => sum + a.shotCount);
|
||||
|
||||
int get totalScore => analyses.fold(0, (sum, a) => sum + a.totalScore);
|
||||
|
||||
double get averageScore => shots.isEmpty ? 0.0 : totalScore / shots.length;
|
||||
double get averageScore => analyses.isEmpty ? 0.0 : totalScore / analyses.length;
|
||||
|
||||
Session copyWith({
|
||||
String? id,
|
||||
TargetType? targetType,
|
||||
String? imagePath,
|
||||
List<Shot>? shots,
|
||||
int? totalScore,
|
||||
double? groupingDiameter,
|
||||
double? groupingCenterX,
|
||||
double? groupingCenterY,
|
||||
String? weapon,
|
||||
String? weaponId,
|
||||
int? maxShotsPerTarget,
|
||||
List<TargetAnalysis>? analyses,
|
||||
DateTime? createdAt,
|
||||
String? notes,
|
||||
double? targetCenterX,
|
||||
double? targetCenterY,
|
||||
double? targetRadius,
|
||||
int? distance,
|
||||
}) {
|
||||
return Session(
|
||||
id: id ?? this.id,
|
||||
targetType: targetType ?? this.targetType,
|
||||
imagePath: imagePath ?? this.imagePath,
|
||||
shots: shots ?? this.shots,
|
||||
totalScore: totalScore ?? this.totalScore,
|
||||
groupingDiameter: groupingDiameter ?? this.groupingDiameter,
|
||||
groupingCenterX: groupingCenterX ?? this.groupingCenterX,
|
||||
groupingCenterY: groupingCenterY ?? this.groupingCenterY,
|
||||
weapon: weapon ?? this.weapon,
|
||||
weaponId: weaponId ?? this.weaponId,
|
||||
maxShotsPerTarget: maxShotsPerTarget ?? this.maxShotsPerTarget,
|
||||
analyses: analyses ?? this.analyses,
|
||||
createdAt: createdAt ?? this.createdAt,
|
||||
notes: notes ?? this.notes,
|
||||
targetCenterX: targetCenterX ?? this.targetCenterX,
|
||||
targetCenterY: targetCenterY ?? this.targetCenterY,
|
||||
targetRadius: targetRadius ?? this.targetRadius,
|
||||
distance: distance ?? this.distance,
|
||||
);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toMap() {
|
||||
return {
|
||||
'id': id,
|
||||
'target_type': targetType.name,
|
||||
'image_path': imagePath,
|
||||
'total_score': totalScore,
|
||||
'grouping_diameter': groupingDiameter,
|
||||
'grouping_center_x': groupingCenterX,
|
||||
'grouping_center_y': groupingCenterY,
|
||||
'weapon': weapon,
|
||||
'weapon_id': weaponId,
|
||||
'max_shots_per_target': maxShotsPerTarget,
|
||||
'created_at': createdAt.toIso8601String(),
|
||||
'notes': notes,
|
||||
'target_center_x': targetCenterX,
|
||||
'target_center_y': targetCenterY,
|
||||
'target_radius': targetRadius,
|
||||
'distance': distance,
|
||||
};
|
||||
}
|
||||
|
||||
factory Session.fromMap(Map<String, dynamic> map, List<Shot> shots) {
|
||||
factory Session.fromMap(Map<String, dynamic> map, List<TargetAnalysis> analyses) {
|
||||
return Session(
|
||||
id: map['id'] as String,
|
||||
targetType: TargetType.fromString(map['target_type'] as String),
|
||||
imagePath: map['image_path'] as String,
|
||||
shots: shots,
|
||||
totalScore: map['total_score'] as int,
|
||||
groupingDiameter: map['grouping_diameter'] as double?,
|
||||
groupingCenterX: map['grouping_center_x'] as double?,
|
||||
groupingCenterY: map['grouping_center_y'] as double?,
|
||||
weapon: map['weapon'] as String? ?? 'Inconnue',
|
||||
weaponId: map['weapon_id'] as String?,
|
||||
maxShotsPerTarget: map['max_shots_per_target'] as int? ?? 5,
|
||||
analyses: analyses,
|
||||
createdAt: DateTime.parse(map['created_at'] as String),
|
||||
notes: map['notes'] as String?,
|
||||
targetCenterX: map['target_center_x'] as double?,
|
||||
targetCenterY: map['target_center_y'] as double?,
|
||||
targetRadius: map['target_radius'] as double?,
|
||||
distance: map['distance'] as int? ?? 25,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'Session(id: $id, targetType: $targetType, shots: ${shots.length}, totalScore: $totalScore, createdAt: $createdAt)';
|
||||
return 'Session(id: $id, weapon: $weapon, distance: ${distance}m, targets: ${analyses.length}, createdAt: $createdAt)';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,14 +3,14 @@ class Shot {
|
||||
final double x; // Relative position (0.0 - 1.0)
|
||||
final double y; // Relative position (0.0 - 1.0)
|
||||
final int score;
|
||||
final String sessionId;
|
||||
final String analysisId;
|
||||
|
||||
Shot({
|
||||
required this.id,
|
||||
required this.x,
|
||||
required this.y,
|
||||
required this.score,
|
||||
required this.sessionId,
|
||||
required this.analysisId,
|
||||
});
|
||||
|
||||
Shot copyWith({
|
||||
@@ -18,14 +18,14 @@ class Shot {
|
||||
double? x,
|
||||
double? y,
|
||||
int? score,
|
||||
String? sessionId,
|
||||
String? analysisId,
|
||||
}) {
|
||||
return Shot(
|
||||
id: id ?? this.id,
|
||||
x: x ?? this.x,
|
||||
y: y ?? this.y,
|
||||
score: score ?? this.score,
|
||||
sessionId: sessionId ?? this.sessionId,
|
||||
analysisId: analysisId ?? this.analysisId,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ class Shot {
|
||||
'x': x,
|
||||
'y': y,
|
||||
'score': score,
|
||||
'session_id': sessionId,
|
||||
'analysis_id': analysisId,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -45,13 +45,13 @@ class Shot {
|
||||
x: (map['x'] as num).toDouble(),
|
||||
y: (map['y'] as num).toDouble(),
|
||||
score: map['score'] as int,
|
||||
sessionId: map['session_id'] as String,
|
||||
analysisId: map['analysis_id'] as String? ?? map['session_id'] as String? ?? '',
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'Shot(id: $id, x: $x, y: $y, score: $score, sessionId: $sessionId)';
|
||||
return 'Shot(id: $id, x: $x, y: $y, score: $score, analysisId: $analysisId)';
|
||||
}
|
||||
|
||||
@override
|
||||
@@ -62,11 +62,11 @@ class Shot {
|
||||
other.x == x &&
|
||||
other.y == y &&
|
||||
other.score == score &&
|
||||
other.sessionId == sessionId;
|
||||
other.analysisId == analysisId;
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode {
|
||||
return id.hashCode ^ x.hashCode ^ y.hashCode ^ score.hashCode ^ sessionId.hashCode;
|
||||
return id.hashCode ^ x.hashCode ^ y.hashCode ^ score.hashCode ^ analysisId.hashCode;
|
||||
}
|
||||
}
|
||||
|
||||
113
lib/data/models/target_analysis.dart
Normal file
113
lib/data/models/target_analysis.dart
Normal file
@@ -0,0 +1,113 @@
|
||||
import 'shot.dart';
|
||||
import 'target_type.dart';
|
||||
|
||||
class TargetAnalysis {
|
||||
final String id;
|
||||
final String sessionId;
|
||||
final TargetType targetType;
|
||||
final String imagePath;
|
||||
final List<Shot> shots;
|
||||
final int totalScore;
|
||||
final double? groupingDiameter;
|
||||
final double? groupingCenterX;
|
||||
final double? groupingCenterY;
|
||||
final DateTime createdAt;
|
||||
final String? notes;
|
||||
|
||||
// Target detection data
|
||||
final double? targetCenterX;
|
||||
final double? targetCenterY;
|
||||
final double? targetRadius;
|
||||
|
||||
TargetAnalysis({
|
||||
required this.id,
|
||||
required this.sessionId,
|
||||
required this.targetType,
|
||||
required this.imagePath,
|
||||
required this.shots,
|
||||
required this.totalScore,
|
||||
this.groupingDiameter,
|
||||
this.groupingCenterX,
|
||||
this.groupingCenterY,
|
||||
required this.createdAt,
|
||||
this.notes,
|
||||
this.targetCenterX,
|
||||
this.targetCenterY,
|
||||
this.targetRadius,
|
||||
});
|
||||
|
||||
int get shotCount => shots.length;
|
||||
|
||||
double get averageScore => shots.isEmpty ? 0.0 : totalScore / shots.length;
|
||||
|
||||
TargetAnalysis copyWith({
|
||||
String? id,
|
||||
String? sessionId,
|
||||
TargetType? targetType,
|
||||
String? imagePath,
|
||||
List<Shot>? shots,
|
||||
int? totalScore,
|
||||
double? groupingDiameter,
|
||||
double? groupingCenterX,
|
||||
double? groupingCenterY,
|
||||
DateTime? createdAt,
|
||||
String? notes,
|
||||
double? targetCenterX,
|
||||
double? targetCenterY,
|
||||
double? targetRadius,
|
||||
}) {
|
||||
return TargetAnalysis(
|
||||
id: id ?? this.id,
|
||||
sessionId: sessionId ?? this.sessionId,
|
||||
targetType: targetType ?? this.targetType,
|
||||
imagePath: imagePath ?? this.imagePath,
|
||||
shots: shots ?? this.shots,
|
||||
totalScore: totalScore ?? this.totalScore,
|
||||
groupingDiameter: groupingDiameter ?? this.groupingDiameter,
|
||||
groupingCenterX: groupingCenterX ?? this.groupingCenterX,
|
||||
groupingCenterY: groupingCenterY ?? this.groupingCenterY,
|
||||
createdAt: createdAt ?? this.createdAt,
|
||||
notes: notes ?? this.notes,
|
||||
targetCenterX: targetCenterX ?? this.targetCenterX,
|
||||
targetCenterY: targetCenterY ?? this.targetCenterY,
|
||||
targetRadius: targetRadius ?? this.targetRadius,
|
||||
);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toMap() {
|
||||
return {
|
||||
'id': id,
|
||||
'session_id': sessionId,
|
||||
'target_type': targetType.name,
|
||||
'image_path': imagePath,
|
||||
'total_score': totalScore,
|
||||
'grouping_diameter': groupingDiameter,
|
||||
'grouping_center_x': groupingCenterX,
|
||||
'grouping_center_y': groupingCenterY,
|
||||
'created_at': createdAt.toIso8601String(),
|
||||
'notes': notes,
|
||||
'target_center_x': targetCenterX,
|
||||
'target_center_y': targetCenterY,
|
||||
'target_radius': targetRadius,
|
||||
};
|
||||
}
|
||||
|
||||
factory TargetAnalysis.fromMap(Map<String, dynamic> map, List<Shot> shots) {
|
||||
return TargetAnalysis(
|
||||
id: map['id'] as String,
|
||||
sessionId: map['session_id'] as String,
|
||||
targetType: TargetType.fromString(map['target_type'] as String),
|
||||
imagePath: map['image_path'] as String,
|
||||
shots: shots,
|
||||
totalScore: map['total_score'] as int,
|
||||
groupingDiameter: map['grouping_diameter'] as double?,
|
||||
groupingCenterX: map['grouping_center_x'] as double?,
|
||||
groupingCenterY: map['grouping_center_y'] as double?,
|
||||
createdAt: DateTime.parse(map['created_at'] as String),
|
||||
notes: map['notes'] as String?,
|
||||
targetCenterX: map['target_center_x'] as double?,
|
||||
targetCenterY: map['target_center_y'] as double?,
|
||||
targetRadius: map['target_radius'] as double?,
|
||||
);
|
||||
}
|
||||
}
|
||||
114
lib/data/models/weapon.dart
Normal file
114
lib/data/models/weapon.dart
Normal file
@@ -0,0 +1,114 @@
|
||||
enum WeaponType {
|
||||
handgun('Arme de Poing'),
|
||||
rifle('Arme d\'Épaule'),
|
||||
shotgun('Fusil à Pompe'),
|
||||
airgun('Airsoft / Airgun');
|
||||
|
||||
final String displayName;
|
||||
const WeaponType(this.displayName);
|
||||
|
||||
static WeaponType fromString(String value) {
|
||||
return WeaponType.values.firstWhere(
|
||||
(type) => type.name == value,
|
||||
orElse: () => WeaponType.handgun,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class Weapon {
|
||||
final String id;
|
||||
final String name;
|
||||
final WeaponType type;
|
||||
final String caliber;
|
||||
final int magazineCount;
|
||||
final int magazineCapacity;
|
||||
final String? notes;
|
||||
final DateTime createdAt;
|
||||
|
||||
// New options
|
||||
final String? optic;
|
||||
final String? silencer;
|
||||
final String? trigger;
|
||||
final String? customName;
|
||||
|
||||
String get displayName => (customName != null && customName!.isNotEmpty) ? customName! : name;
|
||||
|
||||
Weapon({
|
||||
required this.id,
|
||||
required this.name,
|
||||
required this.type,
|
||||
required this.caliber,
|
||||
required this.magazineCount,
|
||||
required this.magazineCapacity,
|
||||
this.notes,
|
||||
required this.createdAt,
|
||||
this.optic,
|
||||
this.silencer,
|
||||
this.trigger,
|
||||
this.customName,
|
||||
});
|
||||
|
||||
Weapon copyWith({
|
||||
String? id,
|
||||
String? name,
|
||||
WeaponType? type,
|
||||
String? caliber,
|
||||
int? magazineCount,
|
||||
int? magazineCapacity,
|
||||
String? notes,
|
||||
DateTime? createdAt,
|
||||
String? optic,
|
||||
String? silencer,
|
||||
String? trigger,
|
||||
String? customName,
|
||||
}) {
|
||||
return Weapon(
|
||||
id: id ?? this.id,
|
||||
name: name ?? this.name,
|
||||
type: type ?? this.type,
|
||||
caliber: caliber ?? this.caliber,
|
||||
magazineCount: magazineCount ?? this.magazineCount,
|
||||
magazineCapacity: magazineCapacity ?? this.magazineCapacity,
|
||||
notes: notes ?? this.notes,
|
||||
createdAt: createdAt ?? this.createdAt,
|
||||
optic: optic ?? this.optic,
|
||||
silencer: silencer ?? this.silencer,
|
||||
trigger: trigger ?? this.trigger,
|
||||
customName: customName ?? this.customName,
|
||||
);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toMap() {
|
||||
return {
|
||||
'id': id,
|
||||
'name': name,
|
||||
'type': type.name,
|
||||
'caliber': caliber,
|
||||
'magazine_count': magazineCount,
|
||||
'magazine_capacity': magazineCapacity,
|
||||
'notes': notes,
|
||||
'created_at': createdAt.toIso8601String(),
|
||||
'optic': optic,
|
||||
'silencer': silencer,
|
||||
'trigger': trigger,
|
||||
'custom_name': customName,
|
||||
};
|
||||
}
|
||||
|
||||
factory Weapon.fromMap(Map<String, dynamic> map) {
|
||||
return Weapon(
|
||||
id: map['id'] as String,
|
||||
name: map['name'] as String,
|
||||
type: WeaponType.fromString(map['type'] as String),
|
||||
caliber: map['caliber'] as String,
|
||||
magazineCount: map['magazine_count'] as int,
|
||||
magazineCapacity: map['magazine_capacity'] as int,
|
||||
notes: map['notes'] as String?,
|
||||
createdAt: DateTime.parse(map['created_at'] as String),
|
||||
optic: map['optic'] as String?,
|
||||
silencer: map['silencer'] as String?,
|
||||
trigger: map['trigger'] as String?,
|
||||
customName: map['custom_name'] as String?,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user