2024-07-31 21:50:15 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-09-05 21:42:21 +00:00
|
|
|
import 'package:tetra_stats/data_objects/record_extras.dart';
|
|
|
|
import 'package:tetra_stats/data_objects/record_single.dart';
|
2024-08-13 22:45:28 +00:00
|
|
|
import 'package:tetra_stats/utils/colors_functions.dart';
|
2024-07-31 21:50:15 +00:00
|
|
|
import 'package:tetra_stats/utils/numers_formats.dart';
|
2024-11-05 23:07:43 +00:00
|
|
|
import 'package:tetra_stats/widgets/gauget_thingy.dart';
|
2024-07-31 21:50:15 +00:00
|
|
|
import 'package:tetra_stats/widgets/text_timestamp.dart';
|
|
|
|
|
2024-11-05 23:07:43 +00:00
|
|
|
class ZenithThingy extends StatelessWidget{
|
|
|
|
final RecordSingle? zenith;
|
|
|
|
final bool old;
|
2024-07-31 21:50:15 +00:00
|
|
|
|
2024-11-05 23:07:43 +00:00
|
|
|
const ZenithThingy({super.key, required this.zenith, this.old = false});
|
|
|
|
|
2024-07-31 21:50:15 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-11-05 23:07:43 +00:00
|
|
|
return Card(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.fromLTRB(8.0, 0.0, 8.0, 0.0),
|
2024-08-03 17:52:20 +00:00
|
|
|
child: Column(
|
|
|
|
children: [
|
2024-11-05 23:07:43 +00:00
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
2024-08-03 17:52:20 +00:00
|
|
|
children: [
|
2024-11-05 23:07:43 +00:00
|
|
|
Column(
|
2024-08-03 17:52:20 +00:00
|
|
|
mainAxisSize: MainAxisSize.min,
|
2024-07-31 21:50:15 +00:00
|
|
|
children: [
|
2024-11-05 23:07:43 +00:00
|
|
|
RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
text: zenith != null ? "${f2.format(zenith!.stats.zenith!.altitude)} m" : "--- m",
|
|
|
|
style: TextStyle(fontFamily: "Eurostile Round Extended", fontSize: 36, fontWeight: FontWeight.w500, color: (zenith != null && !old) ? Colors.white : Colors.grey),
|
|
|
|
),
|
2024-08-13 22:45:28 +00:00
|
|
|
),
|
2024-11-05 23:07:43 +00:00
|
|
|
if (zenith != null) RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
text: "",
|
|
|
|
style: const TextStyle(fontFamily: "Eurostile Round", fontSize: 14, color: Colors.grey),
|
|
|
|
children: [
|
|
|
|
if (zenith!.rank != -1) TextSpan(text: "№ ${intf.format(zenith!.rank)}", style: TextStyle(color: getColorOfRank(zenith!.rank))),
|
|
|
|
if (zenith!.rank != -1) const TextSpan(text: " • "),
|
|
|
|
if (zenith!.countryRank != -1) TextSpan(text: "№ ${intf.format(zenith!.countryRank)} local", style: TextStyle(color: getColorOfRank(zenith!.countryRank))),
|
|
|
|
if (zenith!.countryRank != -1) const TextSpan(text: " • "),
|
|
|
|
TextSpan(text: timestamp(zenith!.timestamp)),
|
|
|
|
]
|
|
|
|
),
|
2024-08-03 17:52:20 +00:00
|
|
|
),
|
|
|
|
],
|
2024-07-31 21:50:15 +00:00
|
|
|
),
|
2024-11-05 23:07:43 +00:00
|
|
|
if (zenith != null && (zenith!.extras as ZenithExtras).mods.isNotEmpty) Container(width: 16.0),
|
|
|
|
if (zenith != null && (zenith!.extras as ZenithExtras).mods.isNotEmpty) for (String mod in (zenith!.extras as ZenithExtras).mods) Image.asset("res/icons/${mod}.png", height: 64.0)
|
|
|
|
],
|
2024-08-03 17:52:20 +00:00
|
|
|
),
|
2024-11-05 23:07:43 +00:00
|
|
|
if (zenith != null) Row(
|
2024-08-03 17:52:20 +00:00
|
|
|
children: [
|
2024-11-05 23:07:43 +00:00
|
|
|
Expanded(
|
|
|
|
child: Center(
|
|
|
|
child: Table(
|
|
|
|
defaultColumnWidth:const IntrinsicColumnWidth(),
|
2024-07-31 21:50:15 +00:00
|
|
|
children: [
|
2024-11-05 23:07:43 +00:00
|
|
|
TableRow(children: [
|
|
|
|
Text(f2.format(zenith!.aggregateStats.apm), textAlign: TextAlign.right, style: const TextStyle(fontSize: 21)),
|
|
|
|
const Text(" APM", style: TextStyle(fontSize: 21)),
|
|
|
|
]),
|
|
|
|
TableRow(children: [
|
|
|
|
Text(f2.format(zenith!.aggregateStats.pps), textAlign: TextAlign.right, style: const TextStyle(fontSize: 21)),
|
|
|
|
const Text(" PPS", style: TextStyle(fontSize: 21)),
|
2024-08-03 17:52:20 +00:00
|
|
|
]),
|
2024-11-05 23:07:43 +00:00
|
|
|
TableRow(children: [
|
|
|
|
Text(f2.format(zenith!.aggregateStats.vs), textAlign: TextAlign.right, style: const TextStyle(fontSize: 21)),
|
|
|
|
const Text(" VS", style: TextStyle(fontSize: 21)),
|
2024-08-03 17:52:20 +00:00
|
|
|
])
|
2024-11-05 23:07:43 +00:00
|
|
|
],
|
|
|
|
),
|
2024-07-31 21:50:15 +00:00
|
|
|
),
|
2024-11-05 23:07:43 +00:00
|
|
|
),
|
|
|
|
GaugetThingy(value: zenith!.stats.cps, min: 0, max: 12, tickInterval: 3, label: "Climb\nSpeed", subString: "Peak: ${f2.format(zenith!.stats.zenith!.peakrank)}", sideSize: 128, fractionDigits: 2, moreIsBetter: true),
|
|
|
|
Expanded(
|
|
|
|
child: Center(
|
|
|
|
child: Table(
|
|
|
|
defaultColumnWidth:const IntrinsicColumnWidth(),
|
|
|
|
children: [
|
|
|
|
TableRow(children: [
|
|
|
|
Text(intf.format(zenith!.stats.kills), textAlign: TextAlign.right, style: const TextStyle(fontSize: 21)),
|
|
|
|
const Text(" KO's", style: TextStyle(fontSize: 21))
|
|
|
|
]),
|
|
|
|
TableRow(children: [
|
|
|
|
Text(zenith!.stats.topBtB.toString(), textAlign: TextAlign.right, style: const TextStyle(fontSize: 21)),
|
|
|
|
const Text(" B2B", style: TextStyle(fontSize: 21))
|
2024-08-03 17:52:20 +00:00
|
|
|
]),
|
2024-11-05 23:07:43 +00:00
|
|
|
TableRow(children: [
|
|
|
|
Text(zenith!.stats.garbage.maxspike_nomult.toString(), textAlign: TextAlign.right, style: const TextStyle(fontSize: 21)),
|
|
|
|
const Text(" Top spike", style: TextStyle(fontSize: 21))
|
|
|
|
])
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
) else Row(
|
|
|
|
children: [
|
|
|
|
Expanded(
|
|
|
|
child: Center(
|
|
|
|
child: Table(
|
|
|
|
defaultColumnWidth: IntrinsicColumnWidth(),
|
|
|
|
children: [
|
|
|
|
const TableRow(children: [
|
|
|
|
Text("-.--", textAlign: TextAlign.right, style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
Text(" APM", style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
]),
|
|
|
|
const TableRow(children: [
|
|
|
|
Text("-.--", textAlign: TextAlign.right, style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
Text(" PPS", style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
]),
|
|
|
|
const TableRow(children: [
|
|
|
|
Text("-.--", textAlign: TextAlign.right, style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
Text(" VS", style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
])
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
GaugetThingy(value: null, min: 0, max: 12, tickInterval: 3, label: "Climb\nSpeed", subString: "Peak: ---", sideSize: 128, fractionDigits: 0, moreIsBetter: true),
|
|
|
|
Expanded(
|
|
|
|
child: Center(
|
|
|
|
child: Table(
|
|
|
|
defaultColumnWidth: IntrinsicColumnWidth(),
|
|
|
|
children: [
|
|
|
|
const TableRow(children: [
|
|
|
|
Text("---", textAlign: TextAlign.right, style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
Text(" KO's", style: TextStyle(fontSize: 21, color: Colors.grey))
|
|
|
|
]),
|
|
|
|
const TableRow(children: [
|
|
|
|
Text("---", textAlign: TextAlign.right, style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
Text(" B2B", style: TextStyle(fontSize: 21, color: Colors.grey))
|
|
|
|
]),
|
|
|
|
const TableRow(children: [
|
|
|
|
Text("---", textAlign: TextAlign.right, style: TextStyle(fontSize: 21, color: Colors.grey)),
|
|
|
|
Text(" Top spike", style: TextStyle(fontSize: 21, color: Colors.grey))
|
|
|
|
])
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2024-08-03 17:52:20 +00:00
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
2024-11-05 23:07:43 +00:00
|
|
|
]
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2024-07-31 21:50:15 +00:00
|
|
|
}
|
|
|
|
}
|