Fix #59
This commit is contained in:
parent
9e350717e3
commit
0d642d70a1
@ -95,12 +95,27 @@ namespace TJAPlayer3
|
||||
return (C曲リストノード)MemberwiseClone();
|
||||
}
|
||||
|
||||
|
||||
// その他
|
||||
|
||||
#region [ private ]
|
||||
//-----------------
|
||||
private static int id;
|
||||
public override bool Equals(object other)
|
||||
{
|
||||
if (other.GetType() == typeof(C曲リストノード))
|
||||
{
|
||||
C曲リストノード obj = (C曲リストノード)other;
|
||||
return this.nID == obj.nID;
|
||||
}
|
||||
return this.GetHashCode() == other.GetHashCode();
|
||||
}
|
||||
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return base.GetHashCode();
|
||||
}
|
||||
|
||||
|
||||
// その他
|
||||
|
||||
#region [ private ]
|
||||
//-----------------
|
||||
private static int id;
|
||||
//-----------------
|
||||
#endregion
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System.IO;
|
||||
using System.Diagnostics;
|
||||
using FDK;
|
||||
using System.Linq;
|
||||
using System.Drawing;
|
||||
using System.Collections.Generic;
|
||||
using static TJAPlayer3.CActSelect曲リスト;
|
||||
@ -1130,7 +1131,17 @@ namespace TJAPlayer3
|
||||
{
|
||||
if (song.strジャンル == "最近遊んだ曲" && song.eノード種別 == C曲リストノード.Eノード種別.BOX)
|
||||
{
|
||||
song.list子リスト.Add(TJAPlayer3.stage選曲.r確定された曲.Clone());
|
||||
int lastId = TJAPlayer3.stage選曲.r確定された曲.nID;
|
||||
bool songExists = false;
|
||||
|
||||
foreach (var song2 in song.list子リスト)
|
||||
{
|
||||
if (song2.nID == lastId)
|
||||
songExists = true;
|
||||
}
|
||||
|
||||
if (songExists == false)
|
||||
song.list子リスト.Add(TJAPlayer3.stage選曲.r確定された曲.Clone());
|
||||
|
||||
foreach (var song2 in song.list子リスト)
|
||||
{
|
||||
@ -1153,6 +1164,9 @@ namespace TJAPlayer3
|
||||
|
||||
}
|
||||
|
||||
// Remove duplicates
|
||||
// song.list子リスト = song.list子リスト.Distinct().ToList();
|
||||
|
||||
if (song.list子リスト.Count >= 6)
|
||||
{
|
||||
song.list子リスト.RemoveAt(1);
|
||||
|
@ -42,16 +42,6 @@ namespace TJAPlayer3
|
||||
|
||||
tNamePlateRefreshTitles(player);
|
||||
|
||||
/*
|
||||
using (var tex = pfName.DrawPrivateFont(TJAPlayer3.NamePlateConfig.data.Name[player], Color.White, Color.Black, 25))
|
||||
txName[player] = TJAPlayer3.tテクスチャの生成(tex);
|
||||
|
||||
using (var tex = pfTitle.DrawPrivateFont(TJAPlayer3.NamePlateConfig.data.Title[player], Color.Black, Color.Empty))
|
||||
txTitle[player] = TJAPlayer3.tテクスチャの生成(tex);
|
||||
|
||||
using (var tex = pfdan.DrawPrivateFont(TJAPlayer3.NamePlateConfig.data.Dan[player], Color.White, Color.Black, 22))
|
||||
txdan[player] = TJAPlayer3.tテクスチャの生成(tex);
|
||||
*/
|
||||
}
|
||||
|
||||
ctNamePlateEffect = new CCounter(0, 120, 16.6f, TJAPlayer3.Timer);
|
||||
|
Loading…
Reference in New Issue
Block a user