VoxCommando

General Discussion => General Discussion => Topic started by: Repoman on November 17, 2011, 02:42:25 PM

Title: Vox a good replacment for my game commander
Post by: Repoman on November 17, 2011, 02:42:25 PM
I want to use Vox.... as a replacement for my Game Commander program. GC is a voice control application for games. I have disability that affects my hands and that's why I use it. I was hoping that someone could help with a starter code for what I need.


Those are just a few, but once I how it's done. I can add more by editing it. I hope someone can help me with this task.
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 17, 2011, 03:12:37 PM
I want to use Vox.... as a replacement for my Game Commander program. GC is a voice control application for games. I have disability that affects my hands and that's why I use it. I was hoping that someone could help with a starter code for what I need.

  • 1 key Main Weapon
  • 2 key Secondary Weapon
  • R key Reload
  • Spacebar Jump
  • Q key for spotting

Those are just a few, but once I how it's done. I can add more by editing it. I hope someone can help me with this task.
Hi Repoman, I make short basic command for you, this take some minutes

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 17, 2011, 03:30:03 PM
I want to use Vox.... as a replacement for my Game Commander program. GC is a voice control application for games. I have disability that affects my hands and that's why I use it. I was hoping that someone could help with a starter code for what I need.

  • 1 key Main Weapon
  • 2 key Secondary Weapon
  • R key Reload
  • Spacebar Jump
  • Q key for spotting

Those are just a few, but once I how it's done. I can add more by editing it. I hope someone can help me with this task.
Ok, test the attached xml-file. This is an example how it work.

Import it on the right in VC-Editor with "open a new bin file" and "drag and drop" it on the left.

You can edit the commands and phrases. Not all games work with key-emulation, but test it.

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: Repoman on November 17, 2011, 03:47:00 PM
Doesn't seem to work, I also opened notepad said reload and it didn't type the letter R in there. So it can't be sending a keystroke.
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 17, 2011, 03:52:03 PM
Doesn't seem to work, I also opened notepad said reload and it didn't type the letter R in there. So it can't be sending a keystroke.
Do you have test in the game?
Title: Re: Vox a good replacment for my game commander
Post by: Repoman on November 17, 2011, 03:54:13 PM
I tested in game first and  than tried notepad for keystroke
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 17, 2011, 03:55:24 PM
I tested in game first and  than tried notepad for keystroke
Opps, test this, sorry  :bonk

You must use the SendKey Command  ::)

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: Repoman on November 17, 2011, 04:04:34 PM
It won't work in game, but it does do a R keystroke in notepad  >:(.
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 17, 2011, 04:17:56 PM
It won't work in game, but it does do a R keystroke in notepad  >:(.
that is what I mean, it work not with all games.
Title: Re: Vox a good replacment for my game commander
Post by: Repoman on November 17, 2011, 04:19:13 PM
ok thanks for trying.
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 17, 2011, 04:20:12 PM
does the same game respond to keys from game commander?
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 17, 2011, 04:23:06 PM
is it possible that the keyboard emulation performed by eventGhost works?
Title: Re: Vox a good replacment for my game commander
Post by: Repoman on November 17, 2011, 04:40:24 PM
Yes GC works for the Game.
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 17, 2011, 05:02:12 PM
You'll just have to stick with that then, unless I can figure out a way to emulate keyboard for games that use directInput.  So far I have had no luck with that.
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 23, 2011, 11:31:56 AM
I am working on a plugin that uses directX / directInput.  I am hoping that it will allow for keyboard emulation in most games that use direct Input.

Preliminary test show that it seems to work in at least one game where VC's inputkeys did not work.

Is there anyone here who can help beta test with some games when it is ready?
The wider an array of games that we can test on the better, also if we can test on 32 and 64 bit systems.

I don't want to get anyone's hopes up on this, it may turn out to be a total failure.  Lower-level Keyboard emulation in windows is tricky stuff (at least for me).
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 23, 2011, 09:03:35 PM
I have got a working plugin now and have tested it on Elder Scrolls V (Skyrim) and it seems to work perfectly. (windows 7 x64)

