81 lines
2.8 KiB
C#
81 lines
2.8 KiB
C#
using System;
|
|
using System.IO;
|
|
using StardewModdingAPI;
|
|
using StardewModdingAPI.Events;
|
|
using StardewValley;
|
|
using StardewValley.Menus;
|
|
|
|
namespace Omegasis.DailyQuestAnywhere
|
|
{
|
|
/// <summary>The mod entry point.</summary>
|
|
public class DailyQuestAnywhere : Mod
|
|
{
|
|
/*********
|
|
** Properties
|
|
*********/
|
|
/// <summary>The key which shows the menu.</summary>
|
|
private string KeyBinding = "H";
|
|
|
|
|
|
/*********
|
|
** Public methods
|
|
*********/
|
|
/// <summary>The mod entry point, called after the mod is first loaded.</summary>
|
|
/// <param name="helper">Provides simplified APIs for writing mods.</param>
|
|
public override void Entry(IModHelper helper)
|
|
{
|
|
SaveEvents.AfterLoad += this.SaveEvents_AfterLoad;
|
|
ControlEvents.KeyPressed += this.ControlEvents_KeyPressed;
|
|
}
|
|
|
|
|
|
/*********
|
|
** Private methods
|
|
*********/
|
|
/// <summary>The method invoked after the player loads a save.</summary>
|
|
/// <param name="sender">The event sender.</param>
|
|
/// <param name="e">The event data.</param>
|
|
private void SaveEvents_AfterLoad(object sender, EventArgs e)
|
|
{
|
|
this.LoadConfig();
|
|
this.WriteConfig();
|
|
}
|
|
|
|
/// <summary>The method invoked when the presses a keyboard button.</summary>
|
|
/// <param name="sender">The event sender.</param>
|
|
/// <param name="e">The event data.</param>
|
|
private void ControlEvents_KeyPressed(object sender, EventArgsKeyPressed e)
|
|
{
|
|
if (Context.IsPlayerFree && e.KeyPressed.ToString() == this.KeyBinding)
|
|
Game1.activeClickableMenu = new Billboard(true);
|
|
}
|
|
|
|
/// <summary>Load the configuration settings.</summary>
|
|
void LoadConfig()
|
|
{
|
|
string path = Path.Combine(Helper.DirectoryPath, "DailyQuest_Anywhere_Config.txt");
|
|
if (!File.Exists(path))
|
|
this.KeyBinding = "H";
|
|
else
|
|
{
|
|
string[] text = File.ReadAllLines(path);
|
|
this.KeyBinding = Convert.ToString(text[3]);
|
|
}
|
|
}
|
|
|
|
/// <summary>Save the configuration settings.</summary>
|
|
void WriteConfig()
|
|
{
|
|
string path = Path.Combine(Helper.DirectoryPath, "DailyQuest_Anywhere_Config.txt");
|
|
string[] text = new string[20];
|
|
text[0] = "Config: DailyQuest_Anywhere Info. Feel free to mess with these settings.";
|
|
text[1] = "====================================================================================";
|
|
|
|
text[2] = "Key binding for opening the billboard for quests anywhere. Press this key to do so";
|
|
text[3] = this.KeyBinding;
|
|
|
|
File.WriteAllLines(path, text);
|
|
}
|
|
}
|
|
}
|