mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 07:21:50 +08:00
Add session crowns
This commit is contained in:
parent
47b769c8b3
commit
29fb7845ed
@ -116,6 +116,7 @@ class P2Connection{
|
|||||||
this.kaAmount = 0
|
this.kaAmount = 0
|
||||||
this.results = false
|
this.results = false
|
||||||
this.branch = "normal"
|
this.branch = "normal"
|
||||||
|
scoreStorage.clearP2()
|
||||||
break
|
break
|
||||||
case "gameend":
|
case "gameend":
|
||||||
this.otherConnected = false
|
this.otherConnected = false
|
||||||
@ -130,6 +131,7 @@ class P2Connection{
|
|||||||
this.hashLock = false
|
this.hashLock = false
|
||||||
}
|
}
|
||||||
this.name = null
|
this.name = null
|
||||||
|
scoreStorage.clearP2()
|
||||||
break
|
break
|
||||||
case "gameresults":
|
case "gameresults":
|
||||||
this.results = {}
|
this.results = {}
|
||||||
@ -157,6 +159,7 @@ class P2Connection{
|
|||||||
this.clearMessage("users")
|
this.clearMessage("users")
|
||||||
this.otherConnected = true
|
this.otherConnected = true
|
||||||
this.session = true
|
this.session = true
|
||||||
|
scoreStorage.clearP2()
|
||||||
if("player" in response.value){
|
if("player" in response.value){
|
||||||
this.player = response.value.player === 2 ? 2 : 1
|
this.player = response.value.player === 2 ? 2 : 1
|
||||||
}
|
}
|
||||||
@ -164,6 +167,37 @@ class P2Connection{
|
|||||||
case "name":
|
case "name":
|
||||||
this.name = response.value ? response.value.toString() : response.value
|
this.name = response.value ? response.value.toString() : response.value
|
||||||
break
|
break
|
||||||
|
case "getcrowns":
|
||||||
|
if(response.value){
|
||||||
|
var output = {}
|
||||||
|
for(var i in response.value){
|
||||||
|
if(response.value[i]){
|
||||||
|
var score = scoreStorage.get(response.value[i], false, true)
|
||||||
|
if(score){
|
||||||
|
var crowns = {}
|
||||||
|
for(var diff in score){
|
||||||
|
if(diff !== "title"){
|
||||||
|
crowns[diff] = {
|
||||||
|
crown: score[diff].crown
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
var crowns = null
|
||||||
|
}
|
||||||
|
output[response.value[i]] = crowns
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p2.send("crowns", output)
|
||||||
|
}
|
||||||
|
break
|
||||||
|
case "crowns":
|
||||||
|
if(response.value){
|
||||||
|
for(var i in response.value){
|
||||||
|
scoreStorage.addP2(i, false, response.value[i], true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
onhashchange(){
|
onhashchange(){
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
class ScoreStorage{
|
class ScoreStorage{
|
||||||
constructor(){
|
constructor(){
|
||||||
this.scores = {}
|
this.scores = {}
|
||||||
|
this.scoresP2 = {}
|
||||||
|
this.requestP2 = new Set()
|
||||||
|
this.requestedP2 = new Set()
|
||||||
this.songTitles = {}
|
this.songTitles = {}
|
||||||
this.difficulty = ["oni", "ura", "hard", "normal", "easy"]
|
this.difficulty = ["oni", "ura", "hard", "normal", "easy"]
|
||||||
this.scoreKeys = ["points", "good", "ok", "bad", "maxCombo", "drumroll"]
|
this.scoreKeys = ["points", "good", "ok", "bad", "maxCombo", "drumroll"]
|
||||||
@ -151,15 +154,40 @@ class ScoreStorage{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
getP2(song, difficulty, isHash){
|
||||||
|
if(!song){
|
||||||
|
return this.scoresP2
|
||||||
|
}else{
|
||||||
|
var hash = isHash ? song : this.titleHash(song)
|
||||||
|
if(!(hash in this.scoresP2) && !this.requestP2.has(hash) && !this.requestedP2.has(hash)){
|
||||||
|
this.requestP2.add(hash)
|
||||||
|
this.requestedP2.add(hash)
|
||||||
|
}
|
||||||
|
if(difficulty){
|
||||||
|
if(hash in this.scoresP2){
|
||||||
|
return this.scoresP2[hash][difficulty]
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
return this.scoresP2[hash]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
add(song, difficulty, scoreObject, isHash, setTitle, saveFailed){
|
add(song, difficulty, scoreObject, isHash, setTitle, saveFailed){
|
||||||
var hash = isHash ? song : this.titleHash(song)
|
var hash = isHash ? song : this.titleHash(song)
|
||||||
if(!(hash in this.scores)){
|
if(!(hash in this.scores)){
|
||||||
this.scores[hash] = {}
|
this.scores[hash] = {}
|
||||||
}
|
}
|
||||||
if(setTitle){
|
if(difficulty){
|
||||||
this.scores[hash].title = setTitle
|
if(setTitle){
|
||||||
|
this.scores[hash].title = setTitle
|
||||||
|
}
|
||||||
|
this.scores[hash][difficulty] = scoreObject
|
||||||
|
}else{
|
||||||
|
this.scores[hash] = scoreObject
|
||||||
|
if(setTitle){
|
||||||
|
this.scores[hash].title = setTitle
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.scores[hash][difficulty] = scoreObject
|
|
||||||
this.writeString(hash)
|
this.writeString(hash)
|
||||||
this.write()
|
this.write()
|
||||||
if(saveFailed){
|
if(saveFailed){
|
||||||
@ -186,6 +214,23 @@ class ScoreStorage{
|
|||||||
}).catch(() => this.add(song, difficulty, scoreObject, isHash, setTitle, true))
|
}).catch(() => this.add(song, difficulty, scoreObject, isHash, setTitle, true))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
addP2(song, difficulty, scoreObject, isHash, setTitle){
|
||||||
|
var hash = isHash ? song : this.titleHash(song)
|
||||||
|
if(!(hash in this.scores)){
|
||||||
|
this.scoresP2[hash] = {}
|
||||||
|
}
|
||||||
|
if(difficulty){
|
||||||
|
if(setTitle){
|
||||||
|
this.scoresP2[hash].title = setTitle
|
||||||
|
}
|
||||||
|
this.scoresP2[hash][difficulty] = scoreObject
|
||||||
|
}else{
|
||||||
|
this.scoresP2[hash] = scoreObject
|
||||||
|
if(setTitle){
|
||||||
|
this.scoresP2[hash].title = setTitle
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
template(){
|
template(){
|
||||||
var template = {crown: ""}
|
var template = {crown: ""}
|
||||||
for(var i in this.scoreKeys){
|
for(var i in this.scoreKeys){
|
||||||
@ -257,4 +302,21 @@ class ScoreStorage{
|
|||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
eventLoop(){
|
||||||
|
if(p2.session && this.requestP2.size){
|
||||||
|
var req = []
|
||||||
|
this.requestP2.forEach(hash => {
|
||||||
|
req.push(hash)
|
||||||
|
})
|
||||||
|
this.requestP2.clear()
|
||||||
|
if(req.length){
|
||||||
|
p2.send("getcrowns", req)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
clearP2(){
|
||||||
|
this.scoresP2 = {}
|
||||||
|
this.requestP2.clear()
|
||||||
|
this.requestedP2.clear()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1495,20 +1495,33 @@ class SongSelect{
|
|||||||
}
|
}
|
||||||
var drawDifficulty = (ctx, i, currentUra) => {
|
var drawDifficulty = (ctx, i, currentUra) => {
|
||||||
if(currentSong.courses[this.difficultyId[i]] || currentUra){
|
if(currentSong.courses[this.difficultyId[i]] || currentUra){
|
||||||
var score = scoreStorage.get(currentSong.hash, false, true)
|
|
||||||
var crownDiff = currentUra ? "ura" : this.difficultyId[i]
|
var crownDiff = currentUra ? "ura" : this.difficultyId[i]
|
||||||
var crownType = ""
|
var players = p2.session ? 2 : 1
|
||||||
if(score && score[crownDiff]){
|
var score = [scoreStorage.get(currentSong.hash, false, true)]
|
||||||
crownType = score[crownDiff].crown
|
if(p2.session){
|
||||||
|
score[p2.player === 1 ? "push" : "unshift"](scoreStorage.getP2(currentSong.hash, false, true))
|
||||||
|
}
|
||||||
|
var reversed = false
|
||||||
|
for(var a = players; a--;){
|
||||||
|
var crownType = ""
|
||||||
|
var p = reversed ? -(a - 1) : a
|
||||||
|
if(score[p] && score[p][crownDiff]){
|
||||||
|
crownType = score[p][crownDiff].crown
|
||||||
|
}
|
||||||
|
if(!reversed && players === 2 && p === 1 && crownType){
|
||||||
|
reversed = true
|
||||||
|
a++
|
||||||
|
}else{
|
||||||
|
this.draw.crown({
|
||||||
|
ctx: ctx,
|
||||||
|
type: crownType,
|
||||||
|
x: (songSel ? x + 33 + i * 60 : x + 402 + i * 100) + (players === 2 ? p === 0 ? -13 : 13 : 0),
|
||||||
|
y: songSel ? y + 75 : y + 30,
|
||||||
|
scale: 0.25,
|
||||||
|
ratio: this.ratio / this.pixelRatio
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.draw.crown({
|
|
||||||
ctx: ctx,
|
|
||||||
type: crownType,
|
|
||||||
x: songSel ? x + 33 + i * 60 : x + 402 + i * 100,
|
|
||||||
y: songSel ? y + 75 : y + 30,
|
|
||||||
scale: 0.25,
|
|
||||||
ratio: this.ratio / this.pixelRatio
|
|
||||||
})
|
|
||||||
if(songSel){
|
if(songSel){
|
||||||
var _x = x + 33 + i * 60
|
var _x = x + 33 + i * 60
|
||||||
var _y = y + 120
|
var _y = y + 120
|
||||||
@ -2269,6 +2282,11 @@ class SongSelect{
|
|||||||
|
|
||||||
ctx.restore()
|
ctx.restore()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(p2.session && (!this.lastScoreMS || ms > this.lastScoreMS + 1000)){
|
||||||
|
this.lastScoreMS = ms
|
||||||
|
scoreStorage.eventLoop()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
drawClosedSong(config){
|
drawClosedSong(config){
|
||||||
@ -2327,31 +2345,38 @@ class SongSelect{
|
|||||||
drawSongCrown(config){
|
drawSongCrown(config){
|
||||||
if(!config.song.action && config.song.hash){
|
if(!config.song.action && config.song.hash){
|
||||||
var ctx = config.ctx
|
var ctx = config.ctx
|
||||||
var score = scoreStorage.get(config.song.hash, false, true)
|
var players = p2.session ? 2 : 1
|
||||||
|
var score = [scoreStorage.get(config.song.hash, false, true)]
|
||||||
|
var scoreDrawn = []
|
||||||
|
if(p2.session){
|
||||||
|
score[p2.player === 1 ? "push" : "unshift"](scoreStorage.getP2(config.song.hash, false, true))
|
||||||
|
}
|
||||||
for(var i = this.difficultyId.length; i--;){
|
for(var i = this.difficultyId.length; i--;){
|
||||||
var diff = this.difficultyId[i]
|
var diff = this.difficultyId[i]
|
||||||
if(!score){
|
for(var p = players; p--;){
|
||||||
break
|
if(!score[p] || scoreDrawn[p]){
|
||||||
}
|
continue
|
||||||
if(config.song.courses[this.difficultyId[i]] && score[diff] && score[diff].crown){
|
}
|
||||||
this.draw.crown({
|
if(config.song.courses[this.difficultyId[i]] && score[p][diff] && score[p][diff].crown){
|
||||||
ctx: ctx,
|
this.draw.crown({
|
||||||
type: score[diff].crown,
|
ctx: ctx,
|
||||||
x: config.x + this.songAsset.width / 2,
|
type: score[p][diff].crown,
|
||||||
y: config.y - 13,
|
x: (config.x + this.songAsset.width / 2) + (players === 2 ? p === 0 ? -13 : 13 : 0),
|
||||||
scale: 0.3,
|
y: config.y - 13,
|
||||||
ratio: this.ratio / this.pixelRatio
|
scale: 0.3,
|
||||||
})
|
ratio: this.ratio / this.pixelRatio
|
||||||
this.draw.diffIcon({
|
})
|
||||||
ctx: ctx,
|
this.draw.diffIcon({
|
||||||
diff: i,
|
ctx: ctx,
|
||||||
x: config.x + this.songAsset.width / 2 + 8,
|
diff: i,
|
||||||
y: config.y - 8,
|
x: (config.x + this.songAsset.width / 2 + 8) + (players === 2 ? p === 0 ? -13 : 13 : 0),
|
||||||
scale: diff === "hard" || diff === "normal" ? 0.45 : 0.5,
|
y: config.y - 8,
|
||||||
border: 6.5,
|
scale: diff === "hard" || diff === "normal" ? 0.45 : 0.5,
|
||||||
small: true
|
border: 6.5,
|
||||||
})
|
small: true
|
||||||
break
|
})
|
||||||
|
scoreDrawn[p] = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -283,6 +283,12 @@ async def connection(ws, path):
|
|||||||
ws.send(sent_msg),
|
ws.send(sent_msg),
|
||||||
user["other_user"]["ws"].send(sent_msg)
|
user["other_user"]["ws"].send(sent_msg)
|
||||||
])
|
])
|
||||||
|
elif type == "crowns" or type == "getcrowns":
|
||||||
|
if user["other_user"]["action"] == "songsel":
|
||||||
|
sent_msg = msgobj(type, value)
|
||||||
|
await asyncio.wait([
|
||||||
|
user["other_user"]["ws"].send(sent_msg)
|
||||||
|
])
|
||||||
elif type == "join":
|
elif type == "join":
|
||||||
# Start game
|
# Start game
|
||||||
if value == None:
|
if value == None:
|
||||||
|
Loading…
Reference in New Issue
Block a user