I don't have any other games installed at the moment to test it on.
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 24, 2011, 03:56:28 AM
I have got a working plugin now and have tested it on Elder Scrolls V (Skyrim) and it seems to work perfectly. (windows 7 x64)

I don't have any other games installed at the moment to test it on.
James, I can test it with Battelefield 2 from EA-Games.
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 24, 2011, 08:05:47 AM
Thanks Kalle.  Does that game that work with the the VC  "InputKeys" command?

Unzip the attached into your plugins folder.

Here's a list of key names: http://voxcommando.com/mediawiki/index.php?title=DxInput

for simple keypresses you just put the keyname as the parameter.

example:

DxInput.KeyPress W
DxInput.KeyPress BackSpace

for a keycombination you use the first parameter for the modifier keys and the second for the keys, but you put each each in {}

so to open task manager, Ctrl-Shift-Esc you use:

DxInput.KeyCombo      {LeftControl{LeftShift}          {Escape}
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 24, 2011, 08:21:29 AM
Thanks Kalle.  Does that game that work with the the VC  "InputKeys" command?

Unzip the attached into your plugins folder.

Here's a list of command names: http://voxcommando.com/mediawiki/index.php?title=DxInput

for simple keypresses you just put the keyname as the parameter.

example:

DxInput.KeyPress W
DxInput.KeyPress BackSpace

for a keycombination you use the first parameter for the modifier keys and the second for the keys, but you put each each in {}

so to open task manager, Ctrl-Shift-Esc you use:

DxInput.KeyCombo      {LeftControl{LeftShift}          {Escape}
Ok, thanks - this wil take a while
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 24, 2011, 08:28:08 AM
no rush. :)
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 24, 2011, 08:53:37 AM
Here's a group with enough commands for testing.  Obviously for games you would want to create custom commands.

Put DxModKeys.xml and DxKeys.xml in your payloads folder

then import the group VcGrp...xml into VC
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 25, 2011, 02:42:25 PM
no rush. :)
Hi James, a short review for dxinput.key actions:

1. In game Battlefield 2 (EA-Games) the DxInput.KeyDown works perfect  ;D
2. The DxInput.KeyPress doesn't work in EA-Games

I will test it in Battlefield 3 next time  ;)

the keycombo (taskmanger, switch window) works also

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 25, 2011, 03:16:06 PM
keydown works but not keypress.  It sounds like we need a slight delay since keypress is equivalent to keydown, followed by keyup.

please try this new version of the plugin when you get the time.  It has an option to set the delay (pause) for keypress.
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 25, 2011, 03:34:39 PM
keydown works but not keypress.  It sounds like we need a slight delay since keypress is equivalent to keydown, followed by keyup.

please try this new version of the plugin when you get the time.  It has an option to set the delay (pause) for keypress.
Yep, that is it, it work with a delay up to 18  ;D

Improtant: -The DxInput-plugin emulate US/EN-Keyboard Layout-
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 25, 2011, 03:37:47 PM
excellent.  thanks for testing so fast and letting me know!

Hopefully others will find this plugin useful for a wide variety of games. We will see...
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 25, 2011, 03:46:50 PM
excellent.  thanks for testing so fast and letting me know!

Hopefully others will find this plugin useful for a wide variety of games. We will see...
No problem, I think this plugin works with the most games.
We can start a challenge with game commands.

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 25, 2011, 03:57:24 PM
OK, I challenge you to test it with Battlefield 3.  >:D
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 25, 2011, 04:04:35 PM
OK, I challenge you to test it with Battlefield 3.  >:D
Haha, challenge is the wrong word   :bonk, I meant a contest
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 25, 2011, 06:05:14 PM
it is a fine word.  I am just having fun.  It means about the same thing.

OK a contest to see who can test it with  Battlefield 3 first!  ::zzz
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 25, 2011, 06:13:41 PM
it is a fine word.  I am just having fun.  It means about the same thing.

OK a contest to see who can test it with  Battlefield 3 first!  ::zzz
Ok, I test it in few days  ;)
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on November 29, 2011, 04:03:38 AM
Here is a short review, how the DX-plugin work in a game (I have testet Battlefield 2 from EA-Games, I think it works with all EA-Games from this genre eg. BF3 ...)
With this nice plugin you can control all actions in the game that allowed to perform with a keyboard, but not all buttons make sense to control it with voice (run, spin etc.).
A cool thing is, you can create special action-combos and trigger it with voicecommands.
Here a example from BF2:

