2024-06-16 23:56:48 +02:00
|
|
|
import 'package:bubbletwist/enums/StoneColor.dart';
|
|
|
|
import 'package:bubbletwist/game/Game.dart';
|
|
|
|
import 'package:bubbletwist/game/IGameConsumer.dart';
|
2024-04-24 16:21:26 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
import 'game/stone/Stone.dart';
|
|
|
|
import 'game/stone/StoneLocation.dart';
|
|
|
|
|
2024-04-24 16:21:26 +02:00
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
2024-05-08 16:24:32 +02:00
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
final int gridSize = 8;
|
2024-04-24 16:21:26 +02:00
|
|
|
|
|
|
|
// This widget is the root of your application.
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
2024-05-08 15:57:00 +02:00
|
|
|
title: 'Bubble-Twist',
|
2024-04-24 16:21:26 +02:00
|
|
|
theme: ThemeData(
|
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
|
|
|
|
useMaterial3: true,
|
|
|
|
),
|
2024-06-16 23:56:48 +02:00
|
|
|
home: const MyHomePage(title: 'Flutter Demo Home Page', gridSize: 8),
|
2024-04-24 16:21:26 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyHomePage extends StatefulWidget {
|
2024-05-08 16:05:52 +02:00
|
|
|
const MyHomePage({super.key, required this.title, required this.gridSize});
|
2024-04-24 16:21:26 +02:00
|
|
|
|
|
|
|
// This widget is the home page of your application. It is stateful, meaning
|
|
|
|
// that it has a State object (defined below) that contains fields that affect
|
|
|
|
// how it looks.
|
|
|
|
|
|
|
|
// This class is the configuration for the state. It holds the values (in this
|
|
|
|
// case the title) provided by the parent (in this case the App widget) and
|
|
|
|
// used by the build method of the State. Fields in a Widget subclass are
|
|
|
|
// always marked "final".
|
|
|
|
|
|
|
|
final String title;
|
2024-05-08 16:05:52 +02:00
|
|
|
final int gridSize;
|
2024-04-24 16:21:26 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<MyHomePage> createState() => _MyHomePageState();
|
|
|
|
}
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
class _MyHomePageState extends State<MyHomePage> implements IGameConsumer {
|
|
|
|
late List<List<Stone?>> _grid;
|
|
|
|
late Game game;
|
|
|
|
final int _score = 0;
|
2024-04-24 16:21:26 +02:00
|
|
|
|
|
|
|
@override
|
2024-05-08 16:05:52 +02:00
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2024-06-16 23:56:48 +02:00
|
|
|
game = Game(this);
|
2024-05-08 16:24:32 +02:00
|
|
|
_grid = List.generate(widget.gridSize,
|
2024-06-16 23:56:48 +02:00
|
|
|
(index) => List.generate(widget.gridSize, (index) => Stone()));
|
|
|
|
game.start();
|
2024-05-08 16:05:52 +02:00
|
|
|
}
|
|
|
|
|
2024-05-08 16:18:42 +02:00
|
|
|
@override
|
2024-04-24 16:21:26 +02:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2024-06-16 23:56:48 +02:00
|
|
|
title: Text(widget.title),
|
2024-04-24 16:21:26 +02:00
|
|
|
),
|
|
|
|
body: Center(
|
2024-06-16 12:18:59 +02:00
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
child: Text(
|
|
|
|
'Score: $_score',
|
2024-06-16 23:56:48 +02:00
|
|
|
style: const TextStyle(fontSize: 24),
|
2024-06-16 12:18:59 +02:00
|
|
|
),
|
2024-05-08 16:18:42 +02:00
|
|
|
),
|
2024-06-16 12:18:59 +02:00
|
|
|
Expanded(
|
|
|
|
child: GridView.builder(
|
|
|
|
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
|
|
|
|
crossAxisCount: widget.gridSize,
|
2024-05-08 15:57:00 +02:00
|
|
|
),
|
2024-06-16 12:18:59 +02:00
|
|
|
itemCount: widget.gridSize * widget.gridSize,
|
|
|
|
itemBuilder: (BuildContext context, int index) {
|
|
|
|
int row = index ~/ widget.gridSize;
|
|
|
|
int col = index % widget.gridSize;
|
2024-06-16 23:56:48 +02:00
|
|
|
StoneLocation location = StoneLocation(row: row, column: col);
|
2024-06-16 12:18:59 +02:00
|
|
|
return GestureDetector(
|
2024-06-16 23:56:48 +02:00
|
|
|
onTap: () {
|
|
|
|
setState(() {
|
|
|
|
//game.handleTap(row, col);
|
|
|
|
});
|
|
|
|
},
|
2024-06-16 12:18:59 +02:00
|
|
|
child: Container(
|
|
|
|
margin: const EdgeInsets.all(2),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.circular(8),
|
2024-06-16 23:56:48 +02:00
|
|
|
color: _getColorForStone(game.getStone(location)),
|
2024-06-16 12:18:59 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2024-04-24 16:21:26 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2024-05-08 15:57:00 +02:00
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
Color _getColorForStone(Stone? stone) {
|
|
|
|
// Beispielhafte Farben basierend auf dem Stein.
|
|
|
|
switch (stone?.getStoneColor()) {
|
|
|
|
case StoneColors.red:
|
2024-05-08 15:57:00 +02:00
|
|
|
return Colors.red;
|
2024-06-16 23:56:48 +02:00
|
|
|
case StoneColors.green:
|
2024-05-08 15:57:00 +02:00
|
|
|
return Colors.green;
|
2024-06-16 23:56:48 +02:00
|
|
|
case StoneColors.blue:
|
|
|
|
return Colors.blue;
|
|
|
|
case StoneColors.yellow:
|
2024-05-08 15:57:00 +02:00
|
|
|
return Colors.yellow;
|
|
|
|
default:
|
2024-06-16 23:56:48 +02:00
|
|
|
return Colors.grey;
|
2024-05-08 15:57:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
@override
|
|
|
|
void gameStopped() {
|
|
|
|
// TODO: implement gameStopped
|
2024-05-08 16:24:32 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
@override
|
|
|
|
void updatePoints() {
|
|
|
|
int _score = game.getPoints();
|
2024-05-24 12:38:38 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
@override
|
|
|
|
void updateStones() {
|
|
|
|
setState(() {
|
|
|
|
// _grid aktualisieren
|
|
|
|
for (int row = 0; row < widget.gridSize; row++) {
|
|
|
|
for (int col = 0; col < widget.gridSize; col++) {
|
|
|
|
_grid[row][col] = game.getStone(StoneLocation(row: row, column: col));
|
2024-05-24 12:38:38 +02:00
|
|
|
}
|
|
|
|
}
|
2024-06-16 12:18:59 +02:00
|
|
|
});
|
2024-05-24 12:38:38 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
@override
|
|
|
|
void updateTime() {
|
|
|
|
// TODO: implement updateTime
|
2024-05-24 12:38:38 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 23:56:48 +02:00
|
|
|
Game getGame() {
|
|
|
|
return game;
|
2024-05-08 15:57:00 +02:00
|
|
|
}
|
2024-04-24 16:21:26 +02:00
|
|
|
}
|