mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Added methods for reading strings at specific offsets to Cursor.
This commit is contained in:
parent
21299646e4
commit
4499009e5a
@ -238,6 +238,47 @@ export abstract class AbstractCursor implements Cursor {
|
|||||||
return String.fromCodePoint(...code_points);
|
return String.fromCodePoint(...code_points);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string_ascii_at(
|
||||||
|
offset: number,
|
||||||
|
max_byte_length: number,
|
||||||
|
null_terminated: boolean,
|
||||||
|
): string {
|
||||||
|
const code_points: number[] = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < max_byte_length; i++) {
|
||||||
|
const code_point = this.u8_at(offset + i);
|
||||||
|
|
||||||
|
if (null_terminated && code_point === 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
code_points.push(code_point);
|
||||||
|
}
|
||||||
|
|
||||||
|
return String.fromCodePoint(...code_points);
|
||||||
|
}
|
||||||
|
|
||||||
|
string_utf16_at(
|
||||||
|
offset: number,
|
||||||
|
max_byte_length: number,
|
||||||
|
null_terminated: boolean,
|
||||||
|
): string {
|
||||||
|
const code_points: number[] = [];
|
||||||
|
const len = Math.floor(max_byte_length / 2);
|
||||||
|
|
||||||
|
for (let i = 0; i < len; i++) {
|
||||||
|
const code_point = this.u16_at(offset + i * 2);
|
||||||
|
|
||||||
|
if (null_terminated && code_point === 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
code_points.push(code_point);
|
||||||
|
}
|
||||||
|
|
||||||
|
return String.fromCodePoint(...code_points);
|
||||||
|
}
|
||||||
|
|
||||||
array_buffer(size: number = this.size - this.position): ArrayBuffer {
|
array_buffer(size: number = this.size - this.position): ArrayBuffer {
|
||||||
this.check_size("size", size, size);
|
this.check_size("size", size, size);
|
||||||
const r = this.backing_buffer.slice(
|
const r = this.backing_buffer.slice(
|
||||||
|
@ -169,6 +169,24 @@ export interface Cursor {
|
|||||||
drop_remaining: boolean,
|
drop_remaining: boolean,
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads an ASCII-encoded string at the given absolute offset. Doesn't increment position.
|
||||||
|
*/
|
||||||
|
string_ascii_at(
|
||||||
|
offset: number,
|
||||||
|
max_byte_length: number,
|
||||||
|
null_terminated: boolean,
|
||||||
|
): string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads an UTF-16-encoded string at the given absolute offset. Doesn't increment position.
|
||||||
|
*/
|
||||||
|
string_utf16_at(
|
||||||
|
offset: number,
|
||||||
|
max_byte_length: number,
|
||||||
|
null_terminated: boolean,
|
||||||
|
): string;
|
||||||
|
|
||||||
array_buffer(size?: number): ArrayBuffer;
|
array_buffer(size?: number): ArrayBuffer;
|
||||||
|
|
||||||
copy_to_uint8_array(array: Uint8Array, size?: number): this;
|
copy_to_uint8_array(array: Uint8Array, size?: number): this;
|
||||||
|
Loading…
Reference in New Issue
Block a user