Infantry-Infight-Combo: move left 2x -> move right 2x ->shoot -> lay down -> shoot -> stand up (this sequence occurs within one and a half second)

Airfight with Jet: roll the Jet 360° degrees and fire a stinger -> after roll TTS speak "die sucker die!"

There are many opportunities for games, how the plugin can be used. Test it and report here how it works  ;)

Important: In the plugin-settings you can set a delay-time, set it to 20

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on November 29, 2011, 11:40:54 AM


Important: In the plugin-settings you can set a delay-time, set it to 20

Kalle

The ideal delay time may be different in different games, which is why I made it an option.  With ElderScrolls Skytrim, a delay of 0 worked fine for keypresses.  Other games (or perhaps depending on the speed of your system) may require a setting of longer than 20 milliseconds.

I will add an action to adjust the delay "on the fly"
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on December 05, 2011, 03:49:48 PM
new version of the DxInput plugin is included in VC 0.933

http://voxcommando.com/forum/index.php?topic=659.msg4712#msg4712

there are some new commands such as KeyHold, Type, and SetDelay

also the KeyPress commands can now send multiple presses in sequence by using multiple parameters
Title: Re: Vox a good replacment for my game commander
Post by: Repoman on December 28, 2011, 10:14:36 AM
I have been tweaking my vox to work with BF3 and things are coming together. I do have a couple of questions. I have a Razor Copperhead mouse and would like to know if I use Vox for the On-The-Fly Sensitivity adjustment and side buttons?
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on December 28, 2011, 10:17:31 AM
it does keyboard emulation only.  So, unless there is a key combination that does the equivalent the answer is no.
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on December 28, 2011, 11:33:36 AM
I think I may be able to add an action (such as: Mouse.SetSpeed   ##) to adjust mouse sensitivity, but it would not be in the dxInput plugin.  I would add it to the built-in Mouse.* actions in VC.

Do the existing VC mouse actions (Mouse.LeftClick and Mouse.RightClick) work in BF3 ?
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on December 28, 2011, 02:30:59 PM
I think I may be able to add an action (such as: Mouse.SetSpeed   ##) to adjust mouse sensitivity, but it would not be in the dxInput plugin.  I would add it to the built-in Mouse.* actions in VC.

Do the existing VC mouse actions (Mouse.LeftClick and Mouse.RightClick) work in BF3 ?
Hi James, in BF2 work it, but the click (left/right) hangs after the first click.

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on December 28, 2011, 04:48:08 PM
what do you mean by "hangs"?  The game hangs?  VC hangs? The mouse hangs?  The mouse button stays down?

also, just to be sure, make sure you are using Mouse.LeftClick and not Mouse.LeftButtonDown
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on December 28, 2011, 05:03:54 PM
what do you mean by "hangs"?  The game hangs?  VC hangs? The mouse hangs?  The mouse button stays down?

also, just to be sure, make sure you are using Mouse.LeftClick and not Mouse.LeftButtonDown
Sorry, the mouse button stays always down, with mouse.leftclick and mouse.rightclick.

Kalle
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on December 28, 2011, 06:36:15 PM
That is unfortunate.

What happens if you send a mousedown followed by mouseup?
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on December 28, 2011, 07:37:45 PM
That is unfortunate.

What happens if you send a mousedown followed by mouseup?
I don't know, I test it tomorrow  ;)
Title: Re: Vox a good replacment for my game commander
Post by: Kalle on December 29, 2011, 10:35:24 AM
That is unfortunate.

What happens if you send a mousedown followed by mouseup?
Ok James, I figured out what is the problem, there is no problem  :bonk
I've used in BF2 the mouse right click for alternate weapon at a Jetflight and this weapon (rocket) like ~0.8 - 1 second to reload.
Fact is: mouseclick is ok  :-[

Sorry for this confusion
Kalle
Title: Re: Vox a good replacment for my game commander
Post by: jitterjames on December 29, 2011, 10:49:10 AM
no problem.  thanks for the update. :)