This commit is contained in:
James Liu
2026-05-29 09:03:23 +08:00
parent e584c0be3b
commit 42f7451850
4 changed files with 77 additions and 30 deletions
+6 -6
View File
@@ -34,12 +34,10 @@ export const gameInfoGet: EPR = async (info, data, send) => {
music: extraData.musics.map(mid => {
return {
musicid: K.ITEM('s32', mid),
get_border: K.ITEM('u8', 0),
}
})
}
},
infect_music: { term: K.ITEM('u8', 0) },
unlock_challenge: { term: K.ITEM('s32', 0) },
battle: { term: K.ITEM('s32', 0) },
battle_chara: { term: K.ITEM('s32', 0) },
@@ -92,13 +90,15 @@ export const gameInfoGet: EPR = async (info, data, send) => {
end_date_ms: K.ITEM('u64', BigInt(0)),
}
},
jubeat_omiyage_challenge: {},
kac2017: {},
nostalgia_concert: {},
galaxy_parade: {
corner_list: {},
gacha_table: {},
},
gitadoradon: {},
entry_information :{},
trbitemdata: {},
ctrl_movie: {},
ng_jacket: {},
ng_recommend_music: {},
ranking: {
skill_0_999: {},
skill_1000_1499: {},
+7 -5
View File
@@ -5,7 +5,9 @@ import { PlayerRanking } from "../models/playerranking";
import { getDefaultProfile, Profile } from "../models/profile";
import { getDefaultRecord, Record } from "../models/record";
import { Extra, getDefaultExtra } from "../models/extra";
import { getVersion, isDM } from "../utils";
import { isDM } from "../utils";
const DELTA_VERSION = "galaxywave_delta";
import { getDefaultScores, Scores } from "../models/scores";
import { PLUGIN_VER } from "../const";
@@ -33,7 +35,7 @@ export const regist: EPR = async (info, data, send) => {
}
const no = getPlayerNo(data);
const version = getVersion(info);
const version = DELTA_VERSION;
const playerInfo = await getOrRegisterPlayerInfo(refid, version, no);
await send.object({
@@ -54,7 +56,7 @@ export const check: EPR = async (info, data, send) => {
}
const no = getPlayerNo(data);
const version = getVersion(info)
const version = DELTA_VERSION;
const playerInfo = await getOrRegisterPlayerInfo(refid, version, no)
const result : CheckPlayerResponse = getCheckPlayerResponse(no, playerInfo.name, playerInfo.id)
@@ -69,7 +71,7 @@ export const getPlayer: EPR = async (info, data, send) => {
}
const no = getPlayerNo(data);
const version = getVersion(info);
const version = DELTA_VERSION;
const time = BigInt(31536000);
const dm = isDM(info);
const game = dm ? 'dm' : 'gf';
@@ -523,7 +525,7 @@ async function registerUser(refid: string, version: string, id = _.random(0, 999
export const savePlayers: EPR = async (info, data, send) => {
const version = getVersion(info);
const version = DELTA_VERSION;
const dm = isDM(info);
const game = dm ? 'dm' : 'gf';
const sharedScoresEnabled = isSharedSongScoresEnabled();