mirror of
https://github.com/djhackersdev/minime.git
synced 2026-07-13 06:32:22 -05:00
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { car } from "./_car";
|
|
import { mission } from "./_mission";
|
|
import { RequestCode } from "./_defs";
|
|
import { BackgroundCode, Id, TitleCode } from "../model/base";
|
|
import { Profile } from "../model/profile";
|
|
import { SaveProfileRequest } from "../request/saveProfile";
|
|
import { bitmap } from "./_bitmap";
|
|
|
|
saveProfile.msgCode = 0x0068 as RequestCode;
|
|
saveProfile.msgLen = 0x0940;
|
|
|
|
export function saveProfile(buf: Buffer): SaveProfileRequest {
|
|
const storyRows = new Array();
|
|
|
|
for (let i = 0; i < 9; i++) {
|
|
const cells = new Array();
|
|
const rowOffset = 0x01a8 + i * 0x3c;
|
|
|
|
for (let j = 0; j < 9; j++) {
|
|
const a = buf.readUInt32LE(rowOffset + 0x04 + j * 4);
|
|
const b = buf.readUInt16LE(rowOffset + 0x28 + j * 2);
|
|
const cell = { a, b };
|
|
|
|
cells.push(cell);
|
|
}
|
|
|
|
const row = { cells };
|
|
|
|
storyRows.push(row);
|
|
}
|
|
|
|
const coursePlays = new Array();
|
|
|
|
for (let i = 0x0000; i < 0x0020; i += 2) {
|
|
coursePlays.push(buf.readUInt16LE(0x04c0 + i));
|
|
}
|
|
|
|
return {
|
|
type: "save_profile_req",
|
|
profileId: buf.readUInt32LE(0x0004) as Id<Profile>,
|
|
lv: buf.readUInt16LE(0x0026),
|
|
exp: buf.readUInt32LE(0x0028),
|
|
fame: buf.readUInt32LE(0x0468),
|
|
dpoint: buf.readUInt32LE(0x0464),
|
|
title: buf.readUInt16LE(0x0040) as TitleCode,
|
|
titles: bitmap(buf.slice(0x0042, 0x00f6)) as TitleCode[],
|
|
background: buf.readUInt8(0x0750) as BackgroundCode,
|
|
coursePlays,
|
|
missions: {
|
|
team: mission(buf.slice(0x03c4, 0x03e6)),
|
|
solo: mission(buf.slice(0x0724, 0x0746)),
|
|
},
|
|
car: car(buf.slice(0x0834, 0x0894)),
|
|
story: {
|
|
x: buf.readUInt16LE(0x06fc),
|
|
y: buf.readUInt8(0x06e0),
|
|
rows: storyRows,
|
|
},
|
|
unlocks: {
|
|
cup: buf.readUInt8(0x0110),
|
|
gauges: buf.readUInt16LE(0x0114),
|
|
music: buf.readUInt16LE(0x0140),
|
|
},
|
|
settings: {
|
|
music: buf.readUInt16LE(0x045a),
|
|
pack: buf.readUInt32LE(0x0034),
|
|
paperCup: buf.readUInt8(0x00f6),
|
|
gauges: buf.readUInt8(0x00f7),
|
|
},
|
|
};
|
|
}
|