rework beatleader data tracking
This commit is contained in:
@ -54,7 +54,7 @@ export function getScoreSaberLeaderboardFromToken(token: ScoreSaberLeaderboardTo
|
||||
|
||||
return {
|
||||
id: token.id,
|
||||
songHash: token.songHash,
|
||||
songHash: token.songHash.toUpperCase(),
|
||||
songName: token.songName,
|
||||
songSubName: token.songSubName,
|
||||
songAuthorName: token.songAuthorName,
|
||||
|
@ -1,5 +1,7 @@
|
||||
import { getModelForClass, modelOptions, prop, ReturnModelType, Severity } from "@typegoose/typegoose";
|
||||
import { Document } from "mongoose";
|
||||
import { HandAccuracy } from "./hand-accuracy";
|
||||
import { Misses } from "./misses";
|
||||
|
||||
/**
|
||||
* The model for a BeatSaver map.
|
||||
@ -47,18 +49,8 @@ export class AdditionalScoreData {
|
||||
@prop({ required: true, index: true })
|
||||
public songScore!: number;
|
||||
|
||||
/**
|
||||
* The amount of times a bomb was hit.
|
||||
*/
|
||||
|
||||
@prop({ required: false })
|
||||
public bombCuts!: number;
|
||||
|
||||
/**
|
||||
* The amount of walls hit in the play.
|
||||
*/
|
||||
@prop({ required: false })
|
||||
public wallsHit!: number;
|
||||
// Above data is only so we can fetch it
|
||||
// --------------------------------
|
||||
|
||||
/**
|
||||
* The amount of pauses in the play.
|
||||
@ -66,28 +58,61 @@ export class AdditionalScoreData {
|
||||
@prop({ required: false })
|
||||
public pauses!: number;
|
||||
|
||||
/**
|
||||
* The miss data for the play.
|
||||
*/
|
||||
@prop({ required: false, _id: false })
|
||||
public misses!: Misses;
|
||||
|
||||
/**
|
||||
* The hand accuracy for each hand.
|
||||
* @private
|
||||
*/
|
||||
@prop({ required: false })
|
||||
public handAccuracy!: {
|
||||
/**
|
||||
* The left hand accuracy.
|
||||
*/
|
||||
left: number;
|
||||
|
||||
/**
|
||||
* The right hand accuracy.
|
||||
*/
|
||||
right: number;
|
||||
};
|
||||
@prop({ required: false, _id: false })
|
||||
public handAccuracy!: HandAccuracy;
|
||||
|
||||
/**
|
||||
* The full combo accuracy of the play.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
public fcAccuracy!: number;
|
||||
|
||||
/**
|
||||
* Whether the play was a full combo.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
public fullCombo!: boolean;
|
||||
|
||||
/**
|
||||
* The score improvement.
|
||||
*/
|
||||
@prop({ required: false, _id: false })
|
||||
public scoreImprovement?: {
|
||||
/**
|
||||
* The change in the score.
|
||||
*/
|
||||
score: number;
|
||||
|
||||
/**
|
||||
* The change in the accuracy.
|
||||
*/
|
||||
accuracy: number;
|
||||
|
||||
/**
|
||||
* The change in the misses.
|
||||
*/
|
||||
misses: Misses;
|
||||
|
||||
/**
|
||||
* Whether the play was a full combo.
|
||||
*/
|
||||
fullCombo: boolean;
|
||||
|
||||
/**
|
||||
* The change in the hand accuracy.
|
||||
*/
|
||||
handAccuracy: HandAccuracy;
|
||||
};
|
||||
}
|
||||
|
||||
export type AdditionalScoreDataDocument = AdditionalScoreData & Document;
|
@ -0,0 +1,15 @@
|
||||
import { prop } from "@typegoose/typegoose";
|
||||
|
||||
export class HandAccuracy {
|
||||
/**
|
||||
* The left hand accuracy.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
left!: number;
|
||||
|
||||
/**
|
||||
* The right hand accuracy.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
right!: number;
|
||||
}
|
33
projects/common/src/model/additional-score-data/misses.ts
Normal file
33
projects/common/src/model/additional-score-data/misses.ts
Normal file
@ -0,0 +1,33 @@
|
||||
import { prop } from "@typegoose/typegoose";
|
||||
|
||||
export class Misses {
|
||||
/**
|
||||
* The amount of misses notes + bad cuts.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
misses!: number;
|
||||
|
||||
/**
|
||||
* The total amount of notes that were missed.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
missedNotes!: number;
|
||||
|
||||
/**
|
||||
* The amount of times a bomb was hit.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
bombCuts!: number;
|
||||
|
||||
/**
|
||||
* The amount of walls hit in the play.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
wallsHit!: number;
|
||||
|
||||
/**
|
||||
* The number of bad cuts.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
badCuts!: number;
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
import { Modifier } from "./modifier";
|
||||
import { Leaderboards } from "../leaderboard";
|
||||
import { AdditionalScoreData } from "../model/additional-score-data";
|
||||
import { AdditionalScoreData } from "../model/additional-score-data/additional-score-data";
|
||||
|
||||
export default interface Score {
|
||||
/**
|
||||
|
Reference in New Issue
Block a user