track difficulty and characteristic for scoresaber scores
This commit is contained in:
@ -2,7 +2,6 @@ import { getModelForClass, modelOptions, plugin, Prop, ReturnModelType, Severity
|
||||
import Score from "../score";
|
||||
import { Modifier } from "../../../score/modifier";
|
||||
import ScoreSaberScoreToken from "../../../types/token/scoresaber/score-saber-score-token";
|
||||
import ScoreSaberLeaderboardToken from "../../../types/token/scoresaber/score-saber-leaderboard-token";
|
||||
import ScoreSaberLeaderboard from "../../../leaderboard/impl/scoresaber-leaderboard";
|
||||
import { type ScoreSaberLeaderboardPlayerInfoToken } from "../../../types/token/scoresaber/score-saber-leaderboard-player-info-token";
|
||||
import { Document } from "mongoose";
|
||||
@ -82,7 +81,7 @@ export type ScoreSaberScore = InstanceType<typeof ScoreSaberScorePublic>;
|
||||
*/
|
||||
export function getScoreSaberScoreFromToken(
|
||||
token: ScoreSaberScoreToken,
|
||||
leaderboard: ScoreSaberLeaderboardToken | ScoreSaberLeaderboard,
|
||||
leaderboard: ScoreSaberLeaderboard,
|
||||
playerId?: string
|
||||
): ScoreSaberScore {
|
||||
const modifiers: Modifier[] =
|
||||
@ -100,6 +99,8 @@ export function getScoreSaberScoreFromToken(
|
||||
return {
|
||||
playerId: playerId || token.leaderboardPlayerInfo.id,
|
||||
leaderboardId: leaderboard.id,
|
||||
difficulty: leaderboard.difficulty.difficulty,
|
||||
characteristic: leaderboard.difficulty.characteristic,
|
||||
score: token.baseScore,
|
||||
accuracy: (token.baseScore / leaderboard.maxScore) * 100,
|
||||
rank: token.rank,
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { Modifier } from "../../score/modifier";
|
||||
import { AdditionalScoreData } from "../additional-score-data/additional-score-data";
|
||||
import { type Leaderboards } from "../../leaderboard";
|
||||
import { prop } from "@typegoose/typegoose";
|
||||
import { type MapDifficulty } from "@ssr/score/map-difficulty";
|
||||
import { type MapCharacteristic } from "@ssr/types/map-characteristic";
|
||||
|
||||
/**
|
||||
* The model for a score.
|
||||
@ -15,11 +16,22 @@ export default class Score {
|
||||
|
||||
/**
|
||||
* The id of the player who set the score.
|
||||
* @private
|
||||
*/
|
||||
@prop({ required: true, index: true })
|
||||
public readonly playerId!: string;
|
||||
|
||||
/**
|
||||
* The map difficulty played in the score.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
public readonly difficulty!: MapDifficulty;
|
||||
|
||||
/**
|
||||
* The characteristic of the map.
|
||||
*/
|
||||
@prop({ required: true })
|
||||
public readonly characteristic!: MapCharacteristic;
|
||||
|
||||
/**
|
||||
* The base score for the score.
|
||||
* @private
|
||||
|
Reference in New Issue
Block a user