Skip to content

Commit c733411

Browse files
authored
Merge pull request #1 from gastonmorixe/gastonmorixe-patch-1
DOM Mouse handler move to dom entity
2 parents 91ad0df + c9f3642 commit c733411

File tree

3 files changed

+24
-25
lines changed

3 files changed

+24
-25
lines changed

.github/workflows/build-pages.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
push:
77
branches:
88
- main # Trigger on push to the main branch
9-
pull_request:
10-
branches:
11-
- main # Trigger on PRs to the main branch
9+
# pull_request:
10+
# branches:
11+
# - main # Trigger on PRs to the main branch
1212

1313
jobs:
1414
build:

src/dom.ts

+19-7
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,19 @@ export class MouseForceSystem extends System {
2020
const position = entity.getComponent(PositionComponent);
2121
const velocity = entity.getComponent(VelocityComponent);
2222
const force = entity.getComponent(ForceComponent);
23-
const mouseDragForce = entity.getComponent(MouseDragComponent);
23+
const mouseDrag = entity.getComponent(MouseDragComponent);
2424

25+
// TODO: Move this to init. Make Engine/System call init on all systems
26+
if (mouseDrag && !mouseDrag.dragHandler) {
27+
mouseDrag.dragHandler = new DragHandler(entity);
28+
}
29+
2530
if (
2631
position &&
2732
velocity &&
2833
force &&
29-
mouseDragForce &&
30-
mouseDragForce.isDragging
34+
mouseDrag &&
35+
mouseDrag.isDragging
3136
) {
3237
// console.log(
3338
// "[MouseForceSystem]",
@@ -38,8 +43,8 @@ export class MouseForceSystem extends System {
3843
// mouseDrag,
3944
// }),
4045
// );
41-
const dx = mouseDragForce.targetX - position.x;
42-
const dy = mouseDragForce.targetY - position.y;
46+
const dx = mouseDrag.targetX - position.x;
47+
const dy = mouseDrag.targetY - position.y;
4348

4449
// Apply force proportional to the distance (like a spring)
4550
const fx = this.dragStrength * dx - this.damping * velocity.vx;
@@ -64,7 +69,8 @@ export class MouseDragComponent extends Component {
6469
targetY: number = 0;
6570
offsetX: number = 0; // Offset from the mouse click to the box's position
6671
offsetY: number = 0;
67-
72+
dragHandler?: DragHandler;
73+
6874
setTarget(x: number, y: number) {
6975
this.targetX = x;
7076
this.targetY = y;
@@ -99,6 +105,7 @@ export class DOMUpdateSystem extends System {
99105

100106
if (position && domComponent) {
101107
const domElement = domComponent.domElement;
108+
// TODO: Update only if it changed
102109
if (domElement) {
103110
domElement.style.transform = `translate(${position.x}px, ${position.y}px)`;
104111
}
@@ -107,7 +114,12 @@ export class DOMUpdateSystem extends System {
107114
}
108115
}
109116

110-
export class DOMMouseDragHandler {
117+
export class DragHandler {
118+
constructor(entity: Entity) {
119+
// super();
120+
this.initializeDragListeners(entity);
121+
}
122+
111123
initializeDragListeners(entity: Entity) {
112124
const domComponent = entity.getComponent(DOMComponent);
113125
const mouseDrag = entity.getComponent(MouseDragComponent);

src/main.ts

+2-15
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { AnimationEngine } from "./engine";
77
import { MovementSystem, FrictionSystem } from "./systems";
88

99
// Specialized Systems and Entities
10-
import { MouseForceSystem, DOMUpdateSystem, DOMMouseDragHandler } from "./dom";
10+
import { MouseForceSystem, DOMUpdateSystem } from "./dom";
1111
import { BoxEntity, AnchorEntity } from "./entities";
1212
import { SpringEntity, SpringPhysicsSystem } from "./spring";
1313
import { ChartSystem } from "./chart";
@@ -25,23 +25,20 @@ const anchorEntity = new AnchorEntity({ x: 100, y: 100 }, "anchor");
2525

2626
// Create a spring entity that connects box1 and anchor
2727
const springEntity = new SpringEntity(boxEntity, anchorEntity, 0.2, 0.05, 1.0);
28-
springEntity.name = "spring";
2928

3029
// Create second box entity
3130
const boxElement2 = document.getElementById("box2") as HTMLElement;
3231
const boxEntity2 = new BoxEntity(boxElement2, { x: 250, y: 100 }, "box2");
3332

3433
// Creating the spring force connecting box and box2
3534
const springEntity2 = new SpringEntity(boxEntity, boxEntity2, 0.2, 0.05, 2.0);
36-
springEntity2.name = "spring2";
3735

3836
// Create third box entity
3937
const boxElement3 = document.getElementById("box3") as HTMLElement;
4038
const boxEntity3 = new BoxEntity(boxElement3, { x: 400, y: 100 }, "box3");
4139

4240
// Creating the spring force connecting box2 and box3
4341
const springEntity3 = new SpringEntity(boxEntity2, boxEntity3, 0.1, 0.05, 1.0);
44-
springEntity3.name = "spring3";
4542

4643
//
4744
// --- Systems ---
@@ -62,16 +59,6 @@ const mouseForceSystem = new MouseForceSystem(0.2, 0.1); // Drag strength and da
6259
// Set up the DOM update system (handles syncing the DOM with the entity position)
6360
const domUpdateSystem = new DOMUpdateSystem();
6461

65-
// Set up the DOM mouse drag handler to handle mouse events via the DOM component
66-
const domMouseDragHandler = new DOMMouseDragHandler();
67-
domMouseDragHandler.initializeDragListeners(boxEntity);
68-
69-
const domMouseDragHandler2 = new DOMMouseDragHandler();
70-
domMouseDragHandler2.initializeDragListeners(boxEntity2);
71-
72-
const domMouseDragHandler3 = new DOMMouseDragHandler();
73-
domMouseDragHandler3.initializeDragListeners(boxEntity3);
74-
7562
//
7663
// -- Engine --
7764
//
@@ -106,7 +93,7 @@ if (chartContext) {
10693
engine.start();
10794

10895
// TODO
109-
// -[ ] Prepare specific entities kinds (anchor, box, etc). The components should be added in the constructor like the spring, this minimizes the amount of components to add manually to an entity.
96+
// -[x] Prepare specific entities kinds (anchor, box, etc). The components should be added in the constructor like the spring, this minimizes the amount of components to add manually to an entity.
11097
// -[ ] Cleanup creation examples, it's easy to forget to add entities to the engine if not added right after creation.
11198
// -[ ] Take initial and drop velocity into account
11299
// -[ ] Attach multiple entities to the spring force. Make a cloth like simulation.

0 commit comments

Comments
 (0)