Xbox 360 wireless controller Keymap.xml

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
bb10 Offline
Member
Posts: 87
Joined: Feb 2008
Reputation: 0
Post: #11
Bar1 Wrote:The link is not working, can someone please post another link?

Thanks,
Bar1

Xbox360 EventClient

Here you go. Smile
find quote
ForsetiAvatar Offline
Junior Member
Posts: 1
Joined: Nov 2009
Reputation: 0
Post: #12
Allen626 Wrote:b. Windows Resource Kit can allow you to install programs as services. Microsoft has a guide for it on there technet. http://support.microsoft.com/kb/137890

That is a really old KB article. The resource kit is no longer required, use sc.exe which is included in WinXP (and above I would think).
Command structure below

Code:
sc create [i]service_name[/i] binpath= [i]"path to executable"[/i] start= auto

If the service name has a space in it, enclose in quotes. Also, it is very picky about having that space after the equals sign. The 'start= auto' will automatically start the service at reboot. To start the service immedaitely use
Code:
sc start [i]service_name[/i]

you can also use the sc command to setup auto restart on failure and the like.

Going to give the event client a shot when I get home tonight. Hope it works.
find quote
jacky89 Offline
Senior Member
Posts: 149
Joined: Jul 2009
Reputation: 0
Post: #13
The EventClient makes the Xbox 360 wireless gamepad work automatically without having to manually edit anything at all! Thanks for the posts! However, is it possible to get EventClient to work with an external player (e.g., mpc-hc.exe)? If so, can you please explain?
find quote
pred Offline
Junior Member
Posts: 37
Joined: Dec 2009
Reputation: 0
Post: #14
bb10 Wrote:Xbox360 EventClient

Wow, finally after searching and trying i got my XBOX 360 Wireless Pad working with my xbmc.
The settings are pretty good.

but i've two things that annoy me:
  1. i always have to start that .exe before i launch my xbmc. i generally started my XBMC with a button on my iMon Pad before. Now i have to do a step before.
    Is it possible to integrate that Xbox360 EventClient into the xbmc? Is it avalible as plugin?
  2. The left Stick is not in use. Why not use it to go through Menus.


Another Question:

If xbmc isn't running and i want to launch it with my pad (with the start button or something).
How could i do that? Eventghost, XPadder?
find quote
Chubster Offline
Member
Posts: 59
Joined: Mar 2010
Reputation: 0
Post: #15
Ok....I know this is an old thread but just trying to get my controller working. All done I think but is there a file that will show me what buttons do what and is there a way to change them.

For instance cant find how to stop a music track once it is playing and how to go back to previous menu ie what the Esc key currently does when using keyboard?
(This post was last modified: 2010-04-11 15:37 by Chubster.)
find quote
twotone8 Offline
Senior Member
Posts: 130
Joined: Apr 2010
Reputation: 0
Post: #16
i use an emulator in order to convince my computer that my ps2 controller is actually a 360 controller. i do this by placing (re replacing) an xinput1_3.dll file in the root folder of whichever game i want to play. works like a charm, but i'm unsure how to use this with xbmc. i've attempted to place the xinput1_3.dll file in the 360eventclient folder, as well as the xbmc folder itself, but so far nothing seems to be working. where does the eventclient draw it's commands from. is there some root windows folder i should be using?

the emulator can be found here

info about the emulator can be found here
(This post was last modified: 2010-06-17 04:33 by twotone8.)
find quote
doat Offline
Junior Member
Posts: 27
Joined: Aug 2010
Reputation: 0
Post: #17
EDIT: Nvm i found this http://ronin-tech.com/Content/pid=30.html and it works very well.
(This post was last modified: 2010-08-07 23:46 by doat.)
find quote
HenryFord Offline
Posting Freak
Posts: 1,002
Joined: Jan 2010
Reputation: 14
Post: #18
Hey,

i know this post is older, but i want to respond on the implementation of the evtcl as a service: This does not work, Windows cannot start the service, it does not respond.

Does anyone know how to do this? Or is it possible to launch the evtcl with a tray-icon in windows (instead of a console-window)?
Hence the evtcl is in the svn, is it recommend to update it? Im not sure of the language (guessing C++) but that should be rather simple, I could give it a try...

Edit
Btw: I am throwing together a little .NET-App which lets you joint-execute binarys at one click (so you can start XBMC and any EventClient together, for example)... I am sure there is something out there already, but if anyone is interested, just let me know...
There will be also an option to put a program in the foreground - this will allow you to launch the evtcls without bringing them to the front (ie in front of the xbmc)
(This post was last modified: 2010-11-08 14:32 by HenryFord.)
find quote
HenryFord Offline
Posting Freak
Posts: 1,002
Joined: Jan 2010
Reputation: 14
Post: #19
I got it to work... however, I had to learn that this is only possible through some dirty hacking, because the Windows API does not intend console applications to be minimized to the tray...

However, this is what I came up with so far:
Add this to the "int main":
Code:
//Minimize the window to tray so noone cares...
    //window handle
    hWnd=FindWindow("ConsoleWindowClass",NULL);

    //hide the window
    ShowWindow(hWnd,0);

    //tray info
    Tray.cbSize=sizeof(Tray);
    Tray.hIcon=LoadIcon(NULL,IDI_WINLOGO);
    Tray.hWnd=hWnd;
    strcpy(Tray.szTip,"Xbox360 EventClient for XBMC");
    Tray.uCallbackMessage=WM_LBUTTONDOWN;
    Tray.uFlags=NIF_ICON | NIF_TIP | NIF_MESSAGE;
    Tray.uID=1;

    //set the icon in tasbar tray
    Shell_NotifyIcon(NIM_ADD, &Tray);

These includes and definitions need to be added:
Code:
#include<shellapi.h>
#include<windows.h>
//(...)
NOTIFYICONDATA Tray;
HWND hWnd;

This will minimize the app instantly to the tray, but you cannot do anything with it (you have to kill it via task manager).
I created a patch-file if necessary, but I'm not sure where to put it?
(This post was last modified: 2010-11-08 20:23 by HenryFord.)
find quote
Zak Offline
Junior Member
Posts: 31
Joined: Dec 2004
Reputation: 0
Post: #20
HenryFord can you upload a fixed binary to http://www.multiupload.com/ please?
As a bonus you could update the wiki about 360 controller support in XBMC and add your link:
http://wiki.xbmc.org/index.php?title=Rem...ol_Reviews
find quote