Files
djhackersdev_minime/src/idz/userdb/encoder/_team.ts
T
2021-02-03 23:43:44 +00:00

125 lines
4.0 KiB
TypeScript

import { writeSjisStr } from "../../util/bin";
import { CreateAutoTeamResponse } from "../response/createAutoTeam";
import { LoadTeamResponse } from "../response/loadTeam";
import { encodeChara1 } from "./_chara";
function _team1(
msgCode: number,
res: CreateAutoTeamResponse | LoadTeamResponse
) {
const buf = Buffer.alloc(0x0ca0);
const leader = res.members.find(item => item.leader === true);
buf.writeInt16LE(msgCode, 0x0000);
buf.writeUInt32LE(res.team.extId, 0x000c);
writeSjisStr(buf, 0x0010, 0x0024, leader ? leader.profile.name : "Error");
writeSjisStr(buf, 0x0024, 0x0044, res.team.name);
writeSjisStr(buf, 0x0044, 0x00d8, process.env.SHOP_NAME || "");
buf.writeUInt32LE(res.team.nameBg, 0x00d8);
buf.writeUInt32LE(res.team.nameFx, 0x00dc);
buf.fill(0xff, 0x00e0, 0x00f9); // Bitset: Unlocked BGs probably
buf.fill(0xff, 0x00f9, 0x0101); // Bitset: Unlocked FX probably
buf.writeUInt32LE(leader ? leader.profile.aimeId : 0, 0x0080);
for (let i = 0; i < 6; i++) {
const base = 0x011c + i * 0x005c; // Differs between v1 and v2
const member = res.members[i];
if (member === undefined) {
break;
}
const { profile, chara } = member;
const accessTime = (profile.accessTime.getTime() / 1000) | 0;
buf.writeInt32LE(profile.aimeId, base + 0x0000);
writeSjisStr(buf, 0x0004, 0x0018, profile.name);
buf.writeInt32LE(profile.lv, base + 0x0018);
buf.writeInt32LE(0, base + 0x0024); // Month points, TODO
buf.writeUInt32LE(accessTime, base + 0x0034);
encodeChara1(chara).copy(buf, base + 0x0044);
}
// Team Time Attack:
/*for (let i = 0; i < 6; i++) {
const base = 0x0344 + 0x20 * i;
buf.writeInt16LE(0x00001, base + 0x0000);
buf.writeInt8(0x02, base + 0x0003);
buf.writeInt32LE(0x00000003, base + 0x0004);
iconv.encode("str\0", "shift_jis").copy(buf, base + 0x0008);
buf.writeInt32LE(0x00000004, base + 0x001c);
}*/
return buf;
}
function _team2(
msgCode: number,
res: CreateAutoTeamResponse | LoadTeamResponse
) {
const buf = Buffer.alloc(0x0ca0);
const leader = res.members.find(item => item.leader === true);
buf.writeInt16LE(msgCode, 0x0000);
buf.writeUInt32LE(res.team.extId, 0x000c);
writeSjisStr(buf, 0x0010, 0x0024, leader ? leader.profile.name : "Error");
writeSjisStr(buf, 0x0024, 0x0044, res.team.name);
writeSjisStr(buf, 0x0044, 0x00d8, process.env.SHOP_NAME || "");
buf.writeUInt32LE(res.team.nameBg, 0x00d8);
buf.writeUInt32LE(res.team.nameFx, 0x00dc);
buf.fill(0xff, 0x00e0, 0x00f9); // Bitset: Unlocked BGs probably
buf.fill(0xff, 0x00f9, 0x0101); // Bitset: Unlocked FX probably
buf.writeUInt32LE(leader ? leader.profile.aimeId : 0, 0x0080);
for (let i = 0; i < 6; i++) {
const base = 0x0120 + i * 0x005c; // Differs between v1 and v2
const member = res.members[i];
if (member === undefined) {
break;
}
const { profile, chara } = member;
const accessTime = (profile.accessTime.getTime() / 1000) | 0;
buf.writeInt32LE(profile.aimeId, base + 0x0000);
writeSjisStr(buf, 0x0004, 0x0018, profile.name);
buf.writeInt32LE(profile.lv, base + 0x0018);
buf.writeInt32LE(0, base + 0x0024); // Month points, TODO
buf.writeUInt32LE(accessTime, base + 0x0034);
encodeChara1(chara).copy(buf, base + 0x0044);
}
// Team Time Attack:
/*for (let i = 0; i < 6; i++) {
const base = 0x0344 + 0x20 * i;
buf.writeInt16LE(0x00001, base + 0x0000);
buf.writeInt8(0x02, base + 0x0003);
buf.writeInt32LE(0x00000003, base + 0x0004);
iconv.encode("str\0", "shift_jis").copy(buf, base + 0x0008);
buf.writeInt32LE(0x00000004, base + 0x001c);
}*/
return buf;
}
export function createAutoTeam1(res: CreateAutoTeamResponse): Buffer {
return _team1(0x007c, res);
}
export function loadTeam1(res: LoadTeamResponse): Buffer {
return _team1(0x0078, res);
}
export function createAutoTeam2(res: CreateAutoTeamResponse): Buffer {
return _team2(0x0078, res);
}
export function loadTeam2(res: LoadTeamResponse): Buffer {
return _team2(0x0074, res);
}