@colyseus/sdk 0.17.33 → 0.17.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/3rd_party/discord.cjs +1 -1
- package/build/3rd_party/discord.mjs +1 -1
- package/build/Auth.cjs +1 -1
- package/build/Auth.mjs +1 -1
- package/build/Client.cjs +1 -1
- package/build/Client.mjs +1 -1
- package/build/Connection.cjs +1 -1
- package/build/Connection.mjs +1 -1
- package/build/HTTP.cjs +1 -1
- package/build/HTTP.mjs +1 -1
- package/build/Room.cjs +8 -3
- package/build/Room.cjs.map +1 -1
- package/build/Room.d.ts +6 -0
- package/build/Room.mjs +8 -3
- package/build/Room.mjs.map +1 -1
- package/build/Storage.cjs +1 -1
- package/build/Storage.mjs +1 -1
- package/build/core/nanoevents.cjs +1 -1
- package/build/core/nanoevents.mjs +1 -1
- package/build/core/signal.cjs +1 -1
- package/build/core/signal.mjs +1 -1
- package/build/core/utils.cjs +1 -1
- package/build/core/utils.mjs +1 -1
- package/build/debug.cjs +8 -8
- package/build/debug.cjs.map +1 -1
- package/build/debug.mjs +8 -8
- package/build/debug.mjs.map +1 -1
- package/build/errors/Errors.cjs +1 -1
- package/build/errors/Errors.mjs +1 -1
- package/build/index.cjs +1 -1
- package/build/index.mjs +1 -1
- package/build/legacy.cjs +1 -1
- package/build/legacy.mjs +1 -1
- package/build/serializer/NoneSerializer.cjs +1 -1
- package/build/serializer/NoneSerializer.mjs +1 -1
- package/build/serializer/SchemaSerializer.cjs +1 -1
- package/build/serializer/SchemaSerializer.mjs +1 -1
- package/build/serializer/Serializer.cjs +1 -1
- package/build/serializer/Serializer.mjs +1 -1
- package/build/transport/H3Transport.cjs +1 -1
- package/build/transport/H3Transport.mjs +1 -1
- package/build/transport/WebSocketTransport.cjs +1 -1
- package/build/transport/WebSocketTransport.mjs +1 -1
- package/dist/colyseus-cocos-creator.js +23 -6
- package/dist/colyseus-cocos-creator.js.map +1 -1
- package/dist/colyseus.js +23 -6
- package/dist/colyseus.js.map +1 -1
- package/dist/debug.js +8 -8
- package/dist/debug.js.map +1 -1
- package/package.json +2 -2
- package/src/Room.ts +15 -2
- package/src/debug.ts +7 -7
package/build/errors/Errors.cjs
CHANGED
package/build/errors/Errors.mjs
CHANGED
package/build/index.cjs
CHANGED
package/build/index.mjs
CHANGED
package/build/legacy.cjs
CHANGED
package/build/legacy.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This software is released under the MIT License.
|
|
4
4
|
// https://opensource.org/license/MIT
|
|
5
5
|
//
|
|
6
|
-
// colyseus.js@0.17.
|
|
6
|
+
// colyseus.js@0.17.35 - @colyseus/schema 4.0.13
|
|
7
7
|
// THIS VERSION USES "XMLHttpRequest" INSTEAD OF "fetch" FOR COMPATIBILITY WITH COCOS CREATOR
|
|
8
8
|
(function (global, factory) {
|
|
9
9
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
@@ -4219,7 +4219,11 @@
|
|
|
4219
4219
|
const ref = changeTree.ref;
|
|
4220
4220
|
// Assign unique `refId` to ref if it doesn't have one yet.
|
|
4221
4221
|
if (ref[$refId] === undefined) {
|
|
4222
|
-
ref
|
|
4222
|
+
Object.defineProperty(ref, $refId, {
|
|
4223
|
+
value: this.getNextUniqueId(),
|
|
4224
|
+
enumerable: false,
|
|
4225
|
+
writable: true
|
|
4226
|
+
});
|
|
4223
4227
|
}
|
|
4224
4228
|
const refId = ref[$refId];
|
|
4225
4229
|
const isNewChangeTree = (this.changeTrees[refId] === undefined);
|
|
@@ -4661,7 +4665,11 @@
|
|
|
4661
4665
|
// for decoding
|
|
4662
4666
|
addRef(refId, ref, incrementCount = true) {
|
|
4663
4667
|
this.refs.set(refId, ref);
|
|
4664
|
-
ref
|
|
4668
|
+
Object.defineProperty(ref, $refId, {
|
|
4669
|
+
value: refId,
|
|
4670
|
+
enumerable: false,
|
|
4671
|
+
writable: true
|
|
4672
|
+
});
|
|
4665
4673
|
if (incrementCount) {
|
|
4666
4674
|
this.refCount[refId] = (this.refCount[refId] || 0) + 1;
|
|
4667
4675
|
}
|
|
@@ -5353,11 +5361,15 @@
|
|
|
5353
5361
|
const collection = instance[propertyName];
|
|
5354
5362
|
// Collection not available yet. Listen for its availability before attaching the handler.
|
|
5355
5363
|
if (!collection || collection[$refId] === undefined) {
|
|
5356
|
-
|
|
5364
|
+
let removePropertyCallback;
|
|
5365
|
+
removePropertyCallback = this.addCallback(instance[$refId], propertyName, (value, _) => {
|
|
5357
5366
|
if (value !== null && value !== undefined) {
|
|
5367
|
+
// Remove the property listener now that collection is available
|
|
5368
|
+
removePropertyCallback();
|
|
5358
5369
|
removeHandler = this.addCallback(value[$refId], operation, handler);
|
|
5359
5370
|
}
|
|
5360
5371
|
});
|
|
5372
|
+
removeHandler = removePropertyCallback;
|
|
5361
5373
|
return removeOnAdd;
|
|
5362
5374
|
}
|
|
5363
5375
|
else {
|
|
@@ -8592,6 +8604,7 @@
|
|
|
8592
8604
|
this.onJoin = createSignal();
|
|
8593
8605
|
// reconnection logic
|
|
8594
8606
|
this.reconnection = {
|
|
8607
|
+
enabled: true,
|
|
8595
8608
|
retryCount: 0,
|
|
8596
8609
|
maxRetries: 15,
|
|
8597
8610
|
delay: 100,
|
|
@@ -8639,7 +8652,7 @@
|
|
|
8639
8652
|
e.code === CloseCode.GOING_AWAY ||
|
|
8640
8653
|
e.code === CloseCode.MAY_TRY_RECONNECT) {
|
|
8641
8654
|
this.onDrop.invoke(e.code, e.reason);
|
|
8642
|
-
this.handleReconnection();
|
|
8655
|
+
this.handleReconnection(e.code, e.reason);
|
|
8643
8656
|
}
|
|
8644
8657
|
else {
|
|
8645
8658
|
this.onLeave.invoke(e.code, e.reason);
|
|
@@ -8878,7 +8891,11 @@
|
|
|
8878
8891
|
default: throw new Error("invalid message type.");
|
|
8879
8892
|
}
|
|
8880
8893
|
}
|
|
8881
|
-
handleReconnection() {
|
|
8894
|
+
handleReconnection(code, reason) {
|
|
8895
|
+
if (!this.reconnection.enabled) {
|
|
8896
|
+
this.onLeave.invoke(code, reason);
|
|
8897
|
+
return;
|
|
8898
|
+
}
|
|
8882
8899
|
if (Date.now() - this.joinedAtTime < this.reconnection.minUptime) {
|
|
8883
8900
|
console.info(`[Colyseus reconnection]: ${String.fromCodePoint(0x274C)} Room has not been up for long enough for automatic reconnection. (min uptime: ${this.reconnection.minUptime}ms)`); // ❌
|
|
8884
8901
|
this.onLeave.invoke(CloseCode.ABNORMAL_CLOSURE, "Room uptime too short for reconnection.");
|