bubbletwist/lib/main.dart

161 lines
4.3 KiB
Dart
Raw Normal View History

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';
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});
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(
title: 'Bubble-Twist',
2024-04-24 16:21:26 +02:00
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page', gridSize: 8),
2024-04-24 16:21:26 +02:00
);
}
}
class MyHomePage extends StatefulWidget {
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;
final int gridSize;
2024-04-24 16:21:26 +02:00
@override
State<MyHomePage> createState() => _MyHomePageState();
}
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
void initState() {
super.initState();
game = Game(this);
_grid = List.generate(widget.gridSize,
(index) => List.generate(widget.gridSize, (index) => Stone()));
game.start();
}
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(
title: Text(widget.title),
2024-04-24 16:21:26 +02:00
),
body: Center(
child: Column(
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
'Score: $_score',
style: const TextStyle(fontSize: 24),
),
2024-05-08 16:18:42 +02:00
),
Expanded(
child: GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: widget.gridSize,
),
itemCount: widget.gridSize * widget.gridSize,
itemBuilder: (BuildContext context, int index) {
int row = index ~/ widget.gridSize;
int col = index % widget.gridSize;
StoneLocation location = StoneLocation(row: row, column: col);
return GestureDetector(
onTap: () {
setState(() {
//game.handleTap(row, col);
});
},
child: Container(
margin: const EdgeInsets.all(2),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8),
color: _getColorForStone(game.getStone(location)),
),
),
);
},
),
),
],
2024-04-24 16:21:26 +02:00
),
),
);
}
Color _getColorForStone(Stone? stone) {
// Beispielhafte Farben basierend auf dem Stein.
switch (stone?.getStoneColor()) {
case StoneColors.red:
return Colors.red;
case StoneColors.green:
return Colors.green;
case StoneColors.blue:
return Colors.blue;
case StoneColors.yellow:
return Colors.yellow;
default:
return Colors.grey;
}
}
@override
void gameStopped() {
// TODO: implement gameStopped
}
@override
void updatePoints() {
int _score = game.getPoints();
}
@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));
}
}
});
}
@override
void updateTime() {
// TODO: implement updateTime
}
Game getGame() {
return game;
}
2024-04-24 16:21:26 +02:00
}