Merge pull request #86 from LoveEevee/songsel-fix-title-cache

SongSel: Fix title cache
This commit is contained in:
Bui 2018-12-02 17:51:31 +00:00 committed by GitHub
commit bf341eb98a
2 changed files with 45 additions and 13 deletions

View File

@ -72,6 +72,14 @@ class CanvasCache{
set(config, callback){
return this.get(config, callback, true)
}
clear(){
this.x = 0
this.y = 0
this.lastW = 0
this.lastH = 0
this.map.clear()
this.ctx.clearRect(0, 0, this.canvas.width * this.scale, this.canvas.height * this.scale)
}
clean(){
delete this.map
delete this.ctx

View File

@ -179,6 +179,7 @@ class SongSelect{
this.categoryCache = new CanvasCache()
this.difficultyCache = new CanvasCache()
this.sessionCache = new CanvasCache()
this.currentSongCache = new CanvasCache()
this.difficulty = ["かんたん", "ふつう", "むずかしい", "おに"]
this.difficultyId = ["easy", "normal", "hard", "oni", "ura"]
@ -721,9 +722,15 @@ class SongSelect{
var borders = (this.songAsset.border + this.songAsset.innerBorder) * 2
this.songTitleCache.resize(
(this.songAsset.width - borders + 1) * this.songs.length,
(this.songAsset.width - borders + 1) * Math.ceil(this.songs.length / 3),
(this.songAsset.height - borders + 1) * 3,
ratio + 0.5
ratio + 0.2
)
this.currentSongCache.resize(
(this.songAsset.width - borders + 1) * 2,
this.songAsset.height - borders + 1,
ratio + 0.2
)
this.selectTextCache.resize((280 + 53 + 60 + 1) * 2, this.songAsset.marginTop + 15, ratio + 0.5)
@ -1016,6 +1023,11 @@ class SongSelect{
highlight = 0
}
if(this.currentSongTitle !== currentSong.title){
this.currentSongTitle = currentSong.title
this.currentSongCache.clear()
}
this.draw.songFrame({
ctx: ctx,
x: winW / 2 - selectedWidth / 2 + xOffset,
@ -1312,13 +1324,13 @@ class SongSelect{
var textY = opened * 12 + (1 - opened) * 7
if(currentSong.subtitle){
this.songTitleCache.get({
this.currentSongCache.get({
ctx: ctx,
x: x + textX - textW,
y: y + textY,
w: textW,
h: textH,
id: currentSong.subtitle,
id: "subtitle",
}, ctx => {
this.draw.verticalText({
ctx: ctx,
@ -1353,14 +1365,7 @@ class SongSelect{
ctx.fillStyle = selectedSkin.background
ctx.fillRect(x, y, w, h)
ctx.globalAlpha = 1
this.songTitleCache.get({
ctx: ctx,
x: x + textX,
y: y + textY - 7,
w: textW,
h: textH,
id: currentSong.title + selectedSkin.outline,
}, ctx => {
var verticalTitle = ctx => {
this.draw.verticalText({
ctx: ctx,
text: currentSong.title,
@ -1374,7 +1379,26 @@ class SongSelect{
fontSize: 40,
fontFamily: this.font
})
})
}
if(selectedSkin.outline === "#000"){
this.currentSongCache.get({
ctx: ctx,
x: x + textX,
y: y + textY - 7,
w: textW,
h: textH,
id: "title",
}, verticalTitle)
}else{
this.songTitleCache.get({
ctx: ctx,
x: x + textX,
y: y + textY - 7,
w: textW,
h: textH,
id: currentSong.title + selectedSkin.outline,
}, verticalTitle)
}
if(!songSel && this.selectableText !== currentSong.title){
this.draw.verticalText({
ctx: ctx,