mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 03:15:43 +08:00
* Added Component.childrenFactory * fix some of the lint warnings * more lint warnings * remove changelog entry * more analyzer warnings * one more warning * one more warning * remove more unused imports * fix more warnings * another warning * one more warning * a lot more warnings * some more warnings * fix warnings in flame_svg * fix warnings in flame_bloc * Remove OrderedSet override feature * Remove testRandom change * Remove unnecessary type checks * Re-remove deprecated argument in random_test Co-authored-by: Pasha Stetsenko <stpasha@google.com>
118 lines
2.9 KiB
Dart
118 lines
2.9 KiB
Dart
import 'dart:math' as math;
|
|
|
|
import 'package:flame/input.dart';
|
|
import 'package:flame_forge2d/body_component.dart';
|
|
import 'package:flame_forge2d/forge2d_game.dart';
|
|
import 'package:forge2d/forge2d.dart';
|
|
|
|
import 'boundaries.dart';
|
|
|
|
class Ground extends BodyComponent {
|
|
final Vector2 worldCenter;
|
|
|
|
Ground(this.worldCenter);
|
|
|
|
@override
|
|
Body createBody() {
|
|
final shape = PolygonShape();
|
|
shape.setAsBoxXY(20.0, 0.4);
|
|
|
|
final bodyDef = BodyDef();
|
|
bodyDef.position.setFrom(worldCenter);
|
|
final ground = world.createBody(bodyDef);
|
|
ground.createFixtureFromShape(shape);
|
|
|
|
shape.setAsBox(0.4, 20.0, Vector2(-10.0, 0.0), 0.0);
|
|
ground.createFixtureFromShape(shape);
|
|
shape.setAsBox(0.4, 20.0, Vector2(10.0, 0.0), 0.0);
|
|
ground.createFixtureFromShape(shape);
|
|
return ground;
|
|
}
|
|
}
|
|
|
|
class BlobPart extends BodyComponent {
|
|
final ConstantVolumeJointDef jointDef;
|
|
final int bodyNumber;
|
|
final Vector2 blobRadius;
|
|
final Vector2 blobCenter;
|
|
|
|
BlobPart(
|
|
this.bodyNumber,
|
|
this.jointDef,
|
|
this.blobRadius,
|
|
this.blobCenter,
|
|
);
|
|
|
|
@override
|
|
Body createBody() {
|
|
const nBodies = 20.0;
|
|
const bodyRadius = 0.5;
|
|
final angle = (bodyNumber / nBodies) * math.pi * 2;
|
|
final x = blobCenter.x + blobRadius.x * math.sin(angle);
|
|
final y = blobCenter.y + blobRadius.y * math.cos(angle);
|
|
|
|
final bodyDef = BodyDef()
|
|
..fixedRotation = true
|
|
..position.setValues(x, y)
|
|
..type = BodyType.dynamic;
|
|
final body = world.createBody(bodyDef);
|
|
|
|
final shape = CircleShape()..radius = bodyRadius;
|
|
final fixtureDef = FixtureDef(shape)
|
|
..density = 1.0
|
|
..filter.groupIndex = -2;
|
|
body.createFixture(fixtureDef);
|
|
jointDef.addBody(body);
|
|
return body;
|
|
}
|
|
}
|
|
|
|
class FallingBox extends BodyComponent {
|
|
final Vector2 position;
|
|
|
|
FallingBox(this.position);
|
|
|
|
@override
|
|
Body createBody() {
|
|
final bodyDef = BodyDef()
|
|
..type = BodyType.dynamic
|
|
..position = position;
|
|
final shape = PolygonShape()..setAsBoxXY(2, 4);
|
|
final body = world.createBody(bodyDef);
|
|
body.createFixtureFromShape(shape, 1.0);
|
|
return body;
|
|
}
|
|
}
|
|
|
|
class BlobSample extends Forge2DGame with TapDetector {
|
|
BlobSample() : super(gravity: Vector2(0, -10.0));
|
|
|
|
@override
|
|
Future<void> onLoad() async {
|
|
await super.onLoad();
|
|
final worldCenter = screenToWorld(size * camera.zoom / 2);
|
|
final blobCenter = worldCenter + Vector2(0, 30);
|
|
final blobRadius = Vector2.all(6.0);
|
|
addAll(createBoundaries(this));
|
|
add(Ground(worldCenter));
|
|
final jointDef = ConstantVolumeJointDef()
|
|
..frequencyHz = 20.0
|
|
..dampingRatio = 1.0
|
|
..collideConnected = false;
|
|
|
|
await Future.wait(
|
|
List.generate(
|
|
20,
|
|
(i) => add(BlobPart(i, jointDef, blobRadius, blobCenter)),
|
|
),
|
|
);
|
|
world.createJoint(jointDef);
|
|
}
|
|
|
|
@override
|
|
void onTapDown(TapDownInfo details) {
|
|
super.onTapDown(details);
|
|
add(FallingBox(details.eventPosition.game));
|
|
}
|
|
}
|