mirror of https://github.com/hykilpikonna/AquaDX
[+] toDict
parent
e16bb5a34f
commit
250d92d225
|
@ -53,3 +53,24 @@ class Chu3NetBattleLog(
|
||||||
var monthPoLong: Int = 0,
|
var monthPoLong: Int = 0,
|
||||||
var eventPoLong: Int = 0
|
var eventPoLong: Int = 0
|
||||||
) : Chu3UserEntity() {
|
) : Chu3UserEntity() {
|
||||||
|
|
||||||
|
// musicId, difficultyId, userName, score, memberName{1-3}, memberScore{1-3}, selectedMemberNum
|
||||||
|
fun toDict() = mapOf(
|
||||||
|
"musicId" to musicId,
|
||||||
|
"difficultyId" to difficultyId,
|
||||||
|
"score" to score,
|
||||||
|
"userName" to selectUserName,
|
||||||
|
"memberName1" to opponentUserName1,
|
||||||
|
"memberScore1" to opponentScore1,
|
||||||
|
"memberName2" to opponentUserName2,
|
||||||
|
"memberScore2" to opponentScore2,
|
||||||
|
"memberName3" to opponentUserName3,
|
||||||
|
"memberScore3" to opponentScore3,
|
||||||
|
"selectedMemberNum" to listOf(
|
||||||
|
true,
|
||||||
|
selectUserId == opponentUserId1,
|
||||||
|
selectUserId == opponentUserId2,
|
||||||
|
selectUserId == opponentUserId3
|
||||||
|
).lastIndexOf(true)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue