forked from piqnt/planck.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSoccer.js
147 lines (123 loc) · 3.88 KB
/
Soccer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
planck.testbed('Soccer', function(testbed) {
var pl = planck, Vec2 = pl.Vec2, Math = pl.Math;
var SPI4 = Math.sin(Math.PI / 4), SPI3 = Math.sin(Math.PI / 3);
var width = 10.00, height = 6.00;
var PLAYER_R = 0.35;
var BALL_R = 0.23;
testbed.x = 0;
testbed.y = 0;
testbed.width = width * 1.6;
testbed.height = height * 1.6;
testbed.ratio = 60;
testbed.mouseForce = -120;
pl.internal.Settings.velocityThreshold = 0;
var world = pl.World({});
var walls = [
Vec2(-width * .5 +0.2, -height * .5),
Vec2(-width * .5, -height * .5 +0.2),
Vec2(-width * .5, -height * .2),
Vec2(-width * .6, -height * .2),
Vec2(-width * .6, +height * .2),
Vec2(-width * .5, +height * .2),
Vec2(-width * .5, +height * .5 -.2),
Vec2(-width * .5 +.2, +height * .5),
Vec2(+width * .5 -.2, +height * .5),
Vec2(+width * .5, +height * .5 -.2),
Vec2(+width * .5, +height * .2),
Vec2(+width * .6, +height * .2),
Vec2(+width * .6, -height * .2),
Vec2(+width * .5, -height * .2),
Vec2(+width * .5, -height * .5 +.2),
Vec2(+width * .5 -.2, -height * .5)
];
var goal = [
Vec2(0, -height * 0.2),
Vec2(0, +height * 0.2)
];
var wallFixDef = {
friction: 0,
restitution: 0,
userData : 'wall'
};
var goalFixDef = {
friction: 0,
restitution: 1,
userData : 'goal'
};
var ballFixDef = {
friction: .2,
restitution: .99,
density: .5,
userData : 'ball'
};
var ballBodyDef = {
bullet: true,
linearDamping : 3.5,
angularDamping : 1.6
};
var playerFixDef = {
friction: .1,
restitution: .99,
density: .8,
userData : 'player'
};
var playerBodyDef = {
bullet: true,
linearDamping : 4,
angularDamping : 1.6
};
world.createBody().createFixture(pl.Chain(walls, true), wallFixDef);
world.createBody(Vec2(-width * 0.5 - BALL_R, 0)).createFixture(pl.Chain(goal), goalFixDef);
world.createBody(Vec2(+width * 0.5 + BALL_R, 0)).createFixture(pl.Chain(goal), goalFixDef);
var ball = world.createDynamicBody(ballBodyDef);
ball.createFixture(pl.Circle(BALL_R), ballFixDef);
ball.render = {fill: 'white', stroke : 'black'};
row().forEach(function(p) {
var player = world.createDynamicBody(playerBodyDef);
player.setPosition(p);
player.createFixture(pl.Circle(PLAYER_R), playerFixDef);
player.render = {fill : '#0077ff', stroke: 'black'};
});
row().map(scale(-1, 1)).forEach(function(p) {
var player = world.createDynamicBody(playerBodyDef);
player.setPosition(p);
player.setAngle(Math.PI);
player.createFixture(pl.Circle(PLAYER_R), playerFixDef);
player.render = {fill : '#ff411a', stroke: 'black'};
});
world.on('post-solve', function(contact) {
var fA = contact.getFixtureA(), bA = fA.getBody();
var fB = contact.getFixtureB(), bB = fB.getBody();
var wall = fA.getUserData() == wallFixDef.userData && bA || fB.getUserData() == wallFixDef.userData && bB;
var ball = fA.getUserData() == ballFixDef.userData && bA || fB.getUserData() == ballFixDef.userData && bB;
var goal = fA.getUserData() == goalFixDef.userData && bA || fB.getUserData() == goalFixDef.userData && bB;
// do not change world immediately
setTimeout(function() {
if (ball && goal) {
ball.setPosition(Vec2(0, 0));
ball.setLinearVelocity(Vec2(0, 0));
// world.destroyBody(ball);
}
}, 1);
});
return world;
function row() {
var balls = [];
balls.push(Vec2(-width * .45, 0));
balls.push(Vec2(-width * .3, -height * 0.2));
balls.push(Vec2(-width * .3, +height * 0.2));
balls.push(Vec2(-width * .1, -height * 0.1));
balls.push(Vec2(-width * .1, +height * 0.1));
return balls;
}
function scale(x, y) {
return function (v) {
return pl.Vec2(v.x * x, v.y * y);
};
}
function translate(x, y) {
return function (v) {
return pl.Vec2(v.x + x, v.y + y);
};
}
});