2023-08-14 21:26:20 +00:00
|
|
|
import 'dart:math';
|
|
|
|
|
|
|
|
import 'package:fl_chart/fl_chart.dart';
|
2023-07-29 18:01:49 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:intl/intl.dart';
|
2023-08-19 23:20:06 +00:00
|
|
|
import 'package:tetra_stats/data_objects/tetrio.dart';
|
2023-07-29 18:01:49 +00:00
|
|
|
//import 'package:tetra_stats/data_objects/tetrio.dart';
|
|
|
|
import 'package:tetra_stats/gen/strings.g.dart';
|
2023-08-19 23:20:06 +00:00
|
|
|
import 'package:tetra_stats/views/main_view.dart' show MainView, f4, f2;
|
2023-07-29 18:01:49 +00:00
|
|
|
import 'package:tetra_stats/widgets/stat_sell_num.dart';
|
2023-08-14 21:26:20 +00:00
|
|
|
import 'package:tetra_stats/widgets/tl_thingy.dart';
|
2023-07-29 18:01:49 +00:00
|
|
|
//import 'package:tetra_stats/widgets/tl_thingy.dart';
|
|
|
|
|
2023-08-19 23:20:06 +00:00
|
|
|
List chartsShortTitles = [
|
|
|
|
"TR",
|
|
|
|
"Glicko",
|
|
|
|
"RD",
|
|
|
|
"GP",
|
|
|
|
"GW",
|
|
|
|
"WR%",
|
|
|
|
"APM",
|
|
|
|
"PPS",
|
|
|
|
"VS",
|
|
|
|
"APP",
|
|
|
|
"DS/S",
|
|
|
|
"DS/P",
|
|
|
|
"APP + DS/P",
|
|
|
|
"VS/APM",
|
|
|
|
"Cheese",
|
|
|
|
"GbE",
|
|
|
|
"wAPP",
|
|
|
|
"Area",
|
|
|
|
"eTR",
|
|
|
|
"±eTR",
|
|
|
|
"Opener",
|
|
|
|
"Plonk",
|
|
|
|
"Inf. DS",
|
|
|
|
"Stride",
|
|
|
|
"Stride - Plonk",
|
|
|
|
"Opener - Inf. DS"
|
|
|
|
];
|
|
|
|
var chartsShortTitlesDropdowns = <DropdownMenuItem>[for (String e in chartsShortTitles) DropdownMenuItem(child: Text(e), value: e,)];
|
|
|
|
int chartsIndexX = 0;
|
|
|
|
int chartsIndexY = 6;
|
|
|
|
//final DateFormat dateFormat = DateFormat.yMMMd(LocaleSettings.currentLocale.languageCode).add_Hms();
|
2023-07-29 18:01:49 +00:00
|
|
|
double pfpHeight = 128;
|
|
|
|
|
|
|
|
class RankView extends StatefulWidget {
|
|
|
|
final List rank;
|
|
|
|
const RankView({Key? key, required this.rank}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() => RankState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class RankState extends State<RankView> with SingleTickerProviderStateMixin {
|
|
|
|
late ScrollController _scrollController;
|
|
|
|
late TabController _tabController;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_scrollController = ScrollController();
|
|
|
|
_tabController = TabController(length: 6, vsync: this);
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
_tabController.dispose();
|
|
|
|
_scrollController.dispose();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _justUpdate() {
|
|
|
|
setState(() {});
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final t = Translations.of(context);
|
|
|
|
bool bigScreen = MediaQuery.of(context).size.width > 768;
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2023-08-20 21:57:01 +00:00
|
|
|
title: Text(widget.rank[1]["everyone"] ? t.everyoneAverages : t.rankAverages(rank: widget.rank[0].rank.toUpperCase())),
|
2023-07-29 18:01:49 +00:00
|
|
|
),
|
|
|
|
backgroundColor: Colors.black,
|
|
|
|
body: SafeArea(
|
|
|
|
child: NestedScrollView(
|
|
|
|
controller: _scrollController,
|
|
|
|
headerSliverBuilder: (context, value) {
|
|
|
|
return [
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Flex(
|
|
|
|
direction: Axis.vertical,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Stack(
|
|
|
|
alignment: Alignment.topCenter,
|
|
|
|
children: [
|
2023-08-14 21:26:20 +00:00
|
|
|
Image.asset(
|
2023-07-29 18:01:49 +00:00
|
|
|
"res/tetrio_tl_alpha_ranks/${widget.rank[0].rank}.png",
|
|
|
|
fit: BoxFit.fitHeight,
|
|
|
|
height: 128),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Flexible(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Text(
|
2023-08-20 21:57:01 +00:00
|
|
|
widget.rank[1]["everyone"] ? t.everyoneAverages : t.rankAverages(rank: widget.rank[0].rank.toUpperCase()),
|
2023-07-29 18:01:49 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
Text(
|
2023-08-20 21:57:01 +00:00
|
|
|
t.players(n: widget.rank[1]["entries"].length),
|
2023-07-29 18:01:49 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
],
|
|
|
|
)),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)),
|
|
|
|
SliverToBoxAdapter(
|
|
|
|
child: TabBar(
|
|
|
|
controller: _tabController,
|
|
|
|
isScrollable: true,
|
2023-08-20 21:57:01 +00:00
|
|
|
tabs: [
|
|
|
|
Tab(text: t.chart),
|
|
|
|
Tab(text: t.entries),
|
|
|
|
Tab(text: t.minimums),
|
|
|
|
Tab(text: t.averages),
|
|
|
|
Tab(text: t.maximums),
|
|
|
|
Tab(text: t.other),
|
2023-07-29 18:01:49 +00:00
|
|
|
],
|
|
|
|
)),
|
|
|
|
];
|
|
|
|
},
|
|
|
|
body: TabBarView(
|
|
|
|
controller: _tabController,
|
|
|
|
children: [
|
|
|
|
Column(
|
|
|
|
children: [
|
2023-08-20 21:57:01 +00:00
|
|
|
Wrap(
|
|
|
|
direction: Axis.horizontal,
|
|
|
|
alignment: WrapAlignment.center,
|
|
|
|
spacing: 25,
|
2023-08-19 23:20:06 +00:00
|
|
|
children: [Column(
|
|
|
|
children: [
|
|
|
|
Row(
|
2023-08-20 21:57:01 +00:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
2023-08-19 23:20:06 +00:00
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
2023-08-20 21:57:01 +00:00
|
|
|
child: Text(t.currentAxis(axis: "X"), style: const TextStyle(fontSize: 22))),
|
2023-08-19 23:20:06 +00:00
|
|
|
DropdownButton(
|
|
|
|
items: chartsShortTitlesDropdowns,
|
|
|
|
value: chartsShortTitlesDropdowns[chartsIndexX].value,
|
|
|
|
onChanged: (value) {
|
|
|
|
chartsIndexX = chartsShortTitlesDropdowns.indexWhere((element) => element.value == value);
|
|
|
|
_justUpdate();
|
|
|
|
}
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),Column(
|
|
|
|
children: [
|
|
|
|
Row(
|
2023-08-20 21:57:01 +00:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
2023-08-19 23:20:06 +00:00
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
2023-08-20 21:57:01 +00:00
|
|
|
child: Text(t.currentAxis(axis: "Y"), style: const TextStyle(fontSize: 22)),
|
2023-08-19 23:20:06 +00:00
|
|
|
),
|
|
|
|
DropdownButton(
|
|
|
|
items: chartsShortTitlesDropdowns,
|
|
|
|
value: chartsShortTitlesDropdowns[chartsIndexY].value,
|
|
|
|
onChanged: (value) {
|
|
|
|
chartsIndexY = chartsShortTitlesDropdowns.indexWhere((element) => element.value == value);
|
|
|
|
_justUpdate();
|
|
|
|
}
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),],),
|
|
|
|
if(widget.rank[1]["entries"].length > 1) SizedBox(
|
|
|
|
width: MediaQuery.of(context).size.width,
|
|
|
|
height: MediaQuery.of(context).size.height - 104,
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: bigScreen
|
|
|
|
? const EdgeInsets.fromLTRB(40, 40, 40, 48)
|
|
|
|
: const EdgeInsets.fromLTRB(0, 40, 16, 48),
|
|
|
|
child: ScatterChart(
|
|
|
|
ScatterChartData(
|
2023-08-20 21:57:01 +00:00
|
|
|
scatterSpots: [ for (TetrioPlayerFromLeaderboard entry in widget.rank[1]["entries"]) _MyScatterSpot(takeStat(entry, chartsShortTitles[chartsIndexX]), takeStat(entry, chartsShortTitles[chartsIndexY]), entry.userId, entry.username, color: rankColors[entry.rank])],
|
2023-08-19 23:20:06 +00:00
|
|
|
scatterTouchData: ScatterTouchData(touchTooltipData: ScatterTouchTooltipData(
|
|
|
|
fitInsideHorizontally: true, fitInsideVertically: true, getTooltipItems: (touchedSpot) {
|
2023-08-20 21:57:01 +00:00
|
|
|
touchedSpot as _MyScatterSpot;
|
2023-08-19 23:20:06 +00:00
|
|
|
return ScatterTooltipItem("${touchedSpot.nickname}\n", textStyle: TextStyle(fontFamily: "Eurostile Round Extended"), children: [TextSpan(text: "${f4.format(touchedSpot.x)} ${chartsShortTitles[chartsIndexX]}\n${f4.format(touchedSpot.y)} ${chartsShortTitles[chartsIndexY]}", style: TextStyle(fontFamily: "Eurostile Round"))]);
|
|
|
|
}),
|
|
|
|
touchCallback:(event, response) {
|
|
|
|
if (event.runtimeType == FlTapDownEvent && response?.touchedSpot?.spot != null){
|
2023-08-20 21:57:01 +00:00
|
|
|
var spot = response?.touchedSpot?.spot as _MyScatterSpot;
|
2023-08-19 23:20:06 +00:00
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => MainView(player: spot.nickname),
|
|
|
|
maintainState: false,
|
2023-08-14 21:26:20 +00:00
|
|
|
),
|
2023-08-19 23:20:06 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},),
|
|
|
|
),
|
|
|
|
swapAnimationDuration: Duration(milliseconds: 150), // Optional
|
|
|
|
swapAnimationCurve: Curves.linear, // Optional
|
2023-08-14 21:26:20 +00:00
|
|
|
),
|
2023-08-19 23:20:06 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
))
|
|
|
|
else Center(child: Text(t.notEnoughData, style: const TextStyle(fontFamily: "Eurostile Round Extended", fontSize: 28)))
|
2023-07-29 18:01:49 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
Column(
|
|
|
|
children: [
|
2023-08-20 21:57:01 +00:00
|
|
|
Text(t.entries,
|
2023-07-29 18:01:49 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
Expanded(
|
|
|
|
child: ListView.builder(
|
|
|
|
itemCount: widget.rank[1]["entries"]!.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
bool bigScreen =
|
|
|
|
MediaQuery.of(context).size.width > 768;
|
|
|
|
return ListTile(
|
|
|
|
title: Text(
|
|
|
|
widget.rank[1]["entries"][index].username,
|
|
|
|
style: const TextStyle(
|
|
|
|
fontFamily:
|
|
|
|
"Eurostile Round Extended")),
|
|
|
|
subtitle: Text(
|
2023-08-08 19:30:24 +00:00
|
|
|
"${f2.format(widget.rank[1]["entries"][index].apm)} APM, ${f2.format(widget.rank[1]["entries"][index].pps)} PPS, ${f2.format(widget.rank[1]["entries"][index].vs)} VS, ${f2.format(widget.rank[1]["entries"][index].nerdStats.app)} APP, ${f2.format(widget.rank[1]["entries"][index].nerdStats.vsapm)} VS/APM"),
|
2023-07-29 18:01:49 +00:00
|
|
|
trailing: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
"${f2.format(widget.rank[1]["entries"][index].rating)} TR",
|
|
|
|
style: bigScreen
|
|
|
|
? const TextStyle(fontSize: 28)
|
|
|
|
: null),
|
|
|
|
Image.asset(
|
|
|
|
"res/tetrio_tl_alpha_ranks/${widget.rank[1]["entries"][index].rank}.png",
|
|
|
|
height: bigScreen ? 48 : 16),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
onTap: () {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => MainView(
|
|
|
|
player: widget
|
|
|
|
.rank[1]["entries"][index]
|
2023-08-19 23:20:06 +00:00
|
|
|
.username),
|
2023-07-29 18:01:49 +00:00
|
|
|
maintainState: false,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Column(
|
|
|
|
children: [
|
2023-08-20 21:57:01 +00:00
|
|
|
Text(t.lowestValues,
|
2023-07-29 18:01:49 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
Expanded(
|
|
|
|
child: ListView(
|
|
|
|
children: [
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestTR"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.tr
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestTRid"],
|
|
|
|
username: widget.rank[1]["lowestTRnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestGlicko"],
|
|
|
|
label: "Glicko",
|
|
|
|
id: widget.rank[1]["lowestGlickoID"],
|
|
|
|
username: widget.rank[1]["lowestGlickoNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
2023-08-08 19:30:24 +00:00
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestRD"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.rd
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestRdID"],
|
|
|
|
username: widget.rank[1]["lowestRdNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-07-29 18:01:49 +00:00
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestGamesPlayed"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.gamesPlayed
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestGamesPlayedID"],
|
|
|
|
username: widget.rank[1]
|
|
|
|
["lowestGamesPlayedNick"],
|
|
|
|
approximate: false),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestGamesWon"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.gamesWonTL
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestGamesWonID"],
|
|
|
|
username: widget.rank[1]
|
|
|
|
["lowestGamesWonNick"],
|
|
|
|
approximate: false),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestWinrate"] * 100,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.winrate
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestWinrateID"],
|
|
|
|
username: widget.rank[1]["lowestWinrateNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestAPM"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.apm
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestAPMid"],
|
|
|
|
username: widget.rank[1]["lowestAPMnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestPPS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.pps
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestPPSid"],
|
|
|
|
username: widget.rank[1]["lowestPPSnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestVS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.vs
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["lowestVSid"],
|
|
|
|
username: widget.rank[1]["lowestVSnick"],
|
|
|
|
approximate: false,
|
2023-08-08 19:30:24 +00:00
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestAPP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.app
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestAPPid"],
|
|
|
|
username: widget.rank[1]["lowestAPPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["lowestVSAPM"],
|
|
|
|
label: "VS / APM",
|
|
|
|
id: widget.rank[1]["lowestVSAPMid"],
|
|
|
|
username: widget.rank[1]["lowestVSAPMnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestDSS"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.dss
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestDSSid"],
|
|
|
|
username: widget.rank[1]["lowestDSSnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestDSP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.dsp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestDSPid"],
|
|
|
|
username: widget.rank[1]["lowestDSPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestAPPDSP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.dsp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestAPPDSPid"],
|
|
|
|
username: widget.rank[1]["lowestAPPDSPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestCheese"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.cheese
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestCheeseID"],
|
|
|
|
username: widget.rank[1]["lowestCheeseNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestGBE"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.gbe
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestGBEid"],
|
|
|
|
username: widget.rank[1]["lowestGBEnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestNyaAPP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.nyaapp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestNyaAPPid"],
|
|
|
|
username: widget.rank[1]["lowestNyaAPPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestArea"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.area
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestAreaID"],
|
|
|
|
username: widget.rank[1]["lowestAreaNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 1),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestEstTR"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.estOfTR
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestEstTRid"],
|
|
|
|
username: widget.rank[1]["lowestEstTRnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestEstAcc"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.accOfEst
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestEstAccID"],
|
|
|
|
username: widget.rank[1]["lowestEstAccNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestOpener"],
|
|
|
|
label: "Opener",
|
|
|
|
id: widget.rank[1]["lowestOpenerID"],
|
|
|
|
username: widget.rank[1]["lowestOpenerNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestPlonk"],
|
|
|
|
label: "Plonk",
|
|
|
|
id: widget.rank[1]["lowestPlonkID"],
|
|
|
|
username: widget.rank[1]["lowestPlonkNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestStride"],
|
|
|
|
label: "Stride",
|
|
|
|
id: widget.rank[1]["lowestStrideID"],
|
|
|
|
username: widget.rank[1]["lowestStrideNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["lowestInfDS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: "Inf. DS",
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["lowestInfDSid"],
|
|
|
|
username: widget.rank[1]["lowestInfDSnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3)
|
2023-07-29 18:01:49 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Column(
|
2023-08-08 19:30:24 +00:00
|
|
|
children: [
|
2023-08-20 21:57:01 +00:00
|
|
|
Text(t.averageValues,
|
2023-08-08 19:30:24 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
Expanded(
|
2023-08-14 21:26:20 +00:00
|
|
|
child: ListView(children: [
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].rating,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.tr
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].glicko,
|
|
|
|
label: "Glicko",
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].rd,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.rd
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].gamesPlayed,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.gamesPlayed
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 0),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].gamesWon,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.gamesWonTL
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 0),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].winrate * 100,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.winrate
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].apm,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.apm
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].pps,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.pps
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[0].vs,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.vs
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgAPP"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.app
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgAPP"],
|
|
|
|
label: "VS / APM",
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgDSS"],
|
|
|
|
label: t.statCellNum.dss
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgDSP"],
|
|
|
|
label: t.statCellNum.dsp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgAPPDSP"],
|
|
|
|
label: t.statCellNum.dsp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgCheese"],
|
|
|
|
label: t.statCellNum.cheese
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgGBE"],
|
|
|
|
label: t.statCellNum.gbe
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgNyaAPP"],
|
|
|
|
label: t.statCellNum.nyaapp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgArea"],
|
|
|
|
label: t.statCellNum.area
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 1),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgEstTR"],
|
|
|
|
label: t.statCellNum.estOfTR
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgEstAcc"],
|
|
|
|
label: t.statCellNum.accOfEst
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgOpener"],
|
|
|
|
label: "Opener",
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgPlonk"],
|
|
|
|
label: "Plonk",
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgStride"],
|
|
|
|
label: "Stride",
|
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["avgInfDS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: "Inf. DS",
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
|
|
|
]))
|
|
|
|
],
|
2023-07-29 18:01:49 +00:00
|
|
|
),
|
|
|
|
Column(
|
|
|
|
children: [
|
2023-08-20 21:57:01 +00:00
|
|
|
Text(t.highestValues,
|
2023-07-29 18:01:49 +00:00
|
|
|
style: TextStyle(
|
|
|
|
fontFamily: "Eurostile Round Extended",
|
|
|
|
fontSize: bigScreen ? 42 : 28)),
|
|
|
|
Expanded(
|
|
|
|
child: ListView(
|
|
|
|
children: [
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestTR"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.tr
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestTRid"],
|
|
|
|
username: widget.rank[1]["highestTRnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestGlicko"],
|
|
|
|
label: "Glicko",
|
|
|
|
id: widget.rank[1]["highestGlickoID"],
|
|
|
|
username: widget.rank[1]["highestGlickoNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
2023-08-08 19:30:24 +00:00
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestRD"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.rd
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestRdID"],
|
|
|
|
username: widget.rank[1]["highestRdNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-07-29 18:01:49 +00:00
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestGamesPlayed"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.gamesPlayed
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestGamesPlayedID"],
|
|
|
|
username: widget.rank[1]
|
|
|
|
["highestGamesPlayedNick"],
|
|
|
|
approximate: false),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestGamesWon"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.gamesWonTL
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestGamesWonID"],
|
|
|
|
username: widget.rank[1]
|
|
|
|
["highestGamesWonNick"],
|
|
|
|
approximate: false),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestWinrate"] * 100,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.winrate
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestWinrateID"],
|
|
|
|
username: widget.rank[1]
|
|
|
|
["highestWinrateNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestAPM"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.apm
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestAPMid"],
|
|
|
|
username: widget.rank[1]["highestAPMnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestPPS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.pps
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestPPSid"],
|
|
|
|
username: widget.rank[1]["highestPPSnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestVS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.vs
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-07-29 18:01:49 +00:00
|
|
|
id: widget.rank[1]["highestVSid"],
|
|
|
|
username: widget.rank[1]["highestVSnick"],
|
|
|
|
approximate: false,
|
2023-08-08 19:30:24 +00:00
|
|
|
fractionDigits: 2),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestAPP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.app
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestAPPid"],
|
|
|
|
username: widget.rank[1]["highestAPPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["highestVSAPM"],
|
|
|
|
label: "VS / APM",
|
|
|
|
id: widget.rank[1]["highestVSAPMid"],
|
|
|
|
username: widget.rank[1]["highestVSAPMnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestDSS"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.dss
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestDSSid"],
|
|
|
|
username: widget.rank[1]["highestDSSnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestDSP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.dsp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestDSPid"],
|
|
|
|
username: widget.rank[1]["highestDSPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestAPPDSP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.dsp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestAPPDSPid"],
|
|
|
|
username: widget.rank[1]["highestAPPDSPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestCheese"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.cheese
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestCheeseID"],
|
|
|
|
username: widget.rank[1]["highestCheeseNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestGBE"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.gbe
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestGBEid"],
|
|
|
|
username: widget.rank[1]["highestGBEnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestNyaAPP"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.nyaapp
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestNyaAPPid"],
|
|
|
|
username: widget.rank[1]["highestNyaAPPnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestArea"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.area
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestAreaID"],
|
|
|
|
username: widget.rank[1]["highestAreaNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 1),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestEstTR"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.estOfTR
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestEstTRid"],
|
|
|
|
username: widget.rank[1]["highestEstTRnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 2),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestEstAcc"],
|
2023-08-14 21:26:20 +00:00
|
|
|
label: t.statCellNum.accOfEst
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestEstAccID"],
|
|
|
|
username: widget.rank[1]["highestEstAccNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestOpener"],
|
|
|
|
label: "Opener",
|
|
|
|
id: widget.rank[1]["highestOpenerID"],
|
|
|
|
username: widget.rank[1]["highestOpenerNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestPlonk"],
|
|
|
|
label: "Plonk",
|
|
|
|
id: widget.rank[1]["highestPlonkID"],
|
|
|
|
username: widget.rank[1]["highestPlonkNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestStride"],
|
|
|
|
label: "Stride",
|
|
|
|
id: widget.rank[1]["highestStrideID"],
|
|
|
|
username: widget.rank[1]["highestStrideNick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-08-14 21:26:20 +00:00
|
|
|
_ListEntry(
|
2023-08-08 19:30:24 +00:00
|
|
|
value: widget.rank[1]["highestInfDS"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: "Inf. DS",
|
2023-08-08 19:30:24 +00:00
|
|
|
id: widget.rank[1]["highestInfDSid"],
|
|
|
|
username: widget.rank[1]["highestInfDSnick"],
|
|
|
|
approximate: false,
|
|
|
|
fractionDigits: 3),
|
2023-07-29 18:01:49 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Column(
|
2023-08-14 21:26:20 +00:00
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: ListView(
|
|
|
|
children: [
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["totalGamesPlayed"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.totalGames,
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 0),
|
|
|
|
_ListEntry(
|
|
|
|
value: widget.rank[1]["totalGamesWon"],
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.totalWon,
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 0),
|
|
|
|
_ListEntry(
|
|
|
|
value: (widget.rank[1]["totalGamesWon"] /
|
|
|
|
widget.rank[1]["totalGamesPlayed"]) *
|
|
|
|
100,
|
2023-08-20 21:57:01 +00:00
|
|
|
label: t.statCellNum.winrate
|
|
|
|
.replaceAll(RegExp(r'\n'), " "),
|
2023-08-14 21:26:20 +00:00
|
|
|
id: "",
|
|
|
|
username: "",
|
|
|
|
approximate: true,
|
|
|
|
fractionDigits: 3),
|
2023-08-20 21:57:01 +00:00
|
|
|
|
2023-08-14 21:26:20 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
],
|
2023-07-29 18:01:49 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ListEntry extends StatelessWidget {
|
|
|
|
final num value;
|
|
|
|
final String label;
|
|
|
|
final String id;
|
|
|
|
final String username;
|
|
|
|
final bool approximate;
|
|
|
|
final int? fractionDigits;
|
|
|
|
const _ListEntry(
|
|
|
|
{required this.value,
|
|
|
|
required this.label,
|
|
|
|
this.fractionDigits,
|
|
|
|
required this.id,
|
|
|
|
required this.username,
|
|
|
|
required this.approximate});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
NumberFormat f = NumberFormat.decimalPatternDigits(
|
|
|
|
locale: LocaleSettings.currentLocale.languageCode,
|
|
|
|
decimalDigits: fractionDigits ?? 0);
|
|
|
|
return ListTile(
|
|
|
|
title: Text(label),
|
|
|
|
trailing: Column(
|
2023-08-08 19:30:24 +00:00
|
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
2023-07-29 18:01:49 +00:00
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Text(f.format(value),
|
|
|
|
style: const TextStyle(fontSize: 22, height: 0.9)),
|
2023-08-20 21:57:01 +00:00
|
|
|
if (id.isNotEmpty) Text(t.forPlayer(username: username))
|
2023-07-29 18:01:49 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
onTap: id.isNotEmpty
|
|
|
|
? () {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => MainView(player: id),
|
|
|
|
maintainState: false,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
: null,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2023-08-14 21:26:20 +00:00
|
|
|
|
2023-08-19 23:20:06 +00:00
|
|
|
double takeStat(TetrioPlayerFromLeaderboard entry, String stat) {
|
|
|
|
switch (stat) {
|
|
|
|
case "TR":
|
|
|
|
return entry.rating;
|
|
|
|
case "Glicko":
|
|
|
|
return entry.glicko;
|
|
|
|
case "RD":
|
|
|
|
return entry.rd;
|
|
|
|
case "GP":
|
|
|
|
return entry.gamesPlayed.toDouble();
|
|
|
|
case "GW":
|
|
|
|
return entry.gamesWon.toDouble();
|
|
|
|
case "WR%":
|
|
|
|
return entry.winrate*100;
|
|
|
|
case "APM":
|
|
|
|
return entry.apm;
|
|
|
|
case "PPS":
|
|
|
|
return entry.pps;
|
|
|
|
case "VS":
|
|
|
|
return entry.vs;
|
|
|
|
case "APP":
|
|
|
|
return entry.nerdStats.app;
|
|
|
|
case "DS/S":
|
|
|
|
return entry.nerdStats.dss;
|
|
|
|
case "DS/P":
|
|
|
|
return entry.nerdStats.dsp;
|
|
|
|
case "APP + DS/P":
|
|
|
|
return entry.nerdStats.appdsp;
|
|
|
|
case "VS/APM":
|
|
|
|
return entry.nerdStats.vsapm;
|
|
|
|
case "Cheese":
|
|
|
|
return entry.nerdStats.cheese;
|
|
|
|
case "GbE":
|
|
|
|
return entry.nerdStats.gbe;
|
|
|
|
case "wAPP":
|
|
|
|
return entry.nerdStats.nyaapp;
|
|
|
|
case "Area":
|
|
|
|
return entry.nerdStats.area;
|
|
|
|
case "eTR":
|
|
|
|
return entry.estTr.esttr;
|
|
|
|
case "±eTR":
|
|
|
|
return entry.esttracc;
|
|
|
|
case "Opener":
|
|
|
|
return entry.playstyle.opener;
|
|
|
|
case "Plonk":
|
|
|
|
return entry.playstyle.plonk;
|
|
|
|
case "Inf. DS":
|
|
|
|
return entry.playstyle.infds;
|
|
|
|
case "Stride":
|
|
|
|
return entry.playstyle.stride;
|
|
|
|
case "Stride - Plonk":
|
|
|
|
return entry.playstyle.stride - entry.playstyle.plonk;
|
|
|
|
case "Opener - Inf. DS":
|
|
|
|
return entry.playstyle.opener - entry.playstyle.infds;
|
|
|
|
default:
|
|
|
|
throw ArgumentError.value(stat, "Incorrect stat", "We don't have that stat");
|
2023-08-14 21:26:20 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-19 23:20:06 +00:00
|
|
|
|
2023-08-20 21:57:01 +00:00
|
|
|
class _MyScatterSpot extends ScatterSpot{
|
2023-08-19 23:20:06 +00:00
|
|
|
String id;
|
|
|
|
String nickname;
|
|
|
|
|
2023-08-20 21:57:01 +00:00
|
|
|
_MyScatterSpot(super.x, super.y, this.id, this.nickname, {super.color});
|
2023-08-19 23:20:06 +00:00
|
|
|
|
|
|
|
}
|