Compare commits
23 Commits
603a171f1b
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
83f2e08bb5 | ||
|
4c07938a0d | ||
|
df80ce37ed | ||
|
50c6c9a1de | ||
|
0b3822b8da | ||
a63133a7a5 | |||
600a08dd51 | |||
|
9d33f9a223 | ||
|
ed334a7cf9 | ||
7fb6b4c89c | |||
|
1666be73b3 | ||
6ab18fdf70 | |||
|
987ccad5b9 | ||
|
027ec1f0d9 | ||
7699f5c6b9 | |||
ac92fcb041 | |||
849307d2cc | |||
|
59673ec211 | ||
|
ee39a91229 | ||
|
2251de8ce9 | ||
|
f3b56cade2 | ||
|
b0427e611b | ||
|
f31a05dcf4 |
@@ -1,4 +1,4 @@
|
||||
using FakeeDeck.Class;
|
||||
using FakeDeck.Class;
|
||||
using Microsoft.VisualBasic.Logging;
|
||||
using System.Configuration;
|
||||
using System.Data;
|
||||
|
@@ -3,17 +3,21 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify;
|
||||
|
||||
namespace FakeeDeck.ButtonType
|
||||
namespace FakeDeck.ButtonType
|
||||
{
|
||||
internal class Button
|
||||
{
|
||||
public static string getButtonHTML(string icon, string image, string name, string action, Dictionary<string, string> parameters = null)
|
||||
public static string getButtonHTML(string icon, string image, string name, string action = null, string jsAction = null, Dictionary<string, string> parameters = null, string color = null)
|
||||
{
|
||||
|
||||
string body = "";
|
||||
string styles = "style=\"background-size: cover; " + (!string.IsNullOrEmpty(image) ? "background-image: url('" + image + "');" : "") + " width: 150px; height: 150px; " + (!string.IsNullOrEmpty(image) ? "background-image: url('" + image + "');" : "") + (!string.IsNullOrEmpty(color) ? " background-color: " + color + "; " : "") + "\"";
|
||||
|
||||
body += "<div class=\"m-2\">";
|
||||
body += "<div>";
|
||||
if (action != null)
|
||||
{
|
||||
body += "<form style=\"margin-bottom: 0px;\" method=\"post\" action=\"" + action + "\">";
|
||||
|
||||
if (parameters is not null)
|
||||
@@ -24,11 +28,21 @@ namespace FakeeDeck.ButtonType
|
||||
}
|
||||
}
|
||||
|
||||
body += "<button type=\"submit\" value=\"submit\" style=\"background-size: cover; " + (!string.IsNullOrEmpty(image) ? "background-image: url('" + image + "');" : "") + " width: 150px;height: 150px; background-color: aquamarine;\" >";
|
||||
body += "<button class=\"button\" type=\"submit\" value=\"submit\" " + styles + ">";
|
||||
body += (!string.IsNullOrEmpty(icon) ? "<i class=\"fa-solid " + icon + "\"></i>" : name);
|
||||
body += "</button>";
|
||||
|
||||
body += "</form>";
|
||||
}
|
||||
else if (jsAction != null)
|
||||
{
|
||||
body += "<button class=\"button\" onclick=\"" + jsAction + "\" " + styles + " >";
|
||||
body += (!string.IsNullOrEmpty(icon) ? "<i class=\"fa-solid " + icon + "\"></i>" : name);
|
||||
body += "</button>";
|
||||
}
|
||||
else
|
||||
{
|
||||
body += "<div class=\"button\" " + styles + "></div>";
|
||||
}
|
||||
body += "</div>";
|
||||
|
||||
return body;
|
||||
|
38
FakeDeckUI/FakeDeck/ButtonType/FakeDeckMacro.cs
Normal file
38
FakeDeckUI/FakeDeck/ButtonType/FakeDeckMacro.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using FakeDeck.ButtonType;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
namespace FakeDeck.ButtonType
|
||||
{
|
||||
internal class FakeDeckMacro : Button
|
||||
{
|
||||
public static Dictionary<string, string> actionIcons = new Dictionary<string, string>
|
||||
{
|
||||
{ "full-screen", "fa-maximize"},
|
||||
{ "set-page", "fa-page"},
|
||||
};
|
||||
|
||||
public static string getButton(string Key, string Image = null, string PageId = null, string Color = null)
|
||||
{
|
||||
if (Key == "full-screen")
|
||||
{
|
||||
return getButtonHTML(actionIcons[Key], Image, Key, null, "!document.fullscreenElement?document.documentElement.requestFullscreen():document.exitFullscreen();", null, Color);
|
||||
}
|
||||
if (Key == "set-page")
|
||||
{
|
||||
return getButtonHTML(actionIcons[Key], Image, Key, null, "loadPage('"+ PageId + "')", null, Color);
|
||||
}
|
||||
if (Key == "spacer")
|
||||
{
|
||||
return getButtonHTML(null, null, null, null, null, null, Color);
|
||||
}
|
||||
else {
|
||||
return "NIC";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
using FakeeDeck.Class;
|
||||
using FakeDeck.Class;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
@@ -7,7 +7,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using static System.Net.WebRequestMethods;
|
||||
|
||||
namespace FakeeDeck.ButtonType
|
||||
namespace FakeDeck.ButtonType
|
||||
{
|
||||
class HelldiversTwoMacro : Button
|
||||
{
|
||||
@@ -33,9 +33,11 @@ namespace FakeeDeck.ButtonType
|
||||
|
||||
//Offensive: Orbital Strikes
|
||||
{ "orbital-precision-strike", new uint[] { 0x65, Key_Right, Key_Right, Key_Up}},
|
||||
{ "orbital-380-barrage", new uint[] { 0x65, Key_Right, Key_Down, Key_Up, Key_Up, Key_Left, Key_Down, Key_Down}},
|
||||
|
||||
|
||||
//Defensive
|
||||
{ "mortar-sentry", new uint[] { 0x65, Key_Down, Key_Up, Key_Right, Key_Down}},
|
||||
{ "mortar-sentry", new uint[] { 0x65, Key_Down, Key_Up, Key_Right, Key_Right, Key_Down }},
|
||||
{ "gatling-sentry", new uint[] { 0x65, Key_Down, Key_Up, Key_Right, Key_Left}},
|
||||
|
||||
|
||||
@@ -61,6 +63,7 @@ namespace FakeeDeck.ButtonType
|
||||
{ "autocannon", "https://static.wikia.nocookie.net/helldivers_gamepedia/images/c/c6/AC-8_Autocannon_Icon.png"},
|
||||
{ "grenade-launcher","https://static.wikia.nocookie.net/helldivers_gamepedia/images/6/66/GL-21_Grenade_Launcher_Icon.png"},
|
||||
{ "orbital-precision-strike", "https://static.wikia.nocookie.net/helldivers_gamepedia/images/4/47/Orbital_Precision_Strike_Icon.png"},
|
||||
{ "orbital-380-barrage", "https://static.wikia.nocookie.net/helldivers_gamepedia/images/f/f4/Orbital_380MM_HE_Barrage_Icon.png"},
|
||||
{ "mortar-sentry", "https://static.wikia.nocookie.net/helldivers_gamepedia/images/1/1d/A_M-12_Mortar_Sentry_Icon.png"},
|
||||
{ "gatling-sentry","https://static.wikia.nocookie.net/helldivers_gamepedia/images/4/48/A_G-16_Gatling_Sentry_Icon.png"},
|
||||
|
||||
@@ -76,7 +79,7 @@ namespace FakeeDeck.ButtonType
|
||||
|
||||
public static string getButton(string Key)
|
||||
{
|
||||
return getButtonHTML(null, stratogemsIcons[Key].ToString(), Key, "button\\HelldiversTwoMacro", new Dictionary<string, string>() { { "stratogem", Key } });
|
||||
return getButtonHTML(null, stratogemsIcons[Key].ToString(), Key, "button\\HelldiversTwoMacro", null, new Dictionary<string, string>() { { "stratogem", Key } });
|
||||
}
|
||||
|
||||
public static bool invokeAction(string stratogem)
|
||||
|
@@ -5,7 +5,7 @@ using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FakeeDeck.ButtonType
|
||||
namespace FakeDeck.ButtonType
|
||||
{
|
||||
internal class KeyboardMacro
|
||||
{
|
||||
|
@@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FakeeDeck.ButtonType
|
||||
namespace FakeDeck.ButtonType
|
||||
{
|
||||
internal class MediaMacro : Button
|
||||
{
|
||||
@@ -27,7 +27,7 @@ namespace FakeeDeck.ButtonType
|
||||
|
||||
public static string getButton(string Key)
|
||||
{
|
||||
return getButtonHTML(mediaIcons[Key], null, Key, "button\\MediaMacro", new Dictionary<string, string>() { { "control_action", Key } });
|
||||
return getButtonHTML(mediaIcons[Key], null, Key, "button\\MediaMacro", null, new Dictionary<string, string>() { { "control_action", Key } });
|
||||
}
|
||||
|
||||
public static bool invokeAction(string control_action)
|
||||
|
54
FakeDeckUI/FakeDeck/ButtonType/ProcessMacro.cs
Normal file
54
FakeDeckUI/FakeDeck/ButtonType/ProcessMacro.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using static System.Text.Json.JsonElement;
|
||||
|
||||
namespace FakeDeck.ButtonType
|
||||
{
|
||||
class ProcessMacro : Button
|
||||
{
|
||||
public static string getButton(string process, string arguments = "", string? icon = null, string? image = null)
|
||||
{
|
||||
Dictionary<string, string> parameters = new Dictionary<string, string>() { { "process", process } };
|
||||
if (!string.IsNullOrEmpty(arguments))
|
||||
{
|
||||
parameters.Add("arguments", arguments);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(icon) || !string.IsNullOrEmpty(image))
|
||||
{
|
||||
process = null;
|
||||
}
|
||||
|
||||
return getButtonHTML(icon, image, process, "button\\ProcessMacro", null, parameters);
|
||||
}
|
||||
|
||||
public static bool invokeAction(string process, string arguments = "")
|
||||
{
|
||||
if (!File.ReadAllText("./configuration.yaml").Contains(process))
|
||||
{
|
||||
Debug.WriteLine("not known process");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!File.ReadAllText("./configuration.yaml").Contains(arguments))
|
||||
{
|
||||
Debug.WriteLine("not known arguments");
|
||||
return false;
|
||||
}
|
||||
|
||||
Process notePad = new Process();
|
||||
notePad.StartInfo.FileName = process;
|
||||
notePad.StartInfo.Arguments = arguments;
|
||||
notePad.Start();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
@@ -6,13 +6,13 @@ using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FakeeDeck.Class
|
||||
namespace FakeDeck.Class
|
||||
{
|
||||
internal class AbstractionHelper
|
||||
{
|
||||
public static Type? resolvType(string className)
|
||||
{
|
||||
string cleanClass = "FakeeDeck.ButtonType." + className.Trim('/');
|
||||
string cleanClass = "FakeDeck.ButtonType." + className.Trim('/');
|
||||
|
||||
Type? buttonClass = Type.GetType(cleanClass, true);
|
||||
|
||||
@@ -25,13 +25,20 @@ namespace FakeeDeck.Class
|
||||
public static string getButtonVisual(JsonElement button)
|
||||
{
|
||||
string calssName = button.GetProperty("function").ToString();
|
||||
MethodInfo? renderMethod = AbstractionHelper.resolvType(calssName).GetMethod("getButton");
|
||||
MethodInfo? renderMethod = resolvType(calssName).GetMethod("getButton");
|
||||
ParameterInfo[] pars = renderMethod.GetParameters();
|
||||
List<object> parameters = new List<object>();
|
||||
|
||||
foreach (ParameterInfo p in pars)
|
||||
{
|
||||
JsonElement parameter = button.GetProperty("parameters").EnumerateArray().SingleOrDefault(item => item.GetProperty("name").ToString() == p.Name);
|
||||
|
||||
if (string.IsNullOrEmpty(parameter.ToString()))
|
||||
{
|
||||
parameters.Insert(p.Position, p.DefaultValue);
|
||||
continue;
|
||||
}
|
||||
|
||||
parameters.Insert(p.Position, parameter.GetProperty("value").ToString());
|
||||
}
|
||||
|
||||
|
@@ -12,7 +12,7 @@ using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
namespace FakeeDeck.Class
|
||||
namespace FakeDeck.Class
|
||||
{
|
||||
public class AutoUpdateHelper
|
||||
{
|
||||
@@ -20,7 +20,8 @@ namespace FakeeDeck.Class
|
||||
AutoUpdater.ParseUpdateInfoEvent += AutoUpdaterOnParseUpdateInfoEvent;
|
||||
AutoUpdater.Synchronous = true;
|
||||
AutoUpdater.ShowRemindLaterButton = false;
|
||||
AutoUpdater.ReportErrors = Debugger.IsAttached;
|
||||
AutoUpdater.ClearAppDirectory = false;
|
||||
//AutoUpdater.ReportErrors = Debugger.IsAttached;
|
||||
AutoUpdater.HttpUserAgent = ("FakeDeck-v" + Assembly.GetExecutingAssembly().GetName().Version);
|
||||
AutoUpdater.Start("https://api.github.com/repos/GamerClassN7/FakeDeck/releases/latest");
|
||||
}
|
||||
|
@@ -1,71 +1,67 @@
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Reflection;
|
||||
using System.Reflection.PortableExecutable;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Windows;
|
||||
using static System.Text.Json.JsonElement;
|
||||
|
||||
namespace FakeeDeck.Class
|
||||
namespace FakeDeck.Class
|
||||
{
|
||||
internal class FakeDeckMain
|
||||
{
|
||||
private static string cachePath = "./cache/";
|
||||
public static string pageHeader =
|
||||
"<!DOCTYPE>" +
|
||||
"<html>" +
|
||||
"<html lang=\"en\">" +
|
||||
" <head>" +
|
||||
" <title>HttpListener Example</title>" +
|
||||
" <meta charset=\"utf-8\">" +
|
||||
" <meta name = \"viewport\" content=\"width=device-width, initial-scale=1, user-scalable=yes\">" +
|
||||
" <link href=\"https://yarnpkg.com/en/package/normalize.css\" rel=\"stylesheet\">" +
|
||||
" <link href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css\" rel=\"stylesheet\">" +
|
||||
" <link href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css\" rel=\"stylesheet\">" +
|
||||
" <link href=\"StaticFiles/style.css\" rel=\"stylesheet\">" +
|
||||
" <link rel=\"manifest\" href=\"StaticFiles/manifest.json\" />" +
|
||||
" </head>" +
|
||||
" <body>" +
|
||||
" <div class=\"d-flex flex-wrap\">" +
|
||||
" <div class=\"m-2\">" +
|
||||
" <p style=\"margin-bottom: 0px; width: 150px;height: 150px;background-color: aquamarine;\" >Page Views: {0}</p>" +
|
||||
" </div>";
|
||||
" <div id=\"main\" class=\"d-flex flex-wrap\" style=\"transform-origin: left top;\">";
|
||||
public static string pageFooter =
|
||||
" <div class=\"m-2\">" +
|
||||
" <button style=\"width: 150px;height: 150px;background-color: aquamarine;\" onclick=\"!document.fullscreenElement ? document.documentElement.requestFullscreen() : document.exitFullscreen();\">" +
|
||||
" <i class=\"fa-solid fa-maximize\"></i>" +
|
||||
" </button>" +
|
||||
" </div>" +
|
||||
" </div>" +
|
||||
" <script src=\"StaticFiles/app.js\"></script>" +
|
||||
" </body>" +
|
||||
"</html>";
|
||||
public string pageData = "";
|
||||
private ArrayEnumerator pages;
|
||||
public FakeDeckMain(YamlHelper yaml)
|
||||
{
|
||||
HttpServer server = new HttpServer(yaml.getData().GetProperty("server").GetProperty("port").ToString());
|
||||
|
||||
foreach (JsonElement item in yaml.getData().GetProperty("pages").EnumerateArray())
|
||||
HttpServer server = new HttpServer(yaml.getData().GetProperty("server").GetProperty("port").ToString());
|
||||
pages = yaml.getData().GetProperty("pages").EnumerateArray();
|
||||
|
||||
//ClearCache
|
||||
if (Directory.Exists(cachePath))
|
||||
{
|
||||
Debug.WriteLine("PAGE: " + item.GetProperty("page"));
|
||||
foreach (JsonElement button in item.GetProperty("buttons").EnumerateArray())
|
||||
DirectoryInfo di = new DirectoryInfo(cachePath);
|
||||
foreach (FileInfo file in di.EnumerateFiles())
|
||||
{
|
||||
pageData += AbstractionHelper.getButtonVisual(button);
|
||||
file.Delete();
|
||||
}
|
||||
}
|
||||
|
||||
pageData = renderPageView();
|
||||
|
||||
server.addRoute(servViewResponseAsync, "GET", "/");
|
||||
server.addRoute(servButtonResponseAsync, "POST", "/button/");
|
||||
|
||||
/*foreach (var stratogem in HelldiversTwoMacro.stratogems)
|
||||
{
|
||||
server.pageData += HelldiversTwoMacro.getButton(stratogem.Key);
|
||||
}
|
||||
|
||||
foreach (var control in MediaMacro.mediaControls)
|
||||
{
|
||||
server.pageData += MediaMacro.getButton(control.Key);
|
||||
}*/
|
||||
|
||||
server.addRoute(servPageResponseAsync, "POST", "/page");
|
||||
server.serv();
|
||||
}
|
||||
|
||||
private static void callButtonAction(string module, Dictionary<string, string> postParams)
|
||||
{
|
||||
string cleanClass = "FakeeDeck.ButtonType." + module.Trim('/');
|
||||
string cleanClass = "FakeDeck.ButtonType." + module.Trim('/');
|
||||
|
||||
Type? buttonClass = Type.GetType(cleanClass, true);
|
||||
|
||||
@@ -115,9 +111,10 @@ namespace FakeeDeck.Class
|
||||
try
|
||||
{
|
||||
string module = req.Url.AbsolutePath.Replace("/button", "");
|
||||
Console.WriteLine("Call module " + module);
|
||||
Debug.WriteLine("Call module " + module);
|
||||
callButtonAction(module, postParams);
|
||||
resp.StatusCode = (int)HttpStatusCode.OK;
|
||||
await resp.OutputStream.FlushAsync();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -129,5 +126,56 @@ namespace FakeeDeck.Class
|
||||
await resp.OutputStream.WriteAsync(errorData, 0, errorData.Length);
|
||||
}
|
||||
}
|
||||
|
||||
private async Task servPageResponseAsync(HttpListenerRequest req, HttpListenerResponse resp, Dictionary<string, string> postParams)
|
||||
{
|
||||
string pageContent = "";
|
||||
try
|
||||
{
|
||||
pageContent = renderPageView(postParams["Key"]);
|
||||
resp.StatusCode = (int)HttpStatusCode.OK;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
pageContent = ex.Message;
|
||||
resp.StatusCode = (int)HttpStatusCode.InternalServerError;
|
||||
}
|
||||
|
||||
byte[] errorData = Encoding.UTF8.GetBytes(pageContent);
|
||||
resp.ContentType = "text/html";
|
||||
resp.ContentEncoding = Encoding.UTF8;
|
||||
resp.ContentLength64 = errorData.LongLength;
|
||||
await resp.OutputStream.WriteAsync(errorData, 0, errorData.Length);
|
||||
}
|
||||
|
||||
private string renderPageView(string page = null)
|
||||
{
|
||||
JsonElement selectedPage = pages.First();
|
||||
|
||||
if (page != null)
|
||||
selectedPage = pages.SingleOrDefault(item => item.GetProperty("page").ToString() == page);
|
||||
|
||||
string SelectedPageName = selectedPage.GetProperty("page").ToString();
|
||||
if (File.Exists(cachePath + SelectedPageName + ".html"))
|
||||
return File.ReadAllText(cachePath + SelectedPageName + ".html");
|
||||
|
||||
string pageContent = "";
|
||||
foreach (JsonElement button in selectedPage.GetProperty("buttons").EnumerateArray())
|
||||
{
|
||||
try
|
||||
{
|
||||
pageContent += AbstractionHelper.getButtonVisual(button);
|
||||
}
|
||||
catch (Exception ex) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if (Directory.Exists(cachePath))
|
||||
Directory.CreateDirectory(cachePath);
|
||||
|
||||
File.WriteAllText(cachePath + SelectedPageName + ".html", pageContent);
|
||||
return pageContent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@ using System.IO;
|
||||
using System.Text;
|
||||
using System.Net;
|
||||
using System.Threading.Tasks;
|
||||
using FakeeDeck.ButtonType;
|
||||
using FakeDeck.ButtonType;
|
||||
using System.Web;
|
||||
using static System.Net.WebRequestMethods;
|
||||
using File = System.IO.File;
|
||||
@@ -21,7 +21,7 @@ using System.Collections;
|
||||
using System.Diagnostics;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace FakeeDeck.Class
|
||||
namespace FakeDeck.Class
|
||||
{
|
||||
internal class HttpServer
|
||||
{
|
||||
@@ -56,6 +56,7 @@ namespace FakeeDeck.Class
|
||||
{".img", "application/octet-stream"},
|
||||
{".iso", "application/octet-stream"},
|
||||
{".jar", "application/java-archive"},
|
||||
{".json", "application/json"},
|
||||
{".jardiff", "application/x-java-archive-diff"},
|
||||
{".jng", "image/x-jng"},
|
||||
{".jnlp", "application/x-java-jnlp-file"},
|
||||
@@ -133,13 +134,13 @@ namespace FakeeDeck.Class
|
||||
Debug.WriteLine(req.UserHostName);
|
||||
Debug.WriteLine(req.UserAgent);*/
|
||||
|
||||
bool isMatch = false;
|
||||
if (req.HttpMethod == "GET" && req.Url.AbsolutePath.Contains("."))
|
||||
{
|
||||
await servFileResponseAsync(req, resp);
|
||||
}
|
||||
else
|
||||
{
|
||||
bool isMatch = false;
|
||||
foreach (var route in routes[req.HttpMethod])
|
||||
{
|
||||
isMatch = Regex.IsMatch(req.Url.AbsolutePath, route.Key, RegexOptions.IgnoreCase);
|
||||
@@ -151,16 +152,18 @@ namespace FakeeDeck.Class
|
||||
{
|
||||
Dictionary<string, string> postParams = parsePostRequestParameters(req);
|
||||
gelegate.DynamicInvoke([req, resp, postParams]);
|
||||
break;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
gelegate.DynamicInvoke([req, resp]);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isMatch)
|
||||
{
|
||||
Debug.WriteLine("NO ROUTE MATCHED");
|
||||
resp.StatusCode = (int)HttpStatusCode.NotFound;
|
||||
await resp.OutputStream.FlushAsync();
|
||||
}
|
||||
@@ -192,6 +195,7 @@ namespace FakeeDeck.Class
|
||||
if (!File.Exists(filename))
|
||||
{
|
||||
resp.StatusCode = (int)HttpStatusCode.NotFound;
|
||||
resp.OutputStream.Flush();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -212,8 +216,8 @@ namespace FakeeDeck.Class
|
||||
while ((nbytes = input.Read(buffer, 0, buffer.Length)) > 0)
|
||||
resp.OutputStream.Write(buffer, 0, nbytes);
|
||||
input.Close();
|
||||
resp.OutputStream.Flush();
|
||||
resp.StatusCode = (int)HttpStatusCode.OK;
|
||||
resp.OutputStream.Flush();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
@@ -4,7 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FakeeDeck.Class
|
||||
namespace FakeDeck.Class
|
||||
{
|
||||
internal class KeyboardCode
|
||||
{
|
||||
|
@@ -7,7 +7,7 @@ using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using YamlDotNet.Serialization;
|
||||
|
||||
namespace FakeeDeck.Class
|
||||
namespace FakeDeck.Class
|
||||
{
|
||||
public class YamlHelper
|
||||
{
|
||||
|
@@ -19,6 +19,12 @@
|
||||
<None Update="StaticFiles\app.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="StaticFiles\manifest.json">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="StaticFiles\style.css">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@@ -5,13 +5,16 @@
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:FakeDeck"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="270" Activated="FakeDeckUI_Activated" WindowStartupLocation="CenterScreen">
|
||||
Title="MainWindow"
|
||||
Activated="FakeDeckUI_Activated"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
Width="280" Height="340">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="270*"/>
|
||||
<RowDefinition Height="270"/>
|
||||
<RowDefinition Height="50*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Image x:Name="qr_code" Margin="10,10,10,10"/>
|
||||
<TextBox Margin="10,10,10,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Grid.Row="1"/>
|
||||
<Image x:Name="qr_code" Margin="10,10,10,0"/>
|
||||
<TextBox Margin="10,10,10,10" TextWrapping="Wrap" Text="TextBox" Grid.Row="1" Height="20" VerticalAlignment="Center"/>
|
||||
</Grid>
|
||||
</Window>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
using FakeDeck.Class;
|
||||
using FakeeDeck.Class;
|
||||
using FakeDeck.Class;
|
||||
using QRCoder;
|
||||
using System.Reflection.Emit;
|
||||
using System.Text;
|
||||
@@ -17,6 +17,7 @@ using static System.Runtime.CompilerServices.RuntimeHelpers;
|
||||
using System.Drawing;
|
||||
using Color = System.Drawing.Color;
|
||||
using AutoUpdaterDotNET;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace FakeDeck
|
||||
{
|
||||
@@ -32,6 +33,7 @@ namespace FakeDeck
|
||||
|
||||
private void FakeDeckUI_Activated(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
string port = ((App)Application.Current).yaml.getData().GetProperty("server").GetProperty("port").ToString();
|
||||
string url = "http://localhost:" + port;
|
||||
|
||||
@@ -41,7 +43,14 @@ namespace FakeDeck
|
||||
QRCode qrCode = new QRCode(qrCodeData);
|
||||
qr_code.Source = GeneralHelper.BitmapToImageSource(qrCode.GetGraphic(20, Color.Black, Color.White, false));
|
||||
|
||||
try
|
||||
{
|
||||
AutoUpdateHelper updater = new AutoUpdateHelper();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Debug.WriteLine(ex.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,7 +1,74 @@
|
||||
[].forEach.call(document.querySelectorAll('form'), function (form) {
|
||||
|
||||
function urlencodeFormData(fd){
|
||||
var s = '';
|
||||
function encode(s){ return encodeURIComponent(s).replace(/%20/g,'+'); }
|
||||
for(var pair of fd.entries()){
|
||||
if(typeof pair[1]=='string'){
|
||||
s += (s?'&':'') + encode(pair[0])+'='+encode(pair[1]);
|
||||
}
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
function resizeGrid(){
|
||||
var width = document.body.clientWidth;
|
||||
var height = document.body.clientHeight;
|
||||
width = window.screen.availWidth;
|
||||
height = window.screen.availHeight;
|
||||
|
||||
|
||||
var biggerSizeW = (width / 7);
|
||||
var biggerSizeH = (height / 5);
|
||||
|
||||
var biggerSize = biggerSizeW;
|
||||
if(biggerSizeW < biggerSizeH){
|
||||
biggerSize = biggerSizeW;
|
||||
}
|
||||
|
||||
console.log(biggerSize);
|
||||
|
||||
[].forEach.call(document.querySelectorAll('.button'), function (button) {
|
||||
var size = biggerSize
|
||||
button.style.height = size;
|
||||
button.style.width = size;
|
||||
//console.log(size);
|
||||
});
|
||||
}
|
||||
|
||||
function loadPage(pageId){
|
||||
event.preventDefault();
|
||||
|
||||
var formData = new FormData();
|
||||
formData.append('Key', pageId)
|
||||
|
||||
const xhttp = new XMLHttpRequest();
|
||||
xhttp.onload = function () { }
|
||||
xhttp.onreadystatechange = function () {
|
||||
if (xhttp.readyState === 4) {
|
||||
if (xhttp.status === 200) {
|
||||
console.log('successful');
|
||||
document.querySelector('div#main').innerHTML = xhttp.responseText;
|
||||
console.log(xhttp.responseText);
|
||||
resizeGrid();
|
||||
formToAjax();
|
||||
} else {
|
||||
console.log('failed');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
xhttp.open("POST", "/page", true);
|
||||
xhttp.send(urlencodeFormData(formData));
|
||||
}
|
||||
|
||||
function formToAjax(){
|
||||
[].forEach.call(document.querySelectorAll('form'), function (form) {
|
||||
form.addEventListener('submit', function (event) {
|
||||
event.preventDefault();
|
||||
const target = event.currentTarget;
|
||||
target.style.opacity = "0.5"
|
||||
|
||||
navigator.vibrate(200);
|
||||
|
||||
console.log(target.method, target.action);
|
||||
console.log(form.method, form.action);
|
||||
@@ -18,21 +85,24 @@
|
||||
} else {
|
||||
console.log('failed');
|
||||
}
|
||||
target.style.opacity = "1"
|
||||
}
|
||||
}
|
||||
|
||||
xhttp.open(target.method, target.action, true);
|
||||
xhttp.send(urlencodeFormData(formData));
|
||||
});
|
||||
});
|
||||
|
||||
function urlencodeFormData(fd){
|
||||
var s = '';
|
||||
function encode(s){ return encodeURIComponent(s).replace(/%20/g,'+'); }
|
||||
for(var pair of fd.entries()){
|
||||
if(typeof pair[1]=='string'){
|
||||
s += (s?'&':'') + encode(pair[0])+'='+encode(pair[1]);
|
||||
}
|
||||
}
|
||||
return s;
|
||||
});
|
||||
}
|
||||
|
||||
window.addEventListener('resize', function(event) {
|
||||
resizeGrid();
|
||||
}, true);
|
||||
|
||||
window.addEventListener('orientationchange', function(event) {
|
||||
console.log("Rotated");
|
||||
resizeGrid();
|
||||
}, true);
|
||||
|
||||
resizeGrid();
|
||||
formToAjax();
|
10
FakeDeckUI/FakeDeck/StaticFiles/manifest.json
Normal file
10
FakeDeckUI/FakeDeck/StaticFiles/manifest.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "FakeDeck",
|
||||
"short_name": "FakeDeck",
|
||||
"theme_color": "#fff",
|
||||
"background_color": "#fff",
|
||||
"display": "fullscreen",
|
||||
"orientation": "landscape",
|
||||
"scope": "/",
|
||||
"start_url": "/"
|
||||
}
|
1
FakeDeckUI/FakeDeck/StaticFiles/style.css
Normal file
1
FakeDeckUI/FakeDeck/StaticFiles/style.css
Normal file
@@ -0,0 +1 @@
|
||||
/*https://stackoverflow.com/questions/62371077/create-dynamic-equal-sized-small-squares-grid-in-fixed-size-big-square/
|
@@ -11,6 +11,50 @@ pages:
|
||||
- name: Key
|
||||
value: "reinforce"
|
||||
|
||||
- button: flamethrower
|
||||
function: HelldiversTwoMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "flamethrower"
|
||||
|
||||
- button: anti-material
|
||||
function: HelldiversTwoMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "anti-material"
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: strafing-run
|
||||
function: HelldiversTwoMacro
|
||||
parameters:
|
||||
@@ -53,6 +97,83 @@ pages:
|
||||
- name: Key
|
||||
value: bomb
|
||||
|
||||
- button: full-screen
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "full-screen"
|
||||
- name: Color
|
||||
value: orange
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: orange
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: orbital-380-barrage
|
||||
function: HelldiversTwoMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: orbital-380-barrage
|
||||
|
||||
- button: page
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "set-page"
|
||||
- name: PageId
|
||||
value: "media"
|
||||
- name: Image
|
||||
value: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTdEjIsQcn8NwYWhwISL74xXLGtRHeW1Mn67g&s"
|
||||
|
||||
|
||||
- page: media
|
||||
buttons:
|
||||
- button: notepad
|
||||
function: ProcessMacro
|
||||
parameters:
|
||||
- name: process
|
||||
value: "notepad.exe"
|
||||
- name: image
|
||||
value: "https://www.club386.com/wp-content/uploads/2021/12/notepad-icon-696x632.jpg"
|
||||
|
||||
- button: cmd
|
||||
function: ProcessMacro
|
||||
parameters:
|
||||
- name: process
|
||||
value: "cmd.exe"
|
||||
- name: arguments
|
||||
value: "/C ping google.com -t"
|
||||
- name: image
|
||||
value: "https://winaero.com/blog/wp-content/uploads/2019/06/WIndows-Terminal-icon.png"
|
||||
|
||||
- button: mute
|
||||
function: MediaMacro
|
||||
parameters:
|
||||
@@ -76,3 +197,52 @@ pages:
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "next"
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "full-screen"
|
||||
- name: Color
|
||||
value: orange
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "spacer"
|
||||
- name: Color
|
||||
value: red
|
||||
- button: page
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "set-page"
|
||||
- name: PageId
|
||||
value: "helldivers"
|
||||
- name: Image
|
||||
value: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT2oyk6yqmBxt9ejwqBaordr6X9s-dZFnHrvg&s"
|
91
README.md
91
README.md
@@ -1,20 +1,26 @@
|
||||
## FakeDeck - Poor Man Macro Pad
|
||||
<div align="center">
|
||||
<img style="border-radius:10px" src="images/logo.png" title="Logo"><br>
|
||||
<img src="https://img.shields.io/github/downloads/GamerClassN7/FakeDeck/total.svg" alt="Github All Releases">
|
||||
</div>
|
||||
|
||||
# FakeDeck - Poor Man Macro Pad
|
||||
|
||||
Creates simple webserver with buttons whitch can be opened on any device an can be used as macro pad/keyboard
|
||||
|
||||

|
||||
|
||||
### How to use it ?
|
||||
## How to use it ?
|
||||
|
||||
Just add desired macros to `configuration.yaml` and start the application, tahn zou can load dashboard on any web capable device inside of your network.
|
||||
|
||||
### Example Macros:
|
||||
|
||||
## Example Macros:
|
||||
### Helldivers 2 Macros
|
||||
```yaml
|
||||
- button: reinforce
|
||||
function: HelldiversTwoMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "reinforce"
|
||||
value: reinforce
|
||||
```
|
||||
```yaml
|
||||
- button: strafing-run
|
||||
@@ -65,10 +71,83 @@ Just add desired macros to `configuration.yaml` and start the application, tahn
|
||||
- name: Key
|
||||
value: bomb
|
||||
```
|
||||
### Media Control Macros
|
||||
```yaml
|
||||
- button: mute
|
||||
function: MediaMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: "mute"
|
||||
value: mute
|
||||
```
|
||||
```yaml
|
||||
- button: previous
|
||||
function: MediaMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: previous
|
||||
```
|
||||
```yaml
|
||||
- button: play
|
||||
function: MediaMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: play/pause
|
||||
```
|
||||
```yaml
|
||||
- button: next
|
||||
function: MediaMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: next
|
||||
```
|
||||
### FakeDeck UI Control Macros
|
||||
```yaml
|
||||
- button: full-screen
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: full-screen
|
||||
```
|
||||
```yaml
|
||||
- button: set-page
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: set-page
|
||||
- name: PageId
|
||||
value: {{page-id}}
|
||||
```
|
||||
```yaml
|
||||
- button: spacer
|
||||
function: FakeDeckMacro
|
||||
parameters:
|
||||
- name: Key
|
||||
value: spacer
|
||||
```
|
||||
### Process Macro
|
||||
```yaml
|
||||
- button: cmd
|
||||
function: ProcessMacro
|
||||
parameters:
|
||||
- name: process
|
||||
value: "cmd.exe"
|
||||
- name: arguments #Optional Proces Arguments
|
||||
value: "/C ipconfig"
|
||||
```
|
||||
### Comon Macro Parameters
|
||||
```yaml
|
||||
...
|
||||
parameters:
|
||||
- name: Color
|
||||
value: White #CSS friendly color
|
||||
- name: Image
|
||||
value: White #URL To Image (Local Path is not supported now)
|
||||
...
|
||||
```
|
||||
## Contributors
|
||||
<a href="https://github.com/GamerClassN7/FakeDeck/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=GamerClassN7/FakeDeck" />
|
||||
</a>
|
||||
|
||||
## Star History
|
||||
[](https://star-history.com/#GamerClassN7/FakeDeck&Timeline)]
|
BIN
images/logo.png
Normal file
BIN
images/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
Reference in New Issue
Block a user