forked from takahirox/aframe-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
161 lines (132 loc) · 3.42 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/**
* @author Takahiro / https://github.com/takahirox
*/
if (typeof AFRAME === 'undefined') {
throw new Error('Component attempted to register before' +
'AFRAME was available.');
}
var Peer = require('./libs/Peer');
AFRAME.registerComponent('webrtc', {
schema: {
room: {type: 'int', default: 5555},
ws: {type: 'string', default: 'wss://boiling-anchorage-5279.herokuapp.com/'},
},
init: function () {
this.master = false;
this.connected = false;
this.senders = [];
this.receivers = [];
var data = this.data;
this.peer = new Peer(data.room, data.ws, this);
this.peer.createPeerConnection();
},
update: function () {
},
remove: function () {
},
tick: function(time, delta) {
},
notifyWsReady: function (e) {
console.log('Web Socket is Ready');
console.log(e);
},
notifyRoomUpdate: function (num) {
console.log('Room Updated');
console.log(num + ' people in the room');
if (num === 1) {
this.master = true;
console.log('You became a master');
} else if (num === 2) {
if (this.master) {
this.peer.offer();
}
} else if (num > 2) {
console.log('Over the capacity');
}
},
notifyOpenPeer: function (e) {
console.log('Peer Opened');
console.log(e);
this.connected = true;
this.sendConnection('a-entity');
this.sendConnection('a-camera');
},
sendConnection: function (name) {
var els = this.el.querySelectorAll(name);
for (var i = 0, il = els.length; i < il; i++) {
var el = els[i];
if (el.getAttribute('webrtc-sender')) {
this.senders.push(el);
el.emit('connected', {peer: this.peer});
}
if (el.getAttribute('webrtc-receiver')) {
this.receivers.push(el);
el.emit('connected', {peer: this.peer});
}
}
},
receiveFromPeer: function (data) {
for (var i = 0, il = this.receivers.length; i < il; i++) {
this.receivers[i].emit('received', {data: data});
}
}
});
AFRAME.registerComponent('webrtc-sender', {
schema: {
},
init: function () {
this.peer = null;
var self = this;
this.el.addEventListener('connected', function (e) {
self.connected(e);
});
},
update: function () {
},
remove: function () {
},
tick: function(time, delta) {
if (this.peer !== null && this.el.object3D) {
var object = this.el.object3D;
this.peer.send({position: object.position.toArray(),
quaternion: object.quaternion.toArray()});
}
},
connected: function(e) {
this.peer = e.detail.peer;
}
});
AFRAME.registerComponent('webrtc-receiver', {
schema: {
},
init: function () {
this.peer = null;
var self = this;
this.el.addEventListener('connected', function (e) {
self.connected(e);
});
this.el.addEventListener('received', function (e) {
self.received(e);
});
},
update: function () {
},
remove: function () {
},
tick: function(time, delta) {
},
connected: function(e) {
this.peer = e.detail.peer;
},
received: function(e) {
if (this.peer !== null && this.el.object3D) {
var p = e.detail.data.position;
var q = e.detail.data.quaternion;
var object = this.el.object3D;
object.position.fromArray(p);
object.position.y -= 1.5; // model specific
object.quaternion.fromArray(q);
object.rotateY(Math.PI); // model specific
}
}
});