mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 20:13:50 +08:00
71 lines
1.7 KiB
Dart
71 lines
1.7 KiB
Dart
import 'dart:math';
|
|
import 'dart:ui';
|
|
|
|
import 'package:flutter/painting.dart';
|
|
|
|
import 'flame.dart';
|
|
|
|
abstract class Component {
|
|
void update(double t);
|
|
|
|
void render(Canvas c);
|
|
}
|
|
|
|
abstract class PositionComponent extends Component {
|
|
double x = 0.0,
|
|
y = 0.0,
|
|
angle = 0.0;
|
|
|
|
double angleBetween(PositionComponent c) {
|
|
return (atan2(c.x - this.x, this.y - c.y) - PI / 2) % (2 * PI);
|
|
}
|
|
|
|
double distance(PositionComponent c) {
|
|
return sqrt(pow(this.y - c.y, 2) + pow(this.x - c.x, 2));
|
|
}
|
|
}
|
|
|
|
abstract class SpriteComponent extends PositionComponent {
|
|
double width, height;
|
|
Image image;
|
|
|
|
final Paint paint = new Paint()
|
|
..color = new Color(0xffffffff);
|
|
|
|
SpriteComponent.square(double size, String imagePath)
|
|
: this.rectangle(size, size, imagePath);
|
|
|
|
SpriteComponent.rectangle(this.width, this.height, String imagePath) {
|
|
Flame.images.load(imagePath).then((image) {
|
|
this.image = image;
|
|
});
|
|
}
|
|
|
|
render(Canvas canvas) {
|
|
if (image != null) {
|
|
_prepareCanvas(canvas);
|
|
_drawImage(canvas);
|
|
}
|
|
}
|
|
|
|
void _prepareCanvas(Canvas canvas) {
|
|
canvas.translate(x, y);
|
|
canvas.rotate(angle); // TODO: rotate around center
|
|
}
|
|
|
|
void _drawImage(Canvas canvas) {
|
|
final Rect outputRect = new Rect.fromLTWH(0.0, 0.0, width, height);
|
|
final Size imageSize =
|
|
new Size(image.width.toDouble(), image.height.toDouble());
|
|
final FittedSizes sizes =
|
|
applyBoxFit(BoxFit.cover, imageSize, outputRect.size);
|
|
final Rect inputSubrect =
|
|
Alignment.center.inscribe(sizes.source, Offset.zero & imageSize);
|
|
final Rect outputSubrect =
|
|
Alignment.center.inscribe(sizes.destination, outputRect);
|
|
canvas.drawImageRect(image, inputSubrect, outputSubrect, paint);
|
|
}
|
|
|
|
update(double t) {}
|
|
}
|