Marco
13bcfb1131
Show checkmate screen, once the server sends the 'gameEnded' message. Additionally, show an icon that lets users copy the passphrase to the clipboard.
143 lines
4.4 KiB
Dart
143 lines
4.4 KiB
Dart
import 'dart:developer';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:http/http.dart';
|
|
import 'package:mchess/api/register.dart';
|
|
import 'package:mchess/connection_cubit/connection_cubit.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import 'dart:convert';
|
|
|
|
import 'package:mchess/pages/chess_game.dart';
|
|
import 'package:mchess/utils/config.dart' as config;
|
|
|
|
class HostGameWidget extends StatefulWidget {
|
|
const HostGameWidget({super.key});
|
|
|
|
@override
|
|
State<HostGameWidget> createState() => _HostGameWidgetState();
|
|
}
|
|
|
|
class _HostGameWidgetState extends State<HostGameWidget> {
|
|
late Future<PlayerInfo?> registerResponse;
|
|
late ChessGameArguments chessGameArgs;
|
|
|
|
@override
|
|
void initState() {
|
|
registerResponse = hostPrivateGame();
|
|
registerResponse.then((value) {
|
|
value?.store();
|
|
});
|
|
connectToWebsocket(registerResponse);
|
|
super.initState();
|
|
}
|
|
|
|
void connectToWebsocket(Future<PlayerInfo?> resp) {
|
|
resp.then((value) {
|
|
if (value == null) return;
|
|
|
|
chessGameArgs = ChessGameArguments(
|
|
lobbyID: value.lobbyID!,
|
|
playerID: value.playerID!,
|
|
passphrase: value.passphrase);
|
|
|
|
ConnectionCubit.getInstance().connect(
|
|
value.playerID!.uuid,
|
|
value.lobbyID!.uuid,
|
|
value.passphrase,
|
|
);
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: Center(
|
|
child: FutureBuilder<PlayerInfo?>(
|
|
future: registerResponse,
|
|
builder: (context, snapshot) {
|
|
if (snapshot.connectionState != ConnectionState.done) {
|
|
return const SizedBox(
|
|
height: 100,
|
|
width: 100,
|
|
child: CircularProgressIndicator(),
|
|
);
|
|
} else {
|
|
String passphrase = snapshot.data?.passphrase ?? "no passphrase";
|
|
return BlocListener<ConnectionCubit, ConnectionCubitState>(
|
|
listener: (context, state) {
|
|
// We wait for our opponent to connect
|
|
if (state.opponentConnected) {
|
|
context.pushReplacement('/game', extra: chessGameArgs);
|
|
}
|
|
},
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
'Give this phrase to your friend and sit tight:',
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.primary),
|
|
),
|
|
const SizedBox(height: 25),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
SelectableText(
|
|
passphrase,
|
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
|
),
|
|
IconButton(
|
|
icon: const Icon(Icons.copy),
|
|
onPressed: () async {
|
|
await Clipboard.setData(
|
|
ClipboardData(text: passphrase));
|
|
},
|
|
)
|
|
],
|
|
),
|
|
const SizedBox(height: 25),
|
|
const CircularProgressIndicator()
|
|
],
|
|
),
|
|
);
|
|
}
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<PlayerInfo?> hostPrivateGame() async {
|
|
Response response;
|
|
|
|
try {
|
|
response = await http.get(Uri.parse(config.getHostURL()),
|
|
headers: {"Accept": "application/json"});
|
|
} catch (e) {
|
|
log(e.toString());
|
|
|
|
if (!context.mounted) return null;
|
|
|
|
const snackBar = SnackBar(
|
|
backgroundColor: Colors.amberAccent,
|
|
content: Text("mChess server is not responding. Try again or give up"),
|
|
);
|
|
Future.delayed(const Duration(seconds: 2), () {
|
|
ScaffoldMessenger.of(context).clearSnackBars();
|
|
ScaffoldMessenger.of(context).showSnackBar(snackBar);
|
|
context.goNamed('lobbySelector'); // We go back to the lobby selector
|
|
});
|
|
return null;
|
|
}
|
|
|
|
if (response.statusCode == 200) {
|
|
log(response.body);
|
|
return PlayerInfo.fromJson(jsonDecode(response.body));
|
|
}
|
|
return null;
|
|
}
|
|
}
|