-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
84 lines (58 loc) · 2.01 KB
/
index.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
const Matter = require('matter-js');
const express = require('express');
const app = express();
const http = require('http').Server(app);
const io = require('socket.io')(http);
const port = process.env.PORT || 3000;
var clients = 0;
var LIMIT = 10;
app.use(express.static(__dirname + '/public'));
// ==== Động cơ vật lý === //
var Engine = Matter.Engine,
Composites = Matter.Composites,
MouseConstraint = Matter.MouseConstraint,
Mouse = Matter.Mouse,
World = Matter.World,
Bodies = Matter.Bodies;
// Tạo engine
var engine = Engine.create(),
world = engine.world;
// Stack fluid
var stack = Composites.stack(100, 185, 10, 10, 20, 0, function (x, y) {
return Bodies.circle(x, y, 15);
});
World.add(world, [
// Tường
Bodies.rectangle(400, 0, 800, 50, { isStatic: true }),
Bodies.rectangle(400, 600, 800, 50, { isStatic: true }),
Bodies.rectangle(800, 300, 50, 600, { isStatic: true }),
Bodies.rectangle(0, 300, 50, 600, { isStatic: true }),
stack
]);
// ==== Vòng lặp của môt phỏng ==== //
setInterval(function () {
Engine.update(engine, 1000 / 60);
var data = []
for (var i = 0; i < stack.bodies.length; i++) {
var baseIndex = 3 * i;
var mb = stack.bodies[i].position;
data[i] = mb;
}
io.sockets.emit('broadcast', { data: data });
}, 1000 / 60);
var com = Matter.Composite.get(stack, 10, 'body');
Matter.Body.scale(com, 5, 5);
// ==== Xử lý sự kiện socket.io ==== //
io.on('connection', function (socket) {
clients++;
if (clients > LIMIT) { socket.emit('limitEvent', { ms: 'Lượng truy cập nhiều chỉ có thể xem và không tương tác được.' }); }
if (clients <= LIMIT) {
socket.on('clientEvent', function (data) {
Matter.Body.translate(com, { x: data.x - com.position.x, y: data.y - com.position.y });
});
}
socket.on('disconnect', function () {
clients--;
});
});
http.listen(port, () => console.log('listening on port ' + port));