forked from marco/firo_runner
76 lines
1.6 KiB
Dart
76 lines
1.6 KiB
Dart
import 'package:firo_runner/main.dart';
|
|
import 'package:flame/components.dart';
|
|
|
|
class GameState extends Component {
|
|
int start = 0;
|
|
bool isPaused = false;
|
|
int numCoins = 0;
|
|
int distance = 0;
|
|
late MyGame gameRef;
|
|
|
|
@override
|
|
void update(double dt) {
|
|
super.update(dt);
|
|
if (!isPaused) {
|
|
distance = DateTime.now().microsecondsSinceEpoch - start;
|
|
}
|
|
}
|
|
|
|
void addCoin() {
|
|
numCoins++;
|
|
}
|
|
|
|
void setUp(MyGame gameRef) {
|
|
this.gameRef = gameRef;
|
|
numCoins = 0;
|
|
distance = 0;
|
|
start = DateTime.now().microsecondsSinceEpoch;
|
|
isPaused = false;
|
|
}
|
|
|
|
void setPaused() {
|
|
isPaused = true;
|
|
}
|
|
|
|
int getLevel() {
|
|
if (distance > LEVEL7) {
|
|
return 7;
|
|
} else if (distance > LEVEL6) {
|
|
return 6;
|
|
} else if (distance > LEVEL5) {
|
|
return 5;
|
|
} else if (distance > LEVEL4) {
|
|
return 4;
|
|
} else if (distance > LEVEL3) {
|
|
return 3;
|
|
} else if (distance > LEVEL2) {
|
|
return 2;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
double getVelocity() {
|
|
if (!isPaused) {
|
|
switch (getLevel()) {
|
|
case 7:
|
|
return gameRef.viewport.canvasSize.x * 0.25;
|
|
case 6:
|
|
return gameRef.viewport.canvasSize.x * 0.20;
|
|
case 5:
|
|
return gameRef.viewport.canvasSize.x * 0.18;
|
|
case 4:
|
|
return gameRef.viewport.canvasSize.x * 0.16;
|
|
case 3:
|
|
return gameRef.viewport.canvasSize.x * 0.14;
|
|
case 2:
|
|
return gameRef.viewport.canvasSize.x * 0.12;
|
|
default:
|
|
return gameRef.viewport.canvasSize.x * 0.1;
|
|
}
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
}
|