Compare commits

..

No commits in common. "43ffd7d87a8040392c75295b7aff26fe72b8bef0" and "545207965f06f5fda431ffd71432f3c7bfa7545b" have entirely different histories.

4 changed files with 63 additions and 87 deletions

View File

@ -89,7 +89,7 @@ export class LinearAnimationSegment extends AnimationSegment {
export interface AnimationTransitionFlags { export interface AnimationTransitionFlags {
rotation?: boolean; rotation?: boolean;
hands?: boolean; hands?: boolean;
handsDuring?: "Actual" | "None" | "Start" | "End" | Map<Hand, Offset>; handsDuring?: "Actual" | "None" | "Start" | "End";
} }
export class TransitionAnimationSegment extends AnimationSegment { export class TransitionAnimationSegment extends AnimationSegment {
private readonly actualAnimation: AnimationSegment; private readonly actualAnimation: AnimationSegment;
@ -122,33 +122,32 @@ export class TransitionAnimationSegment extends AnimationSegment {
const transitionEnd = this.actualAnimation.interpolateRotation(1 - this.endTransitionProgress); const transitionEnd = this.actualAnimation.interpolateRotation(1 - this.endTransitionProgress);
if (actualEnd > actualStart) { if (actualEnd > actualStart) {
while (transitionStart <= this.startRotation - 180) { while (transitionStart < this.startRotation) {
this.startRotation -= 360; this.startRotation -= 360;
} }
while (transitionEnd >= this.endRotation + 180) { while (transitionEnd > this.endRotation) {
this.endRotation += 360; this.endRotation += 360;
} }
} else if (actualEnd < actualStart) { } else if (actualEnd < actualStart) {
while (transitionStart >= this.startRotation + 180) { while (transitionStart > this.startRotation) {
this.startRotation += 360; this.startRotation += 360;
} }
while (transitionEnd <= this.endRotation - 180) { while (transitionEnd < this.endRotation) {
this.endRotation -= 360; this.endRotation -= 360;
} }
} } else {
while (transitionStart - this.startRotation < 180) {
// Transitions should be short adjustments, not spins. this.startRotation -= 360;
while (transitionStart - this.startRotation < -180) { }
this.startRotation -= 360; while (transitionStart - this.startRotation > 180) {
} this.startRotation += 360;
while (transitionStart - this.startRotation > 180) { }
this.startRotation += 360; while (transitionEnd - this.endRotation < 180) {
} this.endRotation -= 360;
while (transitionEnd - this.endRotation < -180) { }
this.endRotation -= 360; while (transitionEnd - this.endRotation > 180) {
} this.endRotation += 360;
while (transitionEnd - this.endRotation > 180) { }
this.endRotation += 360;
} }
} }
} }
@ -186,8 +185,6 @@ export class TransitionAnimationSegment extends AnimationSegment {
? startHand ? startHand
: this.flags.handsDuring === "End" : this.flags.handsDuring === "End"
? endHand ? endHand
: this.flags.handsDuring instanceof Map
? this.flags.handsDuring.get(hand)
: (() => { throw "Unexpected handsDuring: " + this.flags.handsDuring; })(); : (() => { throw "Unexpected handsDuring: " + this.flags.handsDuring; })();
if (this.flags.hands) { if (this.flags.hands) {
@ -241,9 +238,8 @@ export class RotationAnimationSegment extends AnimationSegment {
private readonly startFacing: Rotation; private readonly startFacing: Rotation;
private readonly closer?: Closer; private readonly closer?: Closer;
private readonly hands: Map<Hand, HandAnimation>; private readonly hands: Map<Hand, HandAnimation>;
private readonly centerRelativeTo: number;
constructor({ beats, startPosition, endPosition, rotation, around, facing, closer, hands, centerRelativeTo }: { constructor({ beats, startPosition, endPosition, rotation, around, facing, closer, hands }: {
beats: number; beats: number;
startPosition: DancerSetPosition; startPosition: DancerSetPosition;
endPosition: DancerSetPosition; endPosition: DancerSetPosition;
@ -252,7 +248,6 @@ export class RotationAnimationSegment extends AnimationSegment {
facing: RotationAnimationFacing; facing: RotationAnimationFacing;
closer?: CloserDuringRotation; closer?: CloserDuringRotation;
hands?: Map<Hand, HandAnimation>; hands?: Map<Hand, HandAnimation>;
centerRelativeTo?: number;
}) { }) {
super(beats, startPosition, endPosition); super(beats, startPosition, endPosition);
@ -273,7 +268,6 @@ export class RotationAnimationSegment extends AnimationSegment {
} }
this.startRotation = positionToDegrees(startPosition.position); this.startRotation = positionToDegrees(startPosition.position);
this.startFacing = startPosition.rotation; this.startFacing = startPosition.rotation;
this.centerRelativeTo = centerRelativeTo ?? this.startFacing;
const actualRotation = normalizeRotation(positionToDegrees(endPosition.position) - this.startRotation, const actualRotation = normalizeRotation(positionToDegrees(endPosition.position) - this.startRotation,
rotation); rotation);
this.endRotation = this.startRotation + actualRotation; this.endRotation = this.startRotation + actualRotation;
@ -317,13 +311,14 @@ export class RotationAnimationSegment extends AnimationSegment {
return super.interpolateRotation(progress); return super.interpolateRotation(progress);
} else { } else {
const degrees = interpolateLinear(progress, this.startRotation, this.endRotation); const degrees = interpolateLinear(progress, this.startRotation, this.endRotation);
let rotation : number;
switch (this.facing) { switch (this.facing) {
case RotationAnimationFacing.Start: case RotationAnimationFacing.Start:
return this.startFacing; return this.startFacing;
case RotationAnimationFacing.Center: case RotationAnimationFacing.Center:
return degrees - 90; return degrees - 90;
case RotationAnimationFacing.CenterRelative: case RotationAnimationFacing.CenterRelative:
return degrees - this.startRotation + this.centerRelativeTo; return degrees - this.startRotation + this.startFacing;
case RotationAnimationFacing.Forward: case RotationAnimationFacing.Forward:
return degrees + 180; return degrees + 180;
case RotationAnimationFacing.Backward: case RotationAnimationFacing.Backward:

View File

@ -697,7 +697,7 @@ function moveAsLowLevelMoves({ move, nextMove, startingPos, numProgessions }: {
return combine([ return combine([
prevEnd => ({ prevEnd => ({
beats: meltdownBeats, beats: meltdownBeats,
endPosition: {...prevEnd, dancerDistance: DancerDistance.Compact }, endPosition: prevEnd,
movementPattern: { movementPattern: {
kind: SemanticAnimationKind.RotateAround, kind: SemanticAnimationKind.RotateAround,
minAmount: 360, minAmount: 360,

View File

@ -324,5 +324,5 @@ export type SemanticPosition = {
facing: Facing, facing: Facing,
hands?: Map<Hand, HandConnection>, hands?: Map<Hand, HandConnection>,
balance?: BalanceWeight, balance?: BalanceWeight,
dancerDistance?: DancerDistance, dancerDistance?: DancerDistance.Normal | DancerDistance.SwingLark | DancerDistance.SwingRobin,
}; };

View File

@ -170,30 +170,6 @@ function CenterOf(sideOrCenter: CircleSideOrCenter, setOffset?: number, lineOffs
return { x: setCenter.x + xOffset, y: setCenter.y + yOffset }; return { x: setCenter.x + xOffset, y: setCenter.y + yOffset };
} }
function swingHandPosition(role: DancerDistance.SwingLark | DancerDistance.SwingRobin, hand: Hand): Offset {
if (role === DancerDistance.SwingLark) {
if (hand === Hand.Left) {
return { x: 0, y: Math.sqrt(1 / 2) };
}
else {
return { x: 0.8, y: 0.5 };
}
} else /* role === DancerDistance.SwingRobin */ {
if (hand === Hand.Left) {
return { x: -0.8, y: 0.5 };
}
else {
return { x: 0, y: Math.sqrt(1 / 2) };
};
}
}
function swingHandPositions(role: DancerDistance.SwingLark | DancerDistance.SwingRobin): Map<Hand, Offset> {
return new Map<Hand, Offset>([
[Hand.Left, swingHandPosition(role, Hand.Left)],
[Hand.Right, swingHandPosition(role, Hand.Right)],
]);
}
function SemanticToSetPosition(semantic: SemanticPosition): DancerSetPosition { function SemanticToSetPosition(semantic: SemanticPosition): DancerSetPosition {
let rotation: number; let rotation: number;
@ -235,6 +211,8 @@ function SemanticToSetPosition(semantic: SemanticPosition): DancerSetPosition {
yAmount = 1; yAmount = 1;
break; break;
case DancerDistance.Compact: case DancerDistance.Compact:
yAmount = 0.75;
break;
case DancerDistance.SwingLark: case DancerDistance.SwingLark:
case DancerDistance.SwingRobin: case DancerDistance.SwingRobin:
yAmount = 0.5; yAmount = 0.5;
@ -308,8 +286,8 @@ function SemanticToSetPosition(semantic: SemanticPosition): DancerSetPosition {
position = OffsetPlus(position, balanceOffset, setOffset); position = OffsetPlus(position, balanceOffset, setOffset);
const isFacingUpOrDown = semantic.facing === Facing.Up || semantic.facing === Facing.Down; const isFacingUpOrDown = semantic.facing === Facing.Up || semantic.facing === Facing.Down;
if (semantic.dancerDistance === DancerDistance.SwingLark || semantic.dancerDistance == DancerDistance.SwingRobin) { if (semantic.dancerDistance === DancerDistance.SwingLark) {
if (isFacingUpOrDown == (semantic.dancerDistance === DancerDistance.SwingLark)) { if (isFacingUpOrDown) {
rotation -= 45; rotation -= 45;
} else { } else {
rotation += 45; rotation += 45;
@ -318,8 +296,21 @@ function SemanticToSetPosition(semantic: SemanticPosition): DancerSetPosition {
return { return {
position, position,
rotation, rotation,
leftArmEnd: swingHandPosition(semantic.dancerDistance, Hand.Left), leftArmEnd: { x: 0, y: Math.sqrt(1/2)},
rightArmEnd: swingHandPosition(semantic.dancerDistance, Hand.Right), rightArmEnd: { x: 0.8, y: 0.5 },
};
} else if (semantic.dancerDistance === DancerDistance.SwingRobin) {
if (isFacingUpOrDown) {
rotation += 45;
} else {
rotation -= 45;
}
return {
position,
rotation,
leftArmEnd: { x: -0.8, y: 0.5 },
rightArmEnd: { x: 0, y: Math.sqrt(1/2) },
}; };
} }
@ -334,11 +325,10 @@ function SemanticToSetPosition(semantic: SemanticPosition): DancerSetPosition {
case HandTo.DancerRight: case HandTo.DancerRight:
return OffsetPlus({ x: +1, y: 0 }, balanceHandAdjustment); return OffsetPlus({ x: +1, y: 0 }, balanceHandAdjustment);
case HandTo.DancerForward: case HandTo.DancerForward:
const armLength = yAmount + (semantic.balance === BalanceWeight.Backward ? balanceAmount : 0);
if (hand === connection.hand) { if (hand === connection.hand) {
return { x: 0, y: +armLength/2 }; return { x: 0, y: +0.5 };
} else { } else {
return { x: dancerWidth / 2 * (hand === Hand.Left ? -1 : +1), y: +armLength }; return { x: dancerWidth / 2 * (hand === Hand.Left ? -1 : +1), y: +1 };
} }
case HandTo.LeftInCircle: case HandTo.LeftInCircle:
case HandTo.RightInCircle: case HandTo.RightInCircle:
@ -582,13 +572,13 @@ export function animateLowLevelMove(move: LowLevelMove): animation.AnimationSegm
rotation: move.movementPattern.minAmount, rotation: move.movementPattern.minAmount,
around: { around: {
center: rotateCenter, center: rotateCenter,
width: 1, width: setWidth / 5,
height: 1, height: setHeight / 5,
}, },
facing: animation.RotationAnimationFacing.Forward, facing: animation.RotationAnimationFacing.Center,
closer: move.movementPattern.close ? { closer: move.movementPattern.close ? {
transitionBeats: 1, transitionBeats: 1,
minDistance: 1, minDistance: setWidth,
} : undefined, } : undefined,
hands hands
}), }),
@ -621,31 +611,22 @@ export function animateLowLevelMove(move: LowLevelMove): animation.AnimationSegm
}); });
return [ return [
new animation.TransitionAnimationSegment({ new animation.LinearAnimationSegment({
actualAnimation: new animation.RotationAnimationSegment({ beats: 1,
beats: move.beats - 2, startPosition: startSetPosition,
startPosition: startSetPosition, endPosition: swingStart,
endPosition: beforeUnfold, }),
rotation: move.movementPattern.minAmount, new animation.RotationAnimationSegment({
around: { beats: move.beats - 3,
center: rotateSwingCenter, startPosition: swingStart,
width: 1, endPosition: beforeUnfold,
height: 1, rotation: move.movementPattern.minAmount,
}, around: {
closer: { center: rotateSwingCenter,
minDistance: 1, width: setWidth / 5,
transitionBeats: 1, height: setHeight / 5,
},
facing: animation.RotationAnimationFacing.CenterRelative,
centerRelativeTo: startSetPosition.rotation + ((move.startPosition.facing === Facing.Up || move.startPosition.facing === Facing.Down) === (dancerDistance === DancerDistance.SwingLark) ? -45 : +45)
}),
flags: {
rotation: true,
hands: true,
handsDuring: swingHandPositions(dancerDistance),
}, },
startTransitionBeats: 1, facing: animation.RotationAnimationFacing.CenterRelative
endTransitionBeats: 0,
}), }),
new animation.LinearAnimationSegment({ new animation.LinearAnimationSegment({
beats: 1, beats: 1,