2023-10-18 21:50:41 +00:00
|
|
|
// ignore_for_file: use_build_context_synchronously
|
|
|
|
|
2023-10-09 18:48:50 +00:00
|
|
|
import 'dart:io';
|
2023-10-18 21:50:41 +00:00
|
|
|
import 'package:tetra_stats/services/crud_exceptions.dart';
|
2023-10-26 22:38:03 +00:00
|
|
|
import 'package:tetra_stats/widgets/vs_graphs.dart';
|
2023-10-18 21:50:41 +00:00
|
|
|
import 'main_view.dart' show teto;
|
2023-10-10 20:20:27 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2023-06-21 19:17:39 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:intl/intl.dart';
|
|
|
|
import 'package:tetra_stats/data_objects/tetrio.dart';
|
2023-07-14 20:21:49 +00:00
|
|
|
import 'package:tetra_stats/gen/strings.g.dart';
|
2023-10-18 21:50:41 +00:00
|
|
|
import 'package:tetra_stats/utils/open_in_browser.dart';
|
2023-10-09 18:48:50 +00:00
|
|
|
import 'package:window_manager/window_manager.dart';
|
2023-10-18 21:50:41 +00:00
|
|
|
// ignore: avoid_web_libraries_in_flutter
|
|
|
|
// import 'dart:html' show AnchorElement, document;
|
2023-06-21 19:17:39 +00:00
|
|
|
|
|
|
|
|
2023-07-14 20:21:49 +00:00
|
|
|
final DateFormat dateFormat = DateFormat.yMMMd(LocaleSettings.currentLocale.languageCode).add_Hms();
|
2023-09-05 20:32:34 +00:00
|
|
|
int roundSelector = -1; // -1 = match averages, otherwise round number-1
|
|
|
|
List<DropdownMenuItem> rounds = []; // index zero will be match stats
|
2023-10-09 18:48:50 +00:00
|
|
|
late String oldWindowTitle;
|
2023-06-21 19:17:39 +00:00
|
|
|
|
|
|
|
class TlMatchResultView extends StatefulWidget {
|
|
|
|
final TetraLeagueAlphaRecord record;
|
|
|
|
final String initPlayerId;
|
|
|
|
const TlMatchResultView({Key? key, required this.record, required this.initPlayerId})
|
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() => TlMatchResultState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class TlMatchResultState extends State<TlMatchResultView> {
|
|
|
|
late ScrollController _scrollController;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState(){
|
|
|
|
_scrollController = ScrollController();
|
2023-09-06 19:02:23 +00:00
|
|
|
rounds = [DropdownMenuItem(value: -1, child: Text(t.match))];
|
|
|
|
rounds.addAll([for (int i = 0; i < widget.record.endContext.first.secondaryTracking.length; i++) DropdownMenuItem(value: i, child: Text(t.roundNumber(n: i+1)))]);
|
2023-10-10 20:20:27 +00:00
|
|
|
if (!kIsWeb && !Platform.isAndroid && !Platform.isIOS){
|
2023-10-09 18:48:50 +00:00
|
|
|
windowManager.getTitle().then((value) => oldWindowTitle = value);
|
|
|
|
windowManager.setTitle("Tetra Stats: ${widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).username.toUpperCase()} ${t.vs} ${widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).username.toUpperCase()} ${t.inTLmatch} ${dateFormat.format(widget.record.timestamp)}");
|
|
|
|
}
|
2023-06-21 19:17:39 +00:00
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
2023-09-05 20:32:34 +00:00
|
|
|
@override
|
|
|
|
void dispose(){
|
|
|
|
roundSelector = -1;
|
2023-10-10 20:20:27 +00:00
|
|
|
if (!kIsWeb && !Platform.isAndroid && !Platform.isIOS) windowManager.setTitle(oldWindowTitle);
|
2023-09-05 20:32:34 +00:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2023-06-21 19:17:39 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-07-14 20:21:49 +00:00
|
|
|
final t = Translations.of(context);
|
2023-06-21 19:17:39 +00:00
|
|
|
bool bigScreen = MediaQuery.of(context).size.width > 768;
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2023-09-06 19:02:23 +00:00
|
|
|
title: Text("${widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).username.toUpperCase()} ${t.vs} ${widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).username.toUpperCase()} ${t.inTLmatch} ${dateFormat.format(widget.record.timestamp)}"),
|
2023-10-18 21:50:41 +00:00
|
|
|
actions: [
|
|
|
|
PopupMenuButton(
|
|
|
|
enabled: widget.record.replayAvalable,
|
|
|
|
itemBuilder: (BuildContext context) => <PopupMenuEntry>[
|
2023-11-08 22:17:44 +00:00
|
|
|
PopupMenuItem(
|
2023-10-18 21:50:41 +00:00
|
|
|
value: 1,
|
2023-11-08 22:17:44 +00:00
|
|
|
child: Text(t.downloadReplay),
|
2023-10-18 21:50:41 +00:00
|
|
|
),
|
2023-11-08 22:17:44 +00:00
|
|
|
PopupMenuItem(
|
2023-10-18 21:50:41 +00:00
|
|
|
value: 2,
|
2023-11-08 22:17:44 +00:00
|
|
|
child: Text(t.openReplay),
|
2023-10-18 21:50:41 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
onSelected: (value) async {
|
|
|
|
switch (value) {
|
|
|
|
case 1:
|
|
|
|
if (kIsWeb){
|
|
|
|
// final _base64 = base64Encode([1,2,3,4,5]);
|
|
|
|
// final anchor = AnchorElement(href: 'data:application/octet-stream;base64,$_base64')..target = 'blank';
|
|
|
|
//final anchor = AnchorElement(href: 'https://inoue.szy.lol/api/replay/${widget.record.replayId}')..target = 'blank';
|
|
|
|
//anchor.download = "${widget.record.replayId}.ttrm";
|
|
|
|
//document.body!.append(anchor);
|
|
|
|
//anchor.click();
|
|
|
|
//anchor.remove();
|
|
|
|
} else{
|
|
|
|
try{
|
|
|
|
String path = await teto.szyDownloadAndSaveReplay(widget.record.replayId);
|
2023-11-08 22:17:44 +00:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(t.replaySaved(path: path))));
|
2023-10-18 21:50:41 +00:00
|
|
|
} on TetrioReplayAlreadyExist{
|
2023-11-08 22:17:44 +00:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(t.errors.replayAlreadySaved)));
|
2023-10-18 21:50:41 +00:00
|
|
|
} on SzyNotFound {
|
2023-11-08 22:17:44 +00:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(t.errors.replayExpired)));
|
2023-10-18 21:50:41 +00:00
|
|
|
} on SzyForbidden {
|
2023-11-08 22:17:44 +00:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(t.errors.replayRejected)));
|
2023-10-18 21:50:41 +00:00
|
|
|
} on SzyTooManyRequests {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(t.errors.tooManyRequests)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
await launchInBrowser(Uri.parse("https://tetr.io/#r:${widget.record.replayId}"));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
})
|
|
|
|
]
|
2023-06-21 19:17:39 +00:00
|
|
|
),
|
|
|
|
backgroundColor: Colors.black,
|
|
|
|
body: SafeArea(
|
|
|
|
child: NestedScrollView(
|
|
|
|
controller: _scrollController,
|
|
|
|
headerSliverBuilder: (context, value) {
|
|
|
|
return [
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.fromLTRB(16, 16, 16, 32),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Container(
|
2023-06-23 18:38:15 +00:00
|
|
|
decoration: BoxDecoration(
|
2023-06-21 19:17:39 +00:00
|
|
|
gradient: LinearGradient(
|
2023-06-23 18:38:15 +00:00
|
|
|
colors: const [Colors.green, Colors.transparent],
|
2023-06-21 19:17:39 +00:00
|
|
|
begin: Alignment.bottomCenter,
|
|
|
|
end: Alignment.topCenter,
|
2023-06-23 18:38:15 +00:00
|
|
|
stops: [0.0, widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).success ? 0.4 : 0.0],
|
2023-06-21 19:17:39 +00:00
|
|
|
)),
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
|
|
|
|
child: Column(children: [
|
2023-06-23 18:38:15 +00:00
|
|
|
Text(widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).username, style: bigScreen ? const TextStyle(
|
2023-06-21 19:17:39 +00:00
|
|
|
fontFamily: "Eurostile Round Extended",
|
2023-06-23 18:38:15 +00:00
|
|
|
fontSize: 28) : const TextStyle()),
|
2023-06-21 19:17:39 +00:00
|
|
|
Text(widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).points.toString(), style: const TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: 42))
|
|
|
|
]),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
const Padding(
|
|
|
|
padding: EdgeInsets.only(top: 16),
|
|
|
|
child: Text("VS"),
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: Container(
|
2023-06-23 18:38:15 +00:00
|
|
|
decoration: BoxDecoration(
|
2023-06-21 19:17:39 +00:00
|
|
|
gradient: LinearGradient(
|
2023-06-23 18:38:15 +00:00
|
|
|
colors: const [Colors.red, Colors.transparent],
|
2023-06-21 19:17:39 +00:00
|
|
|
begin: Alignment.bottomCenter,
|
|
|
|
end: Alignment.topCenter,
|
2023-06-23 18:38:15 +00:00
|
|
|
stops: [0.0, widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).success ? 0.4 : 0.0],
|
2023-06-21 19:17:39 +00:00
|
|
|
)),
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.fromLTRB(8, 0, 8, 0),
|
|
|
|
child: Column(children: [
|
2023-06-23 18:38:15 +00:00
|
|
|
Text(widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).username, style: bigScreen ? const TextStyle(
|
2023-06-21 19:17:39 +00:00
|
|
|
fontFamily: "Eurostile Round Extended",
|
2023-06-23 18:38:15 +00:00
|
|
|
fontSize: 28) : const TextStyle()),
|
2023-06-21 19:17:39 +00:00
|
|
|
Text(widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).points.toString(), style: const TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: 42))
|
|
|
|
]),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-09-05 20:32:34 +00:00
|
|
|
SliverToBoxAdapter(
|
|
|
|
child: Center(
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.baseline,
|
|
|
|
textBaseline: TextBaseline.alphabetic,
|
|
|
|
children: [
|
2023-09-06 19:02:23 +00:00
|
|
|
Text("${t.statsFor}: ",
|
2023-09-05 20:32:34 +00:00
|
|
|
style: const TextStyle(color: Colors.white, fontSize: 25)),
|
|
|
|
DropdownButton(items: rounds, value: roundSelector, onChanged: ((value) {
|
|
|
|
roundSelector = value;
|
|
|
|
setState(() {});
|
|
|
|
}),),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-06-21 19:17:39 +00:00
|
|
|
const SliverToBoxAdapter(
|
|
|
|
child: Divider(),
|
|
|
|
)
|
|
|
|
];
|
|
|
|
},
|
|
|
|
body: ListView(
|
|
|
|
children: [
|
|
|
|
Column(
|
|
|
|
children: [
|
|
|
|
CompareThingy(
|
|
|
|
label: "APM",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).secondary : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).secondaryTracking[roundSelector],
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).secondary : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).secondaryTracking[roundSelector],
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 2,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "PPS",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).tertiary : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).tertiaryTracking[roundSelector],
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).tertiary : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).tertiaryTracking[roundSelector],
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 2,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "VS",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).extra : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).extraTracking[roundSelector],
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).extra : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).extraTracking[roundSelector],
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 2,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
const Divider(),
|
|
|
|
Column(
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(bottom: 16),
|
2023-07-14 20:21:49 +00:00
|
|
|
child: Text(t.nerdStats,
|
2023-06-21 19:17:39 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "APP",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.app : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].app,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.app : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].app,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "VS/APM",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.vsapm : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].vsapm,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.vsapm : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].vsapm,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "DS/S",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.dss : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].dss,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.dss : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].dss,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "DS/P",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.dsp : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].dsp,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.dsp : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].dsp,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "APP + DS/P",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.appdsp : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].appdsp,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.appdsp : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].appdsp,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
2023-07-14 20:21:49 +00:00
|
|
|
label: t.statCellNum.cheese.replaceAll(RegExp(r'\n'), " "),
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.cheese : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].cheese,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.cheese : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].cheese,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 2,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
2023-07-14 20:21:49 +00:00
|
|
|
label: "Gb Eff.",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.gbe : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].gbe,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.gbe : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].gbe,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
2023-07-14 20:21:49 +00:00
|
|
|
label: "wAPP",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.nyaapp : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].nyaapp,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.nyaapp : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].nyaapp,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "Area",
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats.area : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector].area,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats.area : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector].area,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 2,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
2023-07-15 16:22:25 +00:00
|
|
|
label: t.statCellNum.estOfTRShort,
|
2023-09-05 20:32:34 +00:00
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).estTr.esttr : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).estTrTracking[roundSelector].esttr,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).estTr.esttr : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).estTrTracking[roundSelector].esttr,
|
2023-06-21 19:17:39 +00:00
|
|
|
fractionDigits: 2,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
2023-09-05 20:32:34 +00:00
|
|
|
CompareThingy(
|
|
|
|
label: "Opener",
|
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyle.opener : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyleTracking[roundSelector].opener,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyle.opener : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyleTracking[roundSelector].opener,
|
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "Plonk",
|
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyle.plonk : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyleTracking[roundSelector].plonk,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyle.plonk : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyleTracking[roundSelector].plonk,
|
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "Stride",
|
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyle.stride : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyleTracking[roundSelector].stride,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyle.stride : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyleTracking[roundSelector].stride,
|
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
|
|
|
CompareThingy(
|
|
|
|
label: "Inf. DS",
|
|
|
|
greenSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyle.infds : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyleTracking[roundSelector].infds,
|
|
|
|
redSide: roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyle.infds : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyleTracking[roundSelector].infds,
|
|
|
|
fractionDigits: 3,
|
|
|
|
higherIsBetter: true,
|
|
|
|
),
|
2023-10-26 22:38:03 +00:00
|
|
|
VsGraphs(
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).secondary : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).secondaryTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).tertiary : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).tertiaryTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).extra : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).extraTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStats : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).nerdStatsTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyle : widget.record.endContext.firstWhere((element) => element.userId == widget.initPlayerId).playstyleTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).secondary : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).secondaryTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).tertiary : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).tertiaryTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).extra : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).extraTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStats : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).nerdStatsTracking[roundSelector],
|
|
|
|
roundSelector.isNegative ? widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyle : widget.record.endContext.firstWhere((element) => element.userId != widget.initPlayerId).playstyleTracking[roundSelector]
|
2023-06-21 19:17:39 +00:00
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class CompareThingy extends StatelessWidget {
|
|
|
|
final num greenSide;
|
|
|
|
final num redSide;
|
|
|
|
final String label;
|
|
|
|
final bool higherIsBetter;
|
|
|
|
final int? fractionDigits;
|
|
|
|
const CompareThingy(
|
|
|
|
{super.key,
|
|
|
|
required this.greenSide,
|
|
|
|
required this.redSide,
|
|
|
|
required this.label,
|
|
|
|
required this.higherIsBetter,
|
|
|
|
this.fractionDigits});
|
|
|
|
|
|
|
|
String verdict(num greenSide, num redSide, int fraction) {
|
|
|
|
var f = NumberFormat("+#,###.##;-#,###.##");
|
|
|
|
f.maximumFractionDigits = fraction;
|
|
|
|
return f.format((greenSide - redSide));
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-07-15 16:22:25 +00:00
|
|
|
NumberFormat f = NumberFormat.decimalPatternDigits(locale: LocaleSettings.currentLocale.languageCode, decimalDigits: fractionDigits ?? 0);
|
2023-06-21 19:17:39 +00:00
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.fromLTRB(16, 2, 16, 2),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(4),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
gradient: LinearGradient(
|
|
|
|
colors: const [Colors.green, Colors.transparent],
|
|
|
|
begin: Alignment.centerLeft,
|
|
|
|
end: Alignment.centerRight,
|
|
|
|
stops: [
|
|
|
|
0.0,
|
|
|
|
higherIsBetter
|
|
|
|
? greenSide > redSide
|
|
|
|
? 0.6
|
|
|
|
: 0
|
|
|
|
: greenSide < redSide
|
|
|
|
? 0.6
|
|
|
|
: 0
|
|
|
|
],
|
|
|
|
)),
|
|
|
|
child: Text(
|
|
|
|
f.format(greenSide),
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 22,
|
|
|
|
shadows: <Shadow>[
|
|
|
|
Shadow(
|
|
|
|
offset: Offset(0.0, 0.0),
|
|
|
|
blurRadius: 3.0,
|
|
|
|
color: Colors.black,
|
|
|
|
),
|
|
|
|
Shadow(
|
|
|
|
offset: Offset(0.0, 0.0),
|
|
|
|
blurRadius: 8.0,
|
|
|
|
color: Colors.black,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.start,
|
|
|
|
),
|
|
|
|
)),
|
|
|
|
Column(
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
label,
|
|
|
|
style: const TextStyle(fontSize: 22),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
verdict(greenSide, redSide,
|
|
|
|
fractionDigits != null ? fractionDigits! + 2 : 0),
|
|
|
|
style: const TextStyle(fontSize: 16),
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(4),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
gradient: LinearGradient(
|
|
|
|
colors: const [Colors.red, Colors.transparent],
|
|
|
|
begin: Alignment.centerRight,
|
|
|
|
end: Alignment.centerLeft,
|
|
|
|
stops: [
|
|
|
|
0.0,
|
|
|
|
higherIsBetter
|
|
|
|
? redSide > greenSide
|
|
|
|
? 0.6
|
|
|
|
: 0
|
|
|
|
: redSide < greenSide
|
|
|
|
? 0.6
|
|
|
|
: 0
|
|
|
|
],
|
|
|
|
)),
|
|
|
|
child: Text(
|
|
|
|
f.format(redSide),
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 22,
|
|
|
|
shadows: <Shadow>[
|
|
|
|
Shadow(
|
|
|
|
offset: Offset(0.0, 0.0),
|
|
|
|
blurRadius: 3.0,
|
|
|
|
color: Colors.black,
|
|
|
|
),
|
|
|
|
Shadow(
|
|
|
|
offset: Offset(0.0, 0.0),
|
|
|
|
blurRadius: 8.0,
|
|
|
|
color: Colors.black,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
),
|
|
|
|
)),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|