mirror of
https://github.com/ppy/osu.git
synced 2025-01-17 23:23:20 +08:00
Merge branch 'master' of https://github.com/ppy/osu
This commit is contained in:
commit
491efe4958
@ -1 +1 @@
|
|||||||
Subproject commit 797a351db2e852fef5296453641ffbf6b2f6dc11
|
Subproject commit 00740e0185b9d828b67d6228d8e5d5bf0d49af94
|
@ -497,8 +497,13 @@ namespace osu.Game.Beatmaps
|
|||||||
using (var stream = new StreamReader(reader.GetStream(mapName)))
|
using (var stream = new StreamReader(reader.GetStream(mapName)))
|
||||||
metadata = Decoder.GetDecoder(stream).DecodeBeatmap(stream).Metadata;
|
metadata = Decoder.GetDecoder(stream).DecodeBeatmap(stream).Metadata;
|
||||||
|
|
||||||
|
|
||||||
// check if a set already exists with the same online id.
|
// check if a set already exists with the same online id.
|
||||||
beatmapSet = beatmaps.BeatmapSets.FirstOrDefault(b => b.OnlineBeatmapSetID == metadata.OnlineBeatmapSetID) ?? new BeatmapSetInfo
|
if (metadata.OnlineBeatmapSetID != null)
|
||||||
|
beatmapSet = beatmaps.BeatmapSets.FirstOrDefault(b => b.OnlineBeatmapSetID == metadata.OnlineBeatmapSetID);
|
||||||
|
|
||||||
|
if (beatmapSet == null)
|
||||||
|
beatmapSet = new BeatmapSetInfo
|
||||||
{
|
{
|
||||||
OnlineBeatmapSetID = metadata.OnlineBeatmapSetID,
|
OnlineBeatmapSetID = metadata.OnlineBeatmapSetID,
|
||||||
Beatmaps = new List<BeatmapInfo>(),
|
Beatmaps = new List<BeatmapInfo>(),
|
||||||
@ -507,6 +512,7 @@ namespace osu.Game.Beatmaps
|
|||||||
Metadata = metadata
|
Metadata = metadata
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
var mapNames = reader.Filenames.Where(f => f.EndsWith(".osu"));
|
var mapNames = reader.Filenames.Where(f => f.EndsWith(".osu"));
|
||||||
|
|
||||||
foreach (var name in mapNames)
|
foreach (var name in mapNames)
|
||||||
@ -525,7 +531,7 @@ namespace osu.Game.Beatmaps
|
|||||||
beatmap.BeatmapInfo.Hash = ms.ComputeSHA2Hash();
|
beatmap.BeatmapInfo.Hash = ms.ComputeSHA2Hash();
|
||||||
beatmap.BeatmapInfo.MD5Hash = ms.ComputeMD5Hash();
|
beatmap.BeatmapInfo.MD5Hash = ms.ComputeMD5Hash();
|
||||||
|
|
||||||
var existing = beatmaps.Beatmaps.FirstOrDefault(b => b.Hash == beatmap.BeatmapInfo.Hash || b.OnlineBeatmapID == beatmap.BeatmapInfo.OnlineBeatmapID);
|
var existing = beatmaps.Beatmaps.FirstOrDefault(b => b.Hash == beatmap.BeatmapInfo.Hash || beatmap.BeatmapInfo.OnlineBeatmapID != null && b.OnlineBeatmapID == beatmap.BeatmapInfo.OnlineBeatmapID);
|
||||||
|
|
||||||
if (existing == null)
|
if (existing == null)
|
||||||
{
|
{
|
||||||
|
@ -105,6 +105,7 @@ namespace osu.Game.Overlays.Direct
|
|||||||
|
|
||||||
public enum DirectSortCriteria
|
public enum DirectSortCriteria
|
||||||
{
|
{
|
||||||
|
Relevance,
|
||||||
Title,
|
Title,
|
||||||
Artist,
|
Artist,
|
||||||
Creator,
|
Creator,
|
||||||
|
@ -43,6 +43,7 @@ namespace osu.Game.Overlays
|
|||||||
protected override SearchableListFilterControl<DirectSortCriteria, RankStatus> CreateFilterControl() => new FilterControl();
|
protected override SearchableListFilterControl<DirectSortCriteria, RankStatus> CreateFilterControl() => new FilterControl();
|
||||||
|
|
||||||
private IEnumerable<BeatmapSetInfo> beatmapSets;
|
private IEnumerable<BeatmapSetInfo> beatmapSets;
|
||||||
|
|
||||||
public IEnumerable<BeatmapSetInfo> BeatmapSets
|
public IEnumerable<BeatmapSetInfo> BeatmapSets
|
||||||
{
|
{
|
||||||
get { return beatmapSets; }
|
get { return beatmapSets; }
|
||||||
@ -69,6 +70,7 @@ namespace osu.Game.Overlays
|
|||||||
}
|
}
|
||||||
|
|
||||||
private ResultCounts resultAmounts;
|
private ResultCounts resultAmounts;
|
||||||
|
|
||||||
public ResultCounts ResultAmounts
|
public ResultCounts ResultAmounts
|
||||||
{
|
{
|
||||||
get { return resultAmounts; }
|
get { return resultAmounts; }
|
||||||
@ -115,7 +117,23 @@ namespace osu.Game.Overlays
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
Filter.Search.Current.ValueChanged += text => { if (text != string.Empty) Header.Tabs.Current.Value = DirectTab.Search; };
|
Filter.Search.Current.ValueChanged += text =>
|
||||||
|
{
|
||||||
|
if (text != string.Empty)
|
||||||
|
{
|
||||||
|
Header.Tabs.Current.Value = DirectTab.Search;
|
||||||
|
|
||||||
|
if (Filter.Tabs.Current.Value == DirectSortCriteria.Ranked)
|
||||||
|
Filter.Tabs.Current.Value = DirectSortCriteria.Relevance;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Header.Tabs.Current.Value = DirectTab.NewestMaps;
|
||||||
|
|
||||||
|
if (Filter.Tabs.Current.Value == DirectSortCriteria.Relevance)
|
||||||
|
Filter.Tabs.Current.Value = DirectSortCriteria.Ranked;
|
||||||
|
}
|
||||||
|
};
|
||||||
((FilterControl)Filter).Ruleset.ValueChanged += ruleset => Scheduler.AddOnce(updateSearch);
|
((FilterControl)Filter).Ruleset.ValueChanged += ruleset => Scheduler.AddOnce(updateSearch);
|
||||||
Filter.DisplayStyleControl.DisplayStyle.ValueChanged += recreatePanels;
|
Filter.DisplayStyleControl.DisplayStyle.ValueChanged += recreatePanels;
|
||||||
Filter.DisplayStyleControl.Dropdown.Current.ValueChanged += rankStatus => Scheduler.AddOnce(updateSearch);
|
Filter.DisplayStyleControl.Dropdown.Current.ValueChanged += rankStatus => Scheduler.AddOnce(updateSearch);
|
||||||
|
@ -382,7 +382,7 @@ namespace osu.Game.Overlays.Profile
|
|||||||
}
|
}
|
||||||
|
|
||||||
tryAddInfoRightLine(FontAwesome.fa_map_marker, user.Location);
|
tryAddInfoRightLine(FontAwesome.fa_map_marker, user.Location);
|
||||||
tryAddInfoRightLine(FontAwesome.fa_heart_o, user.Intrerests);
|
tryAddInfoRightLine(FontAwesome.fa_heart_o, user.Interests);
|
||||||
tryAddInfoRightLine(FontAwesome.fa_suitcase, user.Occupation);
|
tryAddInfoRightLine(FontAwesome.fa_suitcase, user.Occupation);
|
||||||
infoTextRight.NewParagraph();
|
infoTextRight.NewParagraph();
|
||||||
if (!string.IsNullOrEmpty(user.Twitter))
|
if (!string.IsNullOrEmpty(user.Twitter))
|
||||||
|
@ -75,7 +75,7 @@ namespace osu.Game.Users
|
|||||||
public bool Active;
|
public bool Active;
|
||||||
|
|
||||||
[JsonProperty(@"interests")]
|
[JsonProperty(@"interests")]
|
||||||
public string Intrerests;
|
public string Interests;
|
||||||
|
|
||||||
[JsonProperty(@"occupation")]
|
[JsonProperty(@"occupation")]
|
||||||
public string Occupation;
|
public string Occupation;
|
||||||
|
Loading…
Reference in New Issue
Block a user