Questions tagged [xbox360]

The Xbox 360 is a video game console made by Microsoft and is the successor to the original Xbox. Development languages include C#, C and C++.

The Xbox 360 is the second video game console released by Microsoft, after 2001's . The Xbox 360 competes against the Nintendo and Sony . All three are called "next-generation" or "seventh generation" consoles. The Xbox 360 was officially revealed on MTV on May 12, 2005.

Development

Xbox 360 development is largely split into two distinct sections:

  1. XNA Development
    This involves using the XNA Framework to develop games/applications, and is done through AppHub. You can find the tools for development (XNA Game Studio) here. Anything developed using these tools must be written in C#.NET and can only be released onto the Xbox LIVE Marketplace as an 'Indie Game' (after passing the review process, of course). To debug your XNA app on the console itself, you need a membership. Another thing to note is that Xbox 360 apps can't access the Internet at all - all communication goes through Xbox LIVE or System Link.

  2. Professional Development
    This covers the development of complete Xbox 360 titles, and requires that you be part of the Xbox 360 Registered Developer Program. Once a development license is obtained (and the NDA is signed), Microsoft provides developers with access to the official Xbox 360 SDK and development hardware, which includes full Visual Studio integration and documentation for developing native Xbox 360 applications and libraries using C/C++. The development kit hardware comes in a few flavours and supports debugging from Visual Studio via ethernet, DVD emulation via USB, etc. For more information on the professional development program, see this information.

Referenced from this answer.

Resources:

231 questions
1
vote
0 answers

adapting xbox controller to simple ncurses game

libusb_device_handle *h; int transferred , r; r = libusb_init(NULL); libusb_set_debug(NULL, 3); //Open device …
hlapa
  • 11
  • 1
1
vote
0 answers

What exactly is the offset 0x8000000000000000UL?

I've seen it around when snooping through source code and mainly used as an offset from what I can tell. but I'm a little confused as to what exactly is it? Where exactly is it pointing too what would be the difference between 0x8000000000000000UL…
1
vote
1 answer

XBox 360 Wireless Controller not working with Kodi / XBMC

System: Ubuntu 14.04.2 LTS (kernel: 3.13.0-45-generic) Kodi (14.2-BETA1 Git:2259d0b). Platform: Linux x86 64-bit Original XBOX 360 wireless controller with Xbox 360 USB Wireless Adapter What I did: Install ubuntu-xboxdrv: sudo apt-add-repository…
cgross
  • 1,932
  • 2
  • 15
  • 20
1
vote
2 answers

XNA game studio Xbox controller

I have a question about XNA. Is it possible in XNA to read input from an Xbox controller pluged into my PC? (I'm a beginner) I would appreciate a reply.
1
vote
2 answers

Kinect Development: Xbox 360 Kinect vs. Kinect for Windows

Quoted from Windows: If you’re a software developer, you can use the Kinect for Xbox 360 together with your computer to test the software you’re working on. However, to get the full Kinect for Windows experience, we recommend you download the…
1
vote
1 answer

How do I create a custom DVD player for XBox?

I would like to create an application that runs on XBox 360 (downloaded using XBox Live) that will play the DVD movie in the tray. I know the XBox already has this ability, but I want my custom DVD player to allow users to save bookmarks for parts…
skb
  • 30,624
  • 33
  • 94
  • 146
1
vote
1 answer

lwjgl XBOX360 (wired) guide button not listing in buttons pressed

I have a question, how can I get the Guide button (the flashy green cross button on the middle) working. I assume, that maybe it wasn't supposed to use use on other OS-es (e.g.:Linux, mac), but I think, it whould be possible to get it work, hence…
Citrus
  • 1,162
  • 1
  • 16
  • 38
1
vote
1 answer

How to find when stick is released

I have problem to check when stick in my gamepad (XBox) is released. With buttons when I press the first I get pollData = 1.0 and after releasing it I get pollData = 0.0. With analog sticks I don't have such event like pollData = 0.0 Thanks in…
MAGx2
  • 3,149
  • 7
  • 33
  • 63
1
vote
1 answer

XBox 360 controller non-customisable mapping

I would like to make a program that utilises the XBox 360 controller's inputs to give outputs, for example if you press A on the controller, it would be the same as pressing A on the keyboard. I plan to use this for game development and do not want…
1
vote
1 answer

Emulating an XBox 360 controller from (not for, from) a laptop

I want to create a C# program which can control an XBox 360 like you would with a controller, except from a program on* my laptop. However, every time I try to find anything pertaining to this on Google, I only get an endless flood of questions…
user2041202
  • 43
  • 1
  • 6
1
vote
1 answer

Tracking and comparing Skeletons with pre-defined Skeleton

I'm currently working on a project for school that requires me to create a certain piece of software with the Kinect hardware. The software is closely related to an aerobics/exercise "game". However, being that I have never worked for the Kinect,…
Marouane Boutaib
  • 65
  • 1
  • 1
  • 5
1
vote
1 answer

Can you have WPF references in an XNA project for xbox 360

I'm writing a XNA project in both Windows and Xbox 360 and the Windows side of it has a console I bring up written as a WPF application. What I was wondering is if I leave this in my library code with the references to WPF, will the dll still work…
slyprid
  • 1,179
  • 2
  • 9
  • 9
1
vote
3 answers

Java Working Directory

I'm pretty new to programming, so this should be an easy one. I'm switching from eclipse to netbeans and I am trying to add libjinput-osx.jnilib to my working directory. I have step by step instructions for eclipse, but not netbeans. I'm about 2.5…
spuder
  • 17,437
  • 19
  • 87
  • 153
1
vote
0 answers

What is the Maximum size of DLL file that can be loaded in XBox360

I have developed game on XBox360 platform. I embed some game resources in my source code (c#). So it makes my DLL is very large (about 16 MB). In PC, it's fine, DLL can be loaded. But it 's not work in XBox. It throw an exception like this An…
Chanyut
  • 43
  • 5
1
vote
0 answers

Flash support for Xbox 360 joystick

Is it possible to use an Xbox 360 controller with the latest Flash player? If so, where can I find sample source code? If a third party utility is required, I'd rather use something free. I'm also interested in using the controller with a browser -…