mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
// ignore_for_file: public_member_api_docs
|
|
|
|
import 'package:bloc/bloc.dart';
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
part 'game_event.dart';
|
|
part 'game_state.dart';
|
|
|
|
class GameBloc extends Bloc<GameEvent, GameState> {
|
|
GameBloc() : super(const GameState.initial()) {
|
|
on<BallLost>(_onBallLost);
|
|
on<Scored>(_onScored);
|
|
on<BonusLetterActivated>(_onBonusLetterActivated);
|
|
}
|
|
|
|
static const bonusWord = 'GOOGLE';
|
|
static const bonusWordScore = 10000;
|
|
|
|
void _onBallLost(BallLost event, Emitter emit) {
|
|
if (state.balls > 0) {
|
|
emit(state.copyWith(balls: state.balls - 1));
|
|
}
|
|
}
|
|
|
|
void _onScored(Scored event, Emitter emit) {
|
|
if (!state.isGameOver) {
|
|
emit(state.copyWith(score: state.score + event.points));
|
|
}
|
|
}
|
|
|
|
void _onBonusLetterActivated(BonusLetterActivated event, Emitter emit) {
|
|
final newBonusLetters = [
|
|
...state.activatedBonusLetters,
|
|
event.letterIndex,
|
|
];
|
|
|
|
if (newBonusLetters.length == bonusWord.length) {
|
|
emit(
|
|
state.copyWith(
|
|
activatedBonusLetters: [],
|
|
bonusHistory: [
|
|
...state.bonusHistory,
|
|
GameBonus.word,
|
|
],
|
|
),
|
|
);
|
|
add(const Scored(points: bonusWordScore));
|
|
} else {
|
|
emit(
|
|
state.copyWith(activatedBonusLetters: newBonusLetters),
|
|
);
|
|
}
|
|
}
|
|
}
|