You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
4.0 KiB
Dart
130 lines
4.0 KiB
Dart
import 'package:fluffychat/pangea/enum/construct_type_enum.dart';
|
|
import 'package:fluffychat/pangea/enum/construct_use_type_enum.dart';
|
|
import 'package:fluffychat/pangea/models/analytics/constructs_model.dart';
|
|
|
|
/// A wrapper around a list of [OneConstructUse]s, used to simplify
|
|
/// the process of filtering / sorting / displaying the events.
|
|
/// Takes a construct type and a list of events
|
|
class ConstructListModel {
|
|
final ConstructTypeEnum type;
|
|
final List<OneConstructUse> _uses;
|
|
|
|
ConstructListModel({
|
|
required this.type,
|
|
uses,
|
|
}) : _uses = uses ?? [];
|
|
|
|
List<ConstructUses>? _constructs;
|
|
List<ConstructUseTypeUses>? _typedConstructs;
|
|
|
|
List<OneConstructUse> get uses =>
|
|
_uses.where((use) => use.constructType == type).toList();
|
|
|
|
/// All unique lemmas used in the construct events
|
|
List<String> get lemmas => constructs.map((e) => e.lemma).toSet().toList();
|
|
|
|
/// A list of ConstructUses, each of which contains a lemma and
|
|
/// a list of uses, sorted by the number of uses
|
|
List<ConstructUses> get constructs {
|
|
// the list of uses doesn't change so we don't have to re-calculate this
|
|
if (_constructs != null) return _constructs!;
|
|
final Map<String, List<OneConstructUse>> lemmaToUses = {};
|
|
for (final use in uses) {
|
|
if (use.lemma == null) continue;
|
|
lemmaToUses[use.lemma!] ??= [];
|
|
lemmaToUses[use.lemma!]!.add(use);
|
|
}
|
|
|
|
final constructUses = lemmaToUses.entries
|
|
.map(
|
|
(entry) => ConstructUses(
|
|
lemma: entry.key,
|
|
uses: entry.value,
|
|
constructType: type,
|
|
),
|
|
)
|
|
.toList();
|
|
|
|
constructUses.sort((a, b) {
|
|
final comp = b.uses.length.compareTo(a.uses.length);
|
|
if (comp != 0) return comp;
|
|
return a.lemma.compareTo(b.lemma);
|
|
});
|
|
|
|
_constructs = constructUses;
|
|
return constructUses;
|
|
}
|
|
|
|
/// A list of ConstructUseTypeUses, each of which
|
|
/// contains a lemma, a use type, and a list of uses
|
|
List<ConstructUseTypeUses> get typedConstructs {
|
|
if (_typedConstructs != null) return _typedConstructs!;
|
|
final List<ConstructUseTypeUses> typedConstructs = [];
|
|
for (final construct in constructs) {
|
|
final typeToUses = <ConstructUseTypeEnum, List<OneConstructUse>>{};
|
|
for (final use in construct.uses) {
|
|
typeToUses[use.useType] ??= [];
|
|
typeToUses[use.useType]!.add(use);
|
|
}
|
|
for (final typeEntry in typeToUses.entries) {
|
|
typedConstructs.add(
|
|
ConstructUseTypeUses(
|
|
lemma: construct.lemma,
|
|
constructType: type,
|
|
useType: typeEntry.key,
|
|
uses: typeEntry.value,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
return typedConstructs;
|
|
}
|
|
|
|
/// The total number of points for all uses of this construct type
|
|
int get points {
|
|
double totalPoints = 0;
|
|
// Minimize the amount of points given for repeated uses of the same lemma.
|
|
// i.e., if a lemma is used 4 times without assistance, the point value for
|
|
// a use without assistance is 3. So the points would be
|
|
// 3/1 + 3/2 + 3/3 + 3/4 = 3 + 1.5 + 1 + 0.75 = 5.25 (instead of 12)
|
|
for (final typedConstruct in typedConstructs) {
|
|
final pointValue = typedConstruct.useType.pointValue;
|
|
double calc = 0.0;
|
|
for (int k = 1; k <= typedConstruct.uses.length; k++) {
|
|
calc += pointValue / k;
|
|
}
|
|
totalPoints += calc;
|
|
}
|
|
return totalPoints.round();
|
|
}
|
|
}
|
|
|
|
/// One lemma and a list of construct uses for that lemma
|
|
class ConstructUses {
|
|
final List<OneConstructUse> uses;
|
|
final ConstructTypeEnum constructType;
|
|
final String lemma;
|
|
|
|
ConstructUses({
|
|
required this.uses,
|
|
required this.constructType,
|
|
required this.lemma,
|
|
});
|
|
}
|
|
|
|
/// One lemma, a use type, and a list of uses
|
|
/// for that lemma and use type
|
|
class ConstructUseTypeUses {
|
|
final ConstructUseTypeEnum useType;
|
|
final ConstructTypeEnum constructType;
|
|
final String lemma;
|
|
final List<OneConstructUse> uses;
|
|
|
|
ConstructUseTypeUses({
|
|
required this.useType,
|
|
required this.constructType,
|
|
required this.lemma,
|
|
required this.uses,
|
|
});
|
|
}
|