@dcl/protocol 1.0.0-28806326790.commit-6771b13 → 1.0.0-28974105118.commit-a598406

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.
Files changed (56) hide show
  1. package/README.md +0 -188
  2. package/out-js/decentraland/kernel/apis/restricted_actions.gen.d.ts +3 -21
  3. package/out-js/decentraland/kernel/apis/restricted_actions.gen.js +10 -62
  4. package/out-js/decentraland/kernel/apis/restricted_actions.gen.js.map +1 -1
  5. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.d.ts +0 -21
  6. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +4 -124
  7. package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
  8. package/out-js/decentraland/sdk/components/avatar_shape.gen.d.ts +0 -8
  9. package/out-js/decentraland/sdk/components/avatar_shape.gen.js +1 -35
  10. package/out-js/decentraland/sdk/components/avatar_shape.gen.js.map +1 -1
  11. package/out-js/decentraland/sdk/components/billboard.gen.d.ts +9 -2
  12. package/out-js/decentraland/sdk/components/billboard.gen.js +17 -3
  13. package/out-js/decentraland/sdk/components/billboard.gen.js.map +1 -1
  14. package/out-js/decentraland/sdk/components/common/avatar_mask.gen.d.ts +8 -0
  15. package/out-js/decentraland/sdk/components/common/avatar_mask.gen.js +34 -0
  16. package/out-js/decentraland/sdk/components/common/avatar_mask.gen.js.map +1 -0
  17. package/out-ts/decentraland/kernel/apis/restricted_actions.gen.ts +11 -66
  18. package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +2 -166
  19. package/out-ts/decentraland/sdk/components/avatar_shape.gen.ts +0 -34
  20. package/out-ts/decentraland/sdk/components/billboard.gen.ts +29 -5
  21. package/out-ts/decentraland/sdk/components/common/avatar_mask.gen.ts +31 -0
  22. package/package.json +6 -9
  23. package/proto/buf.yaml +47 -0
  24. package/proto/decentraland/kernel/apis/restricted_actions.proto +3 -7
  25. package/proto/decentraland/kernel/comms/rfc4/comms.proto +0 -11
  26. package/proto/decentraland/sdk/components/avatar_shape.proto +0 -5
  27. package/proto/decentraland/sdk/components/billboard.proto +9 -3
  28. package/proto/decentraland/sdk/components/common/avatar_mask.proto +7 -0
  29. package/proto/decentraland/sdk/components/light_source.proto +1 -1
  30. package/proto/decentraland/sdk/components/virtual_camera.proto +0 -2
  31. package/proto/google/LICENSE +27 -0
  32. package/proto/google/README.md +1 -0
  33. package/proto/google/api/annotations.json +83 -0
  34. package/proto/google/api/annotations.proto +11 -0
  35. package/proto/google/api/http.json +86 -0
  36. package/proto/google/api/http.proto +31 -0
  37. package/proto/google/protobuf/api.json +118 -0
  38. package/proto/google/protobuf/api.proto +34 -0
  39. package/proto/google/protobuf/descriptor.json +739 -0
  40. package/proto/google/protobuf/descriptor.proto +286 -0
  41. package/proto/google/protobuf/source_context.json +20 -0
  42. package/proto/google/protobuf/source_context.proto +7 -0
  43. package/proto/google/protobuf/type.json +202 -0
  44. package/proto/google/protobuf/type.proto +89 -0
  45. package/proto/decentraland/common/options.proto +0 -51
  46. package/proto/decentraland/common/quantization_example.proto +0 -164
  47. package/proto/decentraland/pulse/pulse_client.proto +0 -79
  48. package/proto/decentraland/pulse/pulse_server.proto +0 -142
  49. package/proto/decentraland/pulse/pulse_shared.proto +0 -57
  50. package/protoc-gen-bitwise/generator_csharp.js +0 -248
  51. package/protoc-gen-bitwise/options.js +0 -139
  52. package/protoc-gen-bitwise/plugin.js +0 -87
  53. package/protoc-gen-bitwise/runtime/cs/BitReader.cs +0 -112
  54. package/protoc-gen-bitwise/runtime/cs/BitWriter.cs +0 -117
  55. package/protoc-gen-bitwise/runtime/cs/Quantize.cs +0 -70
  56. package/protoc-gen-bitwise/wire.js +0 -239
