mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Changed typings of array writing methods in AbstractWritableCursor to be more permissive.
The purpose of this change is to allow using TypedArrays with these methods.
This commit is contained in:
parent
a7e45bed61
commit
0d4a15a035
@ -48,25 +48,25 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_u8_array(array: readonly number[]): this {
|
write_u8_array(array: ArrayLike<number>): this {
|
||||||
this.write_u8_array_at(this.position, array);
|
this.write_u8_array_at(this.position, array);
|
||||||
this._position += array.length;
|
this._position += array.length;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_u16_array(array: readonly number[]): this {
|
write_u16_array(array: ArrayLike<number>): this {
|
||||||
this.write_u16_array_at(this.position, array);
|
this.write_u16_array_at(this.position, array);
|
||||||
this._position += array.length * 2;
|
this._position += array.length * 2;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_u32_array(array: readonly number[]): this {
|
write_u32_array(array: ArrayLike<number>): this {
|
||||||
this.write_u32_array_at(this.position, array);
|
this.write_u32_array_at(this.position, array);
|
||||||
this._position += array.length * 4;
|
this._position += array.length * 4;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_i32_array(array: readonly number[]): this {
|
write_i32_array(array: ArrayLike<number>): this {
|
||||||
this.write_i32_array_at(this.position, array);
|
this.write_i32_array_at(this.position, array);
|
||||||
this._position += array.length * 4;
|
this._position += array.length * 4;
|
||||||
return this;
|
return this;
|
||||||
@ -151,13 +151,13 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_u8_array_at(offset: number, array: readonly number[]): this {
|
write_u8_array_at(offset: number, array: ArrayLike<number>): this {
|
||||||
this.ensure_size(array.length, offset);
|
this.ensure_size(array.length, offset);
|
||||||
new Uint8Array(this.backing_buffer, this.offset + offset).set(new Uint8Array(array));
|
new Uint8Array(this.backing_buffer, this.offset + offset).set(new Uint8Array(array));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_u16_array_at(offset: number, array: readonly number[]): this {
|
write_u16_array_at(offset: number, array: ArrayLike<number>): this {
|
||||||
this.ensure_size(2 * array.length, offset);
|
this.ensure_size(2 * array.length, offset);
|
||||||
const len = array.length;
|
const len = array.length;
|
||||||
|
|
||||||
@ -168,7 +168,7 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_u32_array_at(offset: number, array: readonly number[]): this {
|
write_u32_array_at(offset: number, array: ArrayLike<number>): this {
|
||||||
this.ensure_size(4 * array.length, offset);
|
this.ensure_size(4 * array.length, offset);
|
||||||
const len = array.length;
|
const len = array.length;
|
||||||
|
|
||||||
@ -179,7 +179,7 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_i32_array_at(offset: number, array: readonly number[]): this {
|
write_i32_array_at(offset: number, array: ArrayLike<number>): this {
|
||||||
this.ensure_size(4 * array.length, offset);
|
this.ensure_size(4 * array.length, offset);
|
||||||
const len = array.length;
|
const len = array.length;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user