bufferStuff/readers/ReaderLE.ts

87 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-10-24 12:04:07 +01:00
// Copyright (c) Holly Stubbs (tgpholly) - Licensed under MIT
// Check LICENSE in repository root for more information.
2023-04-28 16:47:02 +01:00
import { IReader } from "./IReader";
2023-07-28 10:25:08 +01:00
import { ReaderBase } from "../base/ReaderBase";
2023-04-28 16:47:02 +01:00
export class ReaderLE extends ReaderBase implements IReader {
public readShort() {
const value = this.buffer.readInt16LE(this.offset);
this.offset += 2
return value;
}
public readUShort() {
const value = this.buffer.readUInt16LE(this.offset);
this.offset += 2
return value;
}
public readInt() {
const value = this.buffer.readInt32LE(this.offset);
this.offset += 4;
return value;
}
public readUInt() {
const value = this.buffer.readUInt32LE(this.offset);
this.offset += 4;
return value;
}
public readLong() {
const value = this.buffer.readBigInt64LE(this.offset);
this.offset += 8;
return value;
}
public readULong() {
const value = this.buffer.readBigUint64LE(this.offset);
this.offset += 8;
return value;
}
public readFloat() {
const value = this.buffer.readFloatLE(this.offset);
this.offset += 4;
return value;
}
public readDouble() {
const value = this.buffer.readDoubleLE(this.offset);
this.offset += 8;
return value;
}
public readString() {
const length = this.readUShort();
2023-04-28 16:47:02 +01:00
let text:string = "";
for (let i = 0; i < length; i++) {
text += String.fromCharCode(this.readUByte());
}
return text;
}
public readString16() {
2023-04-28 16:47:02 +01:00
const length = this.readUShort();
let text:string = "";
for (let i = 0; i < length; i++) {
text += String.fromCharCode(this.readUShort());
2023-04-28 16:47:02 +01:00
}
return text;
}
2023-05-02 10:10:47 +01:00
public readShortsAsString(shortsToRead:number) {
let text = "";
for (let i = 0; i < shortsToRead; i++) {
2023-05-02 10:10:47 +01:00
text += String.fromCharCode(this.readUShort());
}
return text;
}
2023-04-28 16:47:02 +01:00
}