mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-15 05:34:10 +02:00
66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using TweetDuck.Controls;
|
|
using TweetDuck.Dialogs;
|
|
using TweetLib.Core.Application;
|
|
|
|
namespace TweetDuck.Resources {
|
|
class ScriptLoader : IAppResourceHandler {
|
|
private readonly Dictionary<string, string> cache = new Dictionary<string, string>(16);
|
|
private Control sync;
|
|
|
|
public void Initialize(Control sync) {
|
|
this.sync = sync;
|
|
}
|
|
|
|
protected void ClearCache() {
|
|
cache.Clear();
|
|
}
|
|
|
|
public virtual void OnReloadTriggered() {
|
|
if (Control.ModifierKeys.HasFlag(Keys.Shift)) {
|
|
ClearCache();
|
|
}
|
|
}
|
|
|
|
public string Load(string path) => LoadInternal(path, silent: false);
|
|
public string LoadSilent(string path) => LoadInternal(path, silent: true);
|
|
|
|
protected virtual string LocateFile(string path) {
|
|
return Path.Combine(Program.ResourcesPath, path);
|
|
}
|
|
|
|
private string LoadInternal(string path, bool silent) {
|
|
if (sync == null) {
|
|
throw new InvalidOperationException("Cannot use ScriptLoader before initialization.");
|
|
}
|
|
else if (sync.IsDisposed) {
|
|
return null; // better than crashing I guess...?
|
|
}
|
|
|
|
if (cache.TryGetValue(path, out string resourceData)) {
|
|
return resourceData;
|
|
}
|
|
|
|
string location = LocateFile(path);
|
|
string resource;
|
|
|
|
try {
|
|
resource = File.ReadAllText(location, Encoding.UTF8);
|
|
} catch (Exception ex) {
|
|
ShowLoadError(silent ? null : sync, $"Could not load {path}. The program will continue running with limited functionality.\n\n{ex.Message}");
|
|
resource = null;
|
|
}
|
|
|
|
return cache[path] = resource;
|
|
}
|
|
|
|
private static void ShowLoadError(Control sync, string message) {
|
|
sync?.InvokeSafe(() => FormMessage.Error("Resource Error", message, FormMessage.OK));
|
|
}
|
|
}
|
|
}
|