@@ -1,117 +0,0 @@
1
- // Decentraland.Networking.Bitwise — BitWriter
2
- // Copy this file into your Unity project alongside generated *.Bitwise.cs files.
3
-
4
- using System;
5
-
6
- namespace Decentraland.Networking.Bitwise
7
- {
8
- /// <summary>
9
- /// Writes bits into a pre-allocated byte buffer, MSB first within each byte
10
- /// (big-endian bit order). This matches the layout expected by
11
- /// <see cref="BitReader"/> so that encode → decode is always a round-trip no-op.
12
- /// </summary>
13
- public sealed class BitWriter
14
- {
15
- private readonly byte[] _buffer;
16
- private int _bitPos;
17
-
18
- /// <param name="buffer">Destination buffer (must be large enough for all writes).</param>
19
- public BitWriter(byte[] buffer)
20
- {
21
- _buffer = buffer ?? throw new ArgumentNullException(nameof(buffer));
22
- _bitPos = 0;
23
- }
24
-
25
- /// <summary>Current write position in bits.</summary>
26
- public int BitPosition => _bitPos;
27
-
28
- /// <summary>Number of bytes written (rounded up to the nearest byte).</summary>
29
- public int ByteLength => (_bitPos + 7) / 8;
30
-
31
- /// <summary>Returns a copy of the written bytes (trimmed to <see cref="ByteLength"/>).</summary>
32
- public byte[] ToArray()
33
- {
34
- var result = new byte[ByteLength];
35
- Array.Copy(_buffer, result, ByteLength);
36
- return result;
37
- }
38
-
39
- // -----------------------------------------------------------------
40
- // Core primitive
41
- // -----------------------------------------------------------------
42
-
43
- /// <summary>
44
- /// Writes the <paramref name="bits"/> least-significant bits of
45
- /// <paramref name="value"/>, MSB first.
46
- /// </summary>
47
- public void WriteBits(uint value, int bits)
48
- {
49
- for (int i = bits - 1; i >= 0; i--)
50
- {
51
- int byteIdx = _bitPos / 8;
52
- int bitIdx = 7 - (_bitPos % 8);
53
-
54
- if ((value >> i & 1u) == 1u)
55
- _buffer[byteIdx] |= (byte)(1 << bitIdx);
56
- else
57
- _buffer[byteIdx] &= (byte)~(1 << bitIdx);
58
-
59
- _bitPos++;
60
- }
61
- }
62
-
63
- // -----------------------------------------------------------------
64
- // Quantized float
65
- // -----------------------------------------------------------------
66
-
67
- /// <summary>
68
- /// Quantizes <paramref name="value"/> into <paramref name="bits"/> bits
69
- /// using the range [<paramref name="min"/>, <paramref name="max"/>] and
70
- /// writes it to the buffer.
71
- ///
72
- /// Uses <c>Math.Round</c> (banker's rounding → ties-to-even) to guarantee
73
- /// that encode → decode is a round-trip no-op.
74
- /// </summary>
75
- public void WriteQuantizedFloat(float value, float min, float max, int bits)
76
- {
77
- uint maxQ = (1u << bits) - 1;
78
- float clamped = Math.Clamp(value, min, max);
79
- float normalized = (clamped - min) / (max - min);
80
- uint quantized = (uint)Math.Round(normalized * maxQ);
81
- WriteBits(quantized, bits);
82
- }
83
-
84
- // -----------------------------------------------------------------
85
- // Standard IEEE 754 helpers (used for un-annotated float/double fields)
86
- // -----------------------------------------------------------------
87
-
88
- /// <summary>Writes a 32-bit IEEE 754 float (4 bytes).</summary>
89
- public void WriteFloat(float value)
90
- {
91
- byte[] bytes = BitConverter.GetBytes(value);
92
- // GetBytes is little-endian on all platforms; write MSB first.
93
- uint bits = (uint)bytes[0]
94
- | ((uint)bytes[1] << 8)
95
- | ((uint)bytes[2] << 16)
96
- | ((uint)bytes[3] << 24);
97
- WriteBits(bits, 32);
98
- }
99
-
100
- /// <summary>Writes a 64-bit IEEE 754 double (8 bytes).</summary>
101
- public void WriteDouble(double value)
102
- {
103
- byte[] bytes = BitConverter.GetBytes(value);
104
- uint lo = (uint)bytes[0]
105
- | ((uint)bytes[1] << 8)
106
- | ((uint)bytes[2] << 16)
107
- | ((uint)bytes[3] << 24);
108
- uint hi = (uint)bytes[4]
109
- | ((uint)bytes[5] << 8)
110
- | ((uint)bytes[6] << 16)
111
- | ((uint)bytes[7] << 24);
112
- // Write high 32 bits first so the bit stream is big-endian at word level too.
113
- WriteBits(hi, 32);
114
- WriteBits(lo, 32);
115
- }
116
- }
117
- }
@@ -1,70 +0,0 @@
1
- // Decentraland.Networking.Bitwise — Quantize
2
- // Copy this file into your project alongside generated *.Bitwise.cs files.
3
- // ReSharper disable once RedundantUsingDirective
4
-
5
- using System;
6
-
7
- namespace Decentraland.Networking.Bitwise
8
- // ReSharper disable once ArrangeNamespaceBody
9
- {
10
- /// <summary>
11
- /// Static helpers for quantizing float values to/from unsigned integers.
12
- /// Intended for use with protobuf uint32 fields: the integer is transmitted
13
- /// as a protobuf varint, while the float accessor lives in a generated partial class.
14
- /// </summary>
15
- public static class Quantize
16
- {
17
- /// <summary>
18
- /// Encodes <paramref name="value" /> to a quantized <see cref="uint" />.
19
- /// Values outside [<paramref name="min" />, <paramref name="max" />] are clamped.
20
- /// </summary>
21
- public static uint Encode(float value, float min, float max, int bits)
22
- {
23
- var steps = (1u << bits) - 1;
24
- var t = Math.Clamp((value - min) / (max - min), 0f, 1f);
25
- return (uint)MathF.Round(t * steps);
26
- }
27
-
28
- /// <summary>Decodes a quantized <see cref="uint" /> back to a float.</summary>
29
- public static float Decode(uint encoded, float min, float max, int bits)
30
- {
31
- var steps = (1u << bits) - 1;
32
- return (float)encoded / steps * (max - min) + min;
33
- }
34
-
35
- /// <summary>
36
- /// Encodes <paramref name="value" /> with a power-law curve into an
37
- /// (<paramref name="bits" /> - 1)-bit linear unorm magnitude plus a sign bit. The magnitude is
38
- /// <c>(|value| / max)^(1/pow)</c>, so the inverse <see cref="DecodePower" /> reconstructs
39
- /// <c>sign * max * u^pow</c>. Zero is representable exactly; <paramref name="pow" /> &gt; 1
40
- /// concentrates resolution near zero. Magnitudes outside [0, <paramref name="max" />] are
41
- /// clamped.
42
- /// <para>
43
- /// The encoded layout puts the magnitude in the high bits and the sign in the LSB
44
- /// (<c>(magnitude &lt;&lt; 1) | sign</c>). This keeps the varint cost a function of
45
- /// magnitude rather than direction — a small <c>|value|</c> of either sign stays in a
46
- /// single varint byte. Zero canonicalizes to <c>0</c> (a zero magnitude never sets the
47
- /// sign bit), so proto3 still omits a stopped field entirely.
48
- /// </para>
49
- /// </summary>
50
- public static uint EncodePower(float value, float max, float pow, int bits)
51
- {
52
- var magnitudeSteps = (1u << (bits - 1)) - 1;
53
- var t = Math.Clamp(MathF.Abs(value) / max, 0f, 1f);
54
- var u = MathF.Pow(t, 1f / pow);
55
- var magnitude = (uint)MathF.Round(u * magnitudeSteps);
56
- var sign = value < 0f && magnitude != 0u ? 1u : 0u;
57
- return (magnitude << 1) | sign;
58
- }
59
-
60
- /// <summary>Decodes a power-law quantized <see cref="uint" /> back to a float (inverse of
61
- /// <see cref="EncodePower" />).</summary>
62
- public static float DecodePower(uint encoded, float max, float pow, int bits)
63
- {
64
- var magnitudeSteps = (1u << (bits - 1)) - 1;
65
- var u = (float)(encoded >> 1) / magnitudeSteps;
66
- var magnitude = max * MathF.Pow(u, pow);
67
- return (encoded & 1u) != 0 ? -magnitude : magnitude;
68
- }
69
- }
70
- }
@@ -1,239 +0,0 @@
1
- 'use strict'
2
-
3
- /**
4
- * Self-contained protobuf wire-format codec for protoc-gen-bitwise.
5
- *
6
- * The plugin only needs a tiny slice of the descriptor/plugin schemas, so
7
- * rather than pull in a protobuf runtime (which would force every consumer —
8
- * including the sibling Pulse checkout that runs this file directly off disk —
9
- * to `npm install` the protocol repo) we decode the handful of fields we care
10
- * about by walking the wire format directly. This mirrors the original Python
11
- * plugin, which already hand-parsed FieldOptions for the same reason.
12
- *
13
- * Decoded subset:
14
- * CodeGeneratorRequest { file_to_generate = 1; proto_file = 15; }
15
- * FileDescriptorProto { name = 1; package = 2; message_type = 4; }
16
- * DescriptorProto { name = 1; field = 2; }
17
- * FieldDescriptorProto { name = 1; label = 4; type = 5; options = 8 (raw bytes); }
18
- *
19
- * Encoded subset:
20
- * CodeGeneratorResponse { error = 1; supported_features = 2; file = 15; }
21
- * CodeGeneratorResponse.File { name = 1; content = 15; }
22
- *
23
- * Wire types: 0 = varint, 1 = 64-bit, 2 = length-delimited, 5 = 32-bit.
24
- */
25
-
26
- // ---------------------------------------------------------------------------
27
- // Low-level readers
28
- // ---------------------------------------------------------------------------
29
-
30
- /** Decode a protobuf varint at `pos`. Returns [value, newPos]. */
31
- function readVarint(buf, pos) {
32
- let result = 0
33
- let shift = 0
34
- let byte
35
- do {
36
- byte = buf[pos++]
37
- // Multiplication (not <<) keeps values correct past 32 bits.
38
- result += (byte & 0x7f) * Math.pow(2, shift)
39
- shift += 7
40
- } while (byte & 0x80)
41
- return [result, pos]
42
- }
43
-
44
- /** Advance `pos` past a field of the given wire type. Returns newPos. */
45
- function skipField(buf, pos, wireType) {
46
- switch (wireType) {
47
- case 0: // varint
48
- return readVarint(buf, pos)[1]
49
- case 1: // 64-bit
50
- return pos + 8
51
- case 2: {
52
- // length-delimited
53
- const [length, next] = readVarint(buf, pos)
54
- return next + length
55
- }
56
- case 5: // 32-bit
57
- return pos + 4
58
- default:
59
- // Groups (3/4) are deprecated and never appear in descriptors.
60
- return pos
61
- }
62
- }
63
-
64
- // ---------------------------------------------------------------------------
65
- // Request decoding
66
- // ---------------------------------------------------------------------------
67
-
68
- function decodeFieldDescriptor(buf) {
69
- const field = { name: '', label: 0, type: 0, optionsRaw: null }
70
- let pos = 0
71
- while (pos < buf.length) {
72
- let tag
73
- ;[tag, pos] = readVarint(buf, pos)
74
- const fieldNum = tag >>> 3
75
- const wireType = tag & 0x7
76
- if (fieldNum === 1 && wireType === 2) {
77
- let len
78
- ;[len, pos] = readVarint(buf, pos)
79
- field.name = buf.toString('utf8', pos, pos + len)
80
- pos += len
81
- } else if (fieldNum === 4 && wireType === 0) {
82
- ;[field.label, pos] = readVarint(buf, pos)
83
- } else if (fieldNum === 5 && wireType === 0) {
84
- ;[field.type, pos] = readVarint(buf, pos)
85
- } else if (fieldNum === 8 && wireType === 2) {
86
- let len
87
- ;[len, pos] = readVarint(buf, pos)
88
- // Keep the raw FieldOptions bytes so custom extensions survive (the
89
- // descriptor schema doesn't know about ext 50001/50002).
90
- field.optionsRaw = buf.subarray(pos, pos + len)
91
- pos += len
92
- } else {
93
- pos = skipField(buf, pos, wireType)
94
- }
95
- }
96
- return field
97
- }
98
-
99
- function decodeDescriptor(buf) {
100
- const message = { name: '', field: [] }
101
- let pos = 0
102
- while (pos < buf.length) {
103
- let tag
104
- ;[tag, pos] = readVarint(buf, pos)
105
- const fieldNum = tag >>> 3
106
- const wireType = tag & 0x7
107
- if (fieldNum === 1 && wireType === 2) {
108
- let len
109
- ;[len, pos] = readVarint(buf, pos)
110
- message.name = buf.toString('utf8', pos, pos + len)
111
- pos += len
112
- } else if (fieldNum === 2 && wireType === 2) {
113
- let len
114
- ;[len, pos] = readVarint(buf, pos)
115
- message.field.push(decodeFieldDescriptor(buf.subarray(pos, pos + len)))
116
- pos += len
117
- } else {
118
- // nested_type / enum_type / etc. are intentionally ignored — the
119
- // generator only walks top-level messages, matching the Python plugin.
120
- pos = skipField(buf, pos, wireType)
121
- }
122
- }
123
- return message
124
- }
125
-
126
- function decodeFileDescriptor(buf) {
127
- const file = { name: '', package: '', messageType: [] }
128
- let pos = 0
129
- while (pos < buf.length) {
130
- let tag
131
- ;[tag, pos] = readVarint(buf, pos)
132
- const fieldNum = tag >>> 3
133
- const wireType = tag & 0x7
134
- if (fieldNum === 1 && wireType === 2) {
135
- let len
136
- ;[len, pos] = readVarint(buf, pos)
137
- file.name = buf.toString('utf8', pos, pos + len)
138
- pos += len
139
- } else if (fieldNum === 2 && wireType === 2) {
140
- let len
141
- ;[len, pos] = readVarint(buf, pos)
142
- file.package = buf.toString('utf8', pos, pos + len)
143
- pos += len
144
- } else if (fieldNum === 4 && wireType === 2) {
145
- let len
146
- ;[len, pos] = readVarint(buf, pos)
147
- file.messageType.push(decodeDescriptor(buf.subarray(pos, pos + len)))
148
- pos += len
149
- } else {
150
- pos = skipField(buf, pos, wireType)
151
- }
152
- }
153
- return file
154
- }
155
-
156
- /** Decode a serialized CodeGeneratorRequest. */
157
- function decodeRequest(buf) {
158
- const request = { fileToGenerate: [], protoFile: [] }
159
- let pos = 0
160
- while (pos < buf.length) {
161
- let tag
162
- ;[tag, pos] = readVarint(buf, pos)
163
- const fieldNum = tag >>> 3
164
- const wireType = tag & 0x7
165
- if (fieldNum === 1 && wireType === 2) {
166
- let len
167
- ;[len, pos] = readVarint(buf, pos)
168
- request.fileToGenerate.push(buf.toString('utf8', pos, pos + len))
169
- pos += len
170
- } else if (fieldNum === 15 && wireType === 2) {
171
- let len
172
- ;[len, pos] = readVarint(buf, pos)
173
- request.protoFile.push(decodeFileDescriptor(buf.subarray(pos, pos + len)))
174
- pos += len
175
- } else {
176
- pos = skipField(buf, pos, wireType)
177
- }
178
- }
179
- return request
180
- }
181
-
182
- // ---------------------------------------------------------------------------
183
- // Response encoding
184
- // ---------------------------------------------------------------------------
185
-
186
- /** Encode an unsigned integer as a protobuf varint Buffer. */
187
- function encodeVarint(value) {
188
- const bytes = []
189
- let v = value
190
- while (v > 0x7f) {
191
- bytes.push((v & 0x7f) | 0x80)
192
- v = Math.floor(v / 128)
193
- }
194
- bytes.push(v & 0x7f)
195
- return Buffer.from(bytes)
196
- }
197
-
198
- function encodeTag(fieldNum, wireType) {
199
- return encodeVarint((fieldNum << 3) | wireType)
200
- }
201
-
202
- /** Encode a length-delimited (string/bytes) field: tag + length + payload. */
203
- function encodeLengthDelimited(fieldNum, payload) {
204
- const buf = Buffer.isBuffer(payload) ? payload : Buffer.from(payload, 'utf8')
205
- return Buffer.concat([encodeTag(fieldNum, 2), encodeVarint(buf.length), buf])
206
- }
207
-
208
- function encodeFile(file) {
209
- return Buffer.concat([
210
- encodeLengthDelimited(1, file.name), // name = 1
211
- encodeLengthDelimited(15, file.content), // content = 15
212
- ])
213
- }
214
-
215
- /**
216
- * Encode a CodeGeneratorResponse.
217
- * @param {{error?: string|null, supportedFeatures?: number, files?: Array<{name:string,content:string}>}} response
218
- */
219
- function encodeResponse(response) {
220
- const parts = []
221
- if (response.error != null) {
222
- parts.push(encodeLengthDelimited(1, response.error)) // error = 1
223
- }
224
- if (response.supportedFeatures != null) {
225
- parts.push(encodeTag(2, 0)) // supported_features = 2 (varint)
226
- parts.push(encodeVarint(response.supportedFeatures))
227
- }
228
- for (const file of response.files || []) {
229
- parts.push(encodeLengthDelimited(15, encodeFile(file))) // file = 15
230
- }
231
- return Buffer.concat(parts)
232
- }
233
-
234
- module.exports = {
235
- readVarint,
236
- skipField,
237
- decodeRequest,
238
- encodeResponse,
239
- }