mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Merged branch development into development
This commit is contained in:
commit
5124bf1aff
@ -513,13 +513,15 @@
|
||||
<Compile Include="Profiles\Lua\Events\LuaDeviceDrawingEventArgs.cs" />
|
||||
<Compile Include="Profiles\Lua\Events\LuaDeviceUpdatingEventArgs.cs" />
|
||||
<Compile Include="Profiles\Lua\Brushes\LuaBrushWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\LuaDrawWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\Modules\ILuaModule.cs" />
|
||||
<Compile Include="Profiles\Lua\Events\LuaEventsWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\LuaKeyboardWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\LuaLayerWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\LuaProfileWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\Brushes\LuaSolidColorBrush.cs" />
|
||||
<Compile Include="Profiles\Lua\LuaWrapper.cs" />
|
||||
<Compile Include="Profiles\Lua\Modules\LuaDrawModule.cs" />
|
||||
<Compile Include="Profiles\Lua\Modules\LuaKeyboardModule.cs" />
|
||||
<Compile Include="Profiles\ProfileModel.cs" />
|
||||
<Compile Include="Profiles\Layers\Models\SimplePropertiesModel.cs" />
|
||||
<Compile Include="Profiles\Layers\Types\Keyboard\KeyboardPropertiesModel.cs" />
|
||||
|
||||
@ -67,7 +67,7 @@ namespace Artemis.DAL
|
||||
lock (prof)
|
||||
{
|
||||
// Store the file
|
||||
if (!(prof.GameName?.Length > 1) || !(prof.KeyboardSlug?.Length > 1) || !(prof.Name?.Length > 1))
|
||||
if (!(prof.GameName?.Length > 1) || !(prof.KeyboardSlug?.Length > 1) || !(prof.Slug?.Length > 1))
|
||||
throw new ArgumentException("Profile is invalid. Name, GameName and KeyboardSlug are required");
|
||||
|
||||
var path = ProfileFolder + $@"\{prof.KeyboardSlug}\{prof.GameName}";
|
||||
@ -84,11 +84,11 @@ namespace Artemis.DAL
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Logger.Error(e, "Couldn't save profile '{0}.json'", prof.Name);
|
||||
Logger.Error(e, "Couldn't save profile '{0}.json'", prof.Slug);
|
||||
return;
|
||||
}
|
||||
|
||||
File.WriteAllText(path + $@"\{prof.Name}.json", json);
|
||||
File.WriteAllText(path + $@"\{prof.Slug}.json", json);
|
||||
Logger.Debug("Saved profile {0}/{1}/{2}", prof.KeyboardSlug, prof.GameName, prof.Name);
|
||||
}
|
||||
}
|
||||
@ -114,7 +114,7 @@ namespace Artemis.DAL
|
||||
public static void DeleteProfile(ProfileModel prof)
|
||||
{
|
||||
// Remove the file
|
||||
var path = ProfileFolder + $@"\{prof.KeyboardSlug}\{prof.GameName}\{prof.Name}.json";
|
||||
var path = ProfileFolder + $@"\{prof.KeyboardSlug}\{prof.GameName}\{prof.Slug}.json";
|
||||
if (File.Exists(path))
|
||||
File.Delete(path);
|
||||
}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using Artemis.Models.Interfaces;
|
||||
using Artemis.Profiles.Lua.Modules;
|
||||
using MoonSharp.Interpreter;
|
||||
|
||||
namespace Artemis.Profiles.Lua.Events
|
||||
@ -7,7 +8,7 @@ namespace Artemis.Profiles.Lua.Events
|
||||
[MoonSharpUserData]
|
||||
public class LuaDeviceDrawingEventArgs : EventArgs
|
||||
{
|
||||
public LuaDeviceDrawingEventArgs(string deviceType, IDataModel dataModel, bool preview, LuaDrawWrapper luaDrawWrapper)
|
||||
public LuaDeviceDrawingEventArgs(string deviceType, IDataModel dataModel, bool preview, LuaDrawModule luaDrawWrapper)
|
||||
{
|
||||
DeviceType = deviceType;
|
||||
DataModel = dataModel;
|
||||
@ -18,6 +19,6 @@ namespace Artemis.Profiles.Lua.Events
|
||||
public string DeviceType { get; set; }
|
||||
public IDataModel DataModel { get; }
|
||||
public bool Preview { get; }
|
||||
public LuaDrawWrapper Drawing { get; set; }
|
||||
public LuaDrawModule Drawing { get; set; }
|
||||
}
|
||||
}
|
||||
@ -2,6 +2,7 @@
|
||||
using System.Windows.Forms;
|
||||
using System.Windows.Media;
|
||||
using Artemis.Models.Interfaces;
|
||||
using Artemis.Profiles.Lua.Modules;
|
||||
using MoonSharp.Interpreter;
|
||||
using NLog;
|
||||
|
||||
@ -36,7 +37,7 @@ namespace Artemis.Profiles.Lua.Events
|
||||
try
|
||||
{
|
||||
LuaInvoke(profileModel, () => OnDeviceDrawing(new LuaProfileWrapper(profileModel),
|
||||
new LuaDeviceDrawingEventArgs(deviceType, dataModel, preview, new LuaDrawWrapper(c))));
|
||||
new LuaDeviceDrawingEventArgs(deviceType, dataModel, preview, new LuaDrawModule(c))));
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
||||
@ -42,5 +42,10 @@ namespace Artemis.Profiles.Lua
|
||||
{
|
||||
SendKeys.SendWait(keys);
|
||||
}
|
||||
|
||||
public void GetKeyPosition(Keys key)
|
||||
{
|
||||
_keyboardProvider.GetKeyPosition(key);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -78,15 +78,6 @@ namespace Artemis.Profiles.Lua
|
||||
}
|
||||
}
|
||||
|
||||
#region Private lua functions
|
||||
|
||||
private static void LuaPrint(string s)
|
||||
{
|
||||
Logger.Debug("[{0}-LUA]: {1}", ProfileModel?.Name, s);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public static void Clear()
|
||||
{
|
||||
lock (LuaScript)
|
||||
@ -137,6 +128,15 @@ namespace Artemis.Profiles.Lua
|
||||
}
|
||||
}
|
||||
|
||||
#region Private lua functions
|
||||
|
||||
private static void LuaPrint(string s)
|
||||
{
|
||||
Logger.Debug("[{0}-LUA]: {1}", ProfileModel?.Name, s);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Editor
|
||||
|
||||
public static void OpenEditor()
|
||||
|
||||
10
Artemis/Artemis/Profiles/Lua/Modules/ILuaModule.cs
Normal file
10
Artemis/Artemis/Profiles/Lua/Modules/ILuaModule.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace Artemis.Profiles.Lua.Modules
|
||||
{
|
||||
public interface ILuaModule : IDisposable
|
||||
{
|
||||
bool AlwaysPresent { get; }
|
||||
string ModuleName { get; }
|
||||
}
|
||||
}
|
||||
@ -1,26 +1,31 @@
|
||||
using System;
|
||||
using System.Drawing.Text;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Windows;
|
||||
using System.Windows.Media;
|
||||
using Artemis.Profiles.Lua.Brushes;
|
||||
using MoonSharp.Interpreter;
|
||||
|
||||
namespace Artemis.Profiles.Lua
|
||||
namespace Artemis.Profiles.Lua.Modules
|
||||
{
|
||||
[MoonSharpUserData]
|
||||
public class LuaDrawWrapper
|
||||
public class LuaDrawModule : ILuaModule
|
||||
{
|
||||
private readonly DrawingContext _ctx;
|
||||
private FontFamily _font;
|
||||
private readonly FontFamily _font;
|
||||
|
||||
public LuaDrawWrapper(DrawingContext ctx)
|
||||
public LuaDrawModule(DrawingContext ctx)
|
||||
{
|
||||
_ctx = ctx;
|
||||
_font = new FontFamily(new Uri("pack://application:,,,/"), "./resources/#Silkscreen");
|
||||
}
|
||||
|
||||
public bool AlwaysPresent => false;
|
||||
public string ModuleName => null;
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
|
||||
public void DrawEllipse(LuaBrush luaBrush, double x, double y, double height, double width)
|
||||
{
|
||||
x *= 4;
|
||||
55
Artemis/Artemis/Profiles/Lua/Modules/LuaKeyboardModule.cs
Normal file
55
Artemis/Artemis/Profiles/Lua/Modules/LuaKeyboardModule.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using Artemis.DeviceProviders;
|
||||
using MoonSharp.Interpreter.Interop;
|
||||
|
||||
namespace Artemis.Profiles.Lua.Modules
|
||||
{
|
||||
public class LuaKeyboardModule : ILuaModule
|
||||
{
|
||||
public bool AlwaysPresent => true;
|
||||
public string ModuleName => "Keyboard";
|
||||
|
||||
private readonly KeyboardProvider _keyboardProvider;
|
||||
|
||||
public LuaKeyboardModule(KeyboardProvider keyboardProvider)
|
||||
{
|
||||
_keyboardProvider = keyboardProvider;
|
||||
|
||||
KeyboardHook.KeyDownCallback += KeyboardHookOnKeyDownCallback;
|
||||
}
|
||||
|
||||
public string Name => _keyboardProvider.Name;
|
||||
public string Slug => _keyboardProvider.Slug;
|
||||
public int Width => _keyboardProvider.Width;
|
||||
public int Height => _keyboardProvider.Height;
|
||||
|
||||
[MoonSharpVisible(false)]
|
||||
public void Dispose()
|
||||
{
|
||||
KeyboardHook.KeyDownCallback -= KeyboardHookOnKeyDownCallback;
|
||||
}
|
||||
|
||||
private void KeyboardHookOnKeyDownCallback(KeyEventArgs e)
|
||||
{
|
||||
var keyMatch = _keyboardProvider.GetKeyPosition(e.KeyCode);
|
||||
if (keyMatch != null)
|
||||
LuaWrapper.LuaEventsWrapper.InvokeKeyPressed(LuaWrapper.ProfileModel, this, keyMatch.Value.KeyCode,
|
||||
keyMatch.Value.X, keyMatch.Value.Y);
|
||||
}
|
||||
|
||||
public void PressKeys(string keys)
|
||||
{
|
||||
SendKeys.SendWait(keys);
|
||||
}
|
||||
|
||||
public void GetKeyPosition(Keys key)
|
||||
{
|
||||
_keyboardProvider.GetKeyPosition(key);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows;
|
||||
using System.Windows.Media;
|
||||
@ -11,6 +12,7 @@ using Artemis.Profiles.Layers.Models;
|
||||
using Artemis.Profiles.Lua;
|
||||
using Artemis.Utilities;
|
||||
using Artemis.Utilities.ParentChild;
|
||||
using Newtonsoft.Json;
|
||||
using Color = System.Windows.Media.Color;
|
||||
using Point = System.Windows.Point;
|
||||
using Size = System.Windows.Size;
|
||||
@ -19,8 +21,11 @@ namespace Artemis.Profiles
|
||||
{
|
||||
public class ProfileModel
|
||||
{
|
||||
private readonly char[] _invalidFileNameChars;
|
||||
|
||||
public ProfileModel()
|
||||
{
|
||||
_invalidFileNameChars = Path.GetInvalidFileNameChars();
|
||||
Layers = new ChildItemCollection<ProfileModel, LayerModel>(this);
|
||||
}
|
||||
|
||||
@ -33,6 +38,9 @@ namespace Artemis.Profiles
|
||||
public int Height { get; set; }
|
||||
public string LuaScript { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public string Slug => new string(Name.Where(ch => !_invalidFileNameChars.Contains(ch)).ToArray());
|
||||
|
||||
public void FixOrder()
|
||||
{
|
||||
Layers.Sort(l => l.Order);
|
||||
@ -195,7 +203,7 @@ namespace Artemis.Profiles
|
||||
|
||||
protected bool Equals(ProfileModel other)
|
||||
{
|
||||
return string.Equals(Name, other.Name) &&
|
||||
return string.Equals(Slug, other.Slug) &&
|
||||
string.Equals(KeyboardSlug, other.KeyboardSlug) &&
|
||||
string.Equals(GameName, other.GameName);
|
||||
}
|
||||
@ -212,7 +220,7 @@ namespace Artemis.Profiles
|
||||
{
|
||||
unchecked
|
||||
{
|
||||
var hashCode = Name?.GetHashCode() ?? 0;
|
||||
var hashCode = Slug?.GetHashCode() ?? 0;
|
||||
hashCode = (hashCode*397) ^ (KeyboardSlug?.GetHashCode() ?? 0);
|
||||
hashCode = (hashCode*397) ^ (GameName?.GetHashCode() ?? 0);
|
||||
return hashCode;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user