@gaialabs/core 0.2.1 → 0.2.2
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/dist/index.cjs +385 -257
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +29 -12
- package/dist/index.d.mts +29 -12
- package/dist/index.mjs +385 -258
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -66,6 +66,7 @@ declare enum AddressType {
|
|
|
66
66
|
Address = "Address",
|
|
67
67
|
WBank = "WBank",
|
|
68
68
|
Relative = "Relative",
|
|
69
|
+
WRelative = "WRelative",
|
|
69
70
|
Location = "Location",
|
|
70
71
|
}
|
|
71
72
|
/**
|
|
@@ -84,6 +85,10 @@ declare enum MemoryMapMode {
|
|
|
84
85
|
Hi = "Hi",
|
|
85
86
|
ExHi = "ExHi",
|
|
86
87
|
}
|
|
88
|
+
declare enum CpuMode {
|
|
89
|
+
Slow = "Slow",
|
|
90
|
+
Fast = "Fast",
|
|
91
|
+
}
|
|
87
92
|
/**
|
|
88
93
|
* SNES address structure
|
|
89
94
|
* Converted from GaiaLib/Types/Address.cs
|
|
@@ -98,9 +103,10 @@ declare class Address {
|
|
|
98
103
|
constructor(bank: number, offset: number, mode: MemoryMapMode);
|
|
99
104
|
get isROM(): boolean;
|
|
100
105
|
get isCodeBank(): boolean;
|
|
101
|
-
|
|
102
|
-
static
|
|
106
|
+
toLocation(): number;
|
|
107
|
+
static fromLocation(value: number, mode: MemoryMapMode, cpuMode: CpuMode): Address;
|
|
103
108
|
static resolveBank(value: number, mode: MemoryMapMode): number;
|
|
109
|
+
toInt(): number;
|
|
104
110
|
toString(): string;
|
|
105
111
|
static typeFromCode(code: string): AddressType;
|
|
106
112
|
static codeFromType(type: AddressType): string | null;
|
|
@@ -209,12 +215,12 @@ declare enum BinType {
|
|
|
209
215
|
Palette = "Palette",
|
|
210
216
|
Sound = "Sound",
|
|
211
217
|
Music = "Music",
|
|
212
|
-
Unknown = "Unknown",
|
|
213
218
|
Meta17 = "Meta17",
|
|
214
219
|
Spritemap = "Spritemap",
|
|
215
220
|
Assembly = "Assembly",
|
|
216
221
|
Patch = "Patch",
|
|
217
222
|
Transform = "Transform",
|
|
223
|
+
Binary = "Binary",
|
|
218
224
|
}
|
|
219
225
|
//#endregion
|
|
220
226
|
//#region src/types/transforms.d.ts
|
|
@@ -317,7 +323,7 @@ interface ICompressionProvider {
|
|
|
317
323
|
* @param srcData Source data to compress
|
|
318
324
|
* @returns Compressed data
|
|
319
325
|
*/
|
|
320
|
-
compact(srcData: Uint8Array): Uint8Array;
|
|
326
|
+
compact(srcData: Uint8Array, srcPosition?: number, srcLen?: number): Uint8Array;
|
|
321
327
|
}
|
|
322
328
|
//#endregion
|
|
323
329
|
//#region src/types/files.d.ts
|
|
@@ -349,7 +355,7 @@ declare class ChunkFile {
|
|
|
349
355
|
constructor(name: string, size: number, location: number, type: DbFileType);
|
|
350
356
|
}
|
|
351
357
|
declare function createChunkFileFromDbFile(rom: Uint8Array, compression: ICompressionProvider, dbFile: DbFile, fileType: DbFileType): ChunkFile;
|
|
352
|
-
declare function createChunkFileFromDbBlock(block: DbBlock, fileType: DbFileType): ChunkFile;
|
|
358
|
+
declare function createChunkFileFromDbBlock(block: DbBlock, fileType: DbFileType, memoryMode: MemoryMapMode): ChunkFile;
|
|
353
359
|
/**
|
|
354
360
|
* Chunk file utilities
|
|
355
361
|
*/
|
|
@@ -615,7 +621,7 @@ declare class LocationWrapper {
|
|
|
615
621
|
declare class DbStringCommand {
|
|
616
622
|
id: number;
|
|
617
623
|
name: string;
|
|
618
|
-
types:
|
|
624
|
+
types: string[];
|
|
619
625
|
delimiter?: number;
|
|
620
626
|
halt: boolean;
|
|
621
627
|
constructor(data: Partial<DbStringCommand>);
|
|
@@ -633,7 +639,6 @@ declare class DbStringDictionary {
|
|
|
633
639
|
range: number;
|
|
634
640
|
command: number;
|
|
635
641
|
name: string;
|
|
636
|
-
suffix: string;
|
|
637
642
|
entries: string[];
|
|
638
643
|
constructor(data: Partial<DbStringDictionary>);
|
|
639
644
|
}
|
|
@@ -829,10 +834,16 @@ declare function createDbPath(folder?: string, extension?: string): DbPath;
|
|
|
829
834
|
interface DbConfig {
|
|
830
835
|
sfxLocation: number;
|
|
831
836
|
sfxCount: number;
|
|
837
|
+
sfxType: string;
|
|
838
|
+
sfxPack: string;
|
|
832
839
|
compression: string;
|
|
840
|
+
uncompress: boolean;
|
|
833
841
|
entryPoints: DbEntryPoint[];
|
|
834
842
|
paths: Record<BinType, DbPath>;
|
|
835
843
|
memoryMode: MemoryMapMode;
|
|
844
|
+
cpuMode: CpuMode;
|
|
845
|
+
chipset: number;
|
|
846
|
+
ramSize: number;
|
|
836
847
|
}
|
|
837
848
|
//#endregion
|
|
838
849
|
//#region src/database/structs.d.ts
|
|
@@ -1406,8 +1417,12 @@ declare class RomLayout {
|
|
|
1406
1417
|
private bestDepth;
|
|
1407
1418
|
private bestOffset;
|
|
1408
1419
|
private bestRemain;
|
|
1409
|
-
|
|
1410
|
-
|
|
1420
|
+
private root;
|
|
1421
|
+
private config;
|
|
1422
|
+
private sfxPackType;
|
|
1423
|
+
readonly sfxFiles: ChunkFile[];
|
|
1424
|
+
constructor(files: ChunkFile[], root: DbRoot);
|
|
1425
|
+
organize(): number;
|
|
1411
1426
|
private testDepth;
|
|
1412
1427
|
private commitPage;
|
|
1413
1428
|
}
|
|
@@ -1419,12 +1434,14 @@ declare class RomLayout {
|
|
|
1419
1434
|
*/
|
|
1420
1435
|
declare class RomWriter {
|
|
1421
1436
|
bpsPath?: string;
|
|
1422
|
-
|
|
1437
|
+
outBuffer?: Uint8Array;
|
|
1438
|
+
private romSize?;
|
|
1423
1439
|
readonly cartName: string;
|
|
1424
1440
|
readonly makerCode: string;
|
|
1425
1441
|
readonly root: DbRoot;
|
|
1426
1442
|
constructor(root: DbRoot, cartName: string, makerCode: string);
|
|
1427
1443
|
repack(files: ChunkFile[]): Promise<Uint8Array>;
|
|
1444
|
+
allocate(pages: number): void;
|
|
1428
1445
|
writeHeader(): void;
|
|
1429
1446
|
writeChecksum(): void;
|
|
1430
1447
|
writeEntryPoints(asmFiles: ChunkFile[]): void;
|
|
@@ -1624,7 +1641,7 @@ declare class QuintetLZ implements ICompressionProvider {
|
|
|
1624
1641
|
* @param srcData Source data to compress
|
|
1625
1642
|
* @returns Compressed data
|
|
1626
1643
|
*/
|
|
1627
|
-
compact(srcData: Uint8Array): Uint8Array;
|
|
1644
|
+
compact(srcData: Uint8Array, srcPosition?: number, srcLen?: number): Uint8Array;
|
|
1628
1645
|
}
|
|
1629
1646
|
//#endregion
|
|
1630
1647
|
//#region src/compression/index.d.ts
|
|
@@ -2448,5 +2465,5 @@ declare const isPlatformBrowser: boolean;
|
|
|
2448
2465
|
declare const isPlatformNode: string;
|
|
2449
2466
|
declare const isPlatformWebWorker: boolean;
|
|
2450
2467
|
//#endregion
|
|
2451
|
-
export { Address, AddressSpace, AddressType, AddressingModeHandler, AsmBlock, AsmBlockUtils, AsmReader, Assembler, AssemblerContext, AssemblerState, BaseRomBranchData, BaseRomBranchFileRaw, BaseRomData, BaseRomFileData, BaseRomFileRaw, BaseRomPayload, BinType, BitStream, BlockReader, BlockReaderConstants, BlockWriter, BranchBaseData, Byte, ChunkFile, ChunkFileUtils, CollaborationConfig, CompressionAlgorithms, CompressionRegistry, CopCommandProcessor, CopDef, Database, DbAddressingMode, DbAsset, DbBaseRomModule, DbBlock, DbConfig, DbEntryPoint, DbFile, DbFileType, DbGameRomModule, DbGroup, DbLabel, DbMnemonic, DbOverride, DbPart, DbPath, DbRewrite, DbRoot, DbRootUtils, DbScene, DbSfx, DbStringCommand, DbStringDictionary, DbStringLayer, DbStringType, DbStringTypeUtils, DbStruct, DbTransform, DebugExporter, DirectoryEntry, FileBaseData, FileBaseRaw, FileReadOptions, FromSupabaseByNameOptions, FromSupabaseByProjectOptions, GAIA_CORE_VERSION, GameData, GameRomArtifactData, GameRomArtifactRaw, GameRomBranchArtifactRaw, GameRomBranchData, GameRomData, ICompressionProvider, LocationWrapper, Long, MapExt, MemberType, MemoryMapMode, ObjectType, Op, OpCode, OperationContext, PlatformBranchData, PlatformData, PostProcessor, ProcessorStateManager, ProjectBranchData, ProjectBranchFileRaw, ProjectConfig, ProjectData, ProjectFileData, ProjectFileRaw, ProjectPayload, QueryStats, QuintetLZ, ReferenceManager, RegionData, RegisterType, Registers, RomDataReader, RomGenerator, RomLayout, RomProcessingConstants, RomProcessor, RomState, RomStateUtils, RomWriter, SortedMap, SpriteFrame, SpriteGroup, SpriteMap, SpritePart, Stack, StackOperations, StatusFlags, StringEntry, StringMarker, StringProcessor, StringReader, StringSizeComparer, StringWrapper, StructDef, SupabaseErrorCode, SupabaseFromError, SupabaseResult, TableEntry, TransformProcessor, TypeParser, TypedNumber, Word, XformDef, XformType, base64ToUint8Array, binaryToUtf8String, bytesToHex, clamp, crc32_buffer, crc32_text_utf16, crc32_text_utf8, createChunkFileFromDbBlock, createChunkFileFromDbFile, createDbPath, createSupabaseClient, createTempDirectory, decodeBase64, decodeBase64String, decodeDataString, encodeBase64, encodeBase64String, fileExists, fromSupabaseByGameRom, fromSupabaseById, fromSupabaseByName, fromSupabaseByProject, getDirectory, getEnvVar, getNestedProperty, getSupabaseClient, hexToBytes, hexToUint8Array, indexOfAny, isPlatformBrowser, isPlatformNode, isPlatformWebWorker, isValidBase64, listDirectory, readFileAsBinary, readFileAsText, readJsonFile, removeDirectory, resetSupabaseClient, saveFileAsBinary, saveFileAsText, summaryFromSupabaseByProject, uint8ArrayToBase64, validateEnvironmentVariables };
|
|
2468
|
+
export { Address, AddressSpace, AddressType, AddressingModeHandler, AsmBlock, AsmBlockUtils, AsmReader, Assembler, AssemblerContext, AssemblerState, BaseRomBranchData, BaseRomBranchFileRaw, BaseRomData, BaseRomFileData, BaseRomFileRaw, BaseRomPayload, BinType, BitStream, BlockReader, BlockReaderConstants, BlockWriter, BranchBaseData, Byte, ChunkFile, ChunkFileUtils, CollaborationConfig, CompressionAlgorithms, CompressionRegistry, CopCommandProcessor, CopDef, CpuMode, Database, DbAddressingMode, DbAsset, DbBaseRomModule, DbBlock, DbConfig, DbEntryPoint, DbFile, DbFileType, DbGameRomModule, DbGroup, DbLabel, DbMnemonic, DbOverride, DbPart, DbPath, DbRewrite, DbRoot, DbRootUtils, DbScene, DbSfx, DbStringCommand, DbStringDictionary, DbStringLayer, DbStringType, DbStringTypeUtils, DbStruct, DbTransform, DebugExporter, DirectoryEntry, FileBaseData, FileBaseRaw, FileReadOptions, FromSupabaseByNameOptions, FromSupabaseByProjectOptions, GAIA_CORE_VERSION, GameData, GameRomArtifactData, GameRomArtifactRaw, GameRomBranchArtifactRaw, GameRomBranchData, GameRomData, ICompressionProvider, LocationWrapper, Long, MapExt, MemberType, MemoryMapMode, ObjectType, Op, OpCode, OperationContext, PlatformBranchData, PlatformData, PostProcessor, ProcessorStateManager, ProjectBranchData, ProjectBranchFileRaw, ProjectConfig, ProjectData, ProjectFileData, ProjectFileRaw, ProjectPayload, QueryStats, QuintetLZ, ReferenceManager, RegionData, RegisterType, Registers, RomDataReader, RomGenerator, RomLayout, RomProcessingConstants, RomProcessor, RomState, RomStateUtils, RomWriter, SortedMap, SpriteFrame, SpriteGroup, SpriteMap, SpritePart, Stack, StackOperations, StatusFlags, StringEntry, StringMarker, StringProcessor, StringReader, StringSizeComparer, StringWrapper, StructDef, SupabaseErrorCode, SupabaseFromError, SupabaseResult, TableEntry, TransformProcessor, TypeParser, TypedNumber, Word, XformDef, XformType, base64ToUint8Array, binaryToUtf8String, bytesToHex, clamp, crc32_buffer, crc32_text_utf16, crc32_text_utf8, createChunkFileFromDbBlock, createChunkFileFromDbFile, createDbPath, createSupabaseClient, createTempDirectory, decodeBase64, decodeBase64String, decodeDataString, encodeBase64, encodeBase64String, fileExists, fromSupabaseByGameRom, fromSupabaseById, fromSupabaseByName, fromSupabaseByProject, getDirectory, getEnvVar, getNestedProperty, getSupabaseClient, hexToBytes, hexToUint8Array, indexOfAny, isPlatformBrowser, isPlatformNode, isPlatformWebWorker, isValidBase64, listDirectory, readFileAsBinary, readFileAsText, readJsonFile, removeDirectory, resetSupabaseClient, saveFileAsBinary, saveFileAsText, summaryFromSupabaseByProject, uint8ArrayToBase64, validateEnvironmentVariables };
|
|
2452
2469
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -66,6 +66,7 @@ declare enum AddressType {
|
|
|
66
66
|
Address = "Address",
|
|
67
67
|
WBank = "WBank",
|
|
68
68
|
Relative = "Relative",
|
|
69
|
+
WRelative = "WRelative",
|
|
69
70
|
Location = "Location",
|
|
70
71
|
}
|
|
71
72
|
/**
|
|
@@ -84,6 +85,10 @@ declare enum MemoryMapMode {
|
|
|
84
85
|
Hi = "Hi",
|
|
85
86
|
ExHi = "ExHi",
|
|
86
87
|
}
|
|
88
|
+
declare enum CpuMode {
|
|
89
|
+
Slow = "Slow",
|
|
90
|
+
Fast = "Fast",
|
|
91
|
+
}
|
|
87
92
|
/**
|
|
88
93
|
* SNES address structure
|
|
89
94
|
* Converted from GaiaLib/Types/Address.cs
|
|
@@ -98,9 +103,10 @@ declare class Address {
|
|
|
98
103
|
constructor(bank: number, offset: number, mode: MemoryMapMode);
|
|
99
104
|
get isROM(): boolean;
|
|
100
105
|
get isCodeBank(): boolean;
|
|
101
|
-
|
|
102
|
-
static
|
|
106
|
+
toLocation(): number;
|
|
107
|
+
static fromLocation(value: number, mode: MemoryMapMode, cpuMode: CpuMode): Address;
|
|
103
108
|
static resolveBank(value: number, mode: MemoryMapMode): number;
|
|
109
|
+
toInt(): number;
|
|
104
110
|
toString(): string;
|
|
105
111
|
static typeFromCode(code: string): AddressType;
|
|
106
112
|
static codeFromType(type: AddressType): string | null;
|
|
@@ -209,12 +215,12 @@ declare enum BinType {
|
|
|
209
215
|
Palette = "Palette",
|
|
210
216
|
Sound = "Sound",
|
|
211
217
|
Music = "Music",
|
|
212
|
-
Unknown = "Unknown",
|
|
213
218
|
Meta17 = "Meta17",
|
|
214
219
|
Spritemap = "Spritemap",
|
|
215
220
|
Assembly = "Assembly",
|
|
216
221
|
Patch = "Patch",
|
|
217
222
|
Transform = "Transform",
|
|
223
|
+
Binary = "Binary",
|
|
218
224
|
}
|
|
219
225
|
//#endregion
|
|
220
226
|
//#region src/types/transforms.d.ts
|
|
@@ -317,7 +323,7 @@ interface ICompressionProvider {
|
|
|
317
323
|
* @param srcData Source data to compress
|
|
318
324
|
* @returns Compressed data
|
|
319
325
|
*/
|
|
320
|
-
compact(srcData: Uint8Array): Uint8Array;
|
|
326
|
+
compact(srcData: Uint8Array, srcPosition?: number, srcLen?: number): Uint8Array;
|
|
321
327
|
}
|
|
322
328
|
//#endregion
|
|
323
329
|
//#region src/types/files.d.ts
|
|
@@ -349,7 +355,7 @@ declare class ChunkFile {
|
|
|
349
355
|
constructor(name: string, size: number, location: number, type: DbFileType);
|
|
350
356
|
}
|
|
351
357
|
declare function createChunkFileFromDbFile(rom: Uint8Array, compression: ICompressionProvider, dbFile: DbFile, fileType: DbFileType): ChunkFile;
|
|
352
|
-
declare function createChunkFileFromDbBlock(block: DbBlock, fileType: DbFileType): ChunkFile;
|
|
358
|
+
declare function createChunkFileFromDbBlock(block: DbBlock, fileType: DbFileType, memoryMode: MemoryMapMode): ChunkFile;
|
|
353
359
|
/**
|
|
354
360
|
* Chunk file utilities
|
|
355
361
|
*/
|
|
@@ -615,7 +621,7 @@ declare class LocationWrapper {
|
|
|
615
621
|
declare class DbStringCommand {
|
|
616
622
|
id: number;
|
|
617
623
|
name: string;
|
|
618
|
-
types:
|
|
624
|
+
types: string[];
|
|
619
625
|
delimiter?: number;
|
|
620
626
|
halt: boolean;
|
|
621
627
|
constructor(data: Partial<DbStringCommand>);
|
|
@@ -633,7 +639,6 @@ declare class DbStringDictionary {
|
|
|
633
639
|
range: number;
|
|
634
640
|
command: number;
|
|
635
641
|
name: string;
|
|
636
|
-
suffix: string;
|
|
637
642
|
entries: string[];
|
|
638
643
|
constructor(data: Partial<DbStringDictionary>);
|
|
639
644
|
}
|
|
@@ -829,10 +834,16 @@ declare function createDbPath(folder?: string, extension?: string): DbPath;
|
|
|
829
834
|
interface DbConfig {
|
|
830
835
|
sfxLocation: number;
|
|
831
836
|
sfxCount: number;
|
|
837
|
+
sfxType: string;
|
|
838
|
+
sfxPack: string;
|
|
832
839
|
compression: string;
|
|
840
|
+
uncompress: boolean;
|
|
833
841
|
entryPoints: DbEntryPoint[];
|
|
834
842
|
paths: Record<BinType, DbPath>;
|
|
835
843
|
memoryMode: MemoryMapMode;
|
|
844
|
+
cpuMode: CpuMode;
|
|
845
|
+
chipset: number;
|
|
846
|
+
ramSize: number;
|
|
836
847
|
}
|
|
837
848
|
//#endregion
|
|
838
849
|
//#region src/database/structs.d.ts
|
|
@@ -1406,8 +1417,12 @@ declare class RomLayout {
|
|
|
1406
1417
|
private bestDepth;
|
|
1407
1418
|
private bestOffset;
|
|
1408
1419
|
private bestRemain;
|
|
1409
|
-
|
|
1410
|
-
|
|
1420
|
+
private root;
|
|
1421
|
+
private config;
|
|
1422
|
+
private sfxPackType;
|
|
1423
|
+
readonly sfxFiles: ChunkFile[];
|
|
1424
|
+
constructor(files: ChunkFile[], root: DbRoot);
|
|
1425
|
+
organize(): number;
|
|
1411
1426
|
private testDepth;
|
|
1412
1427
|
private commitPage;
|
|
1413
1428
|
}
|
|
@@ -1419,12 +1434,14 @@ declare class RomLayout {
|
|
|
1419
1434
|
*/
|
|
1420
1435
|
declare class RomWriter {
|
|
1421
1436
|
bpsPath?: string;
|
|
1422
|
-
|
|
1437
|
+
outBuffer?: Uint8Array;
|
|
1438
|
+
private romSize?;
|
|
1423
1439
|
readonly cartName: string;
|
|
1424
1440
|
readonly makerCode: string;
|
|
1425
1441
|
readonly root: DbRoot;
|
|
1426
1442
|
constructor(root: DbRoot, cartName: string, makerCode: string);
|
|
1427
1443
|
repack(files: ChunkFile[]): Promise<Uint8Array>;
|
|
1444
|
+
allocate(pages: number): void;
|
|
1428
1445
|
writeHeader(): void;
|
|
1429
1446
|
writeChecksum(): void;
|
|
1430
1447
|
writeEntryPoints(asmFiles: ChunkFile[]): void;
|
|
@@ -1624,7 +1641,7 @@ declare class QuintetLZ implements ICompressionProvider {
|
|
|
1624
1641
|
* @param srcData Source data to compress
|
|
1625
1642
|
* @returns Compressed data
|
|
1626
1643
|
*/
|
|
1627
|
-
compact(srcData: Uint8Array): Uint8Array;
|
|
1644
|
+
compact(srcData: Uint8Array, srcPosition?: number, srcLen?: number): Uint8Array;
|
|
1628
1645
|
}
|
|
1629
1646
|
//#endregion
|
|
1630
1647
|
//#region src/compression/index.d.ts
|
|
@@ -2448,5 +2465,5 @@ declare const isPlatformBrowser: boolean;
|
|
|
2448
2465
|
declare const isPlatformNode: string;
|
|
2449
2466
|
declare const isPlatformWebWorker: boolean;
|
|
2450
2467
|
//#endregion
|
|
2451
|
-
export { Address, AddressSpace, AddressType, AddressingModeHandler, AsmBlock, AsmBlockUtils, AsmReader, Assembler, AssemblerContext, AssemblerState, BaseRomBranchData, BaseRomBranchFileRaw, BaseRomData, BaseRomFileData, BaseRomFileRaw, BaseRomPayload, BinType, BitStream, BlockReader, BlockReaderConstants, BlockWriter, BranchBaseData, Byte, ChunkFile, ChunkFileUtils, CollaborationConfig, CompressionAlgorithms, CompressionRegistry, CopCommandProcessor, CopDef, Database, DbAddressingMode, DbAsset, DbBaseRomModule, DbBlock, DbConfig, DbEntryPoint, DbFile, DbFileType, DbGameRomModule, DbGroup, DbLabel, DbMnemonic, DbOverride, DbPart, DbPath, DbRewrite, DbRoot, DbRootUtils, DbScene, DbSfx, DbStringCommand, DbStringDictionary, DbStringLayer, DbStringType, DbStringTypeUtils, DbStruct, DbTransform, DebugExporter, DirectoryEntry, FileBaseData, FileBaseRaw, FileReadOptions, FromSupabaseByNameOptions, FromSupabaseByProjectOptions, GAIA_CORE_VERSION, GameData, GameRomArtifactData, GameRomArtifactRaw, GameRomBranchArtifactRaw, GameRomBranchData, GameRomData, ICompressionProvider, LocationWrapper, Long, MapExt, MemberType, MemoryMapMode, ObjectType, Op, OpCode, OperationContext, PlatformBranchData, PlatformData, PostProcessor, ProcessorStateManager, ProjectBranchData, ProjectBranchFileRaw, ProjectConfig, ProjectData, ProjectFileData, ProjectFileRaw, ProjectPayload, QueryStats, QuintetLZ, ReferenceManager, RegionData, RegisterType, Registers, RomDataReader, RomGenerator, RomLayout, RomProcessingConstants, RomProcessor, RomState, RomStateUtils, RomWriter, SortedMap, SpriteFrame, SpriteGroup, SpriteMap, SpritePart, Stack, StackOperations, StatusFlags, StringEntry, StringMarker, StringProcessor, StringReader, StringSizeComparer, StringWrapper, StructDef, SupabaseErrorCode, SupabaseFromError, SupabaseResult, TableEntry, TransformProcessor, TypeParser, TypedNumber, Word, XformDef, XformType, base64ToUint8Array, binaryToUtf8String, bytesToHex, clamp, crc32_buffer, crc32_text_utf16, crc32_text_utf8, createChunkFileFromDbBlock, createChunkFileFromDbFile, createDbPath, createSupabaseClient, createTempDirectory, decodeBase64, decodeBase64String, decodeDataString, encodeBase64, encodeBase64String, fileExists, fromSupabaseByGameRom, fromSupabaseById, fromSupabaseByName, fromSupabaseByProject, getDirectory, getEnvVar, getNestedProperty, getSupabaseClient, hexToBytes, hexToUint8Array, indexOfAny, isPlatformBrowser, isPlatformNode, isPlatformWebWorker, isValidBase64, listDirectory, readFileAsBinary, readFileAsText, readJsonFile, removeDirectory, resetSupabaseClient, saveFileAsBinary, saveFileAsText, summaryFromSupabaseByProject, uint8ArrayToBase64, validateEnvironmentVariables };
|
|
2468
|
+
export { Address, AddressSpace, AddressType, AddressingModeHandler, AsmBlock, AsmBlockUtils, AsmReader, Assembler, AssemblerContext, AssemblerState, BaseRomBranchData, BaseRomBranchFileRaw, BaseRomData, BaseRomFileData, BaseRomFileRaw, BaseRomPayload, BinType, BitStream, BlockReader, BlockReaderConstants, BlockWriter, BranchBaseData, Byte, ChunkFile, ChunkFileUtils, CollaborationConfig, CompressionAlgorithms, CompressionRegistry, CopCommandProcessor, CopDef, CpuMode, Database, DbAddressingMode, DbAsset, DbBaseRomModule, DbBlock, DbConfig, DbEntryPoint, DbFile, DbFileType, DbGameRomModule, DbGroup, DbLabel, DbMnemonic, DbOverride, DbPart, DbPath, DbRewrite, DbRoot, DbRootUtils, DbScene, DbSfx, DbStringCommand, DbStringDictionary, DbStringLayer, DbStringType, DbStringTypeUtils, DbStruct, DbTransform, DebugExporter, DirectoryEntry, FileBaseData, FileBaseRaw, FileReadOptions, FromSupabaseByNameOptions, FromSupabaseByProjectOptions, GAIA_CORE_VERSION, GameData, GameRomArtifactData, GameRomArtifactRaw, GameRomBranchArtifactRaw, GameRomBranchData, GameRomData, ICompressionProvider, LocationWrapper, Long, MapExt, MemberType, MemoryMapMode, ObjectType, Op, OpCode, OperationContext, PlatformBranchData, PlatformData, PostProcessor, ProcessorStateManager, ProjectBranchData, ProjectBranchFileRaw, ProjectConfig, ProjectData, ProjectFileData, ProjectFileRaw, ProjectPayload, QueryStats, QuintetLZ, ReferenceManager, RegionData, RegisterType, Registers, RomDataReader, RomGenerator, RomLayout, RomProcessingConstants, RomProcessor, RomState, RomStateUtils, RomWriter, SortedMap, SpriteFrame, SpriteGroup, SpriteMap, SpritePart, Stack, StackOperations, StatusFlags, StringEntry, StringMarker, StringProcessor, StringReader, StringSizeComparer, StringWrapper, StructDef, SupabaseErrorCode, SupabaseFromError, SupabaseResult, TableEntry, TransformProcessor, TypeParser, TypedNumber, Word, XformDef, XformType, base64ToUint8Array, binaryToUtf8String, bytesToHex, clamp, crc32_buffer, crc32_text_utf16, crc32_text_utf8, createChunkFileFromDbBlock, createChunkFileFromDbFile, createDbPath, createSupabaseClient, createTempDirectory, decodeBase64, decodeBase64String, decodeDataString, encodeBase64, encodeBase64String, fileExists, fromSupabaseByGameRom, fromSupabaseById, fromSupabaseByName, fromSupabaseByProject, getDirectory, getEnvVar, getNestedProperty, getSupabaseClient, hexToBytes, hexToUint8Array, indexOfAny, isPlatformBrowser, isPlatformNode, isPlatformWebWorker, isValidBase64, listDirectory, readFileAsBinary, readFileAsText, readJsonFile, removeDirectory, resetSupabaseClient, saveFileAsBinary, saveFileAsText, summaryFromSupabaseByProject, uint8ArrayToBase64, validateEnvironmentVariables };
|
|
2452
2469
|
//# sourceMappingURL=index.d.mts.map
|