Skip to content

Commit

Permalink
Merge pull request #522 from RafaelBarbosatec/develop
Browse files Browse the repository at this point in the history
Version 3.9.3
  • Loading branch information
RafaelBarbosatec authored Jun 2, 2024
2 parents 6efc49d + 9ac1a2c commit 70c93c2
Show file tree
Hide file tree
Showing 10 changed files with 111 additions and 24 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.9.3
- push improvements.
- `Movement` mixin improvements.
- Other otimizations
- Fix intermittent crash after `simpleAttackRanged` is called. [#520](https://github.com/RafaelBarbosatec/bonfire/issues/520). Thanks [tkshnwesper](https://github.com/tkshnwesper)

# 3.9.2
- MiniMap improviments. Fix issue [#517](https://github.com/RafaelBarbosatec/bonfire/issues/517)
- Raname `BouncingObject` to `ElasticCollision`.
Expand Down
21 changes: 16 additions & 5 deletions lib/collision/block_movement_collision.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ mixin BlockMovementCollision on Movement {

@override
void onCollision(Set<Vector2> intersectionPoints, PositionComponent other) {
super.onCollision(intersectionPoints, other);
if (other is Sensor || !_blockMovementCollisionEnabled) return;
if (other is Sensor || !_blockMovementCollisionEnabled) {
super.onCollision(intersectionPoints, other);
return;
}
bool stopOtherMovement = true;
bool stopMovement = other is GameComponent
? onBlockMovement(intersectionPoints, other)
Expand All @@ -89,6 +91,7 @@ mixin BlockMovementCollision on Movement {
}

if (!stopMovement || !stopOtherMovement) {
super.onCollision(intersectionPoints, other);
return;
}

Expand All @@ -98,18 +101,24 @@ mixin BlockMovementCollision on Movement {
_collisionsResolution[other]!,
);
_collisionsResolution.remove(other);
super.onCollision(intersectionPoints, other);
return;
}

ShapeHitbox shape1 = _getCollisionShapeHitbox(
ShapeHitbox? shape1 = _getCollisionShapeHitbox(
shapeHitboxes,
intersectionPoints,
);
ShapeHitbox shape2 = _getCollisionShapeHitbox(
ShapeHitbox? shape2 = _getCollisionShapeHitbox(
other.children.query<ShapeHitbox>(),
intersectionPoints,
);

if (shape1 == null || shape2 == null) {
super.onCollision(intersectionPoints, other);
return;
}

({Vector2 normal, double depth})? colisionResult;

if (_isPolygon(shape1)) {
Expand Down Expand Up @@ -143,6 +152,7 @@ mixin BlockMovementCollision on Movement {
other.setCollisionResolution(this, data.inverted());
}
}
super.onCollision(intersectionPoints, other);
}

bool _isPolygon(ShapeHitbox shape) {
Expand Down Expand Up @@ -273,10 +283,11 @@ mixin BlockMovementCollision on Movement {
return (normal: normal, depth: depth);
}

ShapeHitbox _getCollisionShapeHitbox(
ShapeHitbox? _getCollisionShapeHitbox(
List<ShapeHitbox> shapeHitboxes,
Set<Vector2> intersectionPoints,
) {
if (shapeHitboxes.isEmpty || intersectionPoints.isEmpty) return null;
if (shapeHitboxes.length == 1) {
return shapeHitboxes.first;
}
Expand Down
9 changes: 3 additions & 6 deletions lib/decoration/decoration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,15 @@ class GameDecoration extends AnimatedGameObject {
Vector2? offset,
VoidCallback? onFinish,
VoidCallback? onStart,
bool loop = false,
}) {
final spriteBackup = sprite;
return super.playSpriteAnimationOnce(
animation,
size: size,
offset: offset,
onFinish: () {
sprite = spriteBackup;
onFinish?.call();
},
loop: loop,
onFinish: onFinish,
onStart: () {
sprite = null;
onStart?.call();
},
);
Expand Down
7 changes: 6 additions & 1 deletion lib/mixins/direction_animation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,15 @@ mixin DirectionAnimation on Movement {
@override
Future<void> onLoad() async {
await animation?.onLoad(gameRef);
idle();
return super.onLoad();
}

@override
void onMount() {
super.onMount();
idle();
}

Future<void> replaceAnimation(
SimpleDirectionAnimation newAnimation, {
bool doIdle = false,
Expand Down
9 changes: 7 additions & 2 deletions lib/mixins/movement.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'package:bonfire/bonfire.dart';
mixin Movement on GameComponent {
static const diaginalReduction = 0.7853981633974483;
static const speedDefault = 80.0;

double minDisplacementToConsiderMove = 0.1;
double dtUpdate = 0;
double speed = speedDefault;
double _lastSpeed = speedDefault;
Expand Down Expand Up @@ -338,14 +338,19 @@ mixin Movement on GameComponent {

void _updatePosition(double dt) {
onApplyDisplacement(dt);
if (!displacement.isZero()) {
if (_moveTheMin()) {
if (lastDirection.isDownSide || lastDirection.isUpSide) {
_requestUpdatePriority();
}
onMove(_lastSpeed, displacement, lastDirection, velocityRadAngle);
}
}

bool _moveTheMin() {
return displacement.x.abs() > minDisplacementToConsiderMove ||
displacement.y.abs() > minDisplacementToConsiderMove;
}

bool isStopped() {
return velocity.x.abs() < 0.01 && velocity.y.abs() < 0.01;
}
Expand Down
8 changes: 6 additions & 2 deletions lib/mixins/use_sprite_animation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,24 +99,28 @@ mixin UseSpriteAnimation on GameComponent {
}

/// Method used to play animation once time
Future playSpriteAnimationOnce(
Future<void> playSpriteAnimationOnce(
FutureOr<SpriteAnimation> animation, {
Vector2? size,
Vector2? offset,
VoidCallback? onFinish,
VoidCallback? onStart,
bool loop = false,
}) async {
final completer = Completer();
_fastAnimation = SpriteAnimationRender(
position: offset,
size: size ?? this.size,
animation: await animation,
loop: false,
loop: loop,
onFinish: () {
_fastAnimation = null;
onFinish?.call();
completer.complete();
},
onStart: onStart,
);
return completer.future;
}

void pauseAnimation() {
Expand Down
35 changes: 35 additions & 0 deletions lib/util/direction_animations/platform_animations.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// ignore_for_file: public_member_api_docs, sort_constructors_first
import 'dart:async';

import 'package:bonfire/bonfire.dart';
Expand All @@ -14,6 +15,20 @@ class PlatformJumpAnimations {
this.jumpUpLeft,
this.jumpDownLeft,
});

PlatformJumpAnimations copyWith({
FutureOr<SpriteAnimation>? jumpUpRight,
FutureOr<SpriteAnimation>? jumpUpLeft,
FutureOr<SpriteAnimation>? jumpDownRight,
FutureOr<SpriteAnimation>? jumpDownLeft,
}) {
return PlatformJumpAnimations(
jumpUpRight: jumpUpRight ?? this.jumpUpRight,
jumpUpLeft: jumpUpLeft ?? this.jumpUpLeft,
jumpDownRight: jumpDownRight ?? this.jumpDownRight,
jumpDownLeft: jumpDownLeft ?? this.jumpDownLeft,
);
}
}

class PlatformAnimations {
Expand All @@ -34,4 +49,24 @@ class PlatformAnimations {
this.others,
this.centerAnchor,
});

PlatformAnimations copyWith({
FutureOr<SpriteAnimation>? idleRight,
FutureOr<SpriteAnimation>? runRight,
FutureOr<SpriteAnimation>? idleLeft,
FutureOr<SpriteAnimation>? runLeft,
PlatformJumpAnimations? jump,
Map<String, FutureOr<SpriteAnimation>>? others,
Vector2? centerAnchor,
}) {
return PlatformAnimations(
idleRight: idleRight ?? this.idleRight,
runRight: runRight ?? this.runRight,
idleLeft: idleLeft ?? this.idleLeft,
runLeft: runLeft ?? this.runLeft,
jump: jump ?? this.jump,
others: others ?? this.others,
centerAnchor: centerAnchor ?? this.centerAnchor,
);
}
}
11 changes: 9 additions & 2 deletions lib/util/direction_animations/simple_direction_animation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class SimpleDirectionAnimation {
bool containOther(dynamic key) => others.containsKey(key);

/// Method used to play animation once time
Future playOnce(
Future<void> playOnce(
FutureOr<SpriteAnimation> animation, {
VoidCallback? onFinish,
VoidCallback? onStart,
Expand All @@ -391,6 +391,7 @@ class SimpleDirectionAnimation {
Vector2? size,
Vector2? offset,
}) async {
final completer = Completer();
_fastAnimation?.onFinish?.call();
runToTheEndFastAnimation = runToTheEnd;
if (useCompFlip) {
Expand All @@ -408,13 +409,15 @@ class SimpleDirectionAnimation {
onFinish: () {
onFinish?.call();
_fastAnimation = null;
completer.complete();
},
);
onStart?.call();
return completer.future;
}

/// Method used to play animation once time
Future playOnceOther(
Future<void> playOnceOther(
dynamic key, {
VoidCallback? onFinish,
VoidCallback? onStart,
Expand All @@ -428,6 +431,7 @@ class SimpleDirectionAnimation {
if (others.containsKey(key) != true) {
return Future.value();
}
final completer = Completer();
_fastAnimation?.onFinish?.call();
runToTheEndFastAnimation = runToTheEnd;
if (useCompFlip) {
Expand All @@ -446,9 +450,12 @@ class SimpleDirectionAnimation {
onFinish: () {
onFinish?.call();
_fastAnimation = null;
completer.complete();
},
);
onStart?.call();

return completer.future;
}

/// Method used to register new animation in others
Expand Down
27 changes: 22 additions & 5 deletions lib/util/extensions/game_component_extensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ extension GameComponentExtensions on GameComponent {
double? sizePush,
double? marginFromCenter,
Vector2? centerOffset,
void Function(Attackable attackable)? onDamage,
}) {
final rect = rectCollision;

simpleAttackMeleeByAngle(
angle: direction.toRadians(),
animation: animationRight,
Expand All @@ -152,6 +152,7 @@ extension GameComponentExtensions on GameComponent {
marginFromCenter: marginFromCenter ?? max(rect.width, rect.height) / 2,
id: id,
withPush: withPush,
onDamage: onDamage,
);
}

Expand All @@ -170,6 +171,7 @@ extension GameComponentExtensions on GameComponent {
bool withPush = true,
double marginFromCenter = 0,
Vector2? centerOffset,
void Function(Attackable attackable)? onDamage,
}) {
var initPosition = rectCollision;

Expand Down Expand Up @@ -214,11 +216,13 @@ extension GameComponentExtensions on GameComponent {
angle: angle,
id: id,
onDamage: (attackable) {
onDamage?.call(attackable);
if (withPush && attackable is Movement) {
if ((attackable as Movement).canMove(diffBase.toDirection(),
displacement: diffBase.maxValue())) {
(attackable as Movement).translate(diffBase);
}
_doPush(
attackable as Movement,
BonfireUtil.getDirectionFromAngle(angle),
diffBase,
);
}
},
),
Expand Down Expand Up @@ -398,4 +402,17 @@ extension GameComponentExtensions on GameComponent {
key: key,
);
}

void _doPush(
Movement comp,
Direction directionFromAngle,
Vector2 displacement,
) {
if (comp.canMove(
directionFromAngle,
displacement: displacement.maxValue(),
)) {
comp.translate(displacement);
}
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: bonfire
description: (RPG maker) Create RPG-style or similar games more simply with Flame.
version: 3.9.2
version: 3.9.3
homepage: https://bonfire-engine.github.io
repository: https://github.com/RafaelBarbosatec/bonfire
issue_tracker: https://github.com/RafaelBarbosatec/bonfire/issues
Expand Down

0 comments on commit 70c93c2

Please sign in to comment.