1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-01-02 10:43:31 +00:00

Merged branch development into development

This commit is contained in:
SpoinkyNL 2016-12-22 17:53:12 +01:00
commit 5124bf1aff
10 changed files with 112 additions and 25 deletions

View File

@ -513,13 +513,15 @@
<Compile Include="Profiles\Lua\Events\LuaDeviceDrawingEventArgs.cs" /> <Compile Include="Profiles\Lua\Events\LuaDeviceDrawingEventArgs.cs" />
<Compile Include="Profiles\Lua\Events\LuaDeviceUpdatingEventArgs.cs" /> <Compile Include="Profiles\Lua\Events\LuaDeviceUpdatingEventArgs.cs" />
<Compile Include="Profiles\Lua\Brushes\LuaBrushWrapper.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\Events\LuaEventsWrapper.cs" />
<Compile Include="Profiles\Lua\LuaKeyboardWrapper.cs" /> <Compile Include="Profiles\Lua\LuaKeyboardWrapper.cs" />
<Compile Include="Profiles\Lua\LuaLayerWrapper.cs" /> <Compile Include="Profiles\Lua\LuaLayerWrapper.cs" />
<Compile Include="Profiles\Lua\LuaProfileWrapper.cs" /> <Compile Include="Profiles\Lua\LuaProfileWrapper.cs" />
<Compile Include="Profiles\Lua\Brushes\LuaSolidColorBrush.cs" /> <Compile Include="Profiles\Lua\Brushes\LuaSolidColorBrush.cs" />
<Compile Include="Profiles\Lua\LuaWrapper.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\ProfileModel.cs" />
<Compile Include="Profiles\Layers\Models\SimplePropertiesModel.cs" /> <Compile Include="Profiles\Layers\Models\SimplePropertiesModel.cs" />
<Compile Include="Profiles\Layers\Types\Keyboard\KeyboardPropertiesModel.cs" /> <Compile Include="Profiles\Layers\Types\Keyboard\KeyboardPropertiesModel.cs" />

View File

@ -67,7 +67,7 @@ namespace Artemis.DAL
lock (prof) lock (prof)
{ {
// Store the file // 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"); throw new ArgumentException("Profile is invalid. Name, GameName and KeyboardSlug are required");
var path = ProfileFolder + $@"\{prof.KeyboardSlug}\{prof.GameName}"; var path = ProfileFolder + $@"\{prof.KeyboardSlug}\{prof.GameName}";
@ -84,11 +84,11 @@ namespace Artemis.DAL
} }
catch (Exception e) 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; 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); 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) public static void DeleteProfile(ProfileModel prof)
{ {
// Remove the file // 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)) if (File.Exists(path))
File.Delete(path); File.Delete(path);
} }

View File

@ -1,5 +1,6 @@
using System; using System;
using Artemis.Models.Interfaces; using Artemis.Models.Interfaces;
using Artemis.Profiles.Lua.Modules;
using MoonSharp.Interpreter; using MoonSharp.Interpreter;
namespace Artemis.Profiles.Lua.Events namespace Artemis.Profiles.Lua.Events
@ -7,7 +8,7 @@ namespace Artemis.Profiles.Lua.Events
[MoonSharpUserData] [MoonSharpUserData]
public class LuaDeviceDrawingEventArgs : EventArgs 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; DeviceType = deviceType;
DataModel = dataModel; DataModel = dataModel;
@ -18,6 +19,6 @@ namespace Artemis.Profiles.Lua.Events
public string DeviceType { get; set; } public string DeviceType { get; set; }
public IDataModel DataModel { get; } public IDataModel DataModel { get; }
public bool Preview { get; } public bool Preview { get; }
public LuaDrawWrapper Drawing { get; set; } public LuaDrawModule Drawing { get; set; }
} }
} }

View File

@ -2,6 +2,7 @@
using System.Windows.Forms; using System.Windows.Forms;
using System.Windows.Media; using System.Windows.Media;
using Artemis.Models.Interfaces; using Artemis.Models.Interfaces;
using Artemis.Profiles.Lua.Modules;
using MoonSharp.Interpreter; using MoonSharp.Interpreter;
using NLog; using NLog;
@ -36,7 +37,7 @@ namespace Artemis.Profiles.Lua.Events
try try
{ {
LuaInvoke(profileModel, () => OnDeviceDrawing(new LuaProfileWrapper(profileModel), LuaInvoke(profileModel, () => OnDeviceDrawing(new LuaProfileWrapper(profileModel),
new LuaDeviceDrawingEventArgs(deviceType, dataModel, preview, new LuaDrawWrapper(c)))); new LuaDeviceDrawingEventArgs(deviceType, dataModel, preview, new LuaDrawModule(c))));
} }
catch (Exception) catch (Exception)
{ {

View File

@ -42,5 +42,10 @@ namespace Artemis.Profiles.Lua
{ {
SendKeys.SendWait(keys); SendKeys.SendWait(keys);
} }
public void GetKeyPosition(Keys key)
{
_keyboardProvider.GetKeyPosition(key);
}
} }
} }

