2024-05-08 15:57:00 +02:00
|
|
|
import 'dart:math';
|
2024-05-24 12:38:38 +02:00
|
|
|
|
2024-04-24 16:21:26 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
2024-05-08 16:24:32 +02:00
|
|
|
|
2024-05-08 16:05:52 +02:00
|
|
|
final int gridSize = 12;
|
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-05-08 16:05:52 +02:00
|
|
|
home: const MyHomePage(title: 'Flutter Demo Home Page', gridSize: 12),
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MyHomePageState extends State<MyHomePage> {
|
2024-05-08 16:05:52 +02:00
|
|
|
late List<List<int>> _grid;
|
2024-05-08 16:23:04 +02:00
|
|
|
int _selectedRow = -1;
|
|
|
|
int _selectedCol = -1;
|
2024-06-16 12:18:59 +02:00
|
|
|
int _score = 0;
|
|
|
|
|
2024-04-24 16:21:26 +02:00
|
|
|
|
|
|
|
@override
|
2024-05-08 16:05:52 +02:00
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
_initializeGrid();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _initializeGrid() {
|
2024-05-08 16:24:32 +02:00
|
|
|
_grid = List.generate(widget.gridSize,
|
|
|
|
(_) => List.generate(widget.gridSize, (_) => Random().nextInt(5)));
|
2024-05-24 12:38:38 +02:00
|
|
|
_removeInitialMatches();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _removeInitialMatches() {
|
|
|
|
bool hasMatches;
|
|
|
|
do {
|
|
|
|
hasMatches = _removeMatches();
|
|
|
|
_applyGravity();
|
|
|
|
} while (hasMatches);
|
2024-06-16 12:18:59 +02:00
|
|
|
_score = 0;
|
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 12:18:59 +02:00
|
|
|
title: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
const Text('Candy Crush'),
|
|
|
|
],
|
|
|
|
),
|
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',
|
|
|
|
style: TextStyle(fontSize: 24),
|
|
|
|
),
|
2024-05-08 16:18:42 +02:00
|
|
|
),
|
2024-06-16 12:18:59 +02:00
|
|
|
Expanded(
|
|
|
|
child: GridView.builder(
|
|
|
|
shrinkWrap: true,
|
|
|
|
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;
|
|
|
|
return GestureDetector(
|
|
|
|
onTap: () => _onTileTap(row, col),
|
|
|
|
child: Container(
|
|
|
|
margin: const EdgeInsets.all(2),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: _getColor(_grid[row][col]),
|
|
|
|
borderRadius: BorderRadius.circular(8),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2024-04-24 16:21:26 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2024-05-08 15:57:00 +02:00
|
|
|
|
2024-06-16 12:18:59 +02:00
|
|
|
|
2024-05-08 15:57:00 +02:00
|
|
|
Color _getColor(int value) {
|
|
|
|
switch (value) {
|
|
|
|
case 0:
|
|
|
|
return Colors.red;
|
|
|
|
case 1:
|
|
|
|
return Colors.blue;
|
|
|
|
case 2:
|
|
|
|
return Colors.green;
|
|
|
|
case 3:
|
|
|
|
return Colors.yellow;
|
|
|
|
case 4:
|
|
|
|
return Colors.orange;
|
|
|
|
default:
|
|
|
|
return Colors.white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onTileTap(int row, int col) {
|
2024-05-08 16:24:32 +02:00
|
|
|
setState(() {
|
|
|
|
if (_selectedRow == -1 && _selectedCol == -1) {
|
|
|
|
_selectedRow = row;
|
|
|
|
_selectedCol = col;
|
|
|
|
} else {
|
|
|
|
if (_isValidMove(_selectedRow, _selectedCol, row, col)) {
|
2024-05-08 16:23:04 +02:00
|
|
|
_swapTiles(_selectedRow, _selectedCol, row, col);
|
2024-05-24 12:38:38 +02:00
|
|
|
while (_removeMatches()) {
|
|
|
|
_applyGravity();
|
|
|
|
}
|
2024-05-08 16:23:04 +02:00
|
|
|
}
|
2024-05-08 16:24:32 +02:00
|
|
|
_selectedRow = -1;
|
|
|
|
_selectedCol = -1;
|
|
|
|
}
|
|
|
|
});
|
2024-05-08 16:23:04 +02:00
|
|
|
}
|
2024-05-08 16:24:32 +02:00
|
|
|
|
|
|
|
bool _isValidMove(int row1, int col1, int row2, int col2) {
|
|
|
|
if ((row1 == row2 && (col1 - col2).abs() == 1) ||
|
|
|
|
(col1 == col2 && (row1 - row2).abs() == 1)) {
|
2024-05-24 12:38:38 +02:00
|
|
|
int temp = _grid[row1][col1];
|
|
|
|
_grid[row1][col1] = _grid[row2][col2];
|
|
|
|
_grid[row2][col2] = temp;
|
|
|
|
|
|
|
|
bool isValid = _findMatches(row1, col1).isNotEmpty ||
|
|
|
|
_findMatches(row2, col2).isNotEmpty;
|
|
|
|
|
|
|
|
_grid[row2][col2] = _grid[row1][col1];
|
|
|
|
_grid[row1][col1] = temp;
|
|
|
|
|
|
|
|
return isValid;
|
2024-05-08 16:24:32 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-05-24 12:38:38 +02:00
|
|
|
List<List<int>> _findMatches(int row, int col) {
|
|
|
|
int color = _grid[row][col];
|
|
|
|
List<List<int>> matches = [];
|
|
|
|
|
|
|
|
// Check horizontally
|
|
|
|
List<int> horizontalMatch = [];
|
|
|
|
for (int c = col; c >= 0 && _grid[row][c] == color; c--) {
|
|
|
|
horizontalMatch.add(c);
|
|
|
|
}
|
|
|
|
for (int c = col + 1; c < widget.gridSize && _grid[row][c] == color; c++) {
|
|
|
|
horizontalMatch.add(c);
|
|
|
|
}
|
|
|
|
if (horizontalMatch.length >= 3) {
|
|
|
|
for (int c in horizontalMatch) {
|
|
|
|
matches.add([row, c]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check vertically
|
|
|
|
List<int> verticalMatch = [];
|
|
|
|
for (int r = row; r >= 0 && _grid[r][col] == color; r--) {
|
|
|
|
verticalMatch.add(r);
|
|
|
|
}
|
|
|
|
for (int r = row + 1; r < widget.gridSize && _grid[r][col] == color; r++) {
|
|
|
|
verticalMatch.add(r);
|
|
|
|
}
|
|
|
|
if (verticalMatch.length >= 3) {
|
|
|
|
for (int r in verticalMatch) {
|
|
|
|
matches.add([r, col]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool _removeMatches() {
|
|
|
|
List<List<int>> allMatches = [];
|
2024-06-16 12:18:59 +02:00
|
|
|
int scoreIncrement = 0;
|
2024-05-24 12:38:38 +02:00
|
|
|
|
|
|
|
for (int row = 0; row < widget.gridSize; row++) {
|
|
|
|
for (int col = 0; col < widget.gridSize; col++) {
|
|
|
|
List<List<int>> matches = _findMatches(row, col);
|
|
|
|
if (matches.isNotEmpty) {
|
|
|
|
allMatches.addAll(matches);
|
2024-06-16 12:18:59 +02:00
|
|
|
scoreIncrement++; // Increment score based on number of matches
|
2024-05-24 12:38:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var match in allMatches) {
|
|
|
|
_grid[match[0]][match[1]] = -1; // Mark the tile as removed
|
|
|
|
}
|
|
|
|
|
2024-06-16 12:18:59 +02:00
|
|
|
setState(() {
|
|
|
|
_score += scoreIncrement;
|
|
|
|
});
|
|
|
|
|
2024-05-24 12:38:38 +02:00
|
|
|
return allMatches.isNotEmpty;
|
|
|
|
}
|
|
|
|
|
2024-06-16 12:18:59 +02:00
|
|
|
|
2024-05-24 12:38:38 +02:00
|
|
|
void _applyGravity() {
|
|
|
|
for (int col = 0; col < widget.gridSize; col++) {
|
|
|
|
int emptyRow = widget.gridSize - 1;
|
|
|
|
for (int row = widget.gridSize - 1; row >= 0; row--) {
|
|
|
|
if (_grid[row][col] != -1) {
|
|
|
|
_grid[emptyRow][col] = _grid[row][col];
|
|
|
|
if (emptyRow != row) {
|
|
|
|
_grid[row][col] = -1;
|
|
|
|
}
|
|
|
|
emptyRow--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int row = emptyRow; row >= 0; row--) {
|
|
|
|
_grid[row][col] = Random().nextInt(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-08 16:23:04 +02:00
|
|
|
void _swapTiles(int row1, int col1, int row2, int col2) {
|
|
|
|
int temp = _grid[row1][col1];
|
|
|
|
_grid[row1][col1] = _grid[row2][col2];
|
|
|
|
_grid[row2][col2] = temp;
|
2024-05-08 15:57:00 +02:00
|
|
|
}
|
2024-04-24 16:21:26 +02:00
|
|
|
}
|