2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-29 20:13:58 +09:00
|
|
|
|
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
2016-11-08 18:13:20 -05:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
2016-11-14 17:23:33 +09:00
|
|
|
|
using osu.Framework.Audio.Track;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-11-14 17:23:33 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Transforms;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.Logging;
|
|
|
|
|
using osu.Framework.Screens;
|
2016-11-14 17:23:33 +09:00
|
|
|
|
using osu.Framework.Timing;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using osu.Game.Configuration;
|
2016-11-14 17:23:33 +09:00
|
|
|
|
using osu.Game.Database;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using osu.Game.Input.Handlers;
|
2016-11-14 18:03:20 +09:00
|
|
|
|
using osu.Game.Modes;
|
2016-11-29 23:59:56 +09:00
|
|
|
|
using osu.Game.Modes.UI;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2016-11-29 15:41:48 +09:00
|
|
|
|
using osu.Game.Screens.Ranking;
|
2016-12-17 20:59:41 +01:00
|
|
|
|
using System;
|
2017-01-27 21:57:22 +09:00
|
|
|
|
using System.Linq;
|
2016-09-29 20:13:58 +09:00
|
|
|
|
|
2016-11-14 17:23:33 +09:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2017-02-17 18:59:30 +09:00
|
|
|
|
public class Player : OsuScreen
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2017-02-17 18:59:30 +09:00
|
|
|
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap);
|
2016-10-05 20:03:52 +09:00
|
|
|
|
|
2016-11-15 20:43:43 +09:00
|
|
|
|
internal override bool ShowOverlays => false;
|
2016-11-09 15:22:54 +09:00
|
|
|
|
|
2017-03-16 23:58:36 +09:00
|
|
|
|
internal override bool HasLocalCursorDisplayed => !hasReplayLoaded && !IsPaused;
|
|
|
|
|
|
|
|
|
|
private bool hasReplayLoaded => hitRenderer.InputManager.ReplayInputHandler != null;
|
|
|
|
|
|
2016-10-27 17:53:37 +09:00
|
|
|
|
public BeatmapInfo BeatmapInfo;
|
2016-10-19 18:00:35 +09:00
|
|
|
|
|
2017-03-07 10:59:19 +09:00
|
|
|
|
public bool IsPaused { get; private set; }
|
2017-01-30 04:08:14 -04:00
|
|
|
|
|
|
|
|
|
public int RestartCount;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
|
|
|
|
|
private double pauseCooldown = 1000;
|
2017-03-07 10:59:19 +09:00
|
|
|
|
private double lastPauseActionTime;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
|
2017-03-07 10:59:19 +09:00
|
|
|
|
private bool canPause => Time.Current >= lastPauseActionTime + pauseCooldown;
|
2017-01-31 20:44:59 -04:00
|
|
|
|
|
2016-10-28 14:14:45 +09:00
|
|
|
|
private IAdjustableClock sourceClock;
|
2017-02-28 20:14:48 +09:00
|
|
|
|
private IFrameBasedClock interpolatedSourceClock;
|
2016-11-16 15:48:35 +09:00
|
|
|
|
|
|
|
|
|
private Ruleset ruleset;
|
2016-10-28 14:14:45 +09:00
|
|
|
|
|
2016-11-29 20:30:16 +09:00
|
|
|
|
private ScoreProcessor scoreProcessor;
|
2016-11-29 23:59:56 +09:00
|
|
|
|
private HitRenderer hitRenderer;
|
2016-12-18 10:48:59 +01:00
|
|
|
|
private Bindable<int> dimLevel;
|
2017-01-27 21:57:22 +09:00
|
|
|
|
private SkipButton skipButton;
|
2016-11-29 20:30:16 +09:00
|
|
|
|
|
2017-03-10 13:02:50 +09:00
|
|
|
|
private HudOverlay hudOverlay;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
private PauseOverlay pauseOverlay;
|
|
|
|
|
|
2016-11-12 19:44:16 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-03-09 14:24:16 +09:00
|
|
|
|
private void load(AudioManager audio, BeatmapDatabase beatmaps, OsuConfigManager config)
|
2016-10-05 20:49:31 +09:00
|
|
|
|
{
|
2017-03-06 14:52:37 +09:00
|
|
|
|
var beatmap = Beatmap.Beatmap;
|
|
|
|
|
|
|
|
|
|
if (beatmap.BeatmapInfo?.Mode > PlayMode.Osu)
|
|
|
|
|
{
|
|
|
|
|
//we only support osu! mode for now because the hitobject parsing is crappy and needs a refactor.
|
|
|
|
|
Exit();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-25 18:39:41 +09:00
|
|
|
|
dimLevel = config.GetBindable<int>(OsuConfig.DimLevel);
|
2017-02-28 11:44:12 +01:00
|
|
|
|
mouseWheelDisabled = config.GetBindable<bool>(OsuConfig.MouseDisableWheel);
|
|
|
|
|
|
2016-10-27 20:37:01 +09:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (Beatmap == null)
|
2017-02-09 15:09:48 +01:00
|
|
|
|
Beatmap = beatmaps.GetWorkingBeatmap(BeatmapInfo, withStoryboard: true);
|
2017-02-15 12:38:10 +09:00
|
|
|
|
|
|
|
|
|
if ((Beatmap?.Beatmap?.HitObjects.Count ?? 0) == 0)
|
|
|
|
|
throw new Exception("No valid objects were found!");
|
2017-03-09 15:52:40 +09:00
|
|
|
|
|
|
|
|
|
if (Beatmap == null)
|
|
|
|
|
throw new Exception("Beatmap was not loaded");
|
2016-10-27 20:37:01 +09:00
|
|
|
|
}
|
2017-02-15 12:38:10 +09:00
|
|
|
|
catch (Exception e)
|
2016-10-27 20:37:01 +09:00
|
|
|
|
{
|
2017-02-15 12:38:10 +09:00
|
|
|
|
Logger.Log($"Could not load this beatmap sucessfully ({e})!", LoggingTarget.Runtime, LogLevel.Error);
|
|
|
|
|
|
2016-10-27 20:37:01 +09:00
|
|
|
|
//couldn't load, hard abort!
|
|
|
|
|
Exit();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-10-05 20:49:31 +09:00
|
|
|
|
|
2017-02-18 17:35:04 +09:00
|
|
|
|
Track track = Beatmap.Track;
|
2016-10-28 14:14:45 +09:00
|
|
|
|
|
|
|
|
|
if (track != null)
|
|
|
|
|
{
|
2016-11-08 18:13:20 -05:00
|
|
|
|
audio.Track.SetExclusive(track);
|
2016-10-28 14:14:45 +09:00
|
|
|
|
sourceClock = track;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-28 19:55:48 +09:00
|
|
|
|
sourceClock = (IAdjustableClock)track ?? new StopwatchClock();
|
2017-02-28 20:14:48 +09:00
|
|
|
|
interpolatedSourceClock = new InterpolatingFramedClock(sourceClock);
|
2016-10-28 14:14:45 +09:00
|
|
|
|
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
2016-10-28 19:55:48 +09:00
|
|
|
|
sourceClock.Reset();
|
2016-10-28 14:14:45 +09:00
|
|
|
|
});
|
|
|
|
|
|
2017-03-05 17:45:40 +09:00
|
|
|
|
ruleset = Ruleset.GetRuleset(Beatmap.PlayMode);
|
2017-03-16 12:40:35 +09:00
|
|
|
|
hitRenderer = ruleset.CreateHitRendererWith(Beatmap);
|
|
|
|
|
|
|
|
|
|
scoreProcessor = hitRenderer.CreateScoreProcessor();
|
2016-11-09 19:49:05 +09:00
|
|
|
|
|
2017-03-10 16:16:07 +09:00
|
|
|
|
hudOverlay = new StandardHudOverlay();
|
|
|
|
|
hudOverlay.KeyCounter.Add(ruleset.CreateGameplayKeys());
|
2017-03-16 12:40:35 +09:00
|
|
|
|
hudOverlay.BindProcessor(scoreProcessor);
|
2016-11-29 15:41:48 +09:00
|
|
|
|
|
2017-01-31 20:28:50 -04:00
|
|
|
|
pauseOverlay = new PauseOverlay
|
2017-01-30 09:06:26 -04:00
|
|
|
|
{
|
2017-01-31 20:28:50 -04:00
|
|
|
|
Depth = -1,
|
2017-02-15 12:38:10 +09:00
|
|
|
|
OnResume = delegate
|
|
|
|
|
{
|
2017-01-31 20:28:50 -04:00
|
|
|
|
Delay(400);
|
|
|
|
|
Schedule(Resume);
|
|
|
|
|
},
|
|
|
|
|
OnRetry = Restart,
|
|
|
|
|
OnQuit = Exit
|
2017-01-30 09:06:26 -04:00
|
|
|
|
};
|
2017-01-27 15:28:39 -04:00
|
|
|
|
|
2017-03-07 19:30:39 +09:00
|
|
|
|
|
|
|
|
|
if (ReplayInputHandler != null)
|
|
|
|
|
hitRenderer.InputManager.ReplayInputHandler = ReplayInputHandler;
|
|
|
|
|
|
2017-03-10 11:59:08 +09:00
|
|
|
|
hudOverlay.BindHitRenderer(hitRenderer);
|
2016-10-06 23:33:09 +09:00
|
|
|
|
|
2017-01-20 15:51:43 +08:00
|
|
|
|
//bind HitRenderer to ScoreProcessor and ourselves (for a pass situation)
|
2017-03-16 13:39:57 +09:00
|
|
|
|
hitRenderer.OnAllJudged += onCompletion;
|
2017-01-20 15:51:43 +08:00
|
|
|
|
|
|
|
|
|
//bind ScoreProcessor to ourselves (for a fail situation)
|
|
|
|
|
scoreProcessor.Failed += onFail;
|
2016-10-19 19:44:03 +09:00
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
2016-10-06 23:33:09 +09:00
|
|
|
|
{
|
2017-02-28 20:14:48 +09:00
|
|
|
|
new Container
|
2016-11-09 18:50:30 +09:00
|
|
|
|
{
|
2017-02-28 20:14:48 +09:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Clock = interpolatedSourceClock,
|
2016-11-09 18:50:30 +09:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
hitRenderer,
|
2017-02-28 20:14:48 +09:00
|
|
|
|
skipButton = new SkipButton
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0
|
|
|
|
|
},
|
2016-11-09 18:50:30 +09:00
|
|
|
|
}
|
|
|
|
|
},
|
2017-03-10 11:59:08 +09:00
|
|
|
|
hudOverlay,
|
2017-01-27 15:28:39 -04:00
|
|
|
|
pauseOverlay
|
2016-10-19 19:44:03 +09:00
|
|
|
|
};
|
2016-10-05 20:49:31 +09:00
|
|
|
|
}
|
2016-10-28 14:14:45 +09:00
|
|
|
|
|
2017-01-27 21:57:22 +09:00
|
|
|
|
private void initializeSkipButton()
|
|
|
|
|
{
|
|
|
|
|
const double skip_required_cutoff = 3000;
|
|
|
|
|
const double fade_time = 300;
|
|
|
|
|
|
|
|
|
|
double firstHitObject = Beatmap.Beatmap.HitObjects.First().StartTime;
|
|
|
|
|
|
|
|
|
|
if (firstHitObject < skip_required_cutoff)
|
|
|
|
|
{
|
|
|
|
|
skipButton.Alpha = 0;
|
|
|
|
|
skipButton.Expire();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
skipButton.FadeInFromZero(fade_time);
|
|
|
|
|
|
|
|
|
|
skipButton.Action = () =>
|
|
|
|
|
{
|
|
|
|
|
sourceClock.Seek(firstHitObject - skip_required_cutoff - fade_time);
|
|
|
|
|
skipButton.Action = null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
skipButton.Delay(firstHitObject - skip_required_cutoff - fade_time);
|
|
|
|
|
skipButton.FadeOut(fade_time);
|
|
|
|
|
skipButton.Expire();
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-28 16:55:42 -04:00
|
|
|
|
public void Pause(bool force = false)
|
2017-01-27 15:28:39 -04:00
|
|
|
|
{
|
2017-01-31 20:44:59 -04:00
|
|
|
|
if (canPause || force)
|
2017-01-27 15:28:39 -04:00
|
|
|
|
{
|
2017-01-30 04:08:14 -04:00
|
|
|
|
lastPauseActionTime = Time.Current;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
hudOverlay.KeyCounter.IsCounting = false;
|
2017-01-31 09:17:47 -04:00
|
|
|
|
pauseOverlay.Retries = RestartCount;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
pauseOverlay.Show();
|
|
|
|
|
sourceClock.Stop();
|
2017-03-07 10:59:19 +09:00
|
|
|
|
IsPaused = true;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-03-07 10:59:19 +09:00
|
|
|
|
IsPaused = false;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Resume()
|
|
|
|
|
{
|
2017-01-30 04:08:14 -04:00
|
|
|
|
lastPauseActionTime = Time.Current;
|
2017-03-10 11:59:08 +09:00
|
|
|
|
hudOverlay.KeyCounter.IsCounting = true;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
pauseOverlay.Hide();
|
|
|
|
|
sourceClock.Start();
|
2017-03-07 10:59:19 +09:00
|
|
|
|
IsPaused = false;
|
2017-01-27 15:28:39 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void TogglePaused()
|
|
|
|
|
{
|
2017-03-07 10:59:19 +09:00
|
|
|
|
IsPaused = !IsPaused;
|
2017-01-29 05:04:48 -04:00
|
|
|
|
if (IsPaused) Pause(); else Resume();
|
2017-01-28 16:55:42 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Restart()
|
|
|
|
|
{
|
2017-01-30 06:14:28 -04:00
|
|
|
|
sourceClock.Stop(); // If the clock is running and Restart is called the game will lag until relaunch
|
2017-01-30 04:08:14 -04:00
|
|
|
|
|
|
|
|
|
var newPlayer = new Player();
|
|
|
|
|
|
2017-02-23 22:32:10 +01:00
|
|
|
|
newPlayer.LoadAsync(Game, delegate
|
2017-01-30 04:08:14 -04:00
|
|
|
|
{
|
2017-01-30 06:14:28 -04:00
|
|
|
|
newPlayer.RestartCount = RestartCount + 1;
|
2017-01-31 20:28:50 -04:00
|
|
|
|
ValidForResume = false;
|
2017-01-30 04:08:14 -04:00
|
|
|
|
|
2017-01-31 20:28:50 -04:00
|
|
|
|
if (!Push(newPlayer))
|
2017-01-30 04:08:14 -04:00
|
|
|
|
{
|
2017-03-07 19:30:39 +09:00
|
|
|
|
// Error(?)
|
|
|
|
|
}
|
2017-01-30 04:08:14 -04:00
|
|
|
|
});
|
2017-01-27 15:28:39 -04:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-16 13:39:57 +09:00
|
|
|
|
private void onCompletion()
|
2016-11-29 23:59:56 +09:00
|
|
|
|
{
|
2017-03-17 01:36:30 +09:00
|
|
|
|
// Only show the completion screen if the player hasn't failed
|
|
|
|
|
if (scoreProcessor.HasFailed)
|
2017-03-17 00:30:23 +09:00
|
|
|
|
return;
|
|
|
|
|
|
2016-11-29 23:59:56 +09:00
|
|
|
|
Delay(1000);
|
|
|
|
|
Schedule(delegate
|
|
|
|
|
{
|
2016-12-08 20:03:18 +09:00
|
|
|
|
ValidForResume = false;
|
2016-11-29 23:59:56 +09:00
|
|
|
|
Push(new Results
|
|
|
|
|
{
|
2017-03-17 02:03:12 +09:00
|
|
|
|
Score = scoreProcessor.CreateScore()
|
2016-11-29 23:59:56 +09:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-20 15:51:43 +08:00
|
|
|
|
private void onFail()
|
|
|
|
|
{
|
|
|
|
|
Content.FadeColour(Color4.Red, 500);
|
|
|
|
|
sourceClock.Stop();
|
|
|
|
|
|
|
|
|
|
Delay(500);
|
|
|
|
|
Schedule(delegate
|
|
|
|
|
{
|
|
|
|
|
ValidForResume = false;
|
|
|
|
|
Push(new FailDialog());
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 18:59:30 +09:00
|
|
|
|
protected override void OnEntering(Screen last)
|
2016-11-19 17:39:43 +01:00
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
2017-02-15 12:38:10 +09:00
|
|
|
|
|
2017-02-22 21:43:29 +09:00
|
|
|
|
(Background as BackgroundScreenBeatmap)?.BlurTo(Vector2.Zero, 1500, EasingTypes.OutQuint);
|
|
|
|
|
Background?.FadeTo((100f - dimLevel) / 100, 1500, EasingTypes.OutQuint);
|
2016-11-19 17:39:43 +01:00
|
|
|
|
|
2016-12-07 20:47:28 +09:00
|
|
|
|
Content.Alpha = 0;
|
2016-12-18 10:48:59 +01:00
|
|
|
|
dimLevel.ValueChanged += dimChanged;
|
2017-02-22 14:14:37 +09:00
|
|
|
|
|
2017-02-22 21:43:29 +09:00
|
|
|
|
Content.ScaleTo(0.7f);
|
|
|
|
|
|
2017-02-22 14:14:37 +09:00
|
|
|
|
Content.Delay(250);
|
|
|
|
|
Content.FadeIn(250);
|
|
|
|
|
|
2017-02-22 21:43:29 +09:00
|
|
|
|
Content.ScaleTo(1, 750, EasingTypes.OutQuint);
|
|
|
|
|
|
2017-02-22 14:14:37 +09:00
|
|
|
|
Delay(750);
|
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
sourceClock.Start();
|
|
|
|
|
initializeSkipButton();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnSuspending(Screen next)
|
|
|
|
|
{
|
|
|
|
|
Content.FadeOut(350);
|
2017-02-22 21:43:29 +09:00
|
|
|
|
Content.ScaleTo(0.7f, 750, EasingTypes.InQuint);
|
|
|
|
|
|
2017-02-22 14:14:37 +09:00
|
|
|
|
base.OnSuspending(next);
|
2016-10-28 14:14:45 +09:00
|
|
|
|
}
|
2016-11-16 15:48:35 +09:00
|
|
|
|
|
2017-02-17 18:59:30 +09:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
2016-12-16 17:13:24 +01:00
|
|
|
|
{
|
2017-02-15 12:38:10 +09:00
|
|
|
|
if (pauseOverlay == null) return false;
|
|
|
|
|
|
2017-03-16 23:58:36 +09:00
|
|
|
|
if (hasReplayLoaded)
|
2017-03-12 22:13:43 +09:00
|
|
|
|
return false;
|
2017-03-04 21:35:26 +09:00
|
|
|
|
|
2017-01-31 22:33:28 -04:00
|
|
|
|
if (pauseOverlay.State != Visibility.Visible && !canPause) return true;
|
2017-01-31 20:44:59 -04:00
|
|
|
|
|
2017-01-31 20:28:50 -04:00
|
|
|
|
if (!IsPaused && sourceClock.IsRunning) // For if the user presses escape quickly when entering the map
|
2017-01-27 15:28:39 -04:00
|
|
|
|
{
|
2017-01-31 20:28:50 -04:00
|
|
|
|
Pause();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-02-24 20:59:21 +09:00
|
|
|
|
FadeOut(250);
|
|
|
|
|
Content.ScaleTo(0.7f, 750, EasingTypes.InQuint);
|
|
|
|
|
|
2017-01-31 20:28:50 -04:00
|
|
|
|
dimLevel.ValueChanged -= dimChanged;
|
|
|
|
|
Background?.FadeTo(1f, 200);
|
|
|
|
|
return base.OnExiting(next);
|
2017-01-27 15:28:39 -04:00
|
|
|
|
}
|
2016-12-16 17:13:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-17 20:59:41 +01:00
|
|
|
|
private void dimChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Background?.FadeTo((100f - dimLevel) / 100, 800);
|
|
|
|
|
}
|
2017-02-28 00:08:34 +01:00
|
|
|
|
|
|
|
|
|
private Bindable<bool> mouseWheelDisabled;
|
|
|
|
|
|
2017-03-04 15:29:15 +09:00
|
|
|
|
public ReplayInputHandler ReplayInputHandler;
|
2017-03-01 22:56:20 +09:00
|
|
|
|
|
2017-03-07 10:59:19 +09:00
|
|
|
|
protected override bool OnWheel(InputState state) => mouseWheelDisabled.Value && !IsPaused;
|
2016-09-29 20:13:58 +09:00
|
|
|
|
}
|
2016-11-24 21:27:12 +09:00
|
|
|
|
}
|