View File

@ -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() public static void Clear()
{ {
lock (LuaScript) 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 #region Editor
public static void OpenEditor() public static void OpenEditor()

View File

@ -0,0 +1,10 @@
using System;
namespace Artemis.Profiles.Lua.Modules
{
public interface ILuaModule : IDisposable
{
bool AlwaysPresent { get; }
string ModuleName { get; }
}
}

View File

@ -1,26 +1,31 @@
using System; using System;
using System.Drawing.Text;
using System.Globalization; using System.Globalization;
using System.Linq;
using System.Windows; using System.Windows;
using System.Windows.Media; using System.Windows.Media;
using Artemis.Profiles.Lua.Brushes; using Artemis.Profiles.Lua.Brushes;
using MoonSharp.Interpreter; using MoonSharp.Interpreter;
namespace Artemis.Profiles.Lua namespace Artemis.Profiles.Lua.Modules
{ {
[MoonSharpUserData] [MoonSharpUserData]
public class LuaDrawWrapper public class LuaDrawModule : ILuaModule
{ {
private readonly DrawingContext _ctx; private readonly DrawingContext _ctx;
private FontFamily _font; private readonly FontFamily _font;
public LuaDrawWrapper(DrawingContext ctx) public LuaDrawModule(DrawingContext ctx)
{ {
_ctx = ctx; _ctx = ctx;
_font = new FontFamily(new Uri("pack://application:,,,/"), "./resources/#Silkscreen"); _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) public void DrawEllipse(LuaBrush luaBrush, double x, double y, double height, double width)
{ {
x *= 4; x *= 4;

View 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);
}
}
}

View File

@ -1,6 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.IO;
using System.Linq; using System.Linq;
using System.Windows; using System.Windows;
using System.Windows.Media; using System.Windows.Media;
@ -11,6 +12,7 @@ using Artemis.Profiles.Layers.Models;
using Artemis.Profiles.Lua; using Artemis.Profiles.Lua;
using Artemis.Utilities; using Artemis.Utilities;
using Artemis.Utilities.ParentChild; using Artemis.Utilities.ParentChild;
using Newtonsoft.Json;
using Color = System.Windows.Media.Color; using Color = System.Windows.Media.Color;
using Point = System.Windows.Point; using Point = System.Windows.Point;
using Size = System.Windows.Size; using Size = System.Windows.Size;
@ -19,8 +21,11 @@ namespace Artemis.Profiles
{ {
public class ProfileModel public class ProfileModel
{ {
private readonly char[] _invalidFileNameChars;
public ProfileModel() public ProfileModel()
{ {
_invalidFileNameChars = Path.GetInvalidFileNameChars();
Layers = new ChildItemCollection<ProfileModel, LayerModel>(this); Layers = new ChildItemCollection<ProfileModel, LayerModel>(this);
} }
@ -33,6 +38,9 @@ namespace Artemis.Profiles
public int Height { get; set; } public int Height { get; set; }
public string LuaScript { get; set; } public string LuaScript { get; set; }
[JsonIgnore]
public string Slug => new string(Name.Where(ch => !_invalidFileNameChars.Contains(ch)).ToArray());
public void FixOrder() public void FixOrder()
{ {
Layers.Sort(l => l.Order); Layers.Sort(l => l.Order);
@ -195,7 +203,7 @@ namespace Artemis.Profiles
protected bool Equals(ProfileModel other) protected bool Equals(ProfileModel other)
{ {
return string.Equals(Name, other.Name) && return string.Equals(Slug, other.Slug) &&
string.Equals(KeyboardSlug, other.KeyboardSlug) && string.Equals(KeyboardSlug, other.KeyboardSlug) &&
string.Equals(GameName, other.GameName); string.Equals(GameName, other.GameName);
} }
@ -212,7 +220,7 @@ namespace Artemis.Profiles
{ {
unchecked unchecked
{ {
var hashCode = Name?.GetHashCode() ?? 0; var hashCode = Slug?.GetHashCode() ?? 0;
hashCode = (hashCode*397) ^ (KeyboardSlug?.GetHashCode() ?? 0); hashCode = (hashCode*397) ^ (KeyboardSlug?.GetHashCode() ?? 0);
hashCode = (hashCode*397) ^ (GameName?.GetHashCode() ?? 0); hashCode = (hashCode*397) ^ (GameName?.GetHashCode() ?? 0);
return hashCode; return hashCode;