2017-07-20 11:51:05 +08:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using Microsoft.Xna.Framework.Audio;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
using StardewModdingAPI;
|
|
|
|
|
using StardewModdingAPI.Events;
|
|
|
|
|
using StardewValley;
|
|
|
|
|
using StardewValley.Menus;
|
|
|
|
|
using StardewValley.Tools;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Media;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
using System.Reflection;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Timers;
|
|
|
|
|
using UIInfoSuite.Extensions;
|
|
|
|
|
|
|
|
|
|
namespace UIInfoSuite.UIElements
|
|
|
|
|
{
|
|
|
|
|
class ExperienceBar : IDisposable
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
|
|
|
|
|
public interface LevelExtenderEvents
|
|
|
|
|
{
|
|
|
|
|
event EventHandler OnXPChanged;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 11:51:05 +08:00
|
|
|
|
private const int MaxBarWidth = 175;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
|
|
|
|
private int[] _currentExperience = new int[5];
|
2017-07-20 11:51:05 +08:00
|
|
|
|
private readonly List<ExperiencePointDisplay> _experiencePointDisplays = new List<ExperiencePointDisplay>();
|
|
|
|
|
private readonly TimeSpan _levelUpPauseTime = TimeSpan.FromSeconds(2);
|
2018-08-20 05:57:45 +08:00
|
|
|
|
private readonly Color _iconColor = Color.White;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
private Color _experienceFillColor = Color.Blue;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
private Rectangle _experienceIconPosition = new Rectangle(10, 428, 10, 10);
|
2017-07-20 11:51:05 +08:00
|
|
|
|
private Item _previousItem = null;
|
2017-11-28 13:27:52 +08:00
|
|
|
|
private bool _experienceBarShouldBeVisible = false;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
private bool _shouldDrawLevelUp = false;
|
|
|
|
|
private System.Timers.Timer _timeToDisappear = new System.Timers.Timer();
|
|
|
|
|
private readonly TimeSpan _timeBeforeExperienceBarFades = TimeSpan.FromSeconds(8);
|
|
|
|
|
//private SoundEffectInstance _soundEffect;
|
|
|
|
|
private Rectangle _levelUpIconRectangle = new Rectangle(120, 428, 10, 10);
|
|
|
|
|
private bool _allowExperienceBarToFadeOut = true;
|
|
|
|
|
private bool _showExperienceGain = true;
|
|
|
|
|
private bool _showLevelUpAnimation = true;
|
2017-11-28 13:27:52 +08:00
|
|
|
|
private bool _showExperienceBar = true;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
private readonly IModHelper _helper;
|
|
|
|
|
private SoundPlayer _player;
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
private LevelExtenderInterface _levelExtenderAPI;
|
|
|
|
|
|
|
|
|
|
private int _currentSkillLevel = 0;
|
|
|
|
|
private int _experienceRequiredToLevel = -1;
|
|
|
|
|
private int _experienceFromPreviousLevels = -1;
|
|
|
|
|
private int _experienceEarnedThisLevel = -1;
|
|
|
|
|
|
2017-07-20 11:51:05 +08:00
|
|
|
|
public ExperienceBar(IModHelper helper)
|
|
|
|
|
{
|
|
|
|
|
_helper = helper;
|
|
|
|
|
String path = string.Empty;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
path = Path.Combine(_helper.DirectoryPath, "LevelUp.wav");
|
|
|
|
|
_player = new SoundPlayer(path);
|
|
|
|
|
//path = path.Replace(Environment.CurrentDirectory, "");
|
|
|
|
|
//path = path.TrimStart(Path.DirectorySeparatorChar);
|
|
|
|
|
//_soundEffect = SoundEffect.FromStream(TitleContainer.OpenStream(path)).CreateInstance();
|
|
|
|
|
//_soundEffect.Volume = 1f;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
ModEntry.MonitorObject.Log("Error loading sound file from " + path + ": " + ex.Message + Environment.NewLine + ex.StackTrace, LogLevel.Error);
|
|
|
|
|
}
|
|
|
|
|
_timeToDisappear.Elapsed += StopTimerAndFadeBarOut;
|
2017-11-28 13:27:52 +08:00
|
|
|
|
GraphicsEvents.OnPreRenderHudEvent += OnPreRenderHudEvent;
|
2018-05-08 00:39:23 +08:00
|
|
|
|
PlayerEvents.Warped += RemoveAllExperiencePointDisplays;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
|
|
|
|
|
//var something = _helper.ModRegistry.GetApi("DevinLematty.LevelExtender");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_levelExtenderAPI = _helper.ModRegistry.GetApi<LevelExtenderInterface>("DevinLematty.LevelExtender");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
int j = 4;
|
|
|
|
|
}
|
|
|
|
|
int f = 3;
|
|
|
|
|
|
|
|
|
|
//if (something != null)
|
|
|
|
|
//{
|
|
|
|
|
// try
|
|
|
|
|
// {
|
|
|
|
|
// var methods = something.GetType().GetMethods();
|
|
|
|
|
// var currentXPMethod = something.GetType().GetMethod("currentXP");
|
|
|
|
|
|
|
|
|
|
// foreach (var method in methods)
|
|
|
|
|
// {
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// catch (Exception ex)
|
|
|
|
|
// {
|
|
|
|
|
// int f = 3;
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadModApis(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
PlayerEvents.LeveledUp -= OnLevelUp;
|
|
|
|
|
GraphicsEvents.OnPreRenderHudEvent -= OnPreRenderHudEvent;
|
2018-05-08 00:39:23 +08:00
|
|
|
|
PlayerEvents.Warped -= RemoveAllExperiencePointDisplays;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
GameEvents.QuarterSecondTick -= DetermineIfExperienceHasBeenGained;
|
|
|
|
|
_timeToDisappear.Elapsed -= StopTimerAndFadeBarOut;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
_timeToDisappear.Stop();
|
|
|
|
|
_timeToDisappear.Dispose();
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_timeToDisappear = null;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ToggleLevelUpAnimation(bool showLevelUpAnimation)
|
|
|
|
|
{
|
|
|
|
|
_showLevelUpAnimation = showLevelUpAnimation;
|
|
|
|
|
PlayerEvents.LeveledUp -= OnLevelUp;
|
|
|
|
|
|
|
|
|
|
if (_showLevelUpAnimation)
|
|
|
|
|
{
|
|
|
|
|
PlayerEvents.LeveledUp += OnLevelUp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ToggleExperienceBarFade(bool allowExperienceBarToFadeOut)
|
|
|
|
|
{
|
|
|
|
|
_allowExperienceBarToFadeOut = allowExperienceBarToFadeOut;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ToggleShowExperienceGain(bool showExperienceGain)
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
GameEvents.QuarterSecondTick -= DetermineIfExperienceHasBeenGained;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
for (int i = 0; i < _currentExperience.Length; ++i)
|
|
|
|
|
_currentExperience[i] = Game1.player.experiencePoints[i];
|
2017-07-20 11:51:05 +08:00
|
|
|
|
_showExperienceGain = showExperienceGain;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
|
|
|
|
|
if (showExperienceGain)
|
|
|
|
|
{
|
|
|
|
|
GameEvents.QuarterSecondTick += DetermineIfExperienceHasBeenGained;
|
|
|
|
|
}
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ToggleShowExperienceBar(bool showExperienceBar)
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
GameEvents.QuarterSecondTick -= DetermineIfExperienceHasBeenGained;
|
2017-11-28 13:27:52 +08:00
|
|
|
|
//GraphicsEvents.OnPreRenderHudEvent -= OnPreRenderHudEvent;
|
2018-05-08 00:39:23 +08:00
|
|
|
|
//PlayerEvents.Warped -= RemoveAllExperiencePointDisplays;
|
2017-11-28 13:27:52 +08:00
|
|
|
|
_showExperienceBar = showExperienceBar;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
if (showExperienceBar)
|
|
|
|
|
{
|
|
|
|
|
//GraphicsEvents.OnPreRenderHudEvent += OnPreRenderHudEvent;
|
|
|
|
|
//PlayerEvents.Warped += RemoveAllExperiencePointDisplays;
|
|
|
|
|
GameEvents.QuarterSecondTick += DetermineIfExperienceHasBeenGained;
|
|
|
|
|
}
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnLevelUp(object sender, EventArgsLevelUp e)
|
|
|
|
|
{
|
|
|
|
|
if (_showLevelUpAnimation)
|
|
|
|
|
{
|
|
|
|
|
switch (e.Type)
|
|
|
|
|
{
|
|
|
|
|
case EventArgsLevelUp.LevelType.Combat: _levelUpIconRectangle.X = 120; break;
|
|
|
|
|
case EventArgsLevelUp.LevelType.Farming: _levelUpIconRectangle.X = 10; break;
|
|
|
|
|
case EventArgsLevelUp.LevelType.Fishing: _levelUpIconRectangle.X = 20; break;
|
|
|
|
|
case EventArgsLevelUp.LevelType.Foraging: _levelUpIconRectangle.X = 60; break;
|
|
|
|
|
case EventArgsLevelUp.LevelType.Mining: _levelUpIconRectangle.X = 30; break;
|
|
|
|
|
}
|
|
|
|
|
_shouldDrawLevelUp = true;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
ShowExperienceBar();
|
2017-07-20 11:51:05 +08:00
|
|
|
|
|
|
|
|
|
float previousAmbientVolume = Game1.options.ambientVolumeLevel;
|
|
|
|
|
float previousMusicVolume = Game1.options.musicVolumeLevel;
|
|
|
|
|
|
|
|
|
|
//if (_soundEffect != null)
|
|
|
|
|
// _soundEffect.Volume = previousMusicVolume <= 0.01f ? 0 : Math.Min(1, previousMusicVolume + 0.3f);
|
|
|
|
|
|
|
|
|
|
//Task.Factory.StartNew(() =>
|
|
|
|
|
//{
|
|
|
|
|
// Thread.Sleep(100);
|
|
|
|
|
// Game1.musicCategory.SetVolume((float)Math.Max(0, Game1.options.musicVolumeLevel - 0.3));
|
|
|
|
|
// Game1.ambientCategory.SetVolume((float)Math.Max(0, Game1.options.ambientVolumeLevel - 0.3));
|
|
|
|
|
// if (_soundEffect != null)
|
|
|
|
|
// _soundEffect.Play();
|
|
|
|
|
//});
|
|
|
|
|
|
|
|
|
|
Task.Factory.StartNew(() =>
|
|
|
|
|
{
|
|
|
|
|
Thread.Sleep(100);
|
|
|
|
|
_player.Play();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Task.Factory.StartNew(() =>
|
|
|
|
|
{
|
|
|
|
|
Thread.Sleep(_levelUpPauseTime);
|
|
|
|
|
_shouldDrawLevelUp = false;
|
|
|
|
|
//Game1.musicCategory.SetVolume(previousMusicVolume);
|
|
|
|
|
//Game1.ambientCategory.SetVolume(previousAmbientVolume);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void StopTimerAndFadeBarOut(object sender, ElapsedEventArgs e)
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_timeToDisappear?.Stop();
|
2017-11-28 13:27:52 +08:00
|
|
|
|
_experienceBarShouldBeVisible = false;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-08 00:39:23 +08:00
|
|
|
|
private void RemoveAllExperiencePointDisplays(object sender, EventArgsPlayerWarped e)
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
|
|
|
|
_experiencePointDisplays.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
private void DetermineIfExperienceHasBeenGained(object sender, EventArgs e)
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
Item currentItem = Game1.player.CurrentItem;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
int currentLevelIndex = -1;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
for (int i = 0; i < _currentExperience.Length; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (_currentExperience[i] != Game1.player.experiencePoints[i])
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
currentLevelIndex = i;
|
|
|
|
|
break;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
}
|
2018-08-20 05:57:45 +08:00
|
|
|
|
}
|
2017-11-28 13:27:52 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
if (currentLevelIndex > -1)
|
|
|
|
|
{
|
|
|
|
|
switch (currentLevelIndex)
|
2018-07-16 00:50:29 +08:00
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
case 0:
|
2017-11-28 13:27:52 +08:00
|
|
|
|
{
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_experienceFillColor = new Color(255, 251, 35, 0.38f);
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceIconPosition.X = 10;
|
|
|
|
|
_currentSkillLevel = Game1.player.farmingLevel.Value;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
break;
|
2017-11-28 13:27:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
case 1:
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_experienceFillColor = new Color(17, 84, 252, 0.63f);
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceIconPosition.X = 20;
|
|
|
|
|
_currentSkillLevel = Game1.player.fishingLevel.Value;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
break;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
case 2:
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_experienceFillColor = new Color(0, 234, 0, 0.63f);
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceIconPosition.X = 60;
|
|
|
|
|
_currentSkillLevel = Game1.player.foragingLevel.Value;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
break;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
case 3:
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_experienceFillColor = new Color(145, 104, 63, 0.63f);
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceIconPosition.X = 30;
|
|
|
|
|
_currentSkillLevel = Game1.player.miningLevel.Value;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
break;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
case 4:
|
|
|
|
|
{
|
|
|
|
|
_experienceFillColor = new Color(204, 0, 3, 0.63f);
|
|
|
|
|
_experienceIconPosition.X = 120;
|
|
|
|
|
_currentSkillLevel = Game1.player.combatLevel.Value;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-20 11:51:05 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceRequiredToLevel = GetExperienceRequiredToLevel(_currentSkillLevel);
|
|
|
|
|
_experienceFromPreviousLevels = GetExperienceRequiredToLevel(_currentSkillLevel - 1);
|
|
|
|
|
_experienceEarnedThisLevel = Game1.player.experiencePoints[currentLevelIndex] - _experienceFromPreviousLevels;
|
|
|
|
|
int experiencePreviouslyEarnedThisLevel = _currentExperience[currentLevelIndex] - _experienceFromPreviousLevels;
|
|
|
|
|
|
|
|
|
|
if (_experienceRequiredToLevel <= 0 &&
|
|
|
|
|
_levelExtenderAPI != null)
|
|
|
|
|
{
|
|
|
|
|
_experienceEarnedThisLevel = _levelExtenderAPI.currentXP()[currentLevelIndex];
|
|
|
|
|
_experienceFromPreviousLevels = _currentExperience[currentLevelIndex] - _experienceEarnedThisLevel;
|
|
|
|
|
_experienceRequiredToLevel = _levelExtenderAPI.requiredXP()[currentLevelIndex] + _experienceFromPreviousLevels;
|
|
|
|
|
}
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
ShowExperienceBar();
|
|
|
|
|
if (_showExperienceGain &&
|
|
|
|
|
_experienceRequiredToLevel > 0)
|
|
|
|
|
{
|
|
|
|
|
_experiencePointDisplays.Add(
|
|
|
|
|
new ExperiencePointDisplay(
|
|
|
|
|
Game1.player.experiencePoints[currentLevelIndex] - _currentExperience[currentLevelIndex],
|
|
|
|
|
Game1.player.getLocalPosition(Game1.viewport)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_currentExperience[currentLevelIndex] = Game1.player.experiencePoints[currentLevelIndex];
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (_previousItem != currentItem)
|
|
|
|
|
{
|
|
|
|
|
if (currentItem is FishingRod)
|
|
|
|
|
{
|
|
|
|
|
_experienceFillColor = new Color(17, 84, 252, 0.63f);
|
|
|
|
|
currentLevelIndex = 1;
|
|
|
|
|
_experienceIconPosition.X = 20;
|
|
|
|
|
_currentSkillLevel = Game1.player.fishingLevel.Value;
|
|
|
|
|
}
|
|
|
|
|
else if (currentItem is Pickaxe)
|
|
|
|
|
{
|
|
|
|
|
_experienceFillColor = new Color(145, 104, 63, 0.63f);
|
|
|
|
|
currentLevelIndex = 3;
|
|
|
|
|
_experienceIconPosition.X = 30;
|
|
|
|
|
_currentSkillLevel = Game1.player.miningLevel.Value;
|
|
|
|
|
}
|
|
|
|
|
else if (currentItem is MeleeWeapon &&
|
|
|
|
|
currentItem.Name != "Scythe")
|
|
|
|
|
{
|
|
|
|
|
_experienceFillColor = new Color(204, 0, 3, 0.63f);
|
|
|
|
|
currentLevelIndex = 4;
|
|
|
|
|
_experienceIconPosition.X = 120;
|
|
|
|
|
_currentSkillLevel = Game1.player.combatLevel.Value;
|
|
|
|
|
}
|
|
|
|
|
else if (Game1.currentLocation is Farm &&
|
|
|
|
|
!(currentItem is Axe))
|
|
|
|
|
{
|
|
|
|
|
_experienceFillColor = new Color(255, 251, 35, 0.38f);
|
|
|
|
|
currentLevelIndex = 0;
|
|
|
|
|
_experienceIconPosition.X = 10;
|
|
|
|
|
_currentSkillLevel = Game1.player.farmingLevel.Value;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceFillColor = new Color(0, 234, 0, 0.63f);
|
|
|
|
|
currentLevelIndex = 2;
|
|
|
|
|
_experienceIconPosition.X = 60;
|
|
|
|
|
_currentSkillLevel = Game1.player.foragingLevel.Value;
|
|
|
|
|
}
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceRequiredToLevel = GetExperienceRequiredToLevel(_currentSkillLevel);
|
|
|
|
|
_experienceFromPreviousLevels = GetExperienceRequiredToLevel(_currentSkillLevel - 1);
|
|
|
|
|
_experienceEarnedThisLevel = Game1.player.experiencePoints[currentLevelIndex] - _experienceFromPreviousLevels;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
if (_experienceRequiredToLevel <= 0 &&
|
|
|
|
|
_levelExtenderAPI != null)
|
|
|
|
|
{
|
|
|
|
|
_experienceEarnedThisLevel = _levelExtenderAPI.currentXP()[currentLevelIndex];
|
|
|
|
|
_experienceFromPreviousLevels = _currentExperience[currentLevelIndex] - _experienceEarnedThisLevel;
|
|
|
|
|
_experienceRequiredToLevel = _levelExtenderAPI.requiredXP()[currentLevelIndex] + _experienceFromPreviousLevels;
|
2018-07-16 00:50:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
ShowExperienceBar();
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_previousItem = currentItem;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
}
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnPreRenderHudEvent(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!Game1.eventUp)
|
|
|
|
|
{
|
2018-07-16 00:50:29 +08:00
|
|
|
|
if (_shouldDrawLevelUp)
|
|
|
|
|
{
|
|
|
|
|
Vector2 playerLocalPosition = Game1.player.getLocalPosition(Game1.viewport);
|
|
|
|
|
Game1.spriteBatch.Draw(
|
|
|
|
|
Game1.mouseCursors,
|
|
|
|
|
new Vector2(
|
|
|
|
|
playerLocalPosition.X - 74,
|
|
|
|
|
playerLocalPosition.Y - 130),
|
|
|
|
|
_levelUpIconRectangle,
|
|
|
|
|
_iconColor,
|
|
|
|
|
0,
|
|
|
|
|
Vector2.Zero,
|
|
|
|
|
Game1.pixelZoom,
|
|
|
|
|
SpriteEffects.None,
|
|
|
|
|
0.85f);
|
|
|
|
|
|
|
|
|
|
Game1.drawWithBorder(
|
|
|
|
|
_helper.SafeGetString(
|
|
|
|
|
LanguageKeys.LevelUp),
|
|
|
|
|
Color.DarkSlateGray,
|
|
|
|
|
Color.PaleTurquoise,
|
|
|
|
|
new Vector2(
|
|
|
|
|
playerLocalPosition.X - 28,
|
|
|
|
|
playerLocalPosition.Y - 130));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = _experiencePointDisplays.Count - 1; i >= 0; --i)
|
|
|
|
|
{
|
|
|
|
|
if (_experiencePointDisplays[i].IsInvisible)
|
|
|
|
|
{
|
|
|
|
|
_experiencePointDisplays.RemoveAt(i);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_experiencePointDisplays[i].Draw();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
if (_experienceRequiredToLevel > 0 &&
|
|
|
|
|
_experienceBarShouldBeVisible &&
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_showExperienceBar)
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
int experienceDifferenceBetweenLevels = _experienceRequiredToLevel - _experienceFromPreviousLevels;
|
|
|
|
|
int barWidth = (int)((double)_experienceEarnedThisLevel / experienceDifferenceBetweenLevels * MaxBarWidth);
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
DrawExperienceBar(barWidth, _experienceEarnedThisLevel, experienceDifferenceBetweenLevels, _currentSkillLevel);
|
2018-07-16 00:50:29 +08:00
|
|
|
|
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int GetExperienceRequiredToLevel(int currentLevel)
|
|
|
|
|
{
|
|
|
|
|
int amount = 0;
|
2018-08-20 05:57:45 +08:00
|
|
|
|
|
|
|
|
|
//if (currentLevel < 10)
|
|
|
|
|
//{
|
|
|
|
|
switch (currentLevel)
|
|
|
|
|
{
|
|
|
|
|
case 0: amount = 100; break;
|
|
|
|
|
case 1: amount = 380; break;
|
|
|
|
|
case 2: amount = 770; break;
|
|
|
|
|
case 3: amount = 1300; break;
|
|
|
|
|
case 4: amount = 2150; break;
|
|
|
|
|
case 5: amount = 3300; break;
|
|
|
|
|
case 6: amount = 4800; break;
|
|
|
|
|
case 7: amount = 6900; break;
|
|
|
|
|
case 8: amount = 10000; break;
|
|
|
|
|
case 9: amount = 15000; break;
|
|
|
|
|
}
|
|
|
|
|
//}
|
|
|
|
|
//else if (_levelExtenderAPI != null &&
|
|
|
|
|
// currentLevel < 100)
|
|
|
|
|
//{
|
|
|
|
|
// var requiredXP = _levelExtenderAPI.requiredXP();
|
|
|
|
|
// amount = requiredXP[currentLevel];
|
|
|
|
|
//}
|
2017-07-20 11:51:05 +08:00
|
|
|
|
return amount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ShowExperienceBar()
|
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
if (_timeToDisappear != null)
|
2017-07-20 11:51:05 +08:00
|
|
|
|
{
|
2018-08-20 05:57:45 +08:00
|
|
|
|
if (_allowExperienceBarToFadeOut)
|
|
|
|
|
{
|
|
|
|
|
_timeToDisappear.Interval = _timeBeforeExperienceBarFades.TotalMilliseconds;
|
|
|
|
|
_timeToDisappear.Start();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_timeToDisappear.Stop();
|
|
|
|
|
}
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-28 13:27:52 +08:00
|
|
|
|
_experienceBarShouldBeVisible = true;
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-20 05:57:45 +08:00
|
|
|
|
private void DrawExperienceBar(int barWidth, int experienceGainedThisLevel, int experienceRequiredForNextLevel, int currentLevel)
|
2018-07-16 00:50:29 +08:00
|
|
|
|
{
|
|
|
|
|
float leftSide = Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Left;
|
|
|
|
|
|
|
|
|
|
if (Game1.isOutdoorMapSmallerThanViewport())
|
|
|
|
|
{
|
|
|
|
|
int num3 = Game1.currentLocation.map.Layers[0].LayerWidth * Game1.tileSize;
|
|
|
|
|
leftSide += (Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Right - num3) / 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Game1.drawDialogueBox(
|
|
|
|
|
(int)leftSide,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 160,
|
|
|
|
|
240,
|
|
|
|
|
160,
|
|
|
|
|
false,
|
|
|
|
|
true);
|
|
|
|
|
|
|
|
|
|
Game1.spriteBatch.Draw(
|
|
|
|
|
Game1.staminaRect,
|
|
|
|
|
new Rectangle(
|
|
|
|
|
(int)leftSide + 32,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 63,
|
|
|
|
|
barWidth,
|
|
|
|
|
31),
|
|
|
|
|
_experienceFillColor);
|
|
|
|
|
|
|
|
|
|
Game1.spriteBatch.Draw(
|
|
|
|
|
Game1.staminaRect,
|
|
|
|
|
new Rectangle(
|
|
|
|
|
(int)leftSide + 32,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 63,
|
|
|
|
|
Math.Min(4, barWidth),
|
|
|
|
|
31),
|
|
|
|
|
_experienceFillColor);
|
|
|
|
|
|
|
|
|
|
Game1.spriteBatch.Draw(
|
|
|
|
|
Game1.staminaRect,
|
|
|
|
|
new Rectangle(
|
|
|
|
|
(int)leftSide + 32,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 63,
|
|
|
|
|
barWidth,
|
|
|
|
|
4),
|
|
|
|
|
_experienceFillColor);
|
|
|
|
|
|
|
|
|
|
Game1.spriteBatch.Draw(
|
|
|
|
|
Game1.staminaRect,
|
|
|
|
|
new Rectangle(
|
|
|
|
|
(int)leftSide + 32,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 36,
|
|
|
|
|
barWidth,
|
|
|
|
|
4),
|
|
|
|
|
_experienceFillColor);
|
|
|
|
|
|
|
|
|
|
ClickableTextureComponent textureComponent =
|
|
|
|
|
new ClickableTextureComponent(
|
|
|
|
|
"",
|
|
|
|
|
new Rectangle(
|
|
|
|
|
(int)leftSide - 36,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 80,
|
|
|
|
|
260,
|
|
|
|
|
100),
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
Game1.mouseCursors,
|
|
|
|
|
new Rectangle(0, 0, 0, 0),
|
|
|
|
|
Game1.pixelZoom);
|
|
|
|
|
|
|
|
|
|
if (textureComponent.containsPoint(Game1.getMouseX(), Game1.getMouseY()))
|
|
|
|
|
{
|
|
|
|
|
Game1.drawWithBorder(
|
|
|
|
|
experienceGainedThisLevel + "/" + experienceRequiredForNextLevel,
|
|
|
|
|
Color.Black,
|
|
|
|
|
Color.Black,
|
|
|
|
|
new Vector2(
|
|
|
|
|
leftSide + 33,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 70));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Game1.spriteBatch.Draw(
|
|
|
|
|
Game1.mouseCursors,
|
|
|
|
|
new Vector2(
|
|
|
|
|
leftSide + 54,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 62),
|
2018-08-20 05:57:45 +08:00
|
|
|
|
_experienceIconPosition,
|
2018-07-16 00:50:29 +08:00
|
|
|
|
_iconColor,
|
|
|
|
|
0,
|
|
|
|
|
Vector2.Zero,
|
|
|
|
|
2.9f,
|
|
|
|
|
SpriteEffects.None,
|
|
|
|
|
0.85f);
|
|
|
|
|
|
|
|
|
|
Game1.drawWithBorder(
|
|
|
|
|
currentLevel.ToString(),
|
|
|
|
|
Color.Black * 0.6f,
|
|
|
|
|
Color.Black,
|
|
|
|
|
new Vector2(
|
|
|
|
|
leftSide + 33,
|
|
|
|
|
Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Bottom - 70));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 11:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|