Skip to content

Commit 25e69bd

Browse files
authored
Merge pull request #20 from Terence-D/Dev1.0
version 1.1
2 parents 257c87c + 3161cb7 commit 25e69bd

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

GameInputCommandSystem/GameInputCommandSystem.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<MapFileExtensions>true</MapFileExtensions>
2727
<AutorunEnabled>true</AutorunEnabled>
2828
<ApplicationRevision>0</ApplicationRevision>
29-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29+
<ApplicationVersion>1.1.0.%2a</ApplicationVersion>
3030
<UseApplicationTrust>false</UseApplicationTrust>
3131
<PublishWizardCompleted>true</PublishWizardCompleted>
3232
<BootstrapperEnabled>true</BootstrapperEnabled>

GameInputCommandSystem/KeyMaster.cs

+16-14
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,24 @@ public bool SendCommand(Command command)
2727
{
2828
return false;
2929
} else {
30-
//if any modifiers, send them first
31-
foreach (string modifier in command.Modifier)
32-
{
33-
AutoItX.Send("{" + modifier + "DOWN}");
30+
if (command.activatorType == Command.KEY_DOWN) {
31+
//if any modifiers, send them first
32+
foreach (string modifier in command.Modifier)
33+
{
34+
AutoItX.Send("{" + modifier + "DOWN}");
35+
}
36+
//now send the key itself
37+
AutoItX.Send("{" + command.Key + " down}");
38+
//keep everything pressed for 10ms
3439
}
35-
//now send the key itself
36-
AutoItX.Send("{" + command.Key + " down}");
37-
//keep everything pressed for 10ms
38-
AutoItX.Sleep(10);
39-
AutoItX.Send("{" + command.Key + " up}");
40-
//if any modifiers, unset them last
41-
foreach (string modifier in command.Modifier)
42-
{
43-
AutoItX.Send("{" + modifier + "UP}");
40+
else if (command.activatorType == Command.KEY_UP) {
41+
AutoItX.Send("{" + command.Key + " up}");
42+
//if any modifiers, unset them last
43+
foreach (string modifier in command.Modifier)
44+
{
45+
AutoItX.Send("{" + modifier + "UP}");
46+
}
4447
}
45-
4648
}
4749
return true;
4850
}

GameInputCommandSystem/Models/Command.cs

+4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ namespace GameInputCommandSystem.Models
1717
{
1818
public class Command
1919
{
20+
public const int KEY_DOWN = 0;
21+
public const int KEY_UP = 1;
22+
2023
public string Key { get; set; }
2124
public string[] Modifier { get; set; }
25+
public int activatorType {get;set;}
2226
}
2327
}

GameInputCommandSystem/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.0.0.0")]
55-
[assembly: AssemblyFileVersion("1.0.0.0")]
54+
[assembly: AssemblyVersion("1.1.0.0")]
55+
[assembly: AssemblyFileVersion("1.1.0.0")]

0 commit comments

Comments
